/* Dropdown control */
.selectBox-dropdown {
    width: 100% !important;
    height: 56px;
    background: #f4f4f4;
    border: none;
    border-radius: 0;
    box-shadow: none;
    -webkit-appearance:none;
    outline: none !important;
    padding: 0 18px;
    padding-right: 50px;
    color: #494b46;
    font-size: 1.6em;
    font-family: 'vauxhalllight';
    font-weight: normal;
    line-height: 56px;
    min-width: 150px;
    position: relative;
    border: none;
    line-height: normal;
    text-decoration: none;
    text-align: left;
    outline: none;
    vertical-align: middle;
    display: block;
    cursor: pointer;
}

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

.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 {
    display: block;
    height: 56px;
    line-height: 56px;
    overflow: hidden;
    padding: 0;
    white-space: nowrap;
    text-decoration: none;
    width: 100% !important;
}
.selectBox-dropdown .selectBox-label a {
    color: #494b46 !important;
}

.selectBox-dropdown .selectBox-arrow {
    background: url('../images/selectbox.png') no-repeat center 23px;
    border-left: none;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
}
.selectBox-menuShowing .selectBox-arrow {
    background: url('../images/selectbox.png') no-repeat center -48px;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    background: #ffffff;
    border: none;
    box-shadow: none;
    max-height: none;
    min-height: 1em;
    overflow: auto;
    position: absolute;
    z-index: 99999;
    border-radius: 0 !important;
    box-sizing: border-box;
}

/* 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 {
    border-bottom: 1px solid #f4f4f4;
    border-left: 1px solid #f4f4f4;
    border-right: 1px solid #f4f4f4;
}
.selectBox-options li:first-child {
    display: none;
}
.selectBox-options li a {
    height: 50px;
    padding: 0 18px;
    white-space: nowrap;
    overflow: hidden;
    background: none;
    color: #494b46;
    font-size: 1.6em;
    font-family: 'vauxhalllight';
    font-weight: normal;
    line-height: 50px;
    text-decoration: none !important;
	cursor: pointer;
}
.selectBox-options li a:hover {
    color: #ffffff;
    background: #831f82;
}

.selectBox-options li.selectBox-hover a {
    background-color: #831f82;
}

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

.selectBox-options li.selectBox-selected a {
    background-color: #831f82;
    color: #ffffff;
}

.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;
}
.form-group a:hover, .form-group a:focus {
    color: inherit;
    text-decoration: none;
}