/**
* @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:#000;
}*/
.elSelect_big {
	width:206px;
	height:33px;
	background:url(select_bg.png) no-repeat 0% 0%;
	cursor:pointer;
}
.elSelect_small {
	cursor:pointer;
	width:60px;
	height:33px;
	background:url(select_bg_small.png) no-repeat 0% 0%;
}


.elSelect_big .selected, .elSelect_small .selected {
	background-color:#000 !important;
	color:#fff !important;
}
.elSelect_big .clear, .elSelect_small .clear {
	clear:both;
}
.elSelect_big .selectedOption{
	float:left;
	padding:2px 0 0 6px;
	width:177px;
	font-weight:bold;
	line-height:33px;
	font-size:12px;
	color:#fff;
	overflow:hidden;
}

.elSelect_small .selectedOption {
	float:left;
	padding:2px 0 0 6px;
	width:30px;
	font-weight:bold;
	line-height:33px;
	font-size:12px;
	color:#fff;
	overflow:hidden;
}

.elSelect_big .dropDown, .elSelect_small .dropDown {
	width: 23px;
	height: 33px;
	float: right;
	background:url(select_arrow.png) no-repeat 0% 0%;
}
.elSelect_big .optionsContainerTop, .elSelect_small .optionsContainerTop {
	position:absolute;
	background:url(top_center.png) repeat-x 0% 0%;
	width:100%;
	height:5px;
}
.elSelect_big .optionsContainerTop div, .elSelect_small .optionsContainerTop div {
	background:url(top_left.png) no-repeat 0% 0%;
	width:100%;
	height:5px;
}
.elSelect_small .optionsContainerTop div div, .elSelect_big .optionsContainerTop div div {
	background:url(top_right.png) no-repeat 100% 0%;
	width:100%;
	height:5px;
}
.elSelect_small .optionsContainerBottom, .elSelect_big .optionsContainerBottom {
	position:absolute;
	margin:-5px 0 0 0;
	background:url(bottom_center.png) repeat-x 0% 0%;
	width:100%;
	height:5px;
}
.elSelect_small .optionsContainerBottom div, .elSelect_big .optionsContainerBottom div {
	background:url(bottom_left.png) no-repeat 0% 0%;
	width:100%;
	height:5px;
}
.elSelect_small .optionsContainerBottom div div, .elSelect_big .optionsContainerBottom div div {
	background:url(bottom_right.png) no-repeat 100% 0%;
	width:100%;
	height:5px;
}
.elSelect_big .optionsContainer{
	position:absolute;
	display:none;
	height:300px;
	overflow-y:auto;
	overflow-x:hidden;
	width:206px;
}
.elSelect_small .optionsContainer {
	position:absolute;
	display:none;
	height:300px;
	overflow-y:auto;
	overflow-x:hidden;
	width:60px;
	
	

}

.elSelect_small .option, .elSelect_big .option {
	padding:4px 0 5px 5px;
	background-color:#000;
	border-left:solid 1px #000;
	border-right:solid 1px #000;
	text-align:left;
	font-weight:bold;
	font-size:12px;
	color:#999;
	cursor:pointer;
}
.elSelect_big .disabled, .elSelect_small .disabled {
	background-color:#C0CCCF;
	border-left:solid 1px #749490;
	border-right:solid 1px #749490;
	color:#90A4AA;
}
.icon_1 {
	background:url(icon_1.png) no-repeat 4px 50%;
	padding-left:20px !important;
}
.icon_2 {
	background:url(icon_2.png) no-repeat 4px 50%;
	padding-left:20px !important;
}