/*
PAGE LAYOUT STYLES
*/
/*
The background image is set to be fixed (while the page is scrolled) by
use of the background-attachment property.*/
body {
	font-family: Verdana, tahoma, Arial, Helvetica, sans-serif;
	font-size: 90%;
	background-color: #FFFFFF;
	background-attachment: fixed;
	background-image: url(images/buffgrad.jpg);
	background-repeat: repeat-x;
	margin: 2px 0 0;
}
/*
Sets the large masthead background image, sets the height of the table cell
to match the height of the background image. Sets the table cell contents
to align in the middle. */
#masthead {
	border-bottom: 1px solid #fff;
}
#logodiv img {
	display: block;
}
/*
This is a DIV that surrounds the page content and centers it.
Because of the way this page is structured, it serves to work around
a bug in IE5 Mac to ensure the page centers.*/
#pagewrapper {
	width: 900px;
	margin: 0 auto;
}
/*The main content tables are set to a width of 43em. This unit of
measure allows the page content to scale in width if the user resizes
text. The width is the same as the width set for the pagewrapper DIV.*/
#contentTable, #footerTable {
	width: 900px;
}
#contentTable {
	border: 1px solid #fff;
	width: 900px;
}
/*
Sets borders and background for the top-level menu items-
and font-size for the entire menu.*/
#menubar {
	background-repeat: repeat-x;
	background-color: #FFFFFF;
	font-size: 0.9em;
}
/*
Sets styles for the main content table cell. Note that the
verticalRule background image is the dashed border between the
main content cell and the sidebar.*/
#maincontent {
	padding: 0px;
	font-size: 0.85em;
	line-height: 1.5em;
	background-color: #FFFFFF;
	vertical-align: top;
}
#sidebar {
	padding: 10px 10px 0px 10px;
	width: 12em;
	vertical-align: top;
	font-size: 0.75em;
	background-color: #FFFFFF;
}
#footer {
	font-size: 9px;
	color: #000000;
	border-top-color: #FEFAF1;
	border-top-width: thick;
	border-top-style: solid;
	background-color: #FFFFFF;
}
h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: normal;
	font-size: 28px;
	color: #000066;
}
h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: normal;
	font-size: 20px;
	color: #000066;
}
/*
Sets link styles for all links on the page except the Pop Menu Magic Menu.*/
a:link {
	color: #000066;
	text-decoration: none;
}
a:visited {
	color: #000066;
	text-decoration: none;
}
a:hover, a:active, a:focus {
	color: #000066;
	text-decoration: underline;
}
