/**
* Stylish Select 0.4.9 - $ 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:-1px 0 0 -1px;
	padding:0;
	width:300px;
	position:absolute;
	top:30px;
	left:0;
	z-index:2;
}

.stylish-select ul.newList {
	margin:0;
	padding:0;
	list-style:none;
	color:#000;
	background:#fff;
	overflow:auto;
    border: 1px solid #000;
    border-top: none;
}

.stylish-select ul.newList * {
	margin:0;
	padding:0;
}
.stylish-select ul.newList li{
    padding: 3px 6px !important;
}


.stylish-select ul.newList a {
	color: #000;
	text-decoration:none;
    display: inline-block;
	padding:0px 5px;
    font-size: 12px;
    line-height: 18px;
}

.stylish-select .newListSelected {
	width:298px;
    height: 28px;
    background: #fff url(../images/select.png) 100% 0 no-repeat;
	color:#000;
    border: 1px solid #000;
}

.stylish-select ul.newList li a:focus {
	-moz-outline-style: none;
}

.stylish-select .selectedTxt {
	overflow:hidden;
	height:28px;
	padding:0 21px 0 11px;
    color: #000;
    font-size: 12px;
    line-height: 28px;
    cursor: pointer;
}

.stylish-select .hiLite {
	background:#000000!important;
	color:#fff!important;
}

.stylish-select .newListHover {
	background:#000000!important;
	color:#fff!important;
}

.stylish-select .newListDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

.stylish-select .newListItemDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

.stylish-select .newListOptionDisabled {
	opacity: 0.6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
}

.stylish-select .newListSelHover .selectedTxt,
.stylish-select .newListSelFocus .selectedTxt {
}

.stylish-select .newListOptionTitle {
	font-weight:bold;
}

.stylish-select .newListOptionTitle ul {
	margin:3px 0 0;
}

.stylish-select .newListOptionTitle li {
	font-weight:normal;
}