/* Dropdown control */
.selectBox-dropdown {
	width:340px!important;
	position: relative;
	border:1px solid #989898;
	height: 45px; /*added to fix excess height issue in Sprint 4.2*/
	line-height: 43px;
	text-decoration: none;
	text-align: left;
	color: #A5A5A6;
	outline: none;
	vertical-align: middle;
	background: #FFF url(select_bg.jpg) left bottom repeat-x;
	display: inline-block;
	cursor: pointer;
	overflow:hidden;
	font-family:'roboto_condensedregular',Helvetica,Arial,sans-serif;
	font-weight:normal!important;
	text-transform:uppercase;
	font-size:18px;

}
.selectBox-dropdown {-webkit-border-radius:10px;-webkit-border-top-left-radius:0;-moz-border-radius:10px;-moz-border-radius-topleft:0;border-radius:10px;border-top-left-radius:0;}
.selectBox-dropdown:hover {color: #999;text-decoration:none;}

.selectBox-dropdown:focus {border-color: #A5A5A6;}
.selectBox-dropdown:focus .selectBox-arrow {border-color: #989898;background: url(select_arrow_focus.png) 50% center no-repeat;}

.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: 2px 11px 2px 16px!important;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden!important;	
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 100%;
	background: url(select_arrow.png) 50% center no-repeat;
	border-left: solid 1px #CCC;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 400px;
	min-height: 1em;
	padding:10px 0px 10px 0px!important;
	border: solid 1px #989898; /* should be the same border width as .selectBox-dropdown */
	border-top:none;
	background: #FFF;
	overflow: auto;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-moz-border-radius-topleft: 0!important;
	-moz-border-radius-topright: 0!important;
	-webkit-border-top-left-radius: 0!important;
	-webkit-border-top-right-radius: 0!important;
	border-top-left-radius: 0!important;
	border-top-right-radius: 0!important;
	}


/* Inline control */
.selectBox-inline {
	min-width: 150px;
	outline: none;
	border: solid 1px #B2B2B8;
	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: pointer;
	padding: 0;
	margin: 0;
	text-decoration:none;
}

.selectBox-options LI A {
	line-height: 1.5;
	padding: 4px 0px 4px 16px;
	white-space: nowrap;
	overflow: hidden;
	background: 6px center no-repeat;
}

.selectBox-options LI.selectBox-hover A {
	background-color: #EEE;
}

.selectBox-options LI.selectBox-disabled A {
	color: #888;
	background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
	background-color: #CCC;
}

.selectBox-options .selectBox-optgroup {
	color: #FB8716;
	background: #EEE;
	font-weight: bold;
	line-height: 20px;
	padding: 0 10px 0 16px;
	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;
}