/*** General page layout for screen ***/

body {
	margin: 0;
	padding: 0;
	background-color: #e8e8e8;
	background-image: url("../bg8.jpg");
	color: black;
}

#topbar {
	position: absolute;	/* Just for IE, the others get fixed */
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	bottom: 0;
	padding: 0;
	margin: 0;
	z-index: 2;
	background-image: url("../bg8.jpg")

}



#leftbar {
	position: absolute;	/* Just for IE, the others get fixed */
	top: 200;
	left: 0;
	width: 13em;
	bottom: 0;
	padding: 0;
	margin: 0;
	border-right: 1px solid black;
	z-index: 2;
	background-color: #e8e8e8;
	background-image: url("../bg8.jpg")
}

#leftmenu {
	position: absolute;	/* IE */
	top: 160;
/*	left: 0;*/
	width: 13em;
	bottom: 3em;
	padding: 0;
	margin: 0;
	z-index: 4;
	font-family: sans-serif;
}

#bottom {
	position: absolute;	/* IE */
	left: 0;
	bottom: 0;
	width: 13em;
	padding: 0 0 0.5ex 0;
	margin: 0;
	z-index: 3;
	font-family: sans-serif;
}

#bottom P {
	padding: 0 0.5em 0 1em;
	font-size: 77%;
}

html>body #leftbar {		/* This will be ignored by IE */
	position: fixed;
	overflow: auto;
}

html>body #leftmenu {
	position: fixed;
	overflow: auto;
}

html>body #bottom {
	position: fixed;
	overflow: auto;
}

#main {
/*	margin: 200 0 0 13em;*/
	padding: 1em 1em 1em 1em;
	z-index: 1;
	font-family: sans-serif;
}

/*** Menu ***/

.menuitems {
	list-style: none;
}

#leftmenu UL {
	margin: 0;
	padding: 0;
	text-align: center;
}

#leftmenu LI {
	padding-top: 0.2ex;
	padding-bottom: 0.2ex;
}

.menuactive {
	color: #0000a0;
}

/*** Colors ***/

H2 {
	color: #0000a0;
}

A {
	color: black;
}

#main A:link {
	text-decoration: underline;
	color: #000080;
}

#main A:visited {
	text-decoration: underline;
	color: #400080;
}

#main A:hover {
	text-decoration: underline;
	background-color: #e0d0b0;
}

A:hover IMG {
	background-color: inherit;
}

#leftmenu A:link {
	text-decoration: none;
}

#leftmenu A:visited {
	text-decoration: none;
	color: black;
}

#leftmenu A:hover {
	text-decoration: none;
	background-color: #e0d0b0;
}

#leftmenu LI:hover {
	background-color: #e0d0b0;
}

#leftmenu LI.menuactive:hover {
	background-color: inherit;
}

.red {
	color: #aa0000;
}

