.selectBox-dropdown, select.select-box {
  background-color: #bcbcbc;
  border: 0 solid #4e4e4d;
  line-height: 1.2;
  outline: medium none;
  padding: 0 20px;
  position: relative;
  text-decoration: none;
  vertical-align: middle;
  width: 100%;
}
.selectBox-dropdown:focus{   border: 0px solid #4e4e4d; }
.selectBox-dropdown .selectBox-label {
  color: #646463;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 24px;
  overflow: hidden;
  text-align: left;
  text-transform: lowercase;
  white-space: nowrap;
}
.selectBox-dropdown .selectBox-arrow {
	background:url(../images/select-arrow.png) 0% 50% no-repeat;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width:22px;
}
/* Dropdown menu */
.selectBox-dropdown-menu {
  background:#bcbcbc;
  border: 1px solid #c2c2c2;
  border-radius: 3px;
  box-shadow: 0 0 3px #c1c1c1;
  margin-top: 6px !important;
  max-height: 200px;
  overflow: auto;
  position: absolute;
  text-transform: capitalize;
  z-index: 99999;
}
/* 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 {
  color: #000000;
  cursor: default;
  display: block;
  font-size: 16px;
  line-height: 45px;
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.selectBox-options LI A {
  line-height: 26px;
  overflow: hidden;
  padding: 0 0.5em;
  white-space: nowrap;
}

.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: #f2f2f2;
}

.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;
}
 