/* This is required for IE to avoid positioning bug when placing content first in source. */
/* IE Menu CSS */
/** html body {
	behavior:url(/includes/css/csshover.htc);
	font-size:100%;
}*/
/* Looks like you have to specify the width of #menu
or IE5 Mac stretches it all the way across the div, and 
Opera streches it half way. */
#main #menu {
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	float:left;
	width:120px;
	margin: 0px;
	padding: 0px;
}
#main #menu p a:link,
#main #menu p a:visited,
#main #menu p a:active {
	color: #000000;
	font-weight:normal;
	text-decoration:none;
}
#main #menu p a:hover {
	text-decoration: underline;
}

/*#####################
MENU
######################*/
	#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0 0 20px 0;
		list-style: none;
		float : left;
		width : 120px;
	}
	
	#nav li { /* all list items */
		position : relative;
		float : left;
		line-height : 1.25em;
		margin-bottom : -1px;
		width: 120px;
	}
	
	#nav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		margin-left : 120px;
		margin-top : -25px;
	}
	
	#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}
	
	#nav li a {
		width: 120px;
		display : block;
		/*color : black;
		font-weight : bold;
		text-decoration : none;*/
		background-color : #C7B890;
		/*border : 1px solid black;*/
		padding : 5px 0;
		color:#524B3C;
		font-weight: bold;
		text-decoration: none;
		text-align:center;
		font-size: 12px;
	}
	
	#nav li a:hover {
		color : #333333;
		background-color : #E8E8E8;
	}
	
	#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
		left: -999em;
	}
	
	#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
		left: auto;
	}
-->