/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  width:400px;
  background-color:white;
  border:1px solid #ccc;
  margin-left:0px;
  margin-top:-2px;
  padding-top:0px;
  padding-left:0px;
  text-align:left;
  max-height:200px;
  overflow:auto;
  z-index:1001
}

/*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:3px;
  cursor:pointer;
}

/* Look and feel of select box */
.selectbox 
{
  margin: 0px 5px 0px 0px;
  padding-left:2px;
  font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
  font-size:1em;/* Resize Font*/
  width : 169px; /* Resize Width */
  height:26px;
  display : block;
  text-align:left; 
  background: url('../images/bg_dropdownMenu.jpg') left;
  background-repeat: no-repeat;
  cursor: pointer;
  border:0px solid #D1E4F6;
  color:#333;
}

.checkBox, .checkBoxClear{
  background-image: url('../images/sprite_bg_selectBox.jpg');
  background-repeat: no-repeat;

  width: 100%;
  height: 20px;
  padding: 0px;
  margin: 0px;
  cursor: pointer;

}

.checkBox{
  background-position: 0px 0px;
}
.checkBoxClear{
  background-position: 0px -20px;
}

/*
.styled-select {
   width: 131px;
   height: 26px;
   overflow: hidden;
   background: url('/images/bg_dropdownMenuShort.gif') no-repeat left #fff;
   padding: 0px 0 0px 0;
   margin: 2px 0 0px 0;
}

.styled-select select {
  filter: alpha(opacity=50);
  background: transparent;
  width: 179px;
   padding: 0px 0 0px 0;
   margin: 2px 0 0px 0;
   font-size: 15px;
   height: 26px;
   border: 0;
}


.styledLong-select {
   width: 194px;
   height: 26px;
   overflow: hidden;
   background: url('/images/bg_dropdownMenuLong.gif') no-repeat left #fff;
   padding: 0px 0 0px 0;
   margin: 2px 0 0px 0;
}

.styledLong-select select {
   filter: alpha(opacity=50);
   background: transparent;
   width: 210px;
   padding: 0px 0 0px 0;
   margin: 2px 0 0px 0;
   font-size: 15px;
   height: 26px;
   border: 0;
}


.styledMedium-select {
   width: 77px;
   height: 26px;
   overflow: hidden;
   background: url('/images/bg_dropdownMenuMedium.gif') no-repeat left #fff;
   padding: 0px 0 0px 0;
   margin: 2px 0px 0px 0px;
}

.styledMedium-select select {
   filter: alpha(opacity=50);
   background: transparent;
   width: 100px;
   height: 26px;
   padding: 0px 0 0px 0;
   margin: 2px 0px 0px 0px;
   font-size: 15px;
   border: 0;
}
*/

