.dropdown{
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-image: url("../images/arrow.png");
    background-repeat: no-repeat;
    background-position: right center;
    padding: 0 20px 0 10px;
    overflow: hidden;
    max-width: 100px;
    min-width: 80px;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 24px;
    line-height: 24px;
    display: inline-block;
}
.dropdown.active{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.dropdownOptions{
    border: 1px solid #CCC;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    margin: 0;
    padding: 0;
    background-color: white;
    min-height: 24px;
    max-height: 200px;
    min-width: 80px;
    max-width: 200px;
    overflow: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100 !important;
    display: none;
    list-style: none;
}
.dropdownOptions li {
    cursor: pointer;
    line-height: 21px;
    height: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 10px;
    list-style: none;
}
.dropdownOptions li:hover {
    background-color: #ccc;
}
