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

/* PREFIXED CSS */

/*.dropdown,
.dropdown div,
.dropdown li,
.dropdown div::after{
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.dropdown .selected::after,
.dropdown.scrollable div::after{
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
}*/

/* WRAPPER */

.dropdown{
	position: relative; 
	border: 1px solid #ccc;
	cursor: pointer;
	background: #fff;
	height:46px;
	width:100%;
	max-width:748px;
	/*margin-top:-22px;*/
	margin:0 0 12px;
	-webkit-user-select: none;
	-moz-user-select: none;
	/*user-select: none;*/
}

.dropdown.open{
	z-index: 2;
}

.dropdown:hover{
	
}

.dropdown.focus{
	
}
226
/* CARAT */

.dropdown .carat{
	position: absolute;
	right: 0px;
	top: 8px;
	width:52px;
	height:32px;
	border-left:1px solid #D2CECF;
	background: url("/img/ico_down_b.png") right 20px center no-repeat; 
}
.dropdown.disabled .carat {background-image: url("/img/ico_down.png");}
.dropdown.disabled .selected {color:#d0d6d6 !important;}

.dropdown.open .carat{
	background-image:none;
	background: url("/img/ico_up_b.png") right 20px center no-repeat !important; 
}

.dropdown.disabled .carat{
	border-top-color: #999;
}

.dropdown .car{
	position: absolute;
	right: 0px;
	top: 8px;
	width:52px;
	height:32px;
	border-left:1px solid #D2CECF;
	background: #FFF url("/img/ice_ico_down.png") right 20px center no-repeat;
}
@media (min-width: 767px) {
	.dropdown .car{
		top: 0px;
		width:45px;
		height:46px;
		border-left:1px solid #CCC;
		background-position: center center;
	}
}
.dropdown.disabled .car {background-image: url("/img/ico_down.png");}
.dropdown.disabled .selected {color:#d0d6d6 !important;}

.dropdown.open .car{
	background-image: url("/img/ice_ico_up.png");
}

.dropdown.disabled .car{
	border-top-color: #999;
}

/* OLD SELECT (HIDDEN) */

.dropdown .old{
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}

.dropdown select{
	position: absolute;
	left: 0px;
	top: 0px;
}

.dropdown.touch .old{
	width: 100%;
	height: 100%;
}

.dropdown.touch select{
	width: 100%;
	height: 100%;
	opacity: 0;
}

/* SELECTED FEEDBACK ITEM */ 

.dropdown .selected,
.dropdown li {
	display: block;
	font-family:Source Sans Pro;
	color:#818a8a;
	font-size:16px;
	line-height:5px;
	padding: 21px 12px 17px;
	overflow: hidden;
	white-space: nowrap;
}
.dropdown li font {
	color:#abb3b3;font-size:14px;
}
.dropdown li span {
	padding-left:20px;
}

.dropdown .selected font {color:#D0D6D6;font-size:14px;}


/*.dropdown .selected::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60px;
}*/

/* DROP DOWN WRAPPER */

.dropdown div{
	position: absolute;
	height: 0;
	left: -1px;
	right: -1px;
	top: 100%;
	margin-top: 1px;
	background: #fff;
	border: 1px solid #ccc;
	border-top: 1px solid #eee;
	overflow: hidden;
	opacity: 0;
	padding:0;
}

/* Height is adjusted by JS on open */

.dropdown.open div{
	opacity: 1;
	z-index: 2;
}

/* FADE OVERLAY FOR SCROLLING LISTS */

.dropdown.scrollable div::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 46px;
	padding:0;
	display: none;
}

.dropdown.scrollable.bottom div::after{
	opacity: 0;
	padding:0;
}

/* DROP DOWN LIST */

.dropdown ul{
	margin:0;
	padding:0;
	position: absolute;
	left: 0;
	top: -1px;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
}

.dropdown.scrollable.open ul{
	overflow-y: auto;
}

/* DROP DOWN LIST ITEMS */

.dropdown li{
	list-style: none;
	padding: 12px 10px;
	font-family:Source Sans Pro;
	color:#555555;
	font-size:16px;
	background:#F5F7F7;
	border-bottom: #ccc 1px solid;
}
.dropdown li.notActual{
	color: #818a8a;
}
.dropdown li:last-child{
	border-bottom: none;
}
.dropdown li:first-child{
	border-top: #ccc 1px solid;
}

/* .focus class is also added on hover */

.dropdown li.focus{

	background: #1D8FB1;
	position: relative;
	z-index: 3;
	color: #fff;
}
.dropdown li.focus font {color:white;}

.dropdown li.active{
	font-weight: 700;
}</pre></body></html>