/* Menu CSS Document */
/*ul with id menu_list*/
/* see menu.txt */
#menu_list ul
{
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	font-weight:bold;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*create container*/
/* IE version */
#menu_list a { 
	background-image: url(../images/emblem.jpg);
	background-repeat: no-repeat;
	height: 27px;
	display: block;
	color: #FFF;
	background-color: #336633;
	width: 10em;
	padding: .4em .2em .2em 2.5em;
	text-decoration: none;
	border: 1px solid gold;
}

/* Standard version */
div > #menu_list a { 
	background-image: url(../images/emblem.jpg);
	background-repeat: no-repeat;
	height: 20px;
	display: block;
	color: #FFF;
	background-color: #336633;
	width: 8em;
	padding: .4em .2em 0em 2.5em;	/* top, right, bottom, left */
	text-decoration: none;
	border: 1px solid gold;
}

/*hover container*/
#menu_list a:hover {
	background-color: white;
	color:#336633;
}

/*space between container*/
#menu_list li { 
	margin: 0 0 .2em .2em; 
	width: 10em;
}

/*highlight active list item*/
/* IE version */
#menu_active a {
	background-image: url(../images/emblem.jpg);
	background-repeat: no-repeat;
	display: block;
	color: #c00;
	background-color: white;
	width: 10em;
	padding: .4em .2em .2em 2.5em;
	text-decoration: none;
}

/* Standard version */
div > #menu_active a {
	background-image: url(../images/emblem.jpg);
	background-repeat: no-repeat;
	display: block;
	color: #c00;
	background-color: white;
	width: 8em;
	padding: .4em .2em 0em 2.5em;
	text-decoration: none;
}