/**
* Stylish Select 0.4.5 - $ plugin to replace a select drop down box with a stylable unordered list
* http://scottdarby.com/
*
* 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:290px;
    position:absolute;
    top:22px;
    left:0;
    z-index:2;
}

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

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


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

.stylish-select .newListSelected {
    width:285px;
    color:#000;
    height:19px;
    padding:3px 0 0 6px;
    float:left;
    background:url(images/bg-select.png) no-repeat top right;
    border:1px solid #D4D4D4;
    margin:0px 4px 2px 0px;
    _margin:0px 2px 2px 0px;
}

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

.stylish-select .selectedTxt {
    width:258px;
    overflow:hidden;
    height:16px;
    padding:0 23px 0 0;
}

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

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

