﻿        /*
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;
}

/*==================================
Estilos por defecto
====================================*/
ul.newList *
{
    margin: 0;
    padding: 0;
}
ul.newList
{
    margin: 0;
    padding: 0;
    list-style: none;
    color: #000;
    background: #fff;
    position: absolute;
    border: 1px solid #ccc;
    top: 28px;
    left: 0;
    overflow: auto;
    z-index: 9999;
}
.cbtam1 ul.newList
{
    width: 400px;
}

.newListSelected
{
    font-family: Verdana, Geneva, sans-serif;
    font-size: 11px;
    color: #000;
    height: 25px;
    padding: 3px 0 0 6px;
    float: left;
}
.cbtam1
{
    width: 500px;
    height: 28px;
    background: url(../images/select-bg.png) no-repeat;
}
.cbtam1 .newListSelected
{
    width: 200px;
}

.newListSelected span
{
    display: block;
}
.cbtam1 .newListSelected span
{
    width: 200px;
}
ul.newList li
{
    padding: 3px 8px;
}
.selectedTxt
{
    overflow: hidden;
    height: 12px;
    padding: 6px 37px 0px 1px;
    margin-bottom: 4px;
}
.cbtam1 ul.newList
{
    width: 200px;
}
.hiLite
{
    background:  #DD1721 !important;
    color: #fff !important;
}
.newListHover
{
    background: #ccc !important;
    color: #000 !important;
    cursor: default;
}
.newListSelHover, .newListSelFocus
{
    background-position: 0 -28px;
    cursor: default;
}
.newListOptionTitle
{
    font-weight: bold;
}
.newListOptionTitle ul
{
    margin: 3px 0 0;
}
.newListOptionTitle li
{
    font-weight: normal;
    border-left: 1px solid #ccc;
}

