/* Dropdown control */
.selectBox-dropdown {
    min-width: 150px;
    position: relative;
    line-height: 1.5;
    text-decoration: none;
    text-align: left;
    color: #1a704f;
    outline: none;
    vertical-align: middle;
    background: #e2f2df;
    background: -moz-linear-gradient(top, #e2f2df 1%, #2D6D20 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #e2f2df), color-stop(100%, #e2f2df));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e2f2df', endColorstr='#e2f2df', GradientType=0);
    -moz-box-shadow: 0 1px 0 #e2f2df;
    -webkit-box-shadow: 0 1px 0 #e2f2df;
    box-shadow: 0 1px 0 #e2f2df;
    display: inline-block;
    cursor: default;
    height: 44px;
    width:100% !important;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
    border-color: #e2f2df;

}

.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;
    border: 1px solid #1a704f;
}

.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;
    border: 1px solid #1a704f;
}

.selectBox-dropdown .selectBox-label {
    padding: 12px 8px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    /*height: 44px;*/
    border: 1px solid transparent;
    min-width: 75%;
    

}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 100%;
    background: url(jquery.dropdown.arrow.png) 50% center no-repeat;
    color:#1a704f;   
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    border: 1px solid #1a704f;
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    min-height: 1em;
    color:#1a704f !important;
    background: #e2f2df;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    
}

/* Inline control */
.selectBox-inline {
    min-width: 150px;
    outline: none;
    
    background: #e2f2df;
    display: inline-block;
    overflow: auto;
}

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

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

.selectBox-options.selectBox-options-top{
    border-bottom:none;
	margin-top:1px;
}
.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;
    color:#1a704f;
    text-decoration: none;
    height: 23px !important;
    
}

.selectBox-options LI.selectBox-hover A {
    background-color: #1a704f;
    color:white !important;
}

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

.selectBox-options LI.selectBox-selected A {
    background-color: #1a704f;
    color:white !important;
}

.selectBox-options .selectBox-optgroup {
    color: #1a704f;
    background: #EEE;
    font-weight: bold;
    line-height: 1.5;
    padding: 0 .3em;
    white-space: nowrap;
}

/* Disabled state */
.selectBox.selectBox-disabled {
    color: #1a704f;
    background: #fafafa;
    cursor: not-allowed;
    width:100%;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
    opacity: .5;
    filter: alpha(opacity=50);
    border-color: #1a704f;
}

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

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