/**
* 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;
	top:100% !important;
	left:0;
	z-index:2;
}

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

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


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

.stylish-select .newListSelected {
	width:284px;
	color:#384e63;
	height:19px;
	padding:10px 0 10px 14px;
	float:left;
	border: 1px solid #c5cace;
        font-size:18px;
        font-weight: 300;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
         margin: 0;
         line-height: 20px;
         
}


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

.stylish-select .selectedTxt {
	background: url("../images/select-drop.png") no-repeat scroll 100% 50% transparent;
    height: 20px;
    overflow: hidden;
    padding: 0 30px 0 0;
    width: 85%;
}


.stylish-select .reportSelectedTxt {
	width:271px;
	color:#384e63;
	height:19px;
	padding:10px 0 10px 14px;
	float:left;
	border: 1px solid #c5cace;
        font-size:16px;
        font-weight: 300;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
         margin: 0;
         line-height: 20px;
         
}



.stylish-select .reportSelectedTxt .selectedTxt {
	background: url("../images/select-drop.png") no-repeat scroll 98% 50% transparent;
    height: auto;
    overflow: hidden;
    padding: 0 0 0 0;
    width: 100%;
}



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

.stylish-select .newListHover {
	background:#ccc!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 {
	cursor:default;
}

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

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

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