/**
* @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:256px;
	height:20px;
	cursor: pointer;
	background:url(select_bg.gif) no-repeat 0% 0%;
}

.elSelect.small {
	width:225px;
	height:20px;
	background:url(select_bg_small.gif) no-repeat 0% 0%;
}

.elSelect .selected {
	background-color:#fff !important;
	color:#CC3399 !important;
}
.elSelect .clear {
	clear:both;
}
.elSelect .selectedOption {
	float:left;
	padding:2px 0 0 6px;
	width:177px;
	font-weight:normal;
	font-size:14px;
	color:#496772;
	overflow:hidden;
}
.elSelect .dropDown {
	width: 23px;
	height: 20px;
	float: right;
	background:url(select_arrow.gif) no-repeat 0% 0%;
}
.elSelect .optionsContainerTop {
	position:absolute;
	background:url(top_center.gif) repeat-x 0% 0%;
	width:100%;
	height:5px;
}
.elSelect .optionsContainerTop div {
	background:url(top_left.gif) no-repeat 0% 0%;
	width:100%;
	height:5px;
}
.elSelect .optionsContainerTop div div {
	background:url(top_right.gif) no-repeat 100% 0%;
	width:100%;
	height:5px;
}
.elSelect .optionsContainerBottom {
	position:absolute;
	margin:-5px 0 0 0;
	background:url(bottom_center.gif) repeat-x 0% 0%;
	width:100%;
	height:5px;
}
.elSelect .optionsContainerBottom div {
	background:url(bottom_left.gif) no-repeat 0% 0%;
	width:100%;
	height:5px;
}
.elSelect .optionsContainerBottom div div {
	background:url(bottom_right.gif) no-repeat 100% 0%;
	width:100%;
	height:5px;
}
.elSelect .optionsContainer {
	position:absolute;
	display:none;
	z-index: 500;
}
.elSelect .option {
	padding:4px 0 5px 5px;
	background-color:#ECF1F2;
	
	text-align:left;
	font-weight:normal;
	font-size:12px;
	color:#496772;
}
.elSelect .option.font-weight-bold{
	font-weight:bold;
}
.elSelect .disabled {
	background-color:#C0CCCF;
	border-left:solid 1px #749490;
	border-right:solid 1px #749490;
	color:#90A4AA;
}
.icon_1 {
	background:url(icon_1.gif) no-repeat 4px 50%;
	padding-left:20px !important;
}
.icon_2 {
	background:url(icon_2.gif) no-repeat 4px 50%;
	padding-left:20px !important;
}

.elSelect .overflow.fix-height .optionsContainer
{
	overflow: auto;
	height: 300px;	
}
.fix-height .optionsContainer
{
	overflow: auto;
	height: 300px;	
}


.overflow .optionsContainer{
	border: 1px solid #749490;
}
.option ,
.dropDown{
	cursor: pointer;
}

.no-height{
	font-size: 1px;
	line-height: 0;
}

#go-to-top {
 position: fixed;
 z-index: 1000;
 left: 47%;
 bottom: -6px;
 background: #000;
 width: 100px;
 height: 30px;
 font-size: 13px;
 line-height: 26px;
 text-align: center;
 
 -webkit-border-top-left-radius: 7px;
 -webkit-border-top-right-radius: 7px;
 -moz-border-radius-topleft: 7px;
 -moz-border-radius-topright: 7px;
 border-top-left-radius: 7px;
 border-top-right-radius: 7px;
 
 opacity: 0.3;
  
}
#go-to-top span {
 font-size: 18px;	
}
#go-to-top a {
 color: #fff !important;
 outline: none;
 text-decoration: none !important;
 height: 100%;
 display: block;
}

													 
													 
