	/*comment*/
	header, nav, main, footer, aside {display: block; }
	* { box-sizing: border-box; }
	body { margin: 0;
		  background-color: #ffffff;
		  font-family: Verdana, Arial, sans-serif; }
	#container { background-color: #9EA46C;
				 color: #000000;
				 min-width: 740px;
				 max-width: 1024px;
				 font-family: Verdana, Arial, sans serif;
				 margin-left: auto;
				 margin-right: auto;}
/*banner image of arizona across the heading*/
	header { background-color: #eeeeee;
			 background-image: url(newbanner.jpg);
			 background-position: bottom;
			 background-repeat: no-repeat;
			 height: 120px;
			 color: #F1F4EE;
			 text-align: right;
			 padding: 0 20px;
			 border-bottom: 2px solid #000000;
			 font-family: Verdana, Arial, sans-serif; }
	nav { float: left;
		  width: 150px;
		  color: #000000;}
	aside { float: right;
			width: 200px;}
	main { margin: 0 210px 0 160px;
		   padding: 1px 10px 20px 10px;
		   background-color: #eeeeee;
		   color: #006600; }
/*centers copyright in the middle and colors it a dark grey
for better visibility, creates a padding between copyright and 
main text, clears floats*/
	footer { font-size: .70em;
			 text-align: center;
			 color: #414546;
			 background-color: #EEEEEE;
			 padding-top: 10px;
			 clear: both;}
	h1 { margin-top: 0;
		 font-size: 3em;
		 text-align: left;
		 text-shadow: 2px 2px 2px #000000; }
	header a {font-size: 0.80em; }
	header a:link, header a:visited { color: #ffffff; }
	header a:focus, header a:hover { color: #935f76; }
	nav ul { margin-top: 20px;
		   list-style-type: none; }
/*removes the underline associated with links*/
	nav a { text-decoration: none;
			font-size:1.2em; }
/*grey color*/
	nav a:link {color: #414564; }
/*white color*/
	nav a:visited {color: #F1F4EE; }
/*dark green color*/
	nav a:focus, nav a:hover {color: #475A29; }
/*off-white color*/
	nav a:active {color: #eeeeee; }
	nav img {margin: 30px; }
/*text color is a dark grey*/
	main p {margin: 20px;
		  color: #414546;}
/*main h2, h3 is a purple/plum color and background is
an off-white color*/		  
	main h2, main h3 {color: #475A29;
				   background-color:#EEEEEE; }
	.floatright { margin: 10px;
				  float: right; }
/*creates a line division in the aside and creates a purple text
color for the headings within it*/
	aside h3 { padding-bottom: 2px;
			   border-bottom: 1px solid #000000;
			   margin: 10px;
			   font-size: 0.90em;
			   color: #474A29;
			   }
/*creates a margin for the text with the news class*/
	.news {font-size: 0.80em;
		   margin: 10px; }
/*table is given automatic margin spacing, has collapsed borders
and has a solid border of a grey color*/
table { margin: auto;
	  border: 1px solid #7B6E69;
	  width: 90%; 
	  border-collapse: collapse; }
/*changes the color of headings and text to a grey color
creates a solid border of the same color and creates padding
around the text*/
th,td {color: #414546;
	   border: 1px solid #7B6E69;
	   padding: 5px;}
/*aligns text within the cell to the left side*/
td { text-align: left; }
/*Will make the form labels float on the left side*/
label { float: left;
	 display: block; 
	 width: 8em;
	 padding-right: 1em; }
/*will make input and textarea display in
block style*/
input, textarea { display: block;
				  margin-bottom: 1em; }
#mySubmit { margin-left: 10em; }