/**
* 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:0; padding:0; width:100%; position:absolute; z-index:99;}

.stylish-select ul.newList {
	margin:0;
	padding:0;
	list-style:none;
	color:#000;
	background:#fff;
	border:1px solid #ccc;
	overflow:auto;
	width:100%;
	box-sizing: border-box;
}

.stylish-select ul.newList li{width:100%; background:none;}

.stylish-select ul.newList * {
	margin:0;
	padding:0;
}


.stylish-select ul.newList a {
	color: #000;
	text-decoration:none;
	display:block;
	padding:2px 8px;
	background:none;
}

.stylish-select .newListSelected {width:100%; height:27px; padding:0; background:#f3f3f3; border:solid 1px #bbbbbb; color:#2c2c2c; font:normal 12px/24px Arial, Helvetica, sans-serif; -moz-box-sizing: border-box; box-sizing: border-box; outline:none; line-height:24px;}

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

.stylish-select .selectedTxt {overflow:hidden; height:27px; padding:0 20px 0 10px; line-height:27px; -moz-box-sizing: border-box; box-sizing: border-box; background:url(../images/dropdown-arrwo.png) right center no-repeat;}
.stylish-select .hiLite {
	background:#eeeeee!important;
	color:#000!important;
}

.stylish-select .newListHover {
	background:#eeeeee!important;
	color:#000!important;
	cursor:default;
}

.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,
.stylish-select .newListSelFocus {
	/*background-position:0 -22px;*/
	cursor:default;
	/* border: 1px solid blue !important;
	box-sizing: border-box;   */
}

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

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

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