@charset "utf-8";
/*
	styles for select
*/
.cusel,
.jspContainer,
.cusel-scroll-wrap,
.jspScrollable:focus  {
	outline: none;
}
/*
.cusel,
.cuselFrameRight,
.jScrollPaneDrag,
.jScrollArrowUp,
.jScrollArrowDown {
	background: url(../images/select_big.png) no-repeat;
}
*/
.cusel { 
	height: 28px;
	border: 1px solid #D4D5D6;
    box-shadow: 2px 2px 2px rgba(201, 202, 203, 0.2), 0 1px 1px rgba(201, 202, 203, 0.3) inset;
    color: #888888;
	display: inline-block;
	position: relative;
	cursor: pointer;
	font-size: 12px;
	z-index: 11;
	margin: 10px 0 10px 0;
	border-radius: 4px;
	background: #ffffff;
	width: 98%;
}

.cuselFrameRight {
	position: absolute;
	z-index: 2;
	top: 12px;
	right: 11px;
	height: 100%;
	width: 36px;
	width: 0; 
    height: 0; 
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    
    border-top: 3px solid #888787;
    
}
.select_small.cusel .cuselFrameRight,
.select_small.cusel .cuselFrameRight:hover,
.select_small.cusel .cuselFrameRight:active {
	width: 13px;
	background-position: right top;
}

.cuselText { 
	height: 16px;
	padding: 5px 0 3px 15px; 
	cursor: pointer;
	overflow: hidden;
	position: relative;
	z-index: 1;
	font-size: 14px;
	font-family: Tahoma;
	position: absolute;
	top: 0;
	left: 0;
	color: #888787;
	
}
.select_small.cusel .cuselText {  
	padding: 3px 0 3px 10px; 
}
* html .cuselText { 
	height: 82px;
	
}
.cusel span {
	display: block;
	cursor: pointer;
	padding: 5px 15px 5px 20px; 
	zoom: 1;
    font: 14px/18px Tahoma;
    color: #888787;
	
}
.cusel span:hover,
.cusel .cuselOptHover { 
	color: #6aa400;
	
}
.cusel .cuselActive { 
	color: #6aa400;
	box-shadow: inset 0 0 8px rgba(0,0,0,0.1);
	text-decoration: none;
	cursor: default;
}

/*
	styles for focus and hover
*/
.cusel:hover,
.cusel:hover .cuselFrameRight,
.cusel:focus,
.cusel:focus .cuselFrameRight,
.cuselFocus,
.cuselFocus .cuselFrameRight {
	background-image: url(../images/select_big.png);
}
.cusel.select_big:hover,
.cusel.select_big:focus {
	background-image: url(../images/select_big.png);
}

.cuselOpen {
	z-index: 999;
}

/*
	styles for disabled select
*/
.classDisCusel,
.classDisCusel .cuselFrameRight {
	background-image: url(../images/select_big.png) !important;
	cursor: default;
	color: #ccc;
}
.classDisCusel .cuselText {
	cursor: default;
}


/*
	styles for scrollbar
*/
.cusel .cusel-scroll-wrap { 
	display: block;
	visibility: hidden;
	position: absolute;
	left: -1px;
	top: 100%;
	background: #fff;
	width: 100%;
	
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	background-color: #ffffff;
	
	
 
	
	overflow: hidden;
	z-index: 5;
	text-align: left;
	color: #666563;
	
	padding:10px 0 10px 0;
	border: 1px solid  #d4d5d6;
	border-top: none;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
	border-radius: 0 0 6px 6px;
}
.select_field .select.cuselOpen {
    border-radius: 5px 5px 0 0;
}
.select_small.cusel .cusel-scroll-wrap {
	min-width: 30px;
	padding:3px 6px 3px 10px;
}
