<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* HEADER */

#site-header {
	box-shadow: 0 1px 8px rgb(0 0 0 / 10%);
	color: #000;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	margin-bottom: 3em;
}

#site-header .mainbar {
	display: flex;
	height: 60px;
	background: #fff;
	padding-left: 10px;
	padding-right:10px;
}

#site-header .mainbar .container {
	display: flex;
	gap: 1.5em;
}

#site-header .gapped-items {
	flex: auto;
	display: flex;
	min-width: 0;
	white-space: nowrap;
	position: relative;
}

#site-header .gapped-items &gt; :nth-child(n+2)::before {
	content: "";
	display: inline-block;
	height: 25px;
	border-left: 1px solid #e0e0e0;
	margin: 0 1em;
	vertical-align: middle;
}

#site-header .mainbar .gapped-items {
	align-items: center;
}

#site-header .secondbar {
	display: flex;
	height: 60px;
	background: #fff;
	padding-left:10px;
	padding-right:10px;
}

#site-header .secondbar .container {
	display: flex;
}

#site-header nav {
	flex: auto;
	display: flex;
}

#site-header nav &gt; ul {
	flex: auto;
	display: flex;
	margin: 0;
	justify-content: space-between;
	white-space: nowrap;
}

#site-header nav li {
	flex: 0;
}

#site-header nav .link {
	font-size: 16px;
	height: 100%;
}

#site-header nav .link a {
	display: flex;
	height: 100%;
	color: inherit;
	text-decoration: none;
	align-items: center;
}

#site-header nav .link.current a {
	font-weight: bold;
}

#site-header nav .link a:hover,
#site-header nav .link.current a,
#site-header nav .menu-dropdown &gt; button:hover,
#site-header nav .menu-dropdown.menu-active &gt; button {
	border-bottom: 5px solid #34ca00;
	box-sizing: border-box;
}

@media (min-width: 580px) {
	#site-header .menu-dropdown {
		display: none;
	}
}

/* HEADER SEARCH */

div.search-holder {
	position: relative;
	display: flex;
	gap: 1em;
}

div.search-holder #autocomplete-box {
	position: absolute;
	top: 100%;
	min-width: 100%;
	z-index: 1000;
}

div.search-holder:not(:hover) input[name=q]:not(:focus) + #autocomplete-box {
	display: none;
}

/* FILE LIST */

.file-list {
	display: grid;
	grid-template-columns: 1fr minmax(auto, 45%) auto auto;
	row-gap: 10px;
	line-height: normal;
	min-height: 200px;
	align-content: start;
	font-size: 14px;

}

@media (max-width: 1680px) {
	.file-list {
	}
}

@media (max-width: 1280px) and (min-width: 980px), (max-width: 736px) {
	.file-list {
		grid-template-columns: 1fr auto;
		grid-auto-flow: dense;
		gap: 0;
	}
}

.file-list &gt; header {
	display: contents;
}

@media (max-width: 1280px) and (min-width: 980px), (max-width: 736px) {
	.file-list &gt; header :first-child {
		grid-column: 1 / -1;
	}

	.file-list &gt; header :nth-child(n+2) {
		display: none;
	}
}

.file-list :first-child {
	grid-column: 1 / -1;
}

.file-list .files {
	display: contents;
}

.file-list .filerow {
	display: contents;
}

/* Safari */
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* FILE ROW */

.filerow {
	color: #333;
	border-top: 3px solid #f2f2f2;
}

.filerow:hover {
	background-color: #fafafa;
}

.filerow &gt; * {
	min-width: 0;
	min-height: 100px;
	padding: 10px 0;
	background: inherit;
	border-top: inherit;
	border-bottom: inherit;
	position: relative;
}

.filerow &gt; :first-child {
	padding-left: 10px;
	border-left: inherit;
	grid-column: 1;
}

.filerow &gt; :last-child {
	text-align: end;
	padding-right: 1em;
	border-right: inherit;
}

.filerow &gt; ::before {
	content: "";
	position: absolute;
	right: 100%;
	background: inherit;
	border-top: inherit;
	border-bottom: inherit;
}

.filerow &gt; :first-child::before {
	display: none;
}

.filerow .file &gt; * {
	max-width: 15rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 5px;
}

.filerow .file .title {
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 10px;
}

.filerow .file &gt; :not(.title) {
	font-style: italic;
}

.filerow .size {
	min-width:70px;
}

.filerow .download {
	display: flex;
	align-items: flex-start;
	gap: 5px;
}

.filerow .download .arch {
	display: block;
	flex: none;
	width: 38px;
	height: 38px;
}

.filerow .download .button {

}

.filerow .download .button:hover {
	color:#fff;
	background-color: #446cff;
}

@media (max-width: 1200px) and (min-width: 981px), (max-width: 736px) {
	.filerow .download {
		padding: 1em;
		grid-column: 1 / -1;
		align-items: center;
	}

	.filerow .download .button {
		flex: auto;
		padding: 10px 0 !important;
	}
}

@media (max-width: 1200px) and (min-width: 981px), (max-width: 736px) {
	.filerow dl.version {
		grid-column: 1 / -1;
		padding: 1em;
	}
}

.filerow dl.version dt {
	margin-right: 0.4em;
}

.filerow dl.version dt:not(.wrap) {
	float: left;
}

.filerow dl.version dt::after {
	content: ":";
}

.filerow dl.version dd {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.filerow dl.version dt:nth-of-type(n+2),
.filerow dl.version dd:nth-of-type(n+2) {
	color: #696969;
}

.filerow dl.version dt.comment,
.filerow dl.version dd.comment{
	font-size: 13px;
	padding-top: 0.3em;
}

/* FILE FEED */

.file-feed {
	background-color: #fff;
	padding: 15px;
	margin-top:15px;
	margin-bottom:15px;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	/* box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px; */
}

.file-feed-content {
	overflow: hidden;
}
.request-feed-thumbnail {
	width: 40px;
	height: 40px;
	float: left;
	margin-right:10px;
	margin-left: 5px;
	background-size: cover;
	border-radius: 5px;
}

.file-feed-thumbnail {
	width: 30px;
	height: 30px;
	float: left;
	margin-right:15px;
	background-image: url(/img/ocx_icon.png);
	background-size: cover;
	border-radius: 5px;
}

.file-feed-thumbnail-na {
	width: 30px;
	height: 30px;
	float: left;
	margin: 5px 15px 10px 0;
	background-image: url(/img/ocx_icon.png);
	background-size: cover;
	border-radius: 5px;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: .2;
}

.file-feed a {
	color: #000;
	text-decoration: none;
}
.file-feed a:hover {
	color: #34ca00;
}

.file-feed p {
	font-size: 16px;
	color: #4a4a4a;
	line-height: 1.4em;
	margin: 0 0 10px 0;
}

.file-feed-attribution {
	font-size: 14px;
	color:#999;
	display: inline-block;
	float: right;
	text-align: right;
}

.file-feed-attribution-left {
	font-size: 14px;
	color:#666;
	display: inline-block;
	float: left;
	text-align: left;
}
.file-feed-attribution a {
	color: #888;
	font-size: 14px;
	display: inline-block;
	text-align: right;
	cursor: pointer;
}
.file-feed-attribution a:hover {
	color: #34ca00;
}</pre></body></html>