/*******************************************************
 Presentation CSS that typically needs to be customized
*******************************************************/
#FathomMenu { /* menu wrapper div */
	background-color: #F3F6FE;
	width: 100px;
	list-style-type: none;
	margin: 0px 0px 0px 0px;
}

#FathomMenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 165px; /* Width of Menu Items */
	}

#FathomMenu ul li {
	position: relative;
	list-style-type: none;
	}
	
#FathomMenu li ul {
	position: relative;
	left: 15px; /* Set 1px less than menu width */
	list-style-type: none;
	display: block;
	}
	
/* Styles for Menu Items */
#FathomMenu ul li a {
	display: block;
	text-decoration: none;
	padding: 5px;
	border-bottom: 0;
	font-size: 8pt;
	font-family: Arial;
	color: #2e3295;
	padding-left: 20px;
	}
	
/* Styles for Menu Items */
#FathomMenu ul li a:visited {
	display: block;
	text-decoration: none;
	padding: 5px;
	border-bottom: 0;
	font-size: 8pt;
	font-family: Arial;
	color: #2e3295;
	padding-left: 20px;
	}

/* Fix IE. Hide from IE Mac \*/
* html #FathomMenu ul li { float: left; height: 1%; }
* html #FathomMenu ul li a { height: 1%; }
/* End */
		
#FathomMenu li:hover ul { display: block; } /*  The magic */