body {
	background-image: url(background.jpg);
}


/*Pagewrapper serves as a container for all elements on the page.
Min-width is set to 720px. This prevents the box from getting too narrow -
to the point that it would either break the layout or make text
impossible to read. When a user makes the browser window narrow,
pagewrapper will shrink in width until it reaches 720px - then the
browser will spawn a horizontal scrollbar. MSIE 6 does not support
min-width, but we have included a special workaround. See the
readme_first file included with this PagePack for details.*/
#pagewrapper{
	margin: 0 0 0 0;
	min-width: 720px;
}

/*Sets all table cells to align their content to the top.*/
td {vertical-align: top;}

/*The menubar DIV is the container for our menu. Background image
is set to render a textured behind the top-level links that matches
the sub-menu texture. Dark gray borders are set on all sides except
for the top. The lighter-colored top border you see is actually part
of the masthead images. Font-size is set to .85em for the entire menu.*/
#menubar {
	font-size: 0.65em;
	border-bottom: 0px solid #666666;
	border-right: 0px solid #666666;
	border-left: 0px solid #666666;
	background-image: url(../images/barthz_menblue.gif);
	background-color: #DED594;
}

/*Sidebar1 is the left sidebar table cell.*/
#sidebar1 {
	font-size: .75em;
	width: 160px;
	padding: 2px;
	border-left: 1px solid #666666;
}

/*Maincontent is the center content table cell. We assign a background
image to create a dashed vertical rule between maincontent and sidebar1.*/
#maincontent {
	font-size: .9em;
	background-image: url(../images/body_background.jpg);
	background-repeat: repeat;
	background-position: left top;
	padding: 6px 8px;
}

/*Maincotent paragraph margins.*/
#maincontent p {
	margin: 8px 0 12px 0;
}

/*Sidebar2 is the right sidebar table cell. We assign a background
image to create a dashed vertical rule between sidebar 2 and maincontent.*/
#sidebar2 {
	font-size: 0.8em;
	background-image: url(../images/body_background.jpg);
	background-repeat: repeat;
	background-position: left top;
	padding: 1px;
	width: 155px;
	border-right: 1px solid #666666;
}

/*Footer styles*/
#footer {
	font-size: 0.95em;
	color: #29528D;
}
#footer p {
	color: #FFFF00;
}

/*Heading Styles*/
h1, h2, h3 {
	margin: 5px;
	font-size: 1.2em;
	font-family:  "Trebuchet MS", Arial, sans-serif;
	color: #336699;
	text-align: left;
	line-height: normal;
	font-weight: bold;
}
h2, h3 {
	margin: 5px;
	font-size: 1.1em;
	font-family:  "Trebuchet MS", Arial, sans-serif;
	color: #336699;
	text-align: left;
	line-height: normal;
	font-weight: bold;
}
h3 {
	margin: 5px;
	font-size: 1.0em;
	font-family:  "Trebuchet MS", Arial, sans-serif;
	color: #336699;
	text-align: left;
	line-height: normal;
	font-weight: bold;
}
#sidebar1 h3, #sidebar2 h3 {
	color: #336699;
}
/*the top class is applied to headings at the top of a DIV when we want
those heading to be flush with the top of the DIV. This class can be
assigned to any element to set its margin to zero.*/
.top {margin: 0;}

/*Link Styles. Applies to links except
those that are in the main menubar.*/
a:link {
	color: #29528D;
}
a:visited {
	color: #29528D;
}
a:hover, a:active, a:focus {
	color: #29528D;
}
#sidecontent a:link {
	color: #29528D;
}
#sidecontent a:visited {
	color: #29528D;
}
#sidecontent a:hover, #sidecontent a:active, #sidecontent a:focus {
	color: #29528D;
}
#copyright a:link {
	color: #5A89CF;
	font-size: 0.8em;	
}
#copyright  a:visited {
	color: #5A89CF;
	font-size: 0.8em;	
}
#copyright  a:hover, #sidecontent a:active, #sidecontent a:focus {
	color: #5A89CF;
	font-size: 0.8em;	
}
