/* --- 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:
	m-<out | over | click>-<inner | outer>-<level>
*/

/* mouse out, level 1 inner */
.m-out-inner-1 {
	font: 12px Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration : none;
	padding: 4px;
	padding-left: 1em;
	color: #ffffff;
	text-align: left;
}
/* mouse out, all other levels inner */
.m-out-inner-other {
	font: 12px Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration : none;
	padding: 4px;
	text-align: left;
	color: #ffffff;
}
/* mouse over, other inner */
.m-over-inner-other {
	font: 12px Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration : none;
	padding: 4px;
	text-align: left;
	color: #000000;
}
/* mouse over, level 1 inner */
.m-over-inner-1 {
	font: 12px Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration : none;
	padding: 4px;
	padding-left: 1em;
	color: #000000;
	text-align: left;
}
/* mouse out, level 1 outer */
.m-out-outer-1 {
	text-decoration : none;
	border: none;
	border-top: 3px solid white;
	border-bottom: 3px solid white;
	background: #de002b;
}
/* mouse out, all other levels */
.m-out-outer-other {
	text-decoration : none;
	border-left: none;
	border-top: 3px solid white;
	border-bottom: 3px solid white;
	border-right: 5px solid white;
	background: #de002b;
}
/* mouse over, level 1 */
.m-over-outer-1 {
	text-decoration : none;
	border-left: none;
	border-top: 3px solid white;
	border-bottom: 3px solid white;
	border-right: 5px solid white;
	background: #de002b;
	color: #000000;
}
/* mouse over, all levels */
.m-over-outer-other {
	text-decoration : none;
	border-left: none;
	border-top: 3px solid white;
	border-bottom: 3px solid white;
	border-right: 5px solid white;
	background: #de002b;
	color: #0000000;
}

a:link { text-decoration: none; }
a:active { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }

