/*  general css for all pages on site  */

body {
	background-color: #116185;
	margin-left: 0; margin-top: 0;
}

div#center-this-page {	/* sets standard page width for site * causes pages to center on wider screens */
	width: 995px;
	margin-left: auto;
	margin-right: auto;
}


/* Master menu bar settings.  Some items need to be set specifically or overridden for the different variations */

.top-menu {
	border-left: 1px solid white;
	border-top: 1px solid white;
	/* background: set in page specific css */
	width: 994px;	/* for 1024 wide, leaving space for window border & scroll bars (995 - 1 for left border) */
	/* height: set in page specific css */
}
	.top-menu p {
		margin: 0;
		float: left;
		/* line-height: set in page specific css */
		font-size: 12pt;
		font-weight: bold;
		color: #4b4b4b;
		padding-left: 1em;
	}
	.top-menu ul {
		list-style-type: none;
		overflow: auto;
		padding: 0;
		margin: 0;
	}
		.top-menu ul li {
			float: right;
			margin: 0;
		}
		.top-menu ul li img {
			float: left;		/* left should be left edge of the li.  required with BLOCK anchors */
		}
		.top-menu ul li a {
			display: block;		/* so that whole thing is clickable */
			/* height:  set individually based on background image */
			text-decoration: none;
			font-family: Tahoma, sans-serif;
			font-variant: small-caps;
			font-weight: bold;
			font-size: 10pt;
			color: #4b4b4b;
			/* padding:  set individually based on background image */
		}
		/* Set this entire block in the page specific css (use id to overide class)
		.top-menu ul li a:hover {
			background: url(images/button-bar-inverse.gif) repeat-x;
		} */
		* html .top-menu ul li a {	/* IE hack, required for IE to render the rest of this proper like */
			width: 1%;
		}

		/* -X-X-X- End Menu Bar Group -X-X-X- */

div#bottom-bar {
	width: 995px;
	height: 50px;
	background: url(images/bottom-bar-background-a.gif) repeat-x;
	padding-top: 10px;
	clear: both;
}
	div#bottom-bar p {
		text-align: center;
		font-family: Verdana, sans-serif;
		font-size: 10px;
		font-weight: bold;
		color: #000000;
	}
		div#bottom-bar p span {
			font-size: 9px;
			font-weight: normal;
		}
	div#bottom-bar a {
		font-family: Verdana;
		font-size: 10px;
		font-weight: bold;
		text-decoration: none;
		color: #000000;
	}
