

select::-ms-expand {
    display: none; /* hide default arrow in IE10 */
}
select {
    width: 50%; /* Set width. Do not set height else it will fail in IE8-10. Use padding for height. */
    min-width: 100px;
    color: #202C35;
    font-weight: normal;
    font-size: 18px;
    line-height:1.2em;
    margin: 0 0 10px;
    padding: 16px 0 16px 15px; /* use this to set a specific height for your dropdown (DO NOT use the attribute 'height') */
//padding: 3px 0 3px 8px;
    border: 0 none;
    border: 1px solid #CBD0D6;
    border-bottom: 2px solid #CBD0D6;
    border-top: 0;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: "";
    background: url('/img/arrow.png') no-repeat right center #fff; /* add your own arrow image */
    *background-image:none; /* turn bg image for IE7 */
    background: url('/img/arrow.png') no-repeat  right center #fff; /* fallback bg image*/
    background: url('/img/arrow.png') no-repeat right center, -webkit-linear-gradient(top, #fff, #EFEFEF);
    background: url('/img/arrow.png') no-repeat right center, -moz-linear-gradient(top, #fff, #EFEFEF);
    background: url('/img/arrow.png') no-repeat right center, -ms-linear-gradient(top, #fff, #EFEFEF);
    background: url('/img/arrow.png') no-repeat right center, -o-linear-gradient(top, #fff, #EFEFEF);
    background: url('/img/arrow.png') no-repeat right center, linear-gradient(top, #fff, #EFEFEF);
    -webkit-appearance: none; /* gets rid of default appearance in Webkit browsers*/
    -moz-appearance: none; /* Get rid of default appearance for older Firefox browsers */
    -ms-appearance: none; /* get rid of default appearance for IE8, 9 and 10*/
    appearance: none;
}

select.small{
padding: 3px 0 3px 8px;
font-size: 12px;
    background: url('/img/bluearrowdown.png') no-repeat right center #fff; /* add your own arrow image */
    *background-image:none; /* turn bg image for IE7 */
    background: url('/img/bluearrowdown.png') no-repeat  right center #fff; /* fallback bg image*/
    background: url('/img/bluearrowdown.png') no-repeat right center, -webkit-linear-gradient(top, #fff, #EFEFEF);
    background: url('/img/bluearrowdown.png') no-repeat right center, -moz-linear-gradient(top, #fff, #EFEFEF);
    background: url('/img/bluearrowdown.png') no-repeat right center, -ms-linear-gradient(top, #fff, #EFEFEF);
    background: url('/img/bluearrowdown.png') no-repeat right center, -o-linear-gradient(top, #fff, #EFEFEF);
    background: url('/img/bluearrowdown.png') no-repeat right center, linear-gradient(top, #fff, #EFEFEF);
}

select.medium{

padding: 8px 0 8px 8px;
font-size: 12px;
    background: url('/img/bluearrowdown.png') no-repeat right center #fff; /* add your own arrow image */
    *background-image:none; /* turn bg image for IE7 */
    background: url('/img/bluearrowdown.png') no-repeat  right center #fff; /* fallback bg image*/
    background: url('/img/bluearrowdown.png') no-repeat right center, -webkit-linear-gradient(top, #fff, #EFEFEF);
    background: url('/img/bluearrowdown.png') no-repeat right center, -moz-linear-gradient(top, #fff, #EFEFEF);
    background: url('/img/bluearrowdown.png') no-repeat right center, -ms-linear-gradient(top, #fff, #EFEFEF);
    background: url('/img/bluearrowdown.png') no-repeat right center, -o-linear-gradient(top, #fff, #EFEFEF);
    background: url('/img/bluearrowdown.png') no-repeat right center, linear-gradient(top, #fff, #EFEFEF);
    width: auto;
}

select option {
    background: #fff; /* style the dropdown bg color */
}
