/*
Stylish Select 0.3 - jQuery 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

Licensed under the GPL license:
http://www.gnu.org/licenses/gpl.html
*/

/*==================================
remove default focus style
====================================*/
:focus {
    outline: none;
}

.js ul.newList {
    left: -9999px;
}

/*==================================
red curvy example
====================================*/
ul.newList * {
    margin: 0 !important;
    padding: 0;
}

ul.newList {
    margin: -3px 0 0 0;
    padding: 0;
    list-style: none;
    color: #fff;
    width: 26px;
    background: #377D03;
    position: absolute;
    border: 1px solid #92C2A8;
    top: 22px;
    left: 0;
    overflow: auto;
    z-index: 9999;
    font-weight: bold;
}

.newListSelected {
    color: white;
    text-align: center;
    height: 25px;
    margin-top: 3px;
}

.newListSelected span {
    width: 284px;
    display: block;
}

ul.newList li {
    padding: 3px 8px;
}

.selectedTxt {
    font-weight: bold;
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    width: 28px;
}

.hiLite {
    background: #1E4602 !important;
    color: #fff !important;
}

.newListHover {
    background: #68BF28 !important;
    cursor: default;
}

.newListSelHover, .newListSelFocus {
    cursor: pointer;
    z-index: 9999 !important;
}

.newListOptionTitle {
    font-weight: bold;
}

.newListOptionTitle ul {
    margin: 3px 0 0;
}

.newListOptionTitle li {
    font-weight: normal;
    border-left: 1px solid #ccc;
}
