/* Dropdown control */
.selectBox-dropdown {
    width: 158px;
    position: relative;
    color: #c7c7c7;
    height: 32px;
	line-height: 32px;
	text-indent: 10px;
    text-decoration: none;
    text-align: left;
    background: #003399;
	background: url(combonav_03.png) no-repeat 0 0;
    outline: none;
    vertical-align: middle;
    font-size: 13px;
    display: inline-block;
    cursor: pointer;
    margin-top: -5px;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
    border-color: #80c4f7;
}

.selectBox-dropdown.selectBox-menuShowing {
    
}

.selectBox-dropdown .selectBox-label {
   
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 23px;
    height: 100%;
    background: none;
    
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    min-height: 1em;
    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;
    -webkit-overflow-scrolling: touch;
}

/* Inline control */
.selectBox-inline {
    min-width: 150px;
    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{
z-index: 100;
padding-bottom: 10px;
background: #FFFFFF;
box-shadow: 1px 1px 1px #666;
padding-top: 5px;
padding-left: 0px;
border: none;
min-width:107px;
}

.selectBox-options LI{
height: 26px;
clear: both;
width: 100%;
}

.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;
    margin: 0;
	
}

.selectBox-options LI A {
   
   
    white-space: nowrap;
    overflow: hidden;
  
	cursor: pointer;
	
	color: #666666;
border-bottom: none;
display: block;
height: 26px;
line-height: 26px;
padding-left: 10px;

}

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

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

.selectBox-options LI.selectBox-selected A {
   
}

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