body2 { 
	font-falmily: arial;
	font-size: 50%;  
	color: black;
	background: #fbec5d;
} 
ul#nav,
ul#nav ul {
	margin: 0;
	padding: 0;
	width: 160px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	background: #fbec5d; /* IE6 Bug */
	color: black;
	font-size: 100%;
	}
 
ul#nav li {
	position: relative;
	list-style: none;
	}
 
ul#nav li a {
	display: block;
	font-family: arial;
	font-size: 12px;
	line-height : 160%;
	text-decoration: none;
	font-weight : normal;
	color: black;
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	}
	
/* Fix IE. Hide from IE Mac \*/
* html ul#nav li { float: left; height: 1%; }
* html ul#nav li a { height: 1%; }
/* End */
 
ul#nav ul {
	position: absolute;
	display: none;
	left: 159px; /* Set 1px less than menu width */
	top: 0;
	}
 
ul#nav li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
 
ul#nav li:hover ul ul,
ul#nav li:hover ul ul ul,
ul#nav li.over ul ul,
ul#nav li.over ul ul ul { display: none; } /* Hide sub-menus initially */
 
ul#nav li:hover ul,
ul#nav li li:hover ul,
ul#nav li li li:hover ul,
ul#nav li.over ul,
ul#nav li li.over ul,
ul#nav li li li.over ul { display: block; } /* The magic */
 
/* ul#nav li.menuparent { background: transparent url(arrow.png) right center no-repeat; } */
ul#nav li.menuparent {
  background-image:url(arrow.png);
  background-repeat:no-repeat;
  background-position: 145px 11px;
}
ul#nav li.menuparent:hover,
ul#nav li.over { 
	background-color: #f9f9f9; 
}
 
 
ul#nav li a:hover { 
/*	color: #E2144A; 	*/
	text-decoration : underline;
}