/*
	Just the minimum styling to make the thing look nice
*/
.mfs-container {
	position: relative; 
	width: 130px;
	color: #666666; 
	font-family: Helvetica, Arial; 
	font-size: 12px;
}
.mfs-container select {
	position: absolute;
	width: 100%;
	top: 0;
	z-index: 1;
	opacity: 0;
}
.mfs-container.notouch select {
	display: none;
}
.mfs-options {
	position: absolute; 
	width: 100%; 
	padding: 0; 
	margin: 0; 
	list-style-type: none; 
	background: #ffffff; 
	border: 1px solid #cccccc;
	border-radius: 5px;
	z-index: 10;
}
.mfs-option{margin:0;}
.mfs-options li a {
	display: block; 
	padding: 2px 8px; 
	text-decoration: none; 
	color: #666666;
}
.mfs-optgroup-option {
	padding-left: 10px;
}
.mfs-options li.mfs-optgroup {
	padding: 4px 5px;
	color: #999999;
}
.mfs-options li.selected {
	background-color: #666666; 
}
.mfs-options li.selected a {
	color: #ffffff;
}
.mfs-options li.active {
	background-color: #cccccc;
}
a.mfs-selected-option {
	display: block; 
	padding: 8px 8px; 
	text-decoration: none; 
	background: #ffffff; 
	border: 1px solid #cccccc; 
	border-radius: 5px; 
	color: #666666;
	white-space: nowrap;
	overflow: hidden;
}
a.mfs-selected-option span {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	padding: 8px 0;
	border: 1px solid #cccccc;
	border-radius: 5px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	background: #ffffff;
	background: -moz-linear-gradient(top, #ffffff 0%, #e7e7e7 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e7e7e7));
	background: -webkit-linear-gradient(top, #ffffff 0%,#e7e7e7 100%);
	background: -o-linear-gradient(top, #ffffff 0%,#e7e7e7 100%);
	background: -ms-linear-gradient(top, #ffffff 0%,#e7e7e7 100%);
	background: linear-gradient(to bottom, #ffffff 0%,#e7e7e7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e7e7e7',GradientType=0 );}

a.mfs-selected-option span:after {
	display: inline-block;
	position: absolute;
	top: 15px;
	left: 11px;
	width: 0;
	height: 0;
	border-top: 4px solid #999999;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	content: "";
}
