/* styles for most pages on this site */

html { margin: 0; padding: 0 }
body {
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 14px;
	background: white;
	color: black;
}
h1, h2, h3, h4, h5, h6 {
	font-family: Arial, Helvetica, sans-serif; 
}
h1 {
	font-size: 200%
}
h2 {
	font-size: 150%
}
h3 {
	font-size: 130%
}
.bordered { 
	border: solid 1px black; 
}
address {
	font-size: 80%; 
	text-align: center;
}
p.revised { 
	font-size: 80%; 
	font-style: italic;
	text-align: center;
}

/* 'sitenavbar' is class of div for side site navigation links */

div.sitenavbar {
	position: absolute;
	top: 130px; left: 10px; width: 12%;
	font-size: 14px;
	background: rgb(255,204,153);
	border: 1px solid black;
}
div.sitenavbar a { 
	color: rgb(148,30,0);
	display: block;
	padding: 4px 8px;
	margin: 0;
	border-top: 1px solid gray;
	text-decoration: none;
	font-weight: bold;
}
div.sitenavbar a:hover {
	background-color: rgb(255,224,198);
}
div.sitenavbar a:visited {
	color: rgb(210,50,0);
}

/* 'maincontent' is used to format main content div of each page */

div#maincontent {
	margin: 80px 5px 5px 15%;
	font-size: 14px;
}

/* 'firstcontent' is used to format main content div of the FIRST page,
   to leave room for the extra box on the right hand side */

div#firstcontent {
	margin: 80px 23% 5px 15%;
	font-size: 14 px;
}

/* this positions the logo in the upper left corner */

img#nwpcglogo {
	position: absolute; 
	left: 10px; 
	top: 10px;
}

/* this sets the margin on the H1 element to leave room for the logo.  
   It assumes only one H1 is being used per page -- at the top! */
body h1 {
	margin-left: 330px; 
	margin-top: 12px;
}

/* 'upcoming' is the div id used to show upcoming meetings on the main page */

div#upcoming {
	position: absolute;
	right: 5px;
	top: 80px;
	width: 20%;
	background: rgb(179,225,199);
	padding: 12px;
}
div#upcoming h2 {
	margin: 0;
	border-bottom: solid 1px gray;
}
div#upcoming p {
	font-weight: normal;
	margin: 0.6em 0em;
}