/* Dropdown control */
.selectBox-dropdown {
	background: url("../images/serch-place-selcet-bg.png") repeat-x 0 0;
	padding: 2px 14px 2px 10px;
	color: #838383;
	font-size: 11px;
	font-weight: bold;
	margin: 5px 0 0;
	cursor: pointer;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	position: relative;
	width: 139px;
	z-index: 999;
}

a.selectBox-dropdown {
	color: #333;
	height: 18px;
	overflow: hidden;
}

.selectBox-dropdown.selectBox-menuShowing {
	-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-label {
	color: #838383;
	overflow: hidden;
        padding-right: 30px;
	line-height: 16px;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 32px;
	height: 100%;
	background: url("../images/select-down-arrow.png") no-repeat 50% 50%;
	-webkit-border-radius: 0 2px 2px 0;
	-moz-border-radius: 0 2px 2px 0;
	border-radius: 0 2px 2px 0;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	max-height: 200px;
	min-height: 1em;
	border: 1px solid #ccc;
	border-top: 0 none;
	background: #fff;
	overflow: auto;
	width: auto !important;
	min-width: 162px;
}


/* Inline control */
.selectBox-inline {
	min-width: 150px;
	outline: none;
	border: solid 1px #ccc;
	background: #fff;
	display: inline-block;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	overflow: auto;
}

.selectBox-inline:focus {
	border-color: #e5f6fc;
}


/* Options */
.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: 5px;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	background: 6px center no-repeat;
	color: #666;
}

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

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

.selectBox-options li.selectBox-selected a {
	background-color: #CCFAD6;
}

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