div.selectBox
{
    position:relative;
    display:inline-block;
    cursor:default;
    text-align:left;
    line-height:30px;
    clear:both;
    color:#fff;
    font: 12px/20px Arial, Helvetica, sans-serif;
}
span.selected
{
    width:228px;
    text-indent:10px;
    border:1px solid #ccc;
    border-right:none;
    border-top-left-radius:5px;
    border-bottom-left-radius:5px;
    background: #3d3d3d;
    background: -moz-linear-gradient(top, rgb(95,94,94) 0%, rgb(30,29,29) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(95,94,94)), color-stop(100%,rgb(30,29,29))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgb(95,94,94) 0%,rgb(30,29,29) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgb(95,94,94) 0%,rgb(30,29,29) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgb(95,94,94) 0%,rgb(30,29,29) 100%); /* IE10+ */
    background: linear-gradient(top, rgb(95,94,94) 0%,rgb(30,29,29) 100%); /* W3C */
    overflow:hidden;
}
span.selectArrow
{
    width:30px;
    margin-top: 1px;
    border-left:1px solid #fff;
    border-top-right-radius:5px;
    border-bottom-right-radius:5px;
    text-align:center;
    font-size:20px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    background: #3d3d3d;
    background: -moz-linear-gradient(top, rgb(95,94,94) 0%, rgb(30,29,29) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(95,94,94)), color-stop(100%,rgb(30,29,29))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgb(95,94,94) 0%,rgb(30,29,29) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgb(95,94,94) 0%,rgb(30,29,29) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgb(95,94,94) 0%,rgb(30,29,29) 100%); /* IE10+ */
    background: linear-gradient(top, rgb(95,94,94) 0%,rgb(30,29,29) 100%); /* W3C */
}

span.selectArrow,span.selected
{
    position:relative;
    float:left;
    height:20px;
    z-index:1;
}

div.selectOptions
{
    position:absolute;
    cursor: pointer;
    top:28px;
    left:0;
    width:258px;
    border:1px solid #ee9125;
    border-bottom-right-radius:5px;
    border-bottom-left-radius:5px;
    overflow:hidden;
    background: #3d3d3d;
    background: -moz-linear-gradient(top, rgb(95,94,94) 0%, rgb(30,29,29) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(95,94,94)), color-stop(100%,rgb(30,29,29))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgb(95,94,94) 0%,rgb(30,29,29) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgb(95,94,94) 0%,rgb(30,29,29) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgb(95,94,94) 0%,rgb(30,29,29) 100%); /* IE10+ */
    background: linear-gradient(top, rgb(95,94,94) 0%,rgb(30,29,29) 100%); /* W3C */
    padding-top:2px;
    display:none;
    overflow: auto;
}

span.selectOption
{
    line-height:20px;
    padding:5px 10px;
}

span.selectOption:hover
{
    color: rgb(30,29,29);
    background: #f7f7f7;
}
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 15px rgba(255,255,255,0.5);
    background: rgba(20,20,20,0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 8px rgba(0,0,0,0.95);
}