@charset "utf-8";
/*
	styles for select
*/

.cusel { /* общий вид селекта включая стрелку справа */
	color: #afb2b4;
    font-size: 12px;
    font-weight: normal;
    height: 35px;
    line-height: 35px;
    *line-height: 32px;
    padding: 0px;
    background: url(../images/select.png) no-repeat;
	z-index: 1;
    position: relative;
}
.cuselFrameRight { /* левая чсть селект. обыно скругление и левая граница */
	position: absolute;
	z-index: 2;
	top: 0;
    right: 0;
	width: 33px;
    height: 35px;
    background: url(../images/select_open.png) no-repeat 0 0;
}

.cuselText { /* контейнер для отображенного текста селект */
	color: #afb2b4;
    font-size: 12px;
    font-weight: normal;
    font-family: Arial;
    height: 35px;
    line-height: 35px;
    *line-height: 32px;
    padding: 0 35px 0 12px;
	position: absolute;
	top: 0;
	left: 0;
}
* html .cuselText { /* высота блока для текста для ие6 */
	height: 22px;
}
.cusel span { /* оформление оптиона */
	margin: 0;
    padding: 5px 15px 5px 0;
    text-align: right;
    list-style: none;
	background-color: #FFF;
    font: normal 12px/12px Arial;
    color: #2a2c2d;
    text-align: right;
    text-decoration:none;
    display: block;
    cursor: pointer;
    white-space: nowrap;
    *zoom:1;
}
.cusel .cuselActive , .cusel span:hover,
.cusel .cuselOptHover { /* реакция оптиона на наведение */
	color: #a4aaae;
}

/*
	styles for focus and hover
*/
/*.cusel:hover,
.cusel:hover .cuselFrameRight,
.cusel:focus,
.cusel:focus .cuselFrameRight,
.cuselFocus,
.cuselFocus .cuselFrameRight {
	background-image: url(../images/selects-focus.png);
}
*/
.cuselOpen {
	z-index: 999;
}

/*
	styles for disabled select
*/
.classDisCusel,
.classDisCusel .cuselFrameRight {
	background-image: url(../images/selects-2-dis.png) !important;
	cursor: default;
	color: #ccc;
}
.classDisCusel .cuselText {
	cursor: default;
}


/*
	styles for scrollbar
*/
.cusel .cusel-scroll-wrap { /* контейнер для блока с прокруткой */
	display: block;
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 37px;
	min-width: 100%;
	width: auto;
}
.cusel .jScrollPaneContainer {
	position: relative;
	overflow: hidden;
	z-index: 5;
    
}

.cusel .jScrollPaneTrack { /* трек для ползунка прокрутки */
	height: 100%;
	width: 11px !important;
	background: none;
	position: absolute;
	top: 0;
	right: 10px;
}
.cusel .jScrollPaneDrag { /* ползунок */
	position: absolute;
	background: #dbddde;
	cursor: pointer;
	width: 11px !important;
    webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	/*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 { /* стрелка вверх */
	position: absolute;
	top: 0;
	right: 2px;
	width: 26px;
	height: 12px;
	cursor: pointer;
	background-position: -2px -26px;
	overflow: hidden;
}
.cusel .jScrollArrowDown { /* стрелка вниз */
	width: 25px;
	height: 12px;
	position: absolute;
	top: auto;
	bottom: 0;
	right: 3px;
	cursor: pointer;
	background-position: -21px -26px;
	overflow: hidden;
}

.for_input .cusel {
    width: 361px !important;
}


.cusel-scroll-pane {
    
}


.cusel-scroll-wrap-wrap {
    background-color: #FFF;
    border: 0px;
    padding: 16px 0;
    webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    *zoom: 1;
    behavior: url(PIE.htc);
    position: relative;
    box-shadow: 0px 7px 10px 0px  #e3e3e3;
}


.cusel-scroll-wrap .arrow_top {
    background: url(../images/arrows_select.png) no-repeat 0 0;
    width: 8px;
    height: 5px;
    left: 16px;
    top: 16px;
    position: absolute;
    z-index: 15;
}

.cusel-scroll-wrap .arrow_bottom {
    background: url(../images/arrows_select.png) no-repeat 0 100%;
    width: 8px;
    height: 5px;
    left: 16px;
    bottom: 16px;
    position: absolute;
    z-index: 15;
}