/* Dropdown control */

.selectBox-dropdown {
	width: 150px !important;
	height: 26px;
	text-decoration: none;
	color: #012146;
	font-size: 14px;
	outline: none;
	vertical-align: middle;
	cursor: default;
	background: url(../images/jquery.selectBox-bg.jpg) repeat-x;
	margin-bottom: 10px;
	display: inline-block;
	position: relative;
	z-index: 5;
	top: 0;
	left: 0;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
}

.selectBox-dropdown.selectBox-menuShowing {
}

.selectBox-dropdown .selectBox-label {
	width: 100%;
	display: inline-block;
	padding: 4px 8px;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	z-index: 5;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 14px;
	margin-right: 8px;
	height: 100%;
	background: url(../images/jquery.selectBox-arrow.jpg) 50% center no-repeat;
}


/* Dropdown menu */
.selectBoxUlWrapper {
	position: relative;
	z-index: 99998;
}

.selectBox-dropdown-menu {
	position: absolute;
	top: -10px;
	left: 0;
	z-index: 99999;
	max-height: 180px;
	overflow: auto;
	background: #8098b0;
	width: 100%;
}


/* Inline control */
.selectBox-inline {
	width: 75px;
	height: 26px;
	outline: none;
	background: url(../images/jquery.selectBox-bg.jpg) repeat-x;
	display: inline-block;
	overflow: auto;
	padding: 4px 8px;
}
.selectBox-inline:focus {
}

/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
	list-style: none;
	display: block;
	cursor: default;
	padding: 0;
	margin: 0;
	text-decoration: none;
	color: #012146;
}

.selectBox-options LI A {
	line-height: 1.5;
	padding: 0 .5em;
	white-space: nowrap;
	overflow: hidden;
	text-decoration: none;
}
.selectBox-options LI.selectBox-hover A,
.selectBox-options LI.selectBox-selected A {
	background: url(../images/jquery.selectBox-bg.jpg) repeat-x;
}
.selectBox-options LI.selectBox-disabled A {
	color: #888;
	background-color: transparent;
}
.selectBox-options .selectBox-optgroup {
	color: #666;
	background: #8098b0;
	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;
}