/* CSS Document */
#navbody {
	background-color:#999966;
	color:#000000;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	text-decoration:none;
}

/*main links within text of the page, linke email addresses and other such links */
#navbody a:link {
	color:#000000; /*black*/
}
/* When the mouse rolls over...*/
#navbody a:hover {
	color:#FFCC33; /*orange*/
}
/* While the mouse button is down...*/
#navbody a:active {
	color:#FFCC33; /*orange*/
}
/* After you've clicked here, what should the link look like?*/
/*#navbody a:visited {
	color:#000000;
}*/

/* Indicates which page you are currently viewing*/
#currentpage_subheader {
	color:#FFCC33; /*orange*/
	font-size:18px;
	font-weight:bold;
}

/* Sub headers on a page*/
#page_subheader {
	color:#7D2A1C; /*maroon or wine*/
	font-size:14px;
	font-weight:bold;
}

/* Sub headers on a page which are also links, 
like the sub headers on the left navigation menu 
(Home, Sample Course Descriptions, Faculty, etc)*/
#page_subheader a:link {
	/*display:block;*/
	color:#7D2A1C; /*maroon or wine*/
}
/* When you roll over a subheader link...*/
#page_subheader a:hover {
	/*display:block;*/
	color:#FFCC33; /*orange*/
}
/* While the mouse button is down...*/
#page_subheader a:active {
	/*display:block;*/
	color:#FFCC33; /*orange*/
}

/* Headers above the links on the left Navigation Menu, like "Related Departments" etc*/
#link_header {
	color:#7D2A1C; /*maroon or wine*/
	font-size:12px;
	font-weight:bold;
}

