<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  width:400px;
  background-color:white;
  border:1px solid #ccc;
  margin:0px;
  margin-top:-10px;
  padding:0px;
  text-align:left;
  max-height:200px;
  overflow:auto;
   font-family:'lato';
   font-size:12px;/* Resize Font*/
   font-weight:bold;
   z-index:1;
}

/*Drop down list styles*/
div.selectbox-wrapper ul {
  list-style-type:none;
  margin:0px;
  padding:0px;
 
}
/* Selected item in dropdown list*/
div.selectbox-wrapper ul li.selected { 
  background-color: #EAF2FB;
}

/* Hover state for dropdown list */
div.selectbox-wrapper ul li.current { 
  background-color: #CDD8E4;
}

/* Drop down list items style*/
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding:6px;
  cursor:pointer;
}

/* Look and feel of select box */
.selectbox 
{
  margin: 0px 0px 10px 0px;
  padding-left:6px;
  font-family:'lato';
  font-size:12px;/* Resize Font*/
  width : 189px; /* Resize Width */
  display : block;
  text-align:left; 
  background: url(images/lang_bar.png) no-repeat right ;
  cursor: pointer;
  border:none;
  color:#fff;
  height:40px;
  
 
  line-height:40px;
  font-weight: bold;

}


</pre></body></html>