/* ----- navigation menu CSS File ----- */
.horbar	{							/* format for the horizontal main menu */
	color: black;
	background-color: transparent;
	border: none;
	}
.horbaritem	{						/* format for horizontal main menu items */
	white-space: nowrap;
	font-size: 75%;
	}
.horbaritem a	{					/* colors, etc for horizontal main menu items */
	display: block;
	text-decoration: none;
	padding: 4px 0.66em 1px 0.66em;
	}
.horbaritem a:link	{
	color: #000000;
	text-decoration: none;
	}
.horbaritem a:visited	{
	color: #000000;
	text-decoration: none;
	}
.horbaritem a:hover	{
	color: #3b3b3b;
	background-color: #F4D448;
	text-decoration: none;
	}
.horbaritem a:active	{
	color: #ff0000;
	text-decoration: none;
	}

.menuRestricted {					/* items available only to admin types */
	color: #ffffff;
 	background-color: #ee2200;
 	padding: 0 0.5em;
  	font-style: italic;
	font-variant: small-caps;
	font-weight: bold;
	}

.submenu	{						/* needed to create (popup) sub-menus*/
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
}

.subframe	{						/* format for (popup) sub-menus */
	position: relative;
	display: block;
	background-color: #ffffff;
	border-top: 2px outset #EDB2D4;
	border-left: 2px outset #EDB2D4;
	border-right: 2px outset #6D003F;
	border-bottom: 2px outset #6D003F;
	z-index: 15;
	}
.item	{							/* format for (popup) sub-menu items */
	background-color: #ffffff;
	text-align: left;
	white-space: nowrap;
	font-size: 75%;
	border: 1px solid #F0B9D8;
	padding: 2px;
	}
.item a	{							/* colors, etc for (popup) sub-menu items */
	position: relative;
	display: block;
	text-decoration: none;
	}
.item a:link	{
	color: #000000;
	text-decoration: none;
	}
.item a:visited	{
	color: #000000;
	text-decoration: none;
	}
.item a:hover	{
	color: #3b3b3b;
	background-color: #F4D448;
	text-decoration: none;
	}
.item a:active	{
	color: #ff0000;
	text-decoration: none;
	}
.item .fwdarr	{
	position: absolute;
	top: 5px;
	right: 7px;
	}

