/* Menu CSS Document */
/*ul with id menu_list*/
#menu_list ul
{
	font-family: Arial, Helvetica, sans-serif;
	/*font-family:Georgia, "Times New Roman", Times, serif;*/
	font-size:16px;
	font-weight:bold;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*create container*/
#menu_list a { 
	/*
	background-image: url(images/star.jpg);
	background-repeat: no-repeat;
	*/
	font-family: Arial, Helvetica, sans-serif;
	/*font-family:Georgia, "Times New Roman", Times, serif;*/
	/*height: 25px;*/
	display: block;
	color: #FFF;
	background-color: #78B5C8;
	width: 10em;
	padding: .4em .2em .2em 2em;
	text-decoration: none;
}
/*hover container*/
#menu_list a:hover {
	background-color: white;
	color: #0e0e0e;
}
/*space between container*/
#menu_list li { 
	margin: 0 0 .2em .2em; 
	width: 10em;
	/*
	border: 1px solid gold;
	*/
}
/*highlight active list item*/
#menu_active a {
	display: block;
	color: black;
	background-color: #CABAC4;
	width: 10em;
	padding: .4em .2em .2em 2em;
	text-decoration: none;
}