/*
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
====================================*/

ul.newList {left:-9999px;}

.sidebar-select-container .newListSelected {
	background:rgb(143,142,125) url('../_images/dropdown-arrow.png') no-repeat right center; 
	border:1px solid #A5ACB2; 
	color:rgb(221,220,205); 
	margin-bottom:10px; 
	padding:0; 
	width:100%;
}
.sidebar-select-container .selectedTxt {
	padding: 5px!important;
}
.sidebar-select-container .newListSelected div {
	display:block; 
	font-size:12px; 
	padding:5px 21px 5px 5px; 
	text-align:left !important; 
	width:100%;
}
.sidebar-select-container ul.newList {
	list-style:none; 
	color:rgb(143,142,125); 
	width:100%; 
	background:rgb(221,220,205); 
	border:1px solid #000; 
	margin-top: -10px; 
	left:0; 
	height:auto; 
	overflow:auto; 
	font-size: 12px; 
	text-align:left!important; 
	position:absolute; 
	z-index:9999;
}
.sidebar-select-container ul.newList li {
	padding: 0; 
	width: 100%;
	background-color: rgb(221,220,205);
}
.sidebar-select-container ul.newList li a {
	display: block;
	text-decoration: none;
	color: rgb(143,142,125);
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 5px;
}
.sidebar-select-container .hiLite {
	width: 100%;
	background:rgb(143,142,125)!important; 
	color:rgb(221,220,205)!important;
}
.sidebar-select-container .newListHover {
	background:rgb(190,188,165);!important; 
	color:rgb(221,220,205)!important; 
	cursor:pointer;
}
.sidebar-select-container .newListSelHover {
	cursor:pointer;
}
.sidebar-select-container .newListSelHover, .sidebar-select-container .newListSelFocus {
	background-position:auto;
}