@charset "UTF-8";
/* CSS Document */

/* the following are all differnt styles that will be applied to peices of text around a website. notice they are labled according to where they would be used. also each style starts with a . witch indicates for html that they are specific styles not global styles.*/
.Header {
	font-size: 36px;/*changes the font size*/
	font-weight: bold; /* makes the font bold*/
	color: #4C4D4F; /* changes the color of the text*/
	text-align:center; /*aligns the text to the center*/
}
.SubHeader {
	font-size: 24px;
}

.content {
	font-size: 14px;
	color: #4C4D4F;
}
.tinyText {
	font-size: 10px
}
.navLinks a{
	color:#FF0000;
	font-size:10px;
	}