/* --- static menu styles ---
note:
	1. not all browsers render styles the same way so try out your style sheet
	on different browsers before publishing;
style naming convention:
	menu<zero based menu number><inner or outer tag>
*/

/* all levels inner */
.innermouseout {
	font: 12px Tahoma, Verdana, sans-serif;
	font-weight: bold;
	text-decoration : none;
	padding: 4px;
	color: black;
	text-align: center;
}
.innermouseover {
	font: 12px Tahoma, Verdana, sans-serif;
	font-weight: bold;
	text-decoration : none;
	padding: 4px;
	color: red;
	text-align: center;
}
.innermousedown {
	font: 12px Tahoma, Verdana, sans-serif;
	font-weight: bold;
	text-decoration : none;
	padding: 4px;
	color: black;
	text-align: center;
}
/* all levels outer */
.outermouseout {
	text-decoration : none;
	border : 0px solid #666666;
	background: #999999;
}
.outermouseover {
	text-decoration : none;
	border : 0px solid #666666;
	background: #aaaaaa;
}
.outermousedown {
	text-decoration : none;
	border : 0px solid #666666;
	background: #999999;
}

a:link { text-decoration: none; }
a:active { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }