/* Dropdown control */
.selectBox-dropdown {
	display: inline-block;
	position: relative;
	overflow: hidden;
	background: #ededed; /* Old browsers */
	background: -moz-linear-gradient(top,  #ededed 0%, #ffffff 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ededed 0%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ededed 0%,#ffffff 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ededed 0%,#ffffff 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ededed 0%,#ffffff 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	min-width: 363px;
	max-width: 363px;
	height: 32px;
	padding-right: 35px;
	-webkit-box-shadow: 0 1px 0 #133857;
	-moz-box-shadow: 0 1px 0 #133857;
	box-shadow: 0 1px 0 #133857;
	text-align: left;
	border: 1px solid #fff;
	outline: none;
	cursor: default;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {

}

.selectBox-dropdown .selectBox-label {
	display: inline-block;
	overflow: hidden;
	padding-left: 10px;
	vertical-align: top;
	white-space: nowrap;
	font: 14px/32px Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: #333;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 4px 3.5px 0 3.5px;
	border-color: #333 transparent transparent transparent;
	content: '';
}

/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	overflow: auto;
	background-color: #f5f5f5;
	max-height: 200px;
	min-height: 1em;
	 -webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #d8e0e2;
	-webkit-overflow-scrolling: touch;
	z-index: 99999;
}

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

.selectBox-options li {
	padding: 0 10px;
}
.selectBox-options li.selectBox-hover {
	background-color: #e9eff0;
}
.selectBox-options li.selectBox-selected {
	background-color: #e9eff0;
}
.selectBox-options li a {
	overflow: hidden;
	padding: 7px 0 6px;
	text-decoration: none;
	/*white-space: nowrap;*/
	border-top: 1px solid #eee;
	color: #555;
}
.selectBox-options li:first-child a:first-child {
	border: 0;
}


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

.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;
}