/**
* @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
* 
*/

.elSelect {
	width:113px;
	height:24px;
	background:url(../images/elSelect/select_bg.gif) no-repeat 0% 0%;
	position: relative;
	margin-left: 5px;
}
.elSelect .selected {
	background-color:#F2F2F2 !important;
	color:#4169E1 !important;
}
.elSelect .clear {
	clear:both;
}
.elSelect .selectedOption {
	float:left;
	padding:0 0 0 6px;
	width:84px;
	font-size:12px;
	color:#666666;
	overflow:hidden;
	height: 24px;
	white-space: nowrap;
	line-height: 24px;
	cursor: pointer;
	cursor: hand;
	text-align: right;
}
.elSelect .dropDown {
	width: 23px;
	height: 24px;
	float: right;
	background:url(../images/elSelect/select_arrow.gif) no-repeat 0% 0%;
	cursor: pointer;
	cursor: hand;
}
.elSelect .optionsContainerTop {
	background: url(../images/elSelect/top_center.gif) repeat-x 0% 0%;
	width:100%;
	height:5px;
	overflow: hidden;
}
.elSelect .optionsContainerTop div {
	background:url(../images/elSelect/top_left.gif) no-repeat 0% 0%;
	width:100%;
	height:5px;
	overflow: hidden;
}
.elSelect .optionsContainerTop div div {
	background:url(../images/elSelect/top_right.gif) no-repeat 100% 0%;
	width:100%;
	height:5px;
	overflow: hidden;
}
.elSelect .optionsContainerBottom {
	background: url(../images/elSelect/bottom_center.gif) repeat-x 0% 0%;
	width:100%;
	height:5px;
	overflow: hidden;
}
.elSelect .optionsContainerBottom div {
	background:url(../images/elSelect/bottom_left.gif) no-repeat 0% 0%;
	width:100%;
	height:5px;
	overflow: hidden;
}
.elSelect .optionsContainerBottom div div {
	background:url(../images/elSelect/bottom_right.gif) no-repeat 100% 0%;
	width:100%;
	height:5px;
	overflow: hidden;
}
.elSelect .optionsContainer {
	position:absolute;
	display:none;
	background: #FFFFFF;
	top: 25px;
	left: 0;
	z-index: 999;
}
.elSelect .option {
	padding:4px 0 5px 5px;
	background-color:#FFFFFF;
	border-left:solid 1px #aeaeae;
	border-right:solid 1px #aeaeae;
	text-align:left;
	font-size:12px;
	color:#666666;
	cursor: pointer;
	cursor: hand;
}
.elSelect .disabled {
	background-color:#CCCCCC;
	border-left:solid 1px #749490;
	border-right:solid 1px #749490;
	color:#000000;
}