.drop-control {
	box-shadow: none;
	margin: 0 auto;
}

.drop-wrap {
	color: #808080;
	font-size: 14px;
	margin: 20px 0;
}

.drop-wrap.hide {
	display: none;
}

.drop {
  background: white;
	border-
  -moz-box-shadow: 0 3px 0 rgba(0, 0, 0, .1);
  -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 3px 0 rgba(0, 0, 0, .1);
  list-style-type: none;
  margin: 10px 0 0 -115px;
  max-height: 220px;
	overflow-y: scroll;
	padding: 0;
  position: absolute;
  transition: max-height .5s;
  -webkit-transition: max-height .5s;
  width: 230px;
  z-index: 1;
}

.drop.hide,
ul.states.hide {
  display: block;
  max-height: 0;
  overflow: hidden;
	pointer-events: none;
}

.drop li {
  border: 1px solid rgba(0, 0, 0, .1);
  border-width: 0 1px 1px;
  line-height: 30px;
}

.drop li:first-child {
  border-width: 0 1px 1px;
}

.drop li:hover {
  /*background-color: #F2F2F2;*/
 border-bottom-color: #bfc0bb;
}

.drop + .drop-arrow {
  display: block;
  height: 20px;
  left: 50%;
  margin: -10px 0 0 -115px;
  overflow: hidden;
  position: absolute;
  text-align: center;
  width: 230px;
}

.drop + .drop-arrow:after {
	content: '\00A0';
	border-top: 1px solid rgba(0, 0, 0, .1);
	left: 50%;
	margin: 0 0 0 -115px;
	opacity: 1;
	pointer-events: none;
	position: absolute;
	top: 19px;
	width: 230px;
}

.drop.hide + .drop-arrow:after {
	opacity: 0;
	transition: opacity 0 .5s;
}

.drop + .drop-arrow span {
  border: 10px solid;
  border-color: transparent transparent rgba(0, 0, 0, .1);
  display: inline-block;
  height: 0;
  transition: margin-top .5s;
  -webkit-transition: margin-top .5s;
  width: 0;
}

.drop.hide + .drop-arrow span {
  margin-top: 10px;
}

.drop.fluid > li {
  white-space: nowrap;
}

.drop.fluid {
  width: auto;
  border: 3px solid rgba(0, 0, 0, .1);
  border-width: 3px 0 0 0;
  transition: max-height .5s .1s, border .5s;
  -webkit-transition: max-height .5s .1s, border .5s;
}

.drop.fluid.hide {
  overflow-y: scroll;
  border-top-width: 0;
  transition: max-height .5s, border-top-width 0 .5s;
  -webkit-transition: max-height .5s, border-top-width 0 .5s;
}

