/* Dropdown control */
.selectBox-dropdown {
    min-width: 150px;
    position: relative;
    outline: none;
    vertical-align: middle;
    display: inline-block;
    cursor: default;
}

.selectBox-dropdown .selectBox-label {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    min-height: 1em;
    border: solid 1px #ccc; /* should be the same border width as .selectBox-dropdown */
    background: #FFF;
    -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;
}

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

.selectBox-options.selectBox-options-top {
    border-bottom: none;
	margin-top: 1px;
}
.selectBox-options.selectBox-options-bottom {
	border-top: none;
}

.selectBox-options li {
	border-bottom: 1px solid #f0f0f0;
}
.selectBox-options li a {
	position: relative;
    white-space: nowrap;
    overflow: hidden;
}

.selectBox-options li.selectBox-hover a {
    background-color: #3e4545;
	color: #fff;
}

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

.selectBox-options LI.selectBox-selected a {
    background-color: #f0f0f0 !important;
	color: #666 !important;
}

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

/* Disabled state */
.selectBox.selectBox-disabled .selectBox-label, 
.selectBox.selectBox-disabled .selectBox-options li a {
    color: #ccc !important;
}

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

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

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

.selectBox-options li a:after {
	content: "\e616";
	position: absolute;
	top: 0;
	right: 12px;
	line-height: 36px;
	font-size: 18px;
	color: #f0f0f0;
}
.selectBox-options li.selectBox-hover a:after,
.selectBox-options li.selectBox-selected a:after {
	color: #fff;
}
.selectBox.selectBox-dropdown {
    margin: 0;
    background-color: #fff;
	cursor: pointer;
	border: 1px solid #dedede;
	line-height: inherit;
}
.selectBox.selectBox-dropdown:hover {
	border-color: #ccc;
}
.selectBox-dropdown .selectBox-label,
.selectBox-options li a {
	overflow: visible !important;
    height: 100%;
    padding: 8px 12px;
    color: #3e4545;
    font-family: "helvetica_neue55_roman";
    font-size: 14px;
    line-height: 20px;
}
.selectBox-dropdown .selectBox-arrow {
    font-size: 18px;
}

.selectBox-dropdown .selectBox-arrow:before {
    width: auto;
    padding: 0 10px;
    color: #dedede;
    line-height: 36px;
}
.selectBox.selectBox-dropdown:hover .selectBox-arrow:before, .selectBox-menuShowing .selectBox-arrow:before {
    color: #ccc;
}
.selectBox-options li a {
    text-decoration: none;
}
.selectBox-options li a:hover {
	border: none;    
}

/* Accented */
.selectBox-options.accented li a:after {
	color: #a2ad00;
}
.selectBox-dropdown.accented .selectBox-arrow:before {
	color: #a2ad00 !important;
}
.selectBox.selectBox-dropdown.accented,
.selectBox-dropdown-menu.accented-selectBox-dropdown-menu {
	border-color: #a2ad00;
}
.selectBox-options.accented-selectBox-dropdown-menu li.selectBox-hover a {
	background: #a2ad00;
}