.select {
	vertical-align: baseline;
	cursor: default;
}
.select:focus {
	outline: 0;
}

.select,
.select .wrap_inner {
	display: inline-block;
	position: relative;
}

.select select {
	position: relative;
	left: -9999px;
}

/* ====== default skin ====== */

.default-select {
	min-width: 60px;
	height: 20px;
	margin-left: 1px;
	font: 12px Tahoma, Arial, sans-serif;
	border-style: solid;
	border-width: 1px;
	border-color: #b6966d #d0b485 #e3cb9d #d0b485;
	border-radius: 4px;
	background: #f9e4ab;
	-webkit-box-shadow: 0 1px 1px rgba(255,255,255,.96), inset 0 1px 4px rgba(64,11,0,.33);
	-moz-box-shadow: 0 1px 1px rgba(255,255,255,.96), inset 0 1px 4px rgba(64,11,0,.33);
	box-shadow: 0 1px 1px rgba(255,255,255,.96), inset 0 1px 4px rgba(64,11,0,.33);
	text-align: left;
}
.default-select_focus {
	background: #fff3d1;
	border-color: #ba9f86 #d5c0a3 #eadaba #d5c0a3;
}
.default-select_hover {
	background: #feecbc;
	border-color: #ba9f86 #d5c0a3 #eadaba #d5c0a3;
	cursor: pointer;
}

.default-select .value {
	position: absolute;
	top: 0;
	left: 0;
	right: 29px;
	overflow: hidden;
	height: 100%;
	padding: 0 5px;
	line-height: 20px;
	text-overflow: ellipsis;
}

.default-select .button {
	position: absolute;
	top: 0;
	right: 0;
	width: 26px;
	height: 100%;
	color: white;
	background-color: transparent;
}

.default-select .button_inner {
	position: absolute;
	z-index: 1;
	top: -1px;
	right: 3px;
	width: 23px;
	height: 23px;
	cursor: pointer;
	border: 0;
	background: url('../images/gui/btn-select.png') no-repeat;
}

.default-select_opened .button_inner {
	background-position: -46px 0;
	border-top: 0;
	border-bottom: 5px solid white;
}

.default-select .dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: -1px;
	width: 100%;
	background: #f8e5a8;
	border: #e3b360 1px solid;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-moz-box-shadow: 0px 3px 3px 1px rgba(41, 13, 5, 0.4);
	-webkit-box-shadow: 0px 3px 3px 1px rgba(41, 13, 5, 0.4);
	box-shadow: 0px 3px 3px 1px rgba(41, 13, 5, 0.4);
	z-index: 1000;
}
.default-select_opened .dropdown {
	display: block;
	margin-top: 2px;
}

.default-select .option {
	display: block;
	padding: 3px 5px;
}

.default-select .option_selected,
.default-select .option_hover {
	color: #a20000;
	background-color: #edd08f;
}

.dropdown_list_inner {
	overflow-y: auto;
	display: block;
	max-height: 180px;
}

/* disabled */
.default-select.disabled {
	border-color: #929292 #b2b2b2 #cbcbcb #b2b2b2 ;
	background: #e4e4e4;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	cursor: pointer;
}

.default-select.disabled .button_inner {
	background-position: 100% 0;
}