.i_selectbox {
	height: 26px;
	
	font-size: 14px
}
.i_selectbox .i_currentselected {
	width: 100%;
	height: 26px;
	background: #fff url(bg-select.gif) right top no-repeat;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-indent: 10px;
	line-height: 26px;
	cursor: pointer
}
.i_selectbox .i_selectoption {
	overflow-x: hidden;
	overflow-y: auto;
	position: absolute;

	background-color: #fff;
	background: rgba(255,255,255,.9);
	-webkit-box-shadow: -2px 3px 5px rgba(0,0,0,.3);
	-moz-box-shadow: -2px 3px 5px rgba(0,0,0,.3);
	box-shadow: -2px 3px 5px rgba(0,0,0,.3);
	border-radius: 5px;
	border-right: 1px solid #eee
}
.i_selectbox .i_selectoption dt {
	height: 24px;
	background-color: #eee;
	text-indent: 5px;
	font-style: italic;
	color: #555;
	line-height: 24px;
}
.i_selectbox .i_selectoption dd {
	height: 26px;
	border-bottom: 1px dashed #ccc;
	cursor: pointer;
	text-indent: 10px;
	line-height: 26px
}
.i_selectbox .i_selectoption dd:hover {
	background-color: #888;
	color: #fff
}
.i_selectbox .i_selectoption dd.selected {
	background-color: #555;
	color: #fff
}
