.dd-select
{
    text-decoration: underline;
    position: relative;
    margin: 0;
    cursor: pointer;

}

    .dd-select a
    {
        display: block;
        text-decoration: underline;
        cursor: pointer;
    }

.dd-desc
{
    color: #666;
    display: block;
    overflow: hidden;
    font-weight: normal;
    line-height: 1.4em;
    cursor: pointer;
}

.dd-option-selected .dd-desc
{
    color: #3d7489;
    cursor: pointer;
}

.dd-selected
{
    overflow: hidden;
    display: block;
}

.dd-pointer
{
    width: 0;
    height: 0;
    position: absolute;
    right: 40px;
    top: 50%;
    margin-top: -3px;
    display: none;
}

.dd-pointer-down
{
    border: solid 5px transparent;
    border-top: solid 5px #000;
    cursor: pointer;
}

.dd-pointer-up
{
    border: solid 5px transparent !important;
    border-bottom: solid 5px #000 !important;
    margin-top: -8px;
    cursor: pointer;
}

.dd-options {
    list-style: none;
    display: none;
    position: absolute;
    z-index: 2000;
    margin: 0;
    margin-top: -150px;
    padding: 0;
    background: #fff;
    overflow: visible;
    border: 1px solid #4B4B4A;
    -ms-border-radius: 2px;
    border-radius: 2px;
}



.dd-options li
    {
        position: relative;
        margin: 0;
        padding: 0;
    }

.dd-option
{
    padding: 10px;
    margin: 0;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    -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;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

.dd-options li a
{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dd-options li:hover {
    background-color: #f5f5f5;
    
}

.dd-option:hover, .dd-option-hover, .dd-option-selected.dd-option-hover
{
    font-weight: bold;
}

.dd-selected-description-truncated
{
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dd-option-selected
{
    font-weight: bold;
}

.dd-option-image, .dd-selected-image
{
    vertical-align: middle;
    float: left;
    margin-right: 5px;
    max-width: 64px;
}

.dd-image-right
{
    float: right;
    margin-right: 15px;
    margin-left: 5px;
}

.dd-container
{
    position: relative;
    margin: 0;
}

​ .dd-selected-text
{
    font-weight: bold;
    cursor: pointer !important;
}