ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	/* display: inline; */
}
li { /* all list items */
	float: left;
	position: relative;
	width: 120px;
}
li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
}
li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}
li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
	margin-top:2px; 
	padding:3px; 
	background-color:#1E94DB;
/*	background-image:url(/jpg_samples/cycl_men.png);
	background:expression("none");
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/jpg_samples/cycl_men.png', sizingMethod='scale', enabled=true); */
	border:1px solid #000000;
}

.visible {
	display: block;
	margin-top:2px; 
	padding:3px; 
	background-color:#1E94DB; 
/*	background-image:url(/jpg_samples/cycl_men.png);
	background:expression("none");
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/jpg_samples/cycl_men.png', sizingMethod='scale', enabled=true); */
	border:1px solid #000000;
}	

#content {
	clear: left;
}


