﻿.dd-select
{
    position: relative;
    cursor: pointer;
}

.dd-selected
{
    overflow: hidden;
    font-weight: bold;
}

.dd-pointer
{
    width: 0;
    height: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -3px;
}

.dd-pointer-down
{
    border: solid 5px transparent;
    border-top: solid 5px #cecece;
}

.dd-pointer-up
{
    border: solid 5px transparent !important;
    border-bottom: solid 5px #cecece !important;
    margin-top: -8px;
}

.dd-options
{
    border: solid 1px #000000;
    border-top: none;
    list-style: none;
    box-shadow: 0px 1px 5px #000000;
    display: none;
    position: absolute;
    z-index: 2000;
    margin: 0;
    padding: 0;
    background: #0F4A6A;
    overflow: auto;
}

.dd-option
{
    display: block;
    border-bottom: solid 1px #000000;
    overflow: hidden;
    text-decoration: none;
    color: #f2f2f2;
    cursor: pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
}

    .dd-option:hover
    {
        background: #2B6991;
        color: #FFFFFF;
        text-decoration: none;
    }

.dd-option-text
{
    color: #f2f2f2;
}

.dd-selected-description-truncated
{
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dd-option-selected
{
    background: #2B6991;
}

.dd-option-image, .dd-selected-image
{
    vertical-align: middle;
    margin-right: 5px;
    max-width: 64px;
}

.dd-image-right
{
    float: right;
    margin-right: 15px;
    margin-left: 5px;
}

.dd-container
{
    position: relative;
}

​ .dd-selected-text
{
    font-weight: bold;
}

.ddSelectPlaceholder
{
    display: inline-block;
    background: -moz-linear-gradient(center top, #2B6991 0%, #2B6991 4%, #575757 100%) repeat scroll 0 0 #575757;
    border-radius: 2px 0 0 2px;
}