/* --- 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<zero based menu number>l<zero based level number>i|o<for inner or outer tag>
	
Fonts:
	font-family: Times New Roman,Georgia,Times;
	font-family: Tahoma, Verdana, sans-serif;
	
Text size: 
	font-size: 14px;
	
text-decoration : none;
Value:   none | [ underline || overline || line-through || blink ] | inherit  

text-shadow: black 0px 0px 5px;
text-shadow: 3px 3px red, yellow -3px 3px 2px, 3px -3px
Value:   none | [<color> || <length> <length> <length>? ,]* [<color> || <length> <length> <length>?] | 

Makes a border of indicated color inside of the box for each menu item: 
border : 1px solid #ffffff;

Text alignment in box:
text-align : center;

Padding buids n pixel pad between text top & bottom and border, will stretch height of menu over size in .tp1 file if bigger,
and can cause the menu cell to "grow" when mouse is over if font(bigger or bold fo mouse-over)+padding is greater then
cell size in .tp1 file 
padding: 1px;

*/

.m0l0i {
	font-family: Tahoma, Verdana, sans-serif;
	font-size: 14px;
	text-decoration : none;
	text-align : center;
	padding: 1px;
}
.m0l0o {
	text-decoration : none;
	border : 1px solid #000000;
}
.m0l1i {
	font-family: Times New Roman,Georgia,Times;
	font-size: 12px;
	text-decoration : none;
	padding: 4px;
}
.m0l1o {
	text-decoration : none;
	border : 1px solid #ffffff;
}
.m0l2i {
	font-family:Times New Roman,Georgia,Times;
	font-size: 12px;
	text-decoration : none;
	padding: 4px;
}
.m0l2o {
	text-decoration : none;
	border : 1px solid #ffffff;
}

