/* CSS Document */
body							/* Affects entire page */
{
	width:850px;					/* @PageWidthEdit: 1 of 1 places to edit to change page width */
									/* @PageFontFamily: 1 of 1 places to edit to change the font type (line below) */
	font-family:Verdana, Arial, Helvetica, sans-serif;
	margin-top:0px;
	margin-left:auto;
	margin-right:auto;
}
#bodyContent					/* Wraps all of page except for <body> tags */
{
	background:url(images/headerBackground.jpg);
	background-repeat:repeat-y;
	background-position:right;
}
#header							/* Page header logo */
{

}
.headerInfo						/* Page header contact info */
{
	font-size:12px;
	color:#423C6A;
}
#middleRow						/* Table underneath #header which contains the left nav and content box */
{
	background-color:#48436b;				
}
a								/* Removes all underlines from links */
{
	text-decoration:underline;
}
a:link							/* Styles all default links (orange) */
{
	color:#FFCC66;
}
a:visited						/* Styles all visited links (white) */
{
	color:#FFFFFF;
}
a:active						/* Styles the active link with or without the class="white" tag (grey) */
{
	color:#E2CEA8;
}
.white a:link					/* Styles all default links with class="white" tag (white) */
{
	color:#FFFFFF;
}
.white a:visited				/* Styles all visited links with class="white" tag (orange) */
{
	color:#FFCC66;
}
a.noUnderline					/* Adds underlines to links that need them DOESNT WORK */
{
	text-decoration:none;
}
#leftNav						/* Left Navigation */
{
	width:150px;					/* @LeftNavWidthEdit: 1 of 1 places to edit the width of the left navigation */
	background-color:#48436b;
	font-size:16px;
}
#navElement						/* Navigational link in left nav */
{
	background-color:#48436b;
	color:#FFFFFF;
	font-size:14px;
}
#navElementOver					/* Navigational links during a mouseover */
{
	background-color:#E2CEA8;
	color:#48436b;
	font-size:14px;
}
#navSpacer						/* Unlinked spacer in the left nav */
{
	height:2px;
	background-color:#E2CEA8;
}
#leftGradient					/* Area underneath left navigation, was originally a gradient */
{
	background-color:#48436b;
	height:100%;
	vertical-align:top;
}
#contentBorder .left			/* Adds left image to border the content area */
{
	background:url(images/leftBorder.gif);
	background-repeat:repeat-y;
	width:13px;
}
#contentBorder .right			/* Adds right image to border the content area */
{
	background:url(images/rightBorder.gif);
	background-repeat:repeat-y;
	width:13px;
}
#contentBox						/* Contains all page content */
{
	vertical-align:top;
	margin-left:auto;
	margin-right:auto;
	background-color:#423C6A;
	color:#FFFFFF;
	font-size:12px;
}
.orangeText						/* Class to change text color to orange */
{
	color:#FFCC66;
}
#WayCommOrange					/* WayComm word coloration (Dark Orange) */
{
	color:#FF9933;
}
.orangeTextOver					/* Class to change orange text to black during mouse over */
{
	color:#000000;
}
h1								/* White text for a header or title */
{
	font-size:20px;	
	color:#FFFFFF;
}
h2								/* Orange text for a subheader or subtitle */
{
	font-size:16px;	
	color:#FFCC66;
}
h3								/* White text for a subheader or subtitle */
{
	font-size:14px;
	font:#FFCC66;	
}
h4								/* Orange text for a subheader or subtitle */
{
	font-size:10px;	
	color:#FFCC66;
}
h5								/* Orange text for a subheader or subtitle */
{
	font-size:10px;	
	color:#FFFFFF;
}
p, ul							/* Class to make text regular size */
{
	font-size:12px;
}
table							/* Collapse all table dividers */
{
	border-collapse:collapse;
}
#footer							/* At bottom of page, the footer contains links, copyright, and contact info */
{
	font-size:10px;
	color:#48436b;
}
#footer a:link					/* Footer link default look (dark blue) */
{
	color:#48436b;
}
#footer a:visited				/* Footer visited link's look (dark orange) */
{
	color:#FF9933;
}
#footer a:active				/* Footer active link's look (grey) */
{
	color:#E2CEA8;
}
