select{color: #999999;
    background: #F6F6F6;
    outline: 0px;
    border: 0px;
    border-radius: 6px;
    padding: 15px 20px 15px 18px;
    font-size: 16px;
    letter-spacing: 0px;
    color: #333333;
    border: 1px solid #F6F6F6;
    width: 100%;
    -webkit-appearance: none;
	}
	.selectBox-options li{ width:100%; float:none; display:block;}
	.selectBox-options li a{color: #333333;}
/* Dropdown control */
.selectBox-dropdown {
color: #999999;
    background: #F6F6F6;
    outline: 0px;
    border: 0px;
    border-radius: 6px;
    padding: 12px 20px 12px 18px;
    font-size: 18px;
    letter-spacing: 0px;
    color: #333333;
    border: 1px solid #F6F6F6;
    width: 100% !important;
    -webkit-appearance: none;
    position: relative;
	line-height: normal;
    text-decoration: none;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    cursor: default;
}
.selectBox-dropdown:focus{border-color: #056DAE;-webkit-transition: all 0.30s ease-in-out;-moz-transition: all 0.30s ease-in-out;-ms-transition: all 0.30s ease-in-out;-o-transition: all 0.30s ease-in-out;}
.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
    border-color: #056DAE;
}

.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 0;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
	width:100% !important;
}


.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 20px;
    width: 15px;
    height: 100%;
	background-size: 15px 8px;
	background-repeat:no-repeat;
	background-position:0 center;
    background-image: url(../images/jquery.selectBox-arrow_2x.png);
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    min-height: 1em;
    border: solid 1px #056DAE; /* should be the same border width as .selectBox-dropdown */
    background: #F6F6F6;
    -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,
.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;
	-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 {
    line-height: 1.5;
    padding: 0 .5em;
    white-space: nowrap;
    overflow: hidden;
    background: 6px center no-repeat;
}

.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: #C8DEF4;
}

.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;
}
@media(max-width:376px){
	.selectBox-dropdown{ font-size:14px; }
}
@media(max-width:359px){
	.selectBox-dropdown{ font-size:12px; padding:12px 15px; }
	.selectBox-dropdown .selectBox-arrow{ right:15px; }
}