.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;
	font: 12px Tahoma, Arial, sans-serif;
	background: #ccefff;
	border: 1px #2d86b3 solid;
	border-radius: 4px;
	text-align: left;
}
.default-select_focus {
	background: #a9e9ff;
}
.default-select_hover {
	background: #a9e9ff;
	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: #ccefff;
	border: 1px #2d86b3 solid;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	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: #0e08a2;
	background: #a9e9ff;
}

.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;
}