/*
Stylish Select 0.3 - jQuery plugin to replace a select drop down box with a stylable unordered list
http://scottdarby.com/

Copyright (c) 2009 Scott Darby

Requires: jQuery 1.3

Licensed under the GPL license:
http://www.gnu.org/licenses/gpl.html




http://www.scottdarby.com/2009/05/jquery-plugin-stylish-select-unobstrusive-select-box-replacement/
*/


/*==================================
remove default focus style
====================================*/
:focus {outline:none;}

.js ul.newList {left:-9999px;}

/*==================================
red curvy example
====================================*/
ul.newList * {
	margin:0;
	padding:0;
	max-height: 300px;
}

ul.newList {
	margin:0; 
	padding:0; 
	list-style:none; 
	color:#6F5640;
	width:232px; 
	background:#fff; 
	position:absolute;  
	border:1px solid #ccc; 
	top:22px; 
	left:0; 
	overflow:auto; 
	z-index:9999;
}

.newListSelected {
	width:227px; 
	color:#6F5640;
	height:21px; 
	padding: 8px 0 0 6px; 
	float:left; 
	background:url(../images/dropdown.gif) top right no-repeat;
	border: 1px solid #7A6049;
	border-top: none;
	font-family: Arial, sans-serif;
	font-size: 12px;
	margin-bottom: 10px;
	margin-top: -5px;
}

#searchbox .newListSelected {
	width: 170px;
	margin-right: 8px;
	margin-left: 10px;
	margin-top: 0px;
}

.newListSelected span {
	width:284px; 
	display:block;
}

ul.newList li {
	padding:3px 8px;
}

.selectedTxt {
	width:298px; 
	overflow:hidden; 
	height:16px; 
	padding:0 23px 0 0;
	color:#6F5640;
	cursor: pointer;
}

.hiLite {
	background:#650101!important; 
	color:#fff!important;
}

.newListHover {
	background:#ccc!important; 
	color:#000!important; 
	cursor:default;
}

/*.newListSelHover, .newListSelFocus {background-position:0 -22px; cursor:default;}*/



.newListOptionTitle {
	font-weight:bold;
}

.newListOptionTitle ul {
	margin:3px 0 0;
}

.newListOptionTitle li {
	font-weight:normal; 
	border-left:1px solid #ccc;
}

#searchbox_left	.selectedTxt {
	color: #ababab;
}



#searchbox_left .blackText {
	/*color: #000 !important;*/
	color: #6F5640 !important;
}

#searchbox_left ul.newList {
	width:175px; 
}
