/* Drop down styles*/
div.selectbox-wrapper {
  position:relative;
  width:150px;
  background-color:white;
  border:1px solid #ccc;
  text-align:left;
  overflow:auto;
  color:#003151;
  font-family:tahoma;
  font-size:12px;
  margin-left:0px;
  /*font-weight:bold;*/
}

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

/* Hover state for dropdown list */
div.selectbox-wrapper ul li.current { 
  background-color: #CDD8E4;
  color:#003151;
  font-family:tahoma;
  font-size:12px;
}

/* Drop down list items style*/
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding:0px;
  cursor:pointer;
  color:#003151;
  font-family:tahoma;
  font-size:12px;
}

/* Look and feel of select box */
.selectbox 
{
  /* Resize Font*/
  width : 150px; /* Resize Width */
  display : block;
  text-align:left; 
  background: url(../images/bg_select.gif) right;
  cursor: pointer;
  border:0px solid #D1E4F6;
  color:#003151;
  font-family:tahoma;
  font-size:12px;
  height:15px;
  padding-left:5px;
  
}


