
/* remove standard-styles */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:none;
    border-radius: 0;
    font-size: 1em;
} 

/* Select */
select {
    background-color:white;
    background-position: right;
    background-repeat: no-repeat;
    
    border-radius: 4px;
    border: 1px solid #aaa;
    padding: 0px;
    padding-left:4px;
    padding-right:14px;
    margin-bottom:2px;
    
    /*
    background-image:url(../images/select.png);
    font-size: 8pt;
    height:18px;
    */
    
    background-image:url(../images/select_18.png);
    font-size: 9pt;
    height:20px;
    
}

select:focus {
    /*background-color:lightblue !important;*/
    outline:none;
    
}
select:focus::-ms-value {
    background-color:lightblue !important;
}

option {
    background-color:lightgray;
    border-top:1px solid gray;
    padding:2px;
    outline:none;
}

/* Hide browser-styling in IE10 */
select::-ms-expand {
  display:none;
}

/* Hide custom-icons in lower versions of Internet Explorer (< IE10). */
.lt-ie10 select {
    background-image: none; 
}

::selection {
    background-color:lightblue;
    color:black;
}
::-moz-selection {
    background-color:lightblue;
    color:black;
}
