/* Dropdown control */
.selectBox-dropdown {
	width: 100%;
	position: relative;
	border:1px solid #dfdbd4;
	text-decoration: none;
	text-align: left;
	color:#6d6e71;
	background:#fff;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:20px;
	outline: none;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	display: inline-block;
	cursor: default;
	/*-ms-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;*/
	vertical-align:top;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
	
}

a.selectBox-dropdown:hover {}

.selectBox-dropdown.selectBox-menuShowing {
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-bottomright: 0;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.selectBox-dropdown .selectBox-label {
	padding: 3px 8px 4px;
	display: inline-block !important;
	white-space: nowrap;
	overflow: hidden;
	font-weight:normal;
	margin:0 !important;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 24px;
	height: 100%;
	background:url(../images/selectArrow.png) center center no-repeat;
	cursor:pointer;
	-webkit-border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-bottomright: 3px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	border-left:1px solid #b8bcc4;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	min-height: 1em;
	border: solid 1px #dfdbd4; /* should be the same border width as .selectBox-dropdown */
	background: #fff;
	overflow: auto;
	-ms-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
}


/* Inline control */
.selectBox-inline {
	min-width: 150px;
	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,
.selectBox-options LI,
.selectBox-options LI A {
	list-style: none;
	display: block;
	cursor: default;
	padding: 0;
	margin: 0;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
}

.selectBox-options LI A {
	line-height: 1.2;
	padding: 2px 6px;
	display:block;
	white-space: nowrap;
	overflow: hidden;
	color: #494949;
	text-decoration:none;
	cursor:pointer;
}

.selectBox-options LI.selectBox-hover A {
	background-color: #FA5151;
	color:#fff;
}

.selectBox-options LI.selectBox-disabled A {
	color: #888;
	background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
	background-color: #FA5151;
	color:#fff;
}

.selectBox-options .selectBox-optgroup {
	color: #494949;
	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;
}