/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */

body {
color: #000000;
background: #ffffff;
margin: auto 0 auto 0;
padding: 0 0 0 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
text-align: center; /* Centers the page content container in IE 5 browsers. */
}


h1 {
  font-size: 25px;
  font-family: "Arial Rounded MT Bold", Verdana, Geneva, Helvetica, sans-serif;
  font-weight: normal;
}

 
h2 {
  font-size: 20px;
  font-family: "Arial Rounded MT Bold", Verdana, Geneva, Helvetica, sans-serif;
  font-weight: normal;
}

h3 {
 font-size: 15px;
 font-family: "Arial Rounded MT Bold", Verdana, Geneva, Helvetica, sans-serif;
 font-weight: normal;  
}


/* rules for link pseudo-classes must go in this order to behave correctly:
 *
 * a:link
 * a:visited
 * a:hover
 * a:active
 *
 * just rememver LoVe-HAte.  */
 
a:link {text-decoration: none; color: #b22222;  background: white; }
a:visited {text-decoration: none; color: #000099;  background: white; }
a:hover {text-decoration: none; color: #b22222;  background: white; }


/*The Class that contains everthing else on the page*/
.outerwrapper {
  position: relative;
  color: #000000;
  background-color: #ffffff;
  margin: auto auto auto auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 900px;
  height: 100%;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  padding: 4px 4px 4px 4px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */

}


.topnav1 {
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-style: normal;
   font-weight: normal;
   color: #ffffff;
   background-color: white;
   margin-left: 0px;
   margin-right: 0px;
   margin-top: 0px;
   margin-bottom: 0px;
   padding-left: 0px;
   padding-right: 0px;
   padding-top: 0px;
   padding-bottom: 12px;
   text-align: center;
}

.lg-green-head {
   font-size: 28px;
   font-family: "Arial Rounded MT Bold", Verdana, Geneva, Helvetica, sans-serif;
   font-style: normal;
   font-weight: normal;
   color: #006600;
   background-color: white;
   padding-left: 2px;
   padding-right: 2px;
   padding-top: 2px;
   padding-bottom: 2px;
   text-align: center;
}

.gold-chunk1 {
   position: relative;
   color: black;
   background: #fffacd;
   width: 600px;
   font-size: 15px;
   font-family: "Arial Rounded MT Bold", Verdana, Geneva, Helvetica, sans-serif;
   font-style: normal;
   font-weight: normal;
   margin-left: auto;
   margin-right: auto;
   margin-top: auto;
   margin-bottom: 15px;
   padding-left: 72px;
   padding-right: 10px;
   padding-top: 10px;
   padding-bottom: 10px;
   text-align: left;
}
	
	
.copy-left {

	width: 425px;
	background-color: transparent;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	margin-left: 0px;
	margin-right: 20px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-left: 10px;
	padding-right: 4px;
	padding-top: 0px;
	padding-bottom: 0px;
	text-align: left;
	
	}
	
.copy-right {
   
   width: 425px;
   position: relative;
   background-color: white;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-style: normal;
   font-weight: normal;
   color: #000000;
   margin-left: 445px;
   margin-right: 20px;
   margin-top: 0px;
   margin-bottom: 0px;
   padding-left: 4px;
   padding-right: 20px;
   padding-top: 0px;
   padding-bottom: 0px;
   text-align: left;
   
   }
	
	.body-footer {
	text-align: center;
	text-decoration: none;
	font-size: medium;
	font-family: Arial, Helvetica, sans-serif;
	color: #008000;
	background-color: #ffffff;
}

	/*MASTER FOOTER FOR BOTTOM OF EVERY PAGE*/
.copyright {
   color: #000000;
   background-color: white;
   font-family: Arial, Helvetica, sans-serif;
   font-size: 13px;
   font-style: normal;
   font-variant: normal;
   font-weight: normal;
   text-align: center;
   padding-top: 0px;
   padding-right: 0px;
   padding-bottom: 3px;
   padding-left: 0px;
   margin: 0px 0px 0px 0px;
}

ul {
 list-style: disc;
}



