/* Dropdown control */
.selectBox-dropdown {
    min-width: 150px;
    position: relative;
 	border:2px solid #251b11;
    height:40px;
    text-decoration: none;
    text-align: left;
    color: #772710;
    outline: none;
    vertical-align: middle;
    background: #e3dbcf;
    display: block !important;
    cursor: default;
	font-size:22px;
	line-height:30px;
	box-shadow:3px 3px 3px rgba(0,0,0,.5);
	margin-top: 4px;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
	border: 4px solid #49392A;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 5px #ecbc8d, 0 0 9px #ecbc8d, 0 0 9px #ecbc8d;
/*	border: solid 2px #6e2413; */
}

.selectBox-dropdown.selectBox-menuShowing-bottom {
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.selectBox-dropdown.selectBox-menuShowing-top {
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.selectBox-dropdown .selectBox-label {
    padding: 2px 50px 2px 0;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    margin-left: 8px;
    width: 100% !important;
    text-overflow: ellipsis;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 100%;
    background: url(../images/select_icon.jpg) 50% center no-repeat;
    border-left: solid 1px #BBB;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 300px;
    min-height: 1em;
	border:2px solid #251b11;
	background-image: url('../images/sidebarBackground.jpg');

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

	font-size:22px; 
	padding:8px 0 !important;

}

/* Inline control */
.selectBox-inline {
    min-width: 150px;
    outline: none;
    border: solid 1px #BBB;
    background-image: url('../images/sidebarBackground.jpg');
    display: inline-block;
    overflow: auto;
    color: #772710;
    font-size:22px; 
}

.selectBox-inline:focus {
    border-color: #666;
}

/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
	color:#ece2d8;
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;    
    margin: 0;
	font-weight:100;
	text-shadow:1px 1px 0 #000;
	text-overflow:ellipsis;
}

.selectBox-options LI{
	
    margin: 0 8px;
}

.selectBox-options.selectBox-options-top{
    border-bottom:none;
}
.selectBox-options.selectBox-options-bottom{
	border-top: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 {
border-bottom:2px solid #251b11;
}

.selectBox-options LI:first-child{
	border-top:none;
}

.selectBox-options LI:last-child{
	border-bottom:none;
}



.selectBox-options LI.selectBox-hover A {
    background-color: rgba(255,255,255,.15);
}

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

.selectBox-options LI.selectBox-selected A {
    background-color: rgba(255,255,255, .15);
}

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