.jbSelectContainer {
  margin: 0 3px;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /*  dropdown list and variants */
  /* select label and variants */
  /* select arrow and variations -- this may be deprecated? not seeing it in the markup */
  /* dropdown arrow sprite and variations */
  /* css3pie variations */
}
.jbSelectContainer .jbDropdownList {
  z-index: 20;
  display: block;
  max-height: 0px;
  height: auto;
  background: #306faa;
  -ms-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  width: 98%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  margin: 0;
  position: absolute;
  padding: 0;
  overflow: hidden;
  /*	-webkit-transition: max-height 0.1s ease;
		-moz-transition: max-height 0.1s ease;
		transition: max-height 0.1s ease; */
  outline: 1px solid transparent;
}
.jbSelectContainer .jbDropdownList li {
  display: inline-block;
  white-space: nowrap;
  font-weight: bold;
  width: 99%;
  padding: 4px 0 4px 5px;
  font-size: .8em;
  margin: 1px 0;
}
.jbSelectContainer .jbDropdownList li.focused {
  background-color: #004990;
  outline: 1px solid #004990;
}
.jbSelectContainer.JumpTo .jbDropdownList {
  margin-top: -35px;
}
.jbSelectContainer.JumpTo .jbDropdownList .selected {
  height: 15px;
  margin-top: 10px;
}
.jbSelectContainer.JumpTo .jbDropdownList li {
  padding-left: 15px;
}
.jbSelectContainer.open .jbDropdownList {
  max-height: 300px;
  height: auto;
}
.jbSelectContainer .jbSelectLabel {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: #f9f9f9;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #f2f2f2));
  background: -webkit-linear-gradient(top, #fff 0, #f2f2f2 100%);
  background: -o-linear-gradient(top, #fff 0, #f2f2f2 100%);
  background: -ms-linear-gradient(top, #fff 0, #f2f2f2 100%);
  background: linear-gradient(to bottom, #fff 0, #f2f2f2 100%);
  /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f2f2f2', GradientType=0);*/
  padding: 10px;
  padding-right: 20px;
  display: block;
  color: #306FAA;
  font-size: .84em;
  font-weight: 700;
  border: 1px solid #f9f9f9;
  box-shadow: 1px 1px 1px #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=1,Direction=135,Color='#cccccc')";
}
.jbSelectContainer .jbSelectLabel:hover {
  background: white;
  filter: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=1,Direction=135,Color='#cccccc')";
}
.jbSelectContainer .jbSelectLabel:focus {
  outline: 1px solid #7FB6E8;
  filter: none;
}
.jbSelectContainer.JumpTo .jbSelectLabel {
  /*outline:none;*/
}
.jbSelectContainer .jbSelectArrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid;
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 10px;
}
.jbSelectContainer.open .jbSelectArrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid;
  border-top: none;
  display: inline-block;
  float: right;
}
.jbSelectContainer .jbSelectArrowSprite {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.jbSelectContainer .jbSelectArrowSprite img {
  position: absolute;
  max-width: none;
  top: 2px;
}
.jbSelectContainer .jbSelectArrowSprite.upDownArrow {
  width: 11px;
  height: 9px;
  margin-left: 2px;
  float: right;
  margin-right: -13px;
  margin-top: 2px;
}
.jbSelectContainer.disabled > div .jbSelectArrowSprite {
  display: none;
}
.jbSelectContainer.open div .jbSelectArrowSprite.upDownArrow img {
  top: -6px;
}
.jbSelectContainer.error .jbSelectLabel {
  color: #be3010;
  border: 1px solid #be3010;
}
.jbSelectContainer css3pie {
  display: none !important;
}
.jbSelectContainer.open css3pie {
  display: block !important;
}
/* some ie8-related stuff that doesnt nest well */
html.ie8 {
  border: 1px solid #ccc;
}
.ie8 .jbSelectContainer .jbSelectLabel {
  border-style: solid;
  border-width: 1px;
  border-color: #d3d3d3;
}
