/* CORE - DO NOT CHANGE */

/* AS SELECT */
.jquery-selectbox {
	position: relative;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	*z-index: 5;
	*width: 100px;
	user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}
.jquery-selectbox input {
	position: absolute;
	height: 1px;
	width: 1px;
	border: 0px;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
	left: -1px;
	text-indent: -5000px;
}
.jquery-selectbox-text {
	overflow: hidden;
	user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}
.jquery-selectbox-toggle {
	overflow: hidden;
}
.jquery-selectbox ul {
	position: absolute;
	z-index: 9999;
	top: 100%;
	left: 0px;
	margin: 0px;
	width: auto;
	list-style: none;
	max-height: 300px;
	overflow-y: auto;
	overflow-x: hidden;
	display: none;
}
.jquery-selectbox ul li {
	display: block;
	list-style: none;
	width: auto;
	user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}

/* AS LIST */
.jquery-selectbox.jquery-selectbox-list {
	
}
.jquery-selectbox.jquery-selectbox-list ul{
	position: relative;
	display: block;
	top: 0px;
}

/* DESIGN - DEFAULT */
.jquery-selectbox {
	height: 14px;
	padding: 0px;
	height: 18px;
	border: 1px solid #dddddd;
	border-left: 2px solid #999999;
	border-top: 2px solid #999999;
	cursor: default;
	vertical-align: top;
	white-space: nowrap;
}

.jquery-selectbox-text {
	padding: 1px 12px 1px 1px;
	height: 14px;
	border: 0px;
	background: transparent;
	cursor: default;
	margin: 1px;
	
	display: block;
	margin-right: 16px;
}

.jquery-selectbox-focus .jquery-selectbox-text {
	border: 1px dotted #666666;
	margin: 0px;
	margin-right: 16px;
	padding: 1px 11px 1px 1px;
}
.jquery-selectbox-toggle {
	width: 16px;
	height: 18px;
	position: absolute;
	top: 0px;
	right: 0px;
}

.jquery-selectbox ul {
	left: -2px;
	margin: 1px -2px 0px 0px;
	border: 1px solid #000000;
	border-top-color: #999999;
	border-left-color: #999999;
	list-style: none;
	padding: 0px;
	background: white;
}
.jquery-selectbox ul li {
	padding: 1px 1px 1px 1px;
	margin: 0px;
}
.jquery-selectbox ul li:hover,
.jquery-selectbox ul li.jquery-selectbox-selected,
.jquery-selectbox ul li.jquery-selectbox-selected.jquery-selectbox-disabled  {
	background: #0A246A;
	color: white;
}
.jquery-selectbox ul li.jquery-selectbox-label {
	font-weight: bold;
	font-style: italic;
	background: white;
	color: black;
}
.jquery-selectbox ul li.jquery-selectbox-grouped {
	padding-left: 20px;
}
.jquery-selectbox ul li.jquery-selectbox-disabled {
	background: white;
	color: #666666;
}
.jquery-selectbox.jquery-selectbox-disabled {
	background: #efefef;
	color: #777777;
}
.jquery-selectbox-disabled .jquery-selectbox-toggle {
	opacity: 0.5;
	filter:alpha(opacity=50);
}

/* RIGHT TO LEFT LANGUAGES */
[dir=rtl]  .jquery-selectbox ul {
	left: auto;
	right: 0px;
}
[dir=rtl] .jquery-selectbox ul li.jquery-selectbox-grouped {
	padding-left: auto;
	padding-right: 20px;
}
[dir=rtl] .jquery-selectbox-text { 
	margin: 1px;
	margin-left: 24px;
	padding-right: 12px;
}
[dir=rtl] .jquery-selectbox-toggle { 
	right: auto;
	left: 0px;
}
[dir=rtl] .jquery-selectbox-focus .jquery-selectbox-text {
	margin-right: 0px;
}
