/* DEFINES THE MAIN FONT COLOR AND FONT STYLE */

body {
    font-family: Arial;
    font-size: 12px;
    color: #000000;
}


/* DEFINES HOW PARAGRAPHS ARE STYLED */
p {
    padding-left: 15px;
    padding-right: 15px;
}


/* DEFINES HOW MAIN HEADER IS STYLED  H1 Tag in HTML */
h1 {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-top: 8px;
    font-size: 20px;
    font-weight: bold;
}


/* DEFINES HOW HYPERLINKS WITHIN THE MAIN CONTENT INFORMATION ARE STYLED */
a {
    color: #0000FF;
    text-decoration: underline;
}
	/* THIS IS WHAT THE HYPERLINK DOES IF YOU MOUSE OVER IT */
a:hover {
    color: #666666;
    text-decoration: underline;
}


/* THESE ARE THE HYPERLINK STYLES FOR THE MAIN LEFT MENU AREA */

DIV#mainmenu {
	margin-left: 25px;
	font-family: Times;
	}

DIV#mainmenu_text {
	padding-top: 8px;
	}

DIV#mainmenu_text a {
    font-size: 18px;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}
DIV#mainmenu_text a:hover {
    color: #666666;
    text-decoration: underline;
    font-weight: bold;
    font-size: 18px;

}