@charset "utf-8";
/*
	styles for select auth
*/
.cusel,
.cuselFrameRight,
.jScrollPaneDrag,
.jScrollArrowUp,
.jScrollArrowDown {
	background: url('../images/select_span_a.png') no-repeat;
margin-right:0px;
}
.cusel { /*general form of Selecta including the right arrow */
	height: 46px;
	display: inline-block;
	position: relative;
	cursor: pointer;
	font-size: 22px;
	z-index: 1;
}
.cuselFrameRight{ /* SELECT left side. and left border */
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	height: 100%;
	width: 0px;
display:none;
}
.cuselText { /*container for text SELECT */
	text-align:left;
	padding: 6px 0 0 7px; /* pick up the padding and height for the visible text in the selector */
	cursor: pointer;
	overflow: hidden;
	position: relative;
	z-index: 1;
	font: 24px Exo2,Arial, sans-serif;
	position: absolute;
	top: 2px;
	left: 6px;
	color: #666;
}
* html .cuselText { /*height for the block of text for IE6 */
	height: 33px;
}
.cusel span { /* design option */
	display: block;
	cursor: pointer;
	white-space: nowrap;
	padding: 2px 15px 2px 13px; /*padding on the right - this is the indentation of the text of the slider */
	zoom: 1;
	text-align:left;
	color:#ccc;
	background:  #F6F6F2;
}
.cusel span:hover,
.cusel .cuselOptHover { /* optiona response to focus */
	background:   gray;
	color:  #000;
}
.cusel .cuselActive { /* form in the list of active optiona */
	color:  #000;
	cursor: default;
	background:   url('../images/select_span_a_bg.png') no-repeat 0px -10px    gray;
}
/*
	styles for focus and hover
*/
.cusel:hover,
.cusel:hover .cuselFrameRight,
.cusel:focus,
.cusel:focus .cuselFrameRight,
.cuselFocus,
.cuselFocus .cuselFrameRight {
background: url('../images/select_span_a_hover.png') no-repeat;
}

.cuselOpen {
	z-index: 999;
}
/*
	styles for scrollbar
*/
.cusel .cusel-scroll-wrap { /*container for the block with scrolling */
	display: block;
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 100%;
	background: #fff; /*Background drop-down list */
	min-width: 100%;
	width: auto;
}
.cusel .jScrollPaneContainer {
	position: relative;
	overflow: hidden;
	z-index: 5;
	border: 1px solid #999; /*boundaries of pop list */
}

.cusel .jScrollPaneTrack { /*track for the slider bar */
	height: 100%;
	width: 7px !important;
	background: #ccc;
	position: absolute;
	top: 0;
	right: 4px;
}
.cusel .jScrollPaneDrag { /*slider */
	position: absolute;
	background-position: -40px -26px;
	cursor: pointer;
	width: 15px !important;
	height: 27px !important;
	right: -4px;
	
}

.cusel .jScrollPaneDragTop {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
.cusel .jScrollPaneDragBottom {
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
}
.cusel .jScrollArrowUp { /*up Arrow */
	position: absolute;
	top: 0;
	right: 2px;
	width: 26px;
	height: 12px;
	cursor: pointer;
	background-position: -2px -26px;
	overflow: hidden;
}
.cusel .jScrollArrowDown { /*arrow down */
	width: 25px;
	height: 12px;
	position: absolute;
	top: auto;
	bottom: 0;
	right: 3px;
	cursor: pointer;
	background-position: -21px -26px;
	overflow: hidden;
}