
/* Horizontal Navigation Menu Container */
div.navmenu { 
	width: 4000px; /* <-- OVERALL LENGTH OF MENU */
	height: 39px;  /* <-- BUTTON HEIGHT */
}

/* Navigation Menu Item */
div.menuitem	{
	font: 14pt; Papyrus, Cursive, sans-serif; /* <-- DEFAULT FONT/SIZE */
	width: 150px; /* <-- BUTTON WIDTH */
	height: 39px; /* <-- BUTTON HEIGHT */
	position:relative;	
	float: left;
	margin: 0; 
	padding: 0;
	overflow:hidden;	
}

}

/* Menu Text */
div.menuitem span {
	position: absolute;
	left: 10px;
	right:10px
	top: 14px;
	text-align: center;
	width: 44px;
	cursor: pointer;   			 
}

a {text-decoration: none; font-weight: bold}
a:link {color: blue}
a:visited {color: green}
a:hover {text-decoration: underline; color: blue}



