@charset "shift_jis";
/* CSS3 select-box */

.easy-select-box{
	background: #24140e;
	background-image: -webkit-gradient(linear, center top, center bottom, from(#b3aab0), to(#24140e)); 
	background-image: -moz-linear-gradient(bottom, #b3aab0, #24140e);
	background-image: linear-gradient(to bottom, #b3aab0, #24140e);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	text-align:left;
	font-size:14px;
	color:#fff;
}
.easy-select-box .esb-displayer{
	background: url(select-box-arrow.png) no-repeat right top;
	color:#fff;
	cursor: pointer;
	height: 30px;
	line-height:30px;
	padding:0 3px;
	text-indent: 5px;
	width: 180px;
}
.easy-select-box .esb-displayer:hover {
	filter: alpha(opacity=70);
	-ms-filter: 'alpha(opacity=70)';
	opacity: 0.7;
}
.easy-select-box:hover .esb-displayer{
	text-decoration:none;
}
.easy-select-box.disabled .esb-displayer,
.easy-select-box:hover.disabled .esb-displayer{
	background-position: 0 -36px;
}
.easy-select-box .esb-dropdown{
	background: #24140e;
	border: 1px solid #ccc;
	display: none;
	max-height: 200px;
	overflow: auto;
	position: absolute;
	z-index: 999;
	width: 200px;
}
.easy-select-box  .esb-item{
	padding:3px;
	background:#24140e;
	color:#FFFFFF;
	cursor:default;
}
.easy-select-box .esb-item:hover{
	background:#f39800;
	color:#FFFFFF;
	text-decoration:none;
}

