/* Sets body to not have and margin and have black background */
body {
	background-color:#FFFFFF;
	margin: 0px;
	padding: 0px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
}
/* Sets anything in table to same font and size as body */
table {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
}
/* Sets border aroung main content area */
.table-border {
	border-left: solid 1px #FFFFFF;
	border-right: solid 1px #FFFFFF;
	border-bottom: solid 1px #FFFFFF;
}

/* Controls content within header of site*/
.header {
	background-color: #993333;
	text-align:right;
	color:#e2d7cd;
	font-size:60px;
	font-weight:900;
	padding:5px 5px 5px 5px;
}
/* Controls top horizontal menu bar*/
.top-bar{
	background-color:#000000;
	color:#FFFFFF;
	text-align:right;
	padding: 5px 5px 5px 5px;
}

/* Controls the top nav bar*/
a.mainlevel-top {
	font-size:12px;
	font-weight:bold;
	color:#FFFFFF;
	padding: 0px 5px 0px 5px;
	text-decoration: none;
}
a.mainlevel-top:hover {
	color:#cccccc;	
}

/* Controls side color and absolute width*/
.side {
	background-color:#999999;
	width:155px;
}
/* Puts padding around everything in side column*/
.side-inside {
	padding: 10px 0px 10px 0px;
}

/* Controls the side nav bar*/
a.mainlevel {
	font-size:14px;
	font-weight:bold;
	color:#e2d7cd;
	display:block;
	padding: 0px 5px 0px 10px;
	text-decoration:none;
	width: 140px;
}
a.mainlevel:hover {
	color:#999999;
	background-color: #e2d7cd;
}


/* Controls module tables*/
.moduletable {
	width:inherit;
}

/* Makes the text align to the right in the top menu in firefox */
.moduletable-top {
	float:right;
}

/* Controls content within main body of site*/
.page-content {
	background-color:#e2d7cd;
	color:#993333;
	padding: 8px;
}
/* The following control page titles*/
.contentheading {
	font-size: 150%;
	font-weight:bolder;
}

.componentheading {
	font-size: 150%;
	font-weight:bolder;
}

/* Controls content within footer of site*/
.footer {
	background-color:#663333;
	font-size:11px;
	color:#FFFFFF;
	text-align:center;
	padding: 5px;
}

/* Controls look of links within the footer*/

a.footer-link {
	font-size:11px;
	color:#FFFFFF;
	text-decoration:none;
}
a.footer-link:hover {
	text-decoration:underline;
}
/* End footer links*/

