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

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

/* Dropdown List Box */
.selectboxit {
  height: 23px; /* Height of the select box */
  cursor:pointer;
  background: url("/mediaintern/notifier2012/selectboxit/images/drop-down.png");
    
  /* Provide a background image here if you want to use an image for the down arrow */
}

/* Dropdown List Box and Dropdown Options List  */
.selectboxit, .selectboxit-options {
  width: 220px; /* Width of the dropdown list box and dropdown list options*/
}
.selectboxit span.selectboxit-text{
width:130px;
}

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

/* Dropdown List Box Text */
.selectboxit-text {
  font-size: 13px;
  font-family: 'TradeGothicLTStdCnBold';
  text-indent: 0px;
  line-height: 20px;
  overflow:hidden;
  float:left;
  /* 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*/
ul.selectboxit-options { 
  max-height: 180px; /* A vertical scrollbar appears if your select box options are taller than this */
  font-size: 13px;
  font-family: 'TradeGothicLTStdCnBold';
  margin:0;
  padding:0;
  list-style:none;
  position:absolute;
  overflow:auto;
  cursor:pointer;
  display:none;
  z-index:99999;
  outline:none;
}

/* Dropdown List Individual Options */
.selectboxit-options li, .selectboxit-options .selectboxit-optgroup-header {
  overflow:hidden;
  list-style:none;
}
/* Dropdown List Optgroup Headers */
.selectboxit-options .selectboxit-optgroup-header {
  font-weight: bold;
}
/* Dropdown List Optgroup Options */
.selectboxit-options .selectboxit-optgroup-option {
  text-indent: 20px;
}
/* Dropdown List Optgroup Header hover psuedo class */
.selectboxit-options .selectboxit-optgroup-header[data-disabled='true']:hover {
  cursor: default;
} 
/* Dropdown List Down Arrow Container (if an image is not used) */
.selectboxit-arrow-container {
  /* Positions the down arrow */
  width: 30px;
  float:right;
}
/* Dropdown List Down Arrow */
.selectboxit-arrow {
  /* Horizontally centers the down arrow */
  margin-right:auto;
  margin-left:auto;
}
/* Dropdown List Individual Option Icon Positioning */
.selectboxit-options li span {
  float:left;
}
#leftcol .schmal .box.select {
height:23px;
}
#leftcol .schmal .box.select {
background:none;
margin-bottom:2px;
box-shadow:2px 2px 2px #484748;
}
#leftcol .schmal .box.select .inside.aktiv {
 padding:0;
 height:23px;
}
.selectboxit-text {
	padding-left:9px;
	color:#222;
}
#leftcol .schmal .box.select .inside.aktiv ul.selectboxit-options {
 background:#E4E4E4;
 background: rgba(228, 228, 228, 0.8);
    border-radius: 12px 12px 12px 12px;
    box-shadow: 2px 2px 2px #484748;
	padding:5px 9px;
}
#leftcol .schmal .box.select .inside.aktiv ul.selectboxit-options li{
line-height:auto;
opacity:1;
display:block;
border-radius:0;
box-shadow:none;
background:none;
padding:0;
}
#leftcol .schmal .box.select .inside.aktiv ul.selectboxit-options li span {
display:none;
}