.jkMenu {
	background: rgb(220,220,220);
	background: -moz-linear-gradient(top, rgba(220,220,220,.5), rgba(150,150,150,.5));
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(220,220,220,.5)), to(rgba(150,150,150,.5)));
	border: 1px solid gray;
	font-size: 11px;
	height: 20px;
	padding: 5px;
	position: absolute;
	text-align: center;
	width: 180px;
	margin: 0;
	z-index: 999;
}

.jkMenu:hover {
	background: -moz-linear-gradient(top, rgba(220,220,220,1), rgba(150,150,150,1));
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(220,220,220,1)), to(rgba(150,150,150,1)));
}

.jkMenu select {
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	background-color: rgba(220,220,220,.5);
	border: 1px solid white;
	height: 20px;
	width: 140px;
}

.jkMenu:hover select {
	background-color: rgba(220,220,220,1);
}

select option {
	background-color: rgba(240,240,240,.9);
}

select option.alt {
	background-color: rgba(250,250,250,.9);
}

select option.error {
	text-decoration: line-through;
	color: gray;
}