/**
* 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:63px;
	position:absolute;
	top:20px;
	left:0;
	z-index:20000;
}

.stylish-select ul.newList {
	margin:0;
	padding:0;
	list-style:none;
	color:#402106;
	background:#ffffff;
	border:1px solid #8f6342;
	border-top:none;
	overflow:hidden;
	font-weight:normal;
}

.stylish-select ul.newList * {
	margin:0;
	padding:0;
}

.stylish-select ul.newList li{ line-height:20px; height:20px;}
.stylish-select ul.newList a {
	color: #402106;
	text-decoration:none;
	display:block;
	height:17px;
	line-height:17px;
	padding:1px 8px;
}

.stylish-select .newListSelected {
	width:63px;
	color:#402106;
	height:20px;
	padding:0px;
	float:left;
	background:url("../images/y_myselectbg.gif") no-repeat;
	z-index:90000;
	font-weight:normal;
	font-size:12px;
}

.stylish-select ul.newList li a:focus {
	-moz-outline-style: none;
}

.stylish-select .selectedTxt {
	width:50px;
	overflow:hidden;
	height:18px;
	line-height:18px;
	text-align:center;
	padding:1px 12px 1px 1px;
	color:#402106;
}

.stylish-select .hiLite {
	background:#ebdcb8!important;
	color:#402106!important;
}

.stylish-select .newListHover {
	background:#f3efe5!important;
	color:#402106!important;
	cursor:default;
}

.stylish-select .newListSelHover,
.stylish-select .newListSelFocus {
	cursor:default;
}

.stylish-select .newListOptionTitle {
	font-weight:bold;
}

.stylish-select .newListOptionTitle ul {
	margin:3px 0 0;
}

.stylish-select .newListOptionTitle li {
	font-weight:normal;
	border-left:1px solid #ccc;
}
