/* CSS Document ********************************************
Primary Navigation Bar - Morning By Morning

This style sheet formats the item text, colors, background imagery,
and handles hovering behaviors including enabling tooltips for 
appropriate items. Table attributes are also set, except for centering, 
which is cleaner in html due to IE bugs.

partial color history:
#FFCC33 - medium orange
#FFFF55 - light yellow
#292173 - dark blue
#000033 - navy
#333366 - gray-blue
************************************************************/
table.navbar {
	background-image: url(../images/bluebar_bg.gif);
	height: 23px;
	padding: 0px;
	border: none;
	text-decoration: none;
}
#here {
	color: #FFFFFF;
}
#here a:link {
	color: #FFFFFF;
}
#here a:visited{
	color: #FFFFFF;
}
.navtext {
	font: normal bold 12px/20px lucida, Helvitica, sans-serif;
	color: #000066;
	text-decoration: none;
	width: 12%;
	padding: 0px;
	margin: 0px;
}
.navtext a:link {
	text-decoration: none; 
	color: #000066;
}
.navtext a:visited {
	text-decoration: none; 
	color: #000066;
}
.navtext a:hover {
	background-color: transparent;
	color: #FFFF55;
}
/* This is what produces the Tool Tips (navbartt.css)*/
.navtext a:link span { display: none;}
.navtext a:visited span {display: none;text-decoration: none;}
.navtext a:hover span {
 	display: block;
	position: absolute;
	margin:20px 0px 0px 20px;
  	background-color: #FFFFC0; 
  	width: 150px;
  	padding: 2px 7px 2px 7px;
  	border: 1px outset;
  	font: normal 10px/12px verdana;
  	color: #000;
  	text-align: left;
}

/* Nullify if flagged as current page */
#here a:link span { display: none;}
#here a:visited span {display: none;text-decoration: none;}
#here a:hover span {display: none;text-decoration: none;}
