@charset "utf-8";
body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.container { 
	width: 550px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-left: 1px solid #000000;
	background: url(/images/paperBG.jpg) repeat-y;
	padding:  10px;
} 

.container P { 
	color: #000000;
	font: 12px Verdana, Arial, Helvetica, sans-serif;
}

.container a:link {
	color: #000066;
	text-decoration:underline;
}

.container a:visited {
	color: #000066;
	text-decoration:underline;
}

.container a:hover {
	color: #333333;
	text-decoration:none;
}

.header { 
	background: url(/images/hed3.jpg) no-repeat;
	height: 150px;
	padding: 0 10px 0 20px;
	border-bottom: 1px solid #000000;

} 

.header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.sidebar1 {
	width: 200px;
	background-color:#990000;
	padding: 0px 5px 5px 5px;
	font: 10px Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	line-height: 25px;
}

.sidebar1 a:link, a:visited {
	color: #FFFFFF;
	text-decoration:underline
}

.sidebar1 LI {
	padding-left: 5px;
	line-height: 15px;
}

.sidebar1 a:hover {
	color: #999999;
	text-decoration:underline
}

.footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	border-top: solid .5px #000000;
} 
.footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align:center;
	font: 9px Verdana, Arial, Helvetica, sans-serif;
}