body {
	font: 14px "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000000;
	background-image: url(images/background.gif);
	background-color: #FFF;
	background-repeat: repeat-y;
}
p {
	margin: 10px 0;
}
h1 {font-size: 25px;}
table {border-collapse: collapse;}
/*
#header {
	height: 260px;
	background-color: white;
	margin: 10px;
	padding-top: 4px;
	border: 1px solid black;
	text-align: center;
}
#headerInfoBox {
	width: 300px;
	heiht: 160px;
	border: 1px solid black;
}*/
#container {
	
}

/* Main Navigation Menu */
#navMenu {
	margin: 20px 0 0 10px; /* Menu spacing from top and left of page */
	float: left;
	width: 140px;
}
#navMenu ul {
	text-align: center; /* Centers text in menu items */
	margin: 0; /* Zero's UL's default top margin */
	padding: 0;
	list-style-type: none;
}
#navMenu a {
	color: black;
	text-decoration: none;
	display: block;
	padding: 2px 0;
	border-bottom: 2px solid #7A927C;
}
#navMenu a:hover {
	border-bottom: 2px solid #BFCF52;
}/* End Main Navigation Menu */


#mainContent {
	/*background-color: pink;*/
	margin: 0 20px 0 170px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding-top: 15px; /* added */
	text-align: center;
	margin-right: 170px;
}
#footer {
	background-color: white;
	margin: 10px;
	text-align: center;
	border: 1px solid black;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.clearfloat {
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
[if IE]>
<style type="text/css"> 
#mainContent { zoom: 1; padding-top: 15px; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]

