/* CSS Document */

#menu_options li {
	list-style: none;
	position: relative;
	margin: 0;
}
#menu_options li.menu_sub_option {
	width: 225px;
	font-size: .9em;
	font-weight: bold;
	background: #dee2d1;
	border: 1px solid #999999;
	border-top: none;
	vertical-align: bottom; /* for IE5/win */
}
#menu_options ul ul a {
	display: block;
	padding: 4px 10px;
	vertical-align: bottom; /* needed for IE5/win */
	text-decoration: none;
	color: black;
}
#menu_options ul ul {
	position: absolute;  
	left: -3000px;
	border-top: 1px solid #999999;
	background: #eee6e3;
}
#menu_options ul ul li:hover {
	background: #e6dbd0;
}
#menu_options ul li:hover ul {
	left: 200px;
	top: -2px;
}
#menu_options ul a:hover {
	text-decoration: none;
}
	
/* \*/ /*/ 
#menu_options ul li ul {position: static;}
/* */

/* The block above hides the rule inside so that only IE5/Mac can see it.
This rule causes the menus to be fully expanded vertically in that browser,
allowing those users to access the navigation without needing to hover it. */