/* Dropdown control */
.selectBox-dropdown {
	#position: relative;
	overflow: hidden;
	min-width: 90%;
	#max-width: 363px;
	text-align: left;
	outline: none;
	cursor: default;
	
	border-radius: 3px;
    background-color: #FFF;
    border: 1px solid #BBB;
    box-sizing: border-box;
    padding: 16px 40px 16px 16px;
    height: 57px;
    width: 100%;
    outline: medium none;
    display: block;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {

}

.selectBox-dropdown .selectBox-label {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
	white-space: nowrap;
	color: #333;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 24px;
	right: 14px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 7px 5.5px 0 5.5px;
	border-color: #717171 transparent transparent transparent;
	content: '';
}

/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	overflow: auto;
	background-color: #f5f5f5;
	max-height: 200px;
	min-height: 1em;
	 -webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #d8e0e2;
	-webkit-overflow-scrolling: touch;
	z-index: 99999;
}

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

.selectBox-options li {
	padding: 0 10px;
}
.selectBox-options li.selectBox-hover {
	background-color: #e9eff0;
}
.selectBox-options li.selectBox-selected {
	background-color: #e9eff0;
}
.selectBox-options li a {
	overflow: hidden;
	padding: 7px 0 6px;
	text-decoration: none;
	/*white-space: nowrap;*/
	border-top: 1px solid #eee;
	color: #555;
}
.selectBox-options li:first-child a:first-child {
	border: 0;
}


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

.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;
}