/*
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
*/


/*==================================
remove default focus style
====================================*/
:focus {outline:none;}

.js ul.newList {left:-9999px;}

/*==================================
Global style
====================================*/
ul.newList *, .newListSelected * {
	font-family: Tahoma, Geneva, sans-serif !important;
	margin:0; 
	padding:0;
}
ul.newList {
	margin: 0 0 0 -1px !important; 
	padding: 0; 
	list-style:none; 
	color:#000; 
	width:246px; 
	background:#fff; position:absolute; 
	border:1px solid #8ED400; 
	top:22px; 
	left:0; 
	overflow:auto;
	z-index:9999;
}
.newListSelected {
	border: 1px solid #8ED400; 
	width:246px; 
	color:#000; 
	height:20px; 
	padding:2px 0 0 6px; 
	float:left; 
	background: #FFF url("/Images/dropdown-bg.png") no-repeat right center; 
	font-size: 0.7em !important;
}
.newListSelected span {
	width:246px; 
	display:block;
}
ul.newList li {
	padding:3px 10px 3px 8px;
}
.selectedTxt {
	/*width:258px; */
	overflow:hidden; 
	height:16px;
	line-height:15px !important;
	display:block;
	padding:0 23px 0 0 !important;
	width:222px;
	cursor:pointer;
}
#smallDdown .selectedTxt {
	/*width:258px; */
	overflow:hidden; 
	height:16px;
	line-height:15px !important;
	display:block;
	padding:0 23px 0 0 !important;
	width:57px;
	cursor:pointer;
}
.hiLite {
	background: #55A51A!important; 
	color: #fff!important;
}
.newListHover {
	background:#ccc!important; 
	color:#000!important; 
	cursor:default;
}
.newListSelHover{} .newListSelFocus {}
.newListOptionTitle {
	font-weight:bold;
}
.newListOptionTitle ul {
	margin:3px 0 0;
}
.newListOptionTitle li {
	font-weight:normal; border-left:1px solid #ccc;
}

/*======================================
small style
========================================*/
#smallDdown .newListSelected {
	background:#fff url("/Images/dropdown-bg.png") right center no-repeat;
	color:#000;
	height:20px !important;
	padding:0 0 0 6px !important;
	width:80px;
	position: absolute;
	z-index: 99999 !important;
}