.selectbox {
	vertical-align: middle;
	cursor: pointer;
}
.selectbox .select {
	width: 255px;
	height: 42px;
	padding: 0 40px 0 0;
	font-size: 14px;
	font-family:  Arial,Helvetica,sans-serif;
	color: #fff;
	background: #121212;
	border: 1px solid #2e2e2e;
}

.selectbox .select:hover {
	
}
.selectbox .select:active {
	
}
.selectbox.focused .select {
	
}
.selectbox .select .text {
	  display: block;
	  height: 39px;
	  font-weight: normal;
	  font-size: 14px;
	  white-space: nowrap;
	  text-overflow: ellipsis;
	  overflow: hidden;
	  padding: 10px 0 10px 10px;
}
.selectbox .trigger {
	position: absolute;
	top: 0;
	right: 0;
	width: 34px;
	height: 100%;
}
.selectbox .trigger .arrow {
	position: absolute;
	top: 1px;
	right: 1px;
	background: url(../images/but-select-no-focus.png) left top no-repeat;
	width: 38px;
	height: 38px;
	overflow: hidden;
	/*filter: alpha(opacity=30);*/
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 1;
}
.selectbox .trigger .arrow:after {
  content: '';
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 38px;
  z-index: -1;
  opacity: 0;
   background: #0386d6; /* Old browsers */
  background: -moz-linear-gradient(top,  #0386d6 0%, #00588a 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0386d6), color-stop(100%,#00588a)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #0386d6 0%,#00588a 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #0386d6 0%,#00588a 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #0386d6 0%,#00588a 100%); /* IE10+ */
  background: linear-gradient(to bottom,  #0386d6 0%,#00588a 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0386d6', endColorstr='#00588a',GradientType=0 ); /* IE6-9 */
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.selectbox .trigger .arrow:hover:after {
    opacity: .8;
  }
.selectbox.focused .trigger .arrow {
	background: url(../images/but-select-focus.png) right top no-repeat;
}
.selectbox:hover .arrow {
	
}
.selectbox .dropdown {
	top: 39px;
	left: 2px;
	width: 213px;
	margin: 0;
	background: transparent;
	-webkit-box-shadow: 5px 0 15px 0 rgba(0,0,0,.5), -5px 0 15px 0 rgba(0,0,0,.5);
	-moz-box-shadow: 5px 0 15px 0 rgba(0,0,0,.5), -5px 0 15px 0 rgba(0,0,0,.5);
	-ms-box-shadow: 5px 0 15px 0 rgba(0,0,0,.5), -5px 0 15px 0 rgba(0,0,0,.5);
	-o-box-shadow: 5px 0 15px 0 rgba(0,0,0,.5), -5px 0 15px 0 rgba(0,0,0,.5);
	box-shadow: 5px 0 15px 0 rgba(0,0,0,.5), -5px 0 15px 0 rgba(0,0,0,.5);
}
.selectbox ul {
	margin: 0;
	padding: 0;
}
.selectbox li {
	height: 48px;
	list-style: none;
	padding: 18px 7px 0;
	color: #fff;
	font-weight: bold;
	background: #040404;
	font-size: 18px;
	border-bottom: 1px solid #2b2b2b;
}
.selectbox li:last-child {
	border: none;
}
.selectbox li.selected {
	color: #FFF;
}
.selectbox li:hover {
	background: rgba(0,0,0,.9);
	color: #53c0ff;
}
.selectbox li.disabled {
	color: #fff;
	font-weight: normal;
	display: none;
}
.selectbox li.disabled:hover {
	background: none;
}