/* --------------------------------------------------
//
// ddlist2 css styles for sixt.de
// author:      jw
// created:     05.05.2010
//
// ----------------------------------------------- */

    /* ------------------------------------------
        ddlist styles

    ------------------------------------------ */
    
    .ddlist-wrapper .ddlist-content {
        margin: 0;
        padding: 0;
        list-style: none;
        background: #fff;
        display: none;
        width: 250px;
        height: 300px;
        border: 1px solid #a2a2a2;
        position: absolute;
        left: 0;
    }    

    .ddlist-wrapper ul {
        margin: 0;
        padding: 0;
        list-style: none;
        background: #fff;
        height: 100%;
    }
    
    .ddlist-wrapper ul ul {
        border: none;
        background: #fff;
        padding: 0;
        margin: 0 0 10px 0;
        display: block;
        height: auto;
    }
    
    .ddlist-wrapper li {
        margin: 0;
        padding: 0;
        list-style: none;
        color: #000;
        border: none;
    }

    .ddlist-wrapper li li {
        padding: 5px 10px 5px 10px;
        border-bottom: 1px dotted #a2a2a2;
        cursor: pointer;
        cursor: hand;
    }

    .ddlist-wrapper li a {
        color: #000;
    }

    .ddlist-wrapper li.ddlist-hover,
    .ddlist-wrapper li.ddlist-selected {
        background: #FCB700;
        color: #000;
    }

    .ddlist-wrapper li.ddlist-hover a,
    .ddlist-wrapper li.ddlist-selected a {
        color: #000;
    }
    
    .ddlist-wrapper li h5 {
        margin: 0;
        padding: 6px 10px 6px 10px;
        font-size: 12px;
    }
    

