a {
    color: #212020;
    text-decoration: none;
    cursor: default;
    outline: none;
}

.dropcontainer {
    position: relative;
    font-size: 16px;
    color: #212020;
    z-index: 9999;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: none;
}

.trigger {
    color: #212020;
    padding: 6px;
    font-size: 16px;
    min-width: 125px;
    height: 35px;
    background: #fff url(Images/select-arrow-open.png) 98% center no-repeat;
    display: block;
    border: 1px solid #ccc;
    border-bottom: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    cursor: pointer;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-decoration:none;
}

    .trigger:hover {
        color: #212020;
        background: #e8e8e8 url(Images/select-arrow-open.png) 98% center no-repeat;
        text-decoration: none;
    }

.activetrigger {
    color: #212020;
    padding: 6px;
    font-size: 16px;
    min-width: 125px;
    height: 35px;
    background: #e8e8e8 url(Images/select-arrow-close.png) 98% center no-repeat;
    display: block;
    border: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .activetrigger:hover {
        background: #e8e8e8 url(Images/select-arrow-close.png) 98% center no-repeat;
        color: #212020;
    }

    .activetrigger:active {
        background: #e8e8e8 url(Images/select-arrow-close.png) 98% center no-repeat;
        color: #212020;
    }

.dropcontainer ul {
    font-size: 16px;
    border-top: none;
    background: #fff;
    list-style-type: none;
    padding: 0;
    margin: 0;
    min-width: 125px;
    z-index: 100;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}

    .dropcontainer ul li {
        padding: 7px;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

        .dropcontainer ul li:hover {
            background: #e8e8e8;
            outline: none;
        }

        .dropcontainer ul li:first-child {
            display: none;
        }

        .dropcontainer ul li:last-child {
            border-bottom: none;
        }

.dropdownhidden {
    display: none;
}

.dropdownvisible {
}
