/*
 * jquery.selectBoxIt.css 1.6.0
 * Author: @gregfranko
 */

/* Div container holding the dropdown list */
#aroundpage .selectboxit-container {
/*  position: relative;
  float: left;*/
  display: inline-block;
  /* Hack for IE 6 and 7 to allow inline-block to work */
  *display: inline;
  zoom: 1;
}

/* Dropdown List Box */
#aroundpage .selectboxit {
  height: 22px; /* Height of the select box */
  cursor:pointer;
  white-space:nowrap;
  background-color: whitesmoke;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #BEBEBE;
}

#aroundpage .selectboxit-hover {
  background-color: #0f8ff5;
  border: 1px solid #7E7C7C;
}

#aroundpage li.selectboxit-hover
{
  background-color: #BCBCBC;
  border: none;
}

#aroundpage li.active
{
  background-color: #BCBCBC;
}

/* Dropdown List Box and Dropdown Options List  */
#aroundpage .selectboxit,
#aroundpage .selectboxit-options {
  width: auto; /* Width of the dropdown list box and dropdown list options*/
  background-color: #DFDEDE;
}

/* Dropdown list Default Icon Positioning */
#aroundpage .selectboxit-default-icon {
  float: left;
}

/* Dropdown List Box Text */
#aroundpage .selectboxit-text {
  font: 11px Helvetica, Arial;
  text-indent: 5px;
  line-height: 30px;
  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*/
#aroundpage ul.selectboxit-options {
  max-height: 180px; /* A vertical scrollbar appears if your select box options are taller than this */
  font: 14px Helvetica, Arial;
  margin:0;
  padding:0;
  list-style:none;
  position:absolute;
  overflow:auto;
  cursor:pointer;
  display:none;
  z-index:99999;
  outline:none;
  min-width: auto;
}

#aroundpage ul.selectboxit-options a {
  padding: 3px 15px;
}

/* Dropdown List Individual Options */
#aroundpage .selectboxit-options li,
#aroundpage .selectboxit-options .selectboxit-optgroup-header {
  line-height: 30px; /* 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;
}

/* Dropdown List Optgroup Headers */
#aroundpage .selectboxit-options .selectboxit-optgroup-header {
  font-weight: bold;
}

/* Dropdown List Optgroup Options */
#aroundpage .selectboxit-options .selectboxit-optgroup-option {
  text-indent: 20px;
}

/* Dropdown List Optgroup Header hover psuedo class */
#aroundpage .selectboxit-options .selectboxit-optgroup-header[data-disabled='true']:hover {
  cursor: default;
  color: silver;
  text-decoration: none;
}

/* Dropdown List Down Arrow Container (if an image is not used) */
#aroundpage .selectboxit-arrow-container {
  /* Positions the down arrow */
  width: 19px;
  float:right;
  margin-right: 4px;
  background-image: url("/adminold/images/buttons.png");
  background-position: -395px -15px;
}

/* Dropdown List Down Arrow */
#aroundpage .selectboxit-arrow-container i.selectboxit-arrow {
  /* Horizontally centers the down arrow */
  margin:0 auto;
  display: block;
}

/* Dropdown List Individual Option Icon Positioning */
#aroundpage .selectboxit-options li i {
  float:left;
}
.ui-state-disabled a {
  text-decoration: none;
  color: silver;
}