/*
Stylish Select 0.4.1 - $ 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 or newer

Dual licensed under the MIT and GPL licenses.

*/


/*==================================
Hide lists on page load
====================================*/

.stylish-select ul.newList {left:-9999px;}

/*==================================
red curvy example
====================================*/

ul.newList * {
	margin:0; 
	padding:0;
	text-transform:uppercase;
}
ul.newList a {
	color: #505050 !important; 
	text-decoration:none !important; 
	display:block;
	/*font-family:"Trebuchet MS",Arial,Helvetica,sans-serif;*/
	font-size:10px;
	font-weight:bold;
}
ul.newList {
	margin:0; 
	padding:0; 
	width:198px; 
	background:#fff; 
	position:absolute;  
	top:25px; 
	left:-1px !important; 
	overflow:auto; 
	z-index:9999;
	border:1px solid #e0e0df;
	padding-bottom:10px;
}
.newListSelected {
	width:198px; 
	color:#3D2008; 
	padding:0; 
	height:30px;
	border:1px solid #e0e0df;
	/*float:left;*/
	background:#FFF url(../images/basics/arrow_secondnav.png) 180px 11px no-repeat;
	text-transform:uppercase;
}
.newListSelected span {
	width:198px; 
	display:block;
}
ul.newList li a {
	padding:3px 16px; 
	display: block;
}
/* fehler in verbindung mit moz kill borders
ul.newList li a:focus {
	-moz-outline-style: none;
}
*/
.selectedTxt {
	width:182px;
	overflow:hidden; 
	height:30px; 
	line-height:30px;
	padding:0 0 0 16px;
	/*font-family:"Trebuchet MS",Arial,Helvetica,sans-serif;*/
	font-size:10px;
	font-weight:bold;
	white-space:nowrap;
	cursor:pointer;
}
.hiLite {
	background:#a3c9e8 !important; 
	color:#fff !important;
}
.hiLite a {
	background:#650101!important; 
	color:#fff !important;
}
.newListHover {
	background:#E0EDF5 !important; 
	color:#3D2008 !important; 
	cursor:pointer;
}
.newListSelHover, .newListSelFocus {
	/*background-position:0 -25px;*/ 
	cursor:default;
}
.newListOptionTitle {
	font-weight:bold;
}
.newListOptionTitle ul {
	margin:0;
}
.newListOptionTitle li {
	font-weight:normal; 
	border-left:1px solid #ccc;
}



