/*
	styles for select
*/
.cusel {
    width: 100%;
    height: 30px;
	display: inline-block;
	position: relative;
	cursor: pointer;
	font-size: 12px;
	z-index: 2;
}
.cuselFrameRight {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	height: 100%;
	width: 20px;
	background: none;
    font-family: FontAwesome;
    border-left: 1px solid #c9c9c9;
}
.cuselFrameRight:before {
    content: "\f0d7";
    text-decoration: inherit;
    display: inline-block;
    speak: none;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    color: #666;
    padding-left: 6px;
    position: relative;
    top: 0.35em;
    text-shadow: 0 1px 0 #fff;
}

.cuselText {
	height: 28px;
	padding: 0 0 0 10px;
    line-height:28px;
	cursor: pointer;
	overflow: hidden;
    font-family: 'Source Sans Pro', Arial, sans-serif;
	font-size:12px;
	text-shadow:none;
	color:#404040;
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    text-transform: uppercase;
}
.cusel:hover .cuselText {
	color:#000}
	
/*
* html .cuselText {*/
	/*height: 30px;*/
/*}
*/
.cusel span {
	display: block;
	cursor: pointer;
	white-space: nowrap;
	padding: 5px 20px 5px 10px;
	zoom: 1;
	border-top: 1px solid #ededed;
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
}
.cusel span:first-child {
	border:none}
	
.cusel span:hover,
.cusel .cuselOptHover {
	background: #fff;
	color: #404040;
}
.cusel .cuselActive {
	color: #e8544f;
	cursor: default;
    background: #fff;
}

/* 	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:#404040;
	min-width: 100%;
	width: auto;
	font-size:12px;
	z-index:200;
	text-align:left;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #d4d4d4;
    background: #f9f9f9;
    -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: content-box;
    -moz-box-sizing: content-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;
}