/* Dropdown control */
.selectBox-dropdown {
    min-width: 154px;
    position: relative;
    text-decoration: none;
    text-align: center;
    outline: none;
    vertical-align: middle;
    height: 33px;
    display: inline-block;
    background: white;
    color:white;
    font-size: 14px;
    line-height: 40px;
    cursor: pointer;
    border:1px solid black;


}
.selectBox-dropdown:hover {text-decoration: none}

.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-dropdown .selectBox-label {
    padding: 0 8px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    color:white;
}
.selectBox-label {float:left;color:#343434;font-size: 14px;line-height: 33px;height: 33px;padding-left:15px;text-align: left}
.selectBox-dropdown .selectBox-arrow {
    display: block;
    width: 10px;
    height:7px;
    background: url('selectBox-arrow.png') no-repeat center center;
    position: absolute;
    right:10px;
    top:14px;

}

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


/* Options */
.selectBox-options,
.selectBox-options li,
.selectBox-options li a {
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;
    margin: 0;
    text-align: left;

}
.selectBox-options {background:white;font-size: 14px;/*width:224px!important;*/color:#343434;border: 1px solid black}
.selectBox-options li {font-size: 14px;}
.selectBox-options li + li {border-top:1px solid black}

.selectBox-options.selectBox-options-top{
    border-bottom:none;
	margin-top:1px;
	-moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.selectBox-options.selectBox-options-bottom{
	border-top:none;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.selectBox-options li a {
    white-space: nowrap;
    display: block;
    font-size: 14px;
    color:#343434;
    padding:7px 10px;
}

.selectBox-options li.selectBox-hover a {
    color:black;
    cursor: pointer;
    text-decoration: none;
    background: #f4f4f4;
}

.selectBox-options li.selectBox-disabled a {
    color: #888;
    background-color: transparent;
}

.selectBox-options li.selectBox-selected a {
    color:black;
}

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

.selectBox-inline.selectBox-disabled {
    color: #888 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
    background-color: transparent !important;
}
