﻿table.navbar {	/*Define style for main nav links here*/
	font-family:"Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;	
	font-size:.9em;
	font-weight:bold;
	border: 0px solid red;
	border-collapse:collapse;
/*	width:100%;*/
	width:980px;
	margin-top:0px;
	margin-bottom:0px;
	text-decoration: none;
	margin-left: auto;
	margin-right: auto;

}
div.menuNormal {
	display:none;
	position:absolute;
	z-index:500;

}
td.menuNormal {
/*this affects main nav bar appearance ONLY - the CELLs that contain each main menu item*/	
	color:#F7F7F7;
	padding: 0px 30px 0px 30px;	
	vertical-align: middle;
	white-space: nowrap;
	text-decoration:none;
	height:30px;
}
div.menuHover {
	background-position: 0% 0%;
	display: inline;
	position: absolute;
	margin: 0px 0px 0px -50px; 	/*this is ONLY the (white)space between navbar and drop-down menu*/;
	z-index: 200;
	border:0x fuchsia solid;
	background-image: url('Zimages/whitedrop.png');
	background-repeat:repeat-y;
	background-position:center bottom;
	padding-left: 50px; 
	padding-right: 50px;	

	
/*this is ONLY the drop menu color space between navbar and 1st menu item*/;
	
}
td.menuHover {
/*this affects main nav bar HOVER apperance - MUST HAVE its own settings - even if it duplicates td.menuNormal settings above*/	
	color: #ff6633; 
	padding: 0px 30px 0px 30px;		
	vertical-align: bottom;
	white-space: nowrap;
	text-decoration:none;
	height:30px;
/*items above this are settings to duplicate or alter menuNormal state above; 
all below are addiional modifcations*/	
	border:0px #6D9B2D inset;	
	cursor:pointer;
	background:url('image/bar-green.png') no-repeat center top ;
/*	background-color:#000000;*/
}


/*-------Drop-Down Menus----------------*/
table.menu {
	/*DEFINE style for dropdown menu TABLES here - but only the whole block, not individual lines*/
	font-family:"Segoe UI", Tahoma, Geneva, Verdana;
/*	font-family:"Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;		*/
	font-size: 1em;
	font-weight:normal;
	margin-left: 0px;
	margin-right:0px;
	white-space: nowrap;
	line-height: 14px; /*this is to control line spacing when menu item is more than one line - CAN BE offset by padding in menuitem settigns below*/
/*	border:1px aqua solid; 	TO BE REMOVED*/
    color:#CCCCCC;/*this is for color of text that are NOT links */
}
a:link.menuitem {
	text-decoration: none;
	letter-spacing: 0pt;
	white-space:nowrap;
	color: #333333;
	display: block;
	padding-top:3px;
/*spacing between dd menu items - CELL*/ 
	
}

a:visited.menuitem { /*make these ALL the same as above of things will change when vistied*/
	text-decoration: none;
	letter-spacing: 0pt;
	color: black;
	display: block;
	padding-top:3px;
}
a:hover.menuitem {
	text-decoration: none;
	letter-spacing: 0pt;
	color: #ff6633; 
	display: block;
	padding-top:3px;
	
}
a:active.menuitem {
	text-decoration: none;
	letter-spacing: 0pt;	
	color: #8dcb37;
	display: block;
	padding-top:3px;


}

