
@media screen, projection {
/* This next rule exploits a parsing bug in MacIE5 so @media rules will be applied on screen*/
.BeNiceToMacIE5 {        /* next 2 lines are known as the "box model hack" */

}
/* WinIE5 hoses the selector following a box model hack, 
   so a dummy selector here will resync it */
.resyncWinIE5 {
}
body {
	font-size: 100%;     /* prevent weird scaling in WinIE */
}

/* hide the heading off-screen and don't let it affect list position */

#navbar ul,
#navbar li {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	overflow: hidden;
}
/* hide from MacIE \*/
div#navbar ul,
div#navbar li {
	overflow: visible;
} /* end hack */

/* default list styles are for the disappearing submenu lists */
#navbar ul {
	display: none;       /* hidden by default */
	position: absolute;
	left: 147px;           /* main menu width */
	top: 0px;
	z-index: 800;
	width: 200px;
}
/* override default for top-level items */
#navbar ul.mainmenu {
	display: block;
	position: relative;
	top: 0;
	left: 0;
	width: 147px;   /* a little narrower than submenus */
}

/* the default styles for submenu links */
#navbar li a {
	padding: 5px 14px 5px 14px;
	text-decoration:none;
	font-weight:bold;
	font-size:12px;
	letter-spacing: 1px;
	display: block;
	margin: 0;
	text-decoration: none;
	position: relative; /* prevent WinIE weirdness */
}
/* the colors here are the same as links embedded in the content area, but don't have to be */
#navbar li a:link {
	color: #003366;
	background-color: #ffffff;
}
#navbar li a:visited {
	color: #003366;
	background-color: #ffffff;
}
#navbar li a:hover {
	color: #ffffff;
	background-color: #003366;
}

/* the main menu link, styled as a 'CSS button' */
#navbar a.mainmenu {
  border-bottom:2px solid #ffffff;
	padding: 10px 0px 10px 22px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-decoration:none;
	font-weight:bold;
	font-size:12px;
	letter-spacing:1px;
	text-align: left;
	display: block;
	margin: 0;
	visibility: visible;
/* for mozilla browsers, (optionally) round the top corners to give a 'tab' appearance */
/*  -moz-border-radius-topleft: 1em;
  -moz-border-radius-topright: 1em; */
}

/* submenu indicator (set via JS), except in MacIE \*/
#navbar a.mainmenu.more {
	background-position: 99% .8em;
} /* end submenu indicator */

#navbar a.mainmenu:link {
	color: #ffffff;
	background-color: #1A3664;
}
#navbar a.mainmenu:visited {
	color: #ffffff;
	background-color: #1A3664;
}

#navbar a.mainmenu:hover {
	color: #ffffff;
	background-color: #ff0000;
}



/* hack to prevent excessive spacing in WinIE */
* html #navbar ul.mainmenu li {
	display: inline;
} /* end hack */
/* hack to prevent weird widths in WinIE5 \*/
* html #navbar ul.mainmenu li a {
	height: 1%;
} /* end hack */

} /* end screen rules */

/* print media rules */
@media print {
body {
	padding-top: 0;
}
div#navbar {
	display: none;
}

} /* end print media rules */

