/* Dropdown control */
.selectBox-dropdown {
    width: 130px !important;
    position: relative;
    border: solid 1px #CCC;
    text-decoration: none;
    text-align: left;
    color: #000;
    outline: none;
    vertical-align: middle;
    background: #FFF;
    display: inline-block;
    cursor: default;
    font-family: 'Open Sans', sans-serif;
    font-weight:300;
    font-size:16px;
    margin: 5px 0 10px;
}



.selectBox-dropdown .selectBox-label {
    padding: 5px 7px 0px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    margin:1px 2px 0 0;
    width: 28px;
    height: 28px;
    background: url(/images/drop-down.png) 50% center no-repeat;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
	top:700px;
    position: absolute;
    z-index: 99999;
    
    min-height: 1em;
    border: solid 1px #CCC; /* should be the same border width as .selectBox-dropdown */
    background: #FFF;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* Options */
.selectBox-options,
.selectBox-options li,
.selectBox-options li a {
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight:300;
    font-size:16px;
}
.selectBox-options li a {
	padding: 5px 0;
}
.selectBox-options li a {
    line-height: 1.5;
    padding: 5px .5em;
    white-space: nowrap;
    overflow: hidden;
    background: 6px center no-repeat;
}

.selectBox-options li.selectBox-hover a {
    background-color: #A3195B;
    color:#FFF;
}
