/*Defines the style for normal unvisited links */
a:link {color: #99c9ff; text-decoration: underline; } 

 /* Defines the style for visited links. */
a:visited {color: #aa77aa; text-decoration: underline; }

/*Defines the style for active links. A link becomes active once you click on it.*/
a:active {color: #4d6580; text-decoration: underline; }

/* Defines the style for hovered links. A link is hovered when the mouse moves over it. */
a:hover {color: #4d6580; text-decoration: underline; }

/*Defines the look of the Header for the top of each main page.*/
.header1 {
	font-weight: bold;
	color: #aadd99;
	text-align: center;
	font-size: x-large;
	font-style: normal;
}

/*Defines the look fo the main body of the pages. This includes base text color and background color*/
body {
	background-color: #000000;
	color: #cccccc;
}

/*Defines the look of the secondary headers in the pages.*/
.header2 {
	font-weight: bold;
	color: #99c9ff;
	text-decoration: underline;
}

/*Defines the look of the main images in the pages.*/
.mainImage1 {
	text-align: center;
	padding: 10px;
}

/*Defines the look of the main page text*/
.mainText1 {
	text-indent: 35px;
	padding: 10px;
}

/*Defines the look of main page text that needs to be centered.*/
.mainText2 {
	text-align: center;
	padding: 10px;
}

/*Defines Unordered Lists*/
ul {
	list-style-type: disc;
}

/*Defines List Elements*/
li {
	padding: 2px;
}

/*Use for text that should be left aligened without indentation*/
.IntroText1 {
	text-align: left;
	padding: 10px;
}

/*Left aligned, underlined, Large green header text*/
.header3 {
	font-size: x-large;
	color: #aadd99;
	text-decoration: underline;
	font-weight: bold;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 0px;
}

/*Used for secondary green underlined headers*/
h2 {
	font-size: large;
	color: aadd99;
	text-decoration: underline;
	text-align: center;
}
.GreenText {
	color: #AADD99;
}
