.selectBox-dropdown, .selectBox-options {
    font-family: 'Lato', sans-serif; 
}

/* Dropdown control */

.selectBox-dropdown {
    /*min-width: 150px;*/
    position: relative;
    line-height: 1;
    padding: 0;
    text-decoration: none;
    text-align: left;
    color: #000;
    outline: none;
    vertical-align: middle;
    display: inline-block;
    cursor: default;
    background: #dcf1f6; /* Light blue */
}

#secondary a.selectBox-dropdown:link, #secondary a.selectBox-dropdown:active, #secondary a.selectBox-dropdown:visited, .selectBox-options LI A {
    color: #000;
}
  
#secondary a.selectBox-dropdown:hover {
    color: #000;
    background-color: #7dd1e1; /* Blue */
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
}

.selectBox-dropdown.selectBox-menuShowing {
}

.selectBox-dropdown .selectBox-label {
    /*padding: 2px 8px;*/
    padding: .45em .5em .4em .5em;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 23px;
    height: 100%;
    background: url(../images/arrow_select.png) 50% center no-repeat;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    min-height: 1em;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    color: #000;
    background-color: #7dd1e1; /* Blue */
}

/* Inline control */
.selectBox-inline {
    min-width: 150px;
    outline: none;
    display: inline-block;
    overflow: auto;
}

.selectBox-inline:focus {
    border-color: #666;
}

/* Options */

.selectBox-options li:first-child a {
    padding-top: .5em;
}

.selectBox-options li:last-child a {
    padding-bottom: .5em;
}

.selectBox-options LI {
    border-bottom: 1px solid #dcf1f6; 
}

.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;
    margin: 0;
}

.selectBox-options LI A {
    line-height: 1.5;
    padding: .25em .5em;
    /* Make the links wrap */
    white-space: normal;
    overflow: hidden;
    background: 6px center no-repeat;
}

.selectBox-options LI.selectBox-hover A, .selectBox-options LI.selectBox-selected A {
    color: #000;
    background-color: #d1d3d4; /* Light grey */
}

.selectBox-options LI.selectBox-disabled A {
    color: #888;
    background-color: transparent;
}

.selectBox-options .selectBox-optgroup {
    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;
}