/* Dropdown control */
.selectBox-dropdown {
	position: relative;
    padding: 4px 6px;
    margin-right: 18px;
    font-size: 1em;
	text-decoration: none !important;
	color: #000000 !important;
	outline: none;
	vertical-align: middle;
	background: url("Images/bgDropDownTan.gif") top left no-repeat;
	display: inline-block;
	cursor: default;
}

.ddlOrange 
{
	background: url("Images/bgDropDownOrange.gif") top left no-repeat;    
}

.ddlWhite
{
	background: url("Images/bgDropDownWhite.gif") top left no-repeat;    
}


.selectBox-dropdown .selectBox-label {
	float: left;
	white-space: nowrap;
	overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0px;
	right: -18px;
	width: 18px;
	height: 23px;
	background: url("Images/DropArrowTan.gif") top right no-repeat;
}

.ddlOrange .selectBox-arrow
{
	background: url("Images/DropArrowOrange.gif") top right no-repeat;    
}

.ddlWhite .selectBox-arrow
{
	background: url("Images/DropArrowWhite.gif") top right no-repeat;    
}

/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	background-color: #DCD5C8;
	overflow: auto;
}

/* Inline control */
.selectBox-inline {
	width: 250px;
	outline: none;
	border: solid 1px #BBB;
	background: #FFF;
	display: inline-block;
	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;
	text-decoration: none;
}

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

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

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

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

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