/* Menu CSS Document */
/*ul with id menu_list*/
#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/star.jpg);*/
	/*background-image: url(images/menu_item.jpg);
	background-repeat: no-repeat;*/
	height: 20px;
	display: block;
	/*color: #00f;*/
	color: #660000;
	/*
	background-color: #fce;*/
	/**/
	/*width: 10em;*/
	/*width: 212px;*/
	width: 150px;
	/*padding: .4em .2em .2em 2.5em;*/
	padding: .4em .0em .0em .4em;
	text-decoration: none;
	/*border: 1px solid gold;*/
}

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

/*hover container*/
#menu_list a:hover {
	/*background-color: #f4f4ff;*/
	/*color: #660000;*/
	color: #00f;
}
/*space between container*/
#menu_list li { 
	/*margin: 0 0 .2em .2em; */
	margin: 0 0 .0em .0em; 
	width: 10em;
}
/*highlight active list item*/
/* IE version */
#menu_active a {
	/*
	background-image: url(images/star.jpg);
	background-repeat: no-repeat;
	*/
	display: block;
	color: #660000;
	/*background-color: #f4f4ff;*/
	width: 10em;
	/*padding: .4em .2em .2em 2.5em;*/
	padding: .4em .2em .2em .4em;
	text-decoration: none;
}

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