/**
* @file elSelect.js
* @downloaded from http://www.cult-f.net/2007/12/14/elselect/
* @author Sergey Korzhov aka elPas0
* @site  http://www.cult-f.net
* @date December 14, 2007
* 
*/
body {
	font-family:Tahoma;
	font-size:11px;
	background:#fff;
}
.elSelect {
	width:150px;
	height:20px;
	background:white; 
}
.elSelect .selected {
	background-color:#fff !important;
	color:#CC3399 !important;
}
.elSelect .clearSelect {
	clear:both;
}
.elSelect .selectedOption {
	position: absolute;
	padding:2px 0 0 6px;
	height:14px; 
	font-size:11px;
	color:#496772;
	overflow:hidden;
	width:120px; 
	color: black;
}
.elSelect .dropDown {
	width: 23px;
	height: 20px;
	float: right;
	background:url(/images/select_arrow.gif) no-repeat 0% 0%;
}
.elSelect .optionsContainerTop {
	position:absolute;
	width:100%;
	height:5px;
}
.elSelect .optionsContainerTop div {
	width:100%;
	height:5px;
}
.elSelect .optionsContainerTop div div {
	width:100%;
	height:5px;
}
.elSelect .optionsContainerBottom {
	position:absolute;
	margin:-5px 0 0 0;
	width:100%;
	height:5px;
}
.elSelect .optionsContainerBottom div {
	width:100%;
	height:5px;
}
.elSelect .optionsContainerBottom div div {
	width:100%;
	height:5px;
}
.elSelect .optionsContainer {  
	position:absolute;
	display:none;
	height: 300px;
	width: 400px;
	overflow: auto;
	overflow-x: hidden;
	border:solid 1px #747474;
	z-index:2000;
}
.elSelect .option {
	padding:4px 5px 5px 5px;
	background-color:#ECF1F2;
	text-align:left;
	color:gray;
	white-space:nowrap;
}
.elSelect .disabled {
	background-color:#C0CCCF;
	border-left:solid 1px #747474;
	border-right:solid 1px #747474;
	color:#90A4AA;
}