/* Dropdown control */
.selectBox-dropdown {
	position: relative;
	border-top: 1px solid #636e72;
	border-radius: 3px;
	line-height: 18px;
	text-decoration: none;
	text-align: left;
	color: #696a6c;
	outline: none;
	display: inline-block;
	cursor: default;
	vertical-align: middle;
	max-width: 430px;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
	border-color: #666;
}

.selectBox-dropdown.selectBox-menuShowing,
.selectBox-dropdown.selectBox-menuShowing .selectBox-label,
.selectBox-dropdown.selectBox-menuShowing .selectBox-arrow {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.selectBox-dropdown .selectBox-label {
	background-color: #f3f4f3;
	height: 24px;
	line-height: 24px;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	border-radius: 2px 0 0 2px;
	padding: 0 10px;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 26px;
	height: 24px;
	background: #babcbd;
	border-radius: 0 2px 2px 0;
}

.selectBox-dropdown .selectBox-arrow:after {
	display: block;
	position: absolute;
	content: ' ';
	width: 0; 
	height: 0;
	border-top: 5px solid #6a73cd;
	border-left: 4px solid transparent; 
	border-right: 4px solid transparent;
	top: 50%;
	left: 50%;
	margin-left: -3px;
	margin-top: -2px;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	min-height: 1em;
	background: #FFF;
	-moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	overflow: auto;
	width: auto !important;
}


/* Inline control */
.selectBox-inline {
	outline: none;
	border: solid 1px #BBB;
	background: #FFF;
	display: inline-block;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	overflow: auto;
}

.selectBox-inline:focus {
	border-color: #666;
}


/* Options */
.selectBox-options {
	border-radius: 0 0 3px 3px;
}

.selectBox-options,
.selectBox-options li,
.selectBox-options li a {
	list-style: none;
	display: block;
	cursor: default;
	padding: 0;
	margin: 0;
}

.selectBox-options li {
	background-color: #ffffff;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f1f1f1));
	background-image: -webkit-linear-gradient(top, #ffffff, #f1f1f1);
	background-image: -moz-linear-gradient(top, #ffffff, #f1f1f1);
	background-image: -o-linear-gradient(top, #ffffff, #f1f1f1);
	background-image: -ms-linear-gradient(top, #ffffff, #f1f1f1);
	background-image: linear-gradient(top, #ffffff, #f1f1f1);	
	border-top: 1px solid #dadbda;
}
.selectBox-options li:last-child {
	border-radius: 0 0 3px 3px;
}

.selectBox-options li a {
	line-height: 1.5;
	color: #696A6C;
	padding: 5px 10px;
	white-space: nowrap;
	overflow: hidden;
	background: 6px center no-repeat;
}

.selectBox-options li.selectBox-hover a {
	text-decoration: none;
	color: #1cadd9;
	cursor: pointer;
}

.selectBox-options li.selectBox-disabled a {
	color: #888;
	background-color: transparent;
}

.selectBox-options li.selectBox-selected a {
/*	background-color: #C8DEF4;*/
}

.selectBox-options .selectBox-optgroup {
	color: #666;
	background: #EEE;
	font-weight: bold;
	line-height: 1.5;
	padding: 0 .3em;
	white-space: nowrap;
}


/* Disabled state */
.selectBox.selectBox-disabled {
	color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
	opacity: .5;
	filter: alpha(opacity=50);
	border-color: #666;
}

.selectBox-inline.selectBox-disabled {
	color: #888 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options a {
	background-color: transparent !important;
}