/**
* Stylish Select 0.4.6 - $ plugin to replace a select drop down box with a stylable unordered list
* http://github.com/scottdarby/Stylish-Select/
* 
* Copyright (c) 2009 Scott Darby
* 
* Requires: jQuery 1.3 or newer
* 
* Dual licensed under the MIT and GPL licenses.
*/

/**
* Hide lists on page load
---------------------------------------------------------*/

.stylish-select .SSContainerDivWrapper {
	left:-9999px;
}

/*
* Red example
---------------------------------------------------------*/
.stylish-select .SSContainerDivWrapper {
	margin:0;
	padding:0;
	width:290px;
	position:absolute;
	top:22px;
	left:0;
	z-index:2;
}
ul.newList * {
	margin:0;
	padding:0;
}
ul.newList {
	margin:0;
	padding:0;
	list-style:none;
	color:#000;
	background:#fff;
	border:1px solid #ccc;
	/*overflow:auto;*/
}
.SearchSpecialtyList ul.newList, .SearchLanguagesList ul.newList {
	overflow:auto;
}
ul.newList a {
	color: #000;
	text-decoration:none;
	display:block;
	padding:3px 8px;
}
.newListSelected {
	width:285px;
	color:#000;
	height:19px;
	padding:3px 0 0 6px;
	float:left;
	background:url(select-bg.png) no-repeat;

}
ul.newList li a:focus {
	-moz-outline-style: none;
}
.selectedTxt {
	width:258px;
	overflow:hidden;
	height:16px;
	padding:0 23px 0 0;
}
.hiLite {
	background:none repeat scroll 0 0 #D1CBE4 !important;
	color:#492F92 !important;
}
.hiLite a{
	background:#D1CBE4 !important;
	color:#492F92 !important;
}
.newListHover {
	background:#D1CBE4 !important;
	color:#000 !important;
	cursor:default;
}
.newListDisabled {
    color: #D7D7D7!important;
}

.newListSelHover, .newListSelFocus {
	background-position:0 -30px;
	cursor:default;
}
.newListOptionTitle {
	font-weight:bold;
}
.newListOptionTitle ul {
	margin:3px 0 0;
}
.newListOptionTitle li {
	font-weight:normal;
	border-left:1px solid #ccc;
}
.newListSelected .selectedTxt {
	font-size:10px !important;
}