/*
 * jQuery.selectBoxIt.css 0.5.0
 * Author: @gregfranko
 */

/* Div container holding the dropdown list */
#testSelectBoxItContainer {
  display: inline-block;
  /* Hack for IE 6 and 7 to allow inline-block to work */
  *display: inline;
  zoom: 1;
float:right;
margin-top:14px;
}

/* Dropdown List Box */
#testSelectBoxIt {
  height: 24px; /* Height of the select box */
  cursor:pointer;
  white-space:nowrap;
  /* Provide a background image here if you want to use an image for the down arrow */
}

/* Dropdown List Box and Dropdown Options List  */
#testSelectBoxIt, #testSelectBoxItOptions {
  width: 80px; /* Width of the dropdown list box and dropdown list options*/
}

/* Dropdown list Default Icon Positioning */
#testSelectBoxItDefaultIcon {
  float: left;
}

/* Dropdown List Box Text */
#testSelectBoxItText {
font-size:13px;
font-family:Calibri, Arial, sans-serif;
  text-indent: 5px;
  line-height: 20px;
  overflow:hidden;
  float:left;
  white-space:nowrap;
  /* Prevents text selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* Dropdown List Options List*/
#testSelectBoxItOptions { 
  max-height: 180px; /* A vertical scrollbar appears if your select box options are taller than this */
  font-size:13px;
  margin:0;
  padding:0;
  list-style:none;
  position:absolute;
  overflow:auto;
  cursor:pointer;
  display:none;
  z-index:99999;
  outline:none;
}

/* Dropdown List Individual Options */
#testSelectBoxItOptions li {
  line-height: 20px; /* Height of Individual Select Box Options */
  text-indent: 5px; /* Horizontal Positioning of the select box option text */
  overflow:hidden;
  white-space:nowrap;
  list-style:none;
color:#666;
}

/* Dropdown List Down Arrow Container (if an image is not used) */
#testSelectBoxItArrowContainer {
  /* Positions the down arrow */
  width: 28px;
  float:right;
  margin-top:-3px;
}

/* Dropdown List Down Arrow */
#testSelectBoxItArrow {
  /* Horizontally centers the down arrow */
  margin-right:auto;
  margin-left:auto;
}

/* Dropdown List Individual Option Icon Positioning */
#testSelectBoxItOptions li span {
  float:left;
}