/*
	styles for select
*/
.cusel {
    width: 100%;
    height: 26px;
	display: inline-block;
	position: relative;
	cursor: pointer;
	font-size: 12px;
	z-index: 2;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.cuselFrameRight {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	height: 100%;
	width: 26px;
	background: none;
    font-family: FontAwesome;
    border-left: 1px solid #3f565e;
    background-color: #29434c;
    text-align: center;
    -webkit-border-radius: 0 2px 2px 0;
    -moz-border-radius: 0 2px 2px 0;
    border-radius: 0 2px 2px 0;
}
.cuselFrameRight:before {
    content: "\f0d7";
    text-decoration: inherit;
    display: inline-block;
    speak: none;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    color: #fff;
    position: relative;
    top: 0.3em;
    border-radius: 0 2px 2px 0;
}

.cuselText {
	height: 26px;
	padding: 0 15px 0 15px;
    line-height:26px;
	cursor: pointer;
	overflow: hidden;
	font-size:15px;
	text-shadow:none;
	color:#a5ecf3;
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    text-transform: uppercase;
    background-color: #2b3a3f;
    -webkit-border-radius: 2px 0 0 2px;
    -moz-border-radius: 2px 0 0 2px;
    border-radius: 2px 0 0 2px;
}
.cusel:hover .cuselText {
	color:#fff}
	
/*
* html .cuselText {*/
	/*height: 30px;*/
/*}
*/
.cusel span {
	display: block;
	cursor: pointer;
	white-space: nowrap;
	padding: 5px 20px 5px 15px;
	zoom: 1;
	border-top: 1px solid #3f565e;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
}
.comment-form .cusel span {
    font-size: 11px;
}
.cusel span:first-child {
	border:none}
	
.cusel span:hover,
.cusel .cuselOptHover {
	background: #3f565e;
	color: #fff;
}
.cusel .cuselActive {
	color: #fff;
	cursor: default;
    background: #29434c;
}

/* 	styles for focus and hover */
.cuselOpen {
	z-index: 999;
}

/* 	styles for scrollbar */
.cusel .cusel-scroll-wrap {
	display: block;
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 100%;
	color:#a5ecf3;
	min-width: 100%;
	width: auto;
	font-size:14px;
	z-index:200;
	text-align:left;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #2d444c;
    background: #2b3a3f;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.cusel .jScrollPaneContainer {
	position: relative;
	overflow: hidden;
    border: none;
}
.cusel .jScrollPaneTrack {
	height: 100%;
	width: 7px !important;
	background: #888;
	position: absolute;
	top: 0;
	right: 5px;
}
.jScrollPaneDrag,
.jScrollArrowUp,
.jScrollArrowDown {
    background: url(../images/selects-1.png) no-repeat;
}
.cusel .jScrollPaneDrag {
	position: absolute;
	background-position: -40px 0px;
	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 {
	position: absolute;
	top: 1px;
	right: 2px;
	width: 13px !important;
	height: 12px;
	cursor: pointer;
	background-position: 0 0px;
	background-color:#888;
	overflow: hidden;
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
}
.cusel .jScrollArrowDown {
	width: 13px !important;
	height: 12px;
	position: absolute;
	top: auto;
	bottom: 1px;
	right: 2px;
	cursor: pointer;
	background-position: -13px 0px;
	background-color:#888;
	overflow: hidden;
    -webkit-border-radius: 0 0 2px 2px;
    -moz-border-radius: 0 0 2px 2px;
    border-radius: 0 0 2px 2px;
}
.cusel .jScrollArrowUp.disabled,
.cusel .jScrollArrowDown.disabled {
    background-color: #ccc;
}