<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.selectBox a, .selectBox a:hover, .selectBox a:visited{
    color: #000;
}

/* Dropdown control */
.selectBox-dropdown {
	width: 210px; /* width = (desired width) - padding-right */
	padding: 3px 20px 3px 5px;
	position: relative;
	border: solid 1px #A5F0FF;
	text-decoration: none;
	color: #000;
	outline: none;
	vertical-align: middle;
	background: #FFF;
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
	overflow: hidden;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
    border-color: #666;
}

.selectBox-dropdown.selectBox-menuShowing {

}

a.selectBox.selectBox-dropdown span.selectBox-label {
	white-space: nowrap;
	overflow: hidden;
    font-weight: normal;
    font-size: 1em;
    text-align:left;
}

a.selectBox:hover {
    text-decoration: none;  
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 19px;
	background: url(/public/themes/images/select-tab-main.png) no-repeat scroll right center #FFFFFF;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	border: solid 1px #003577; /* should be the same border width as .selectBox-dropdown */
	background: #FFF;
	overflow: auto;
}


/* Inline control */
.selectBox-inline {
	width: 250px;
	outline: none;
	border: solid 1px #003577;
	background: #FFF;
	display: inline-block;
	overflow: auto;
}

.selectBox-inline:focus {
	border-color: #666;
}


/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
	list-style: none;
	display: block;
	cursor: pointer;
	padding: 0;
	margin: 0;
    text-decoration: none;
    color: #000;
}

.selectBox-options LI A {
	line-height: 1.5;
	padding: 0 .5em;
	white-space: nowrap;
	overflow: hidden;
	background: 6px center no-repeat;
}

.selectBox-options LI.selectBox-hover A {
    background-color: #01D5FF; /*#E34F50;*/
}

.selectBox-options LI.selectBox-disabled A {
	color: #000;
	background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
    background-color: #00275C;
    color: #FFFFFF;
    font-weight: bold;
}

.selectBox-options .selectBox-optgroup {
	color: #666;
	background: #EEE;
	font-weight: bold;
	line-height: 1.5;
	padding: 0 .3em;
	white-space: nowrap;
}


/* Disabled state */
.selectBox.selectBox-disabled {
    color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
	opacity: .5;
	filter: alpha(opacity=50);
	border-color: #666;
}

.selectBox-inline.selectBox-disabled {
    color: #888 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
    background-color: transparent !important;
}</pre></body></html>