/**
* 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
---------------------------------------------------------*/
select.subject {
    position: absolute;
}
.stylish-select .SSContainerDivWrapper {
    left:-9999px;
}

/*
* Red example
---------------------------------------------------------*/
.stylish-select .SSContainerDivWrapper {
    margin:0;
    padding:0;
    width:263px;
    position:absolute;
    top:22px;
    left:0;
    z-index:20;
}

.stylish-select ul.newList {
    margin:0;
    padding:0;
    list-style:none;
    color:#3e1b56;
    background:#fff;
    border:1px solid #ccc;
    overflow:auto;
    height: 115px;
    width: 260px;
    font-family:tahoma;
}
.stylish-select ul.newList * {
    margin:0;
    padding:0;
}
.stylish-select ul.newList li {
    float: none;
}

.stylish-select ul.newList a {
    color: #666;
    text-decoration:none;
    display:block;
    padding:8px;
	font-size: 11px;
}

.stylish-select .newListSelected {
    width:263px;
    color:#838383;
    height:33px;
    background:url(../images/selectbox.png) no-repeat 0 0;
    outline:none;
    float: left;
    margin-bottom: 1px;
}

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

.stylish-select .selectedTxt {
    width:263px;
    overflow:hidden;
    height:33px;
    padding:12px 15px;
    outline:none;
    color:#838383;
    font-family: arial;
    font-size: 11px;
}
.stylish-select .hiLite {
    background:#fff!important;
    color:#3e1b56!important;
    outline:none;
}

.stylish-select .newListHover {
    background:#035886!important;
    color:#fff!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;
}

.selectGroup {
    margin-top: 5px;
}