body {
	background-color:black; /* NOT inherited before CSS2 */
	text-align:center; /* center justify left right - NOT inherited */
	color:white; /* foreground - inherited */
	font-family: verdana, arial, georgia, geneva, sans-serif; /* base font - inherited */
	font-size:1em; /* base font size - inherited */
	font-style:normal; /* normal or italic - inherited */
	font-weight:normal; /* bold bolder lighter - inherited */
}
div.pageCenter {
	background-color:white;
	color:black;
	width:750px; /* NOT inherited */
	height:auto;
	margin:0px auto; /* margin outside div - IE doesn't count/Firefox does - NOT inherited */
	border:0px; /* IE doesn't count/Firefox does - NOT inherited */
	padding:0px; /* margin inside div - IE doesn't count/Firefox does - 2: TB,RL 3: T,RL,B 4: T,R,B,L - NOT inherited */
}
div.pageBackground {
	background-image:url(images/column-background.jpg); /* NOT inherited before CSS2 */
	background-repeat:repeat; /* NOT inherited before CSS2 */
	background-color:white;
	width:750px;
	height:auto;
	margin:0px;
	border:0px;
	padding:0px;
	float:left;
}
div.pageHeader {
	background-image:url(images/mantle-background.jpg);
	background-repeat:no-repeat;
	width:750px;
	height:auto;
	margin:0px;
	border:0px;
	padding:0px;
	float:right;
}
div.Side, #left {
	width:240px;
	margin:200px 0px 15px;
	border:0px;
	padding:40px 0px 0px;
	float:left;
	text-align:left;
	font-size:12px;
}
div.Content, #right {
	width:470px;
	margin:200px 20px 15px 0px;
	color:black;
	border:0px;
	padding:0px;
	float: right;
	text-align:justify;
}
div.Footer {
	background-color:#663300;
	width:750px;
	margin:0px;
	border:0px;
	padding:5px 0px;
	float:left;
	display:inline;
	text-align:left;
	font-size:12px;
}
h1 {
	font-size:1.9em;
}
h2 {
	font-size:1.3em;
}
ul {
	list-style-type:disc;
}
/* Navigation menu settings */
#nav, #nav ul { /* all lists, remove all spacings from the list items */
	margin:0px;
	border:0px;
	padding:0px;
	list-style:none;
	position:relative;
	float:left;
	left:20px;
}
#nav li { /* all list items */
	position:relative;
	float:left;
	line-height:1.4em;
	margin-top:1em;
	width:208px;
}
#nav li ul { /* second-level lists */
	position:relative;
	float:left;
	left:56px;
	width:152px;
}
#nav li ul li { /* second-and-above list items */
	width:152px;
}
#nav li a {
	display:block;
	background-color:#996633;
	color:black;
	font-weight:bold;
	text-decoration:none; /* removes the link underlines */
	border:1px solid black;
}
span.padding {
	margin:0px 5px;
}
#nav li a:hover {
	color:white;
	background-color:#330000;
}