/* This is the CSS PAGE, you can use it to set fonts, colors font size and more.  All the CSS settings can be found here http://www.w3schools.com/CSS/CSS_reference.asp i can help you set them up if you wish.*/


/* Use this section to set up the color and attributes of the entire page */
body { background:#EAEAAE;
	font-family: Georgia;
	font-size: 14px;
	color:black;
}

/* This section will set up the attributes of just the header section*/
.header { height:150px;
	width:100%;
	position:absolute;
	top:0px;
text-align:center;
margin-top:5px;
padding:1px;
margin:0px auto;
	height:100px;
}

/* This section will set up the attributes of just the mainbody section - the section where all the info shows*/
#mainbody {
	position:absolute;
	top:110px;
	padding-top:5px;
	padding-right:5px;
	padding-bottom:5px;
	padding-left:5px;
	left:161px;
	right:10px;


}

/* This section will set up the attributes of just the side menu - can be placed in a different location or a different setup section*/
#menu {position:absolute;
	top:110px;
	left:0px;
	width:150px;
	text-align:center;
}

#menu a:link {color:white;
}

#menu a:active {color:yellow;
}

#menu a:visited{color:white;
}


/* Changes the attributes hyperlink and keeps it uniform throught the website
a:link {color:lightslategray;
}

/* Changes the attributes of a section when the link is active - as in you've just clicked it
a:active {color:lightslategray;
}

/* Changes the attributes of a section when the link that you have already visited
a:visited {color:lightslategray;
}
*/
