/* GREY */

.grey .selectBox-dropdown {
	background : #e8e8e8;
	border : none;
}

.grey .selectBox-dropdown .selectBox-label {
	color : gray;
}

.grey .selectBox-dropdown .selectBox-arrow {
	background : #e8e8e8 url('../img/ui/ico_arrow-down.png') 50% center no-repeat
}


/* Dropdown control */
.selectBox-dropdown {
	padding-right: 40px;
	position: relative;
	border: 1px solid #e3e3e3;
	line-height: 1.5;
	text-decoration: none !important;
	color: #666;
	outline: none;
	vertical-align: middle;
	display: inline-block;
	cursor: default;
    margin-bottom: 5px;
    cursor: pointer;
    background: white;
    -webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
	border-color: silver;
}

.selectBox-dropdown .selectBox-label {
    width: 100%;
	padding: .2em .3em;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
    padding: 5px;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 80%;
    margin-top: 3px;
	background: white url('../img/ui/ico_arrow-down.png') 50% center no-repeat;
	border-left: 1px solid #e3e3e3;
    margin-left: 5px;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	border: solid 1px #BBB; /* should be the same border width as .selectBox-dropdown */
	background: #FFF;
	-moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	overflow: auto;
    width: 200px;
    cursor: pointer;
}


/* Inline control */
.selectBox-inline {
	width: 250px;
	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: pointer;
	padding: 0;
	margin: 0;
}

.selectBox-options li a {
	line-height: 1.5;
	padding: 0 .5em;
	white-space: nowrap;
	overflow: hidden;
	background: 6px center no-repeat;   
    color: #666;
    text-decoration: none;
}

.selectBox-options li.selectBox-hover a {
	background: #a02842;
    color: white;  
    text-decoration: none;
}

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

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

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