/* Dropdown control */
.selectBox-dropdown {
	position: relative;
	text-decoration: none;
	outline: none;
	display: inline-block;
	cursor: default;
	background: #fff;
	border: 1px solid #C9C9C9;
    width: 70% !important;
}

#cities .selectBox-arrow	{
    background: url("/images/arrow-bg.png") 0 0 no-repeat #fff;
	width: 16px;
}

a.select-styled2 {
    display: inline-block;
    vertical-align: middle;
    font: 18px 'Cuprum', Arial, Tahoma, Verdana, sans-serif;
    font-weight: 700;
    cursor: pointer;
    color: #000;
    width: auto !important;
    padding-right: 11px;
    height: 22px;
}

a.selectBox-styled:hover,
a.selectBox-styled:focus {
	border-bottom: 1px solid #fff;
}

.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 span.selectBox-label {
	color: #2C2218;
	font-family: tahoma;
	font-size: 12px;
	font-variant: normal;
	text-decoration: none;
}

a.selectBox-dropdown:hover	{
	font-weight: normal;
}

.selectBox-dropdown .selectBox-label {
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
}

a.selectBox-dropdown .selectBox-label {
	padding: 2px 0px 0px 8px;
}

.selectBox-dropdown .selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 11px;
	height: 100%;
}

a.select-styled .selectBox-arrow,
a.select-styled2 .selectBox-arrow {
    top: 3px;
    right: 5px;
    width: 17px;
    height: 17px;
    background: url("/images/arrow.png") 0 0 no-repeat;
}

a.select-styled2 .selectBox-arrow {right: 0;}

/* Dropdown menu */
.selectBox-dropdown-menu {
	position: absolute;
	z-index: 99999;
	min-height: 1em;
}

ul.selectBox-dropdown-menu {
	max-height: 200px;
	min-height: 1em;
	overflow: auto;
	position: absolute;
	z-index: 99999;
	background: #fff;
	border: 1px solid #dedede;
	border-radius: 3px 3px 3px 3px;
	padding: 6px 0;
}

ul.select-styled-selectBox-dropdown-menu {
    border-color: #d1d1d1;
    border-top: none;
    border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
    -webkit-border-radius: 0 0 3px 3px;
    -khtml-border-radius: 0 0 3px 3px;
    font-size: 14px;
}

ul.select-styled2-selectBox-dropdown-menu {
    width: auto !important;
    border: none;
    font-size: 14px;
    font-weight: 700;
}


ul.selectBox-dropdown-menu li {
	margin-bottom: 1px;
}


/* Inline control */
.selectBox-inline {
	outline: none;
	display: inline-block;
	overflow: auto;
}

/* Options */
.selectBox-options,
.selectBox-options li {
	list-style: none;
	display: block;
	cursor: default;
	padding: 0;
	margin: 0;
}

.selectBox-options li a {
	line-height: 1.5;
	padding: 0 .5em;
	white-space: nowrap;
	overflow: hidden;
}

ul.selectBox-dropdown-menu li a {
	display: block;
	background: none;
	cursor: pointer;
	line-height: normal;
	padding: 3px 4px;
	color: #2C2218;
	font-family: tahoma;
	font-size: 12px;
	font-variant: normal;
	text-decoration: none;
}

ul.select-styled-selectBox-dropdown-menu li a {
	padding: 3px 4px 5px 10px;
}

ul.select-styled2-selectBox-dropdown-menu li a {
    padding: 3px 10px 5px 10px;
}

ul.selectBox-dropdown-menu li a:hover {
	background: #e1e1e1;
	text-decoration: none;
	font-weight: normal;
}


.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: 0.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;
}