/* Menu CSS Document */
/*ul with id red_white_blue_list*/
#red_white_blue_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 */
#red_white_blue_list a { 
	background-image: url(images/star.jpg);
	background-repeat: no-repeat;
	height: 28px;
	display: block;
	color: #FFF;
	background-color: #c00;
	width: 10em;
	padding: .4em .2em .2em 2.5em;
	text-decoration: none;
	border: 1px solid gold;
}

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

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

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