#aniversary {
	font-size: 11px;
	text-align: justify;
	font-family: Arial, Helvetica, sans-serif;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #006600;
	height: 72px;
	padding-top: 8px;
	width: 775px;
	padding-right: 5px;
	position: relative;
}
a:hover {
	color: #990000;
	text-decoration: underline;
}

#container {
	width: 780px;
	margin: 0 auto;
	text-align: left;
	background-color: #FFFFFF;
} 
#header {
	padding: 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.main #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 {
	float: left; /* since this element is floated, a width must be given */
	width: 414px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 5px 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #318B2B;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #318B2B;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #318B2B;
	text-align: justify;
}
#grant {
	width: 335px;
	background-image: url(../images/grant.jpg);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	background-repeat: no-repeat;
	background-position: top;
	padding: 4px 5px 80px 6px;
	text-align: justify;
	border-top: 1px #073EA5;
	border-right: 1px #073EA5;
	border-bottom: 1px #073EA5;
	border-left: 1px dotted #073EA5;
	float: right;
}
.about {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: justify;
	background-image: url(../images/grass-bg.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	list-style-position: inside;
	list-style-type: disc;
}
.textHeaders {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #006600;
}


#main_text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #006600;
	padding-bottom: 0px;
	width: 428px;
	padding-right: 3px;
	padding-left: 4px;
	clip: rect(auto,auto,auto,auto);
	top: 10px;
	float: left;
	margin-top: 12px;
}
#mainContent {
	margin: 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 0px 0 5px;
	width: 360px;
	float: right;
} 
#footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	top: 15px;
	text-align: center;
	position: relative;
	margin: 0 auto;
	width: 760px;
	color: #666666;
	background-color: #FFFFFF;
	background-position: center;
	padding-right: 10px;
	padding-left: 10px;
} 
#equipment {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	top: 10px;
	float: left;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 2px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #006600;
	text-align: justify;
	position: relative;
	width: 420px;
}
#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 */
	width: 780px;
}
.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;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
 
