/*****
	Basic positioning of the containers.
 *****/
html, body {
	height: 100%;
}
body {	
	margin: 0px;
}

#mainwrap {	
	margin: 0px auto;	
	width: 90%;
	min-height: 100%;
}

#topmenu {	
	height: 135px;
	margin: 0px;
}

#pagecontent {
	float: left;
	margin-right: 220px;
}

#sidemenu {
	float: right;	
	width: 200px;
	margin-left: -210px;
}

#bottombar {
	clear: both;
	position: static;
	bottom: 0px;
}


/*****
	The colours and such of the basic page.
 *****/

body {
	background-image: url('/layout/background-black-with-green-bar.png');
}

#mainwrap {
	background: rgba(255, 255, 255, 0.8);
	border-left: solid 5px #00CC00;
	border-right: solid 5px #00CC00;
}

#topmenu {
	position: relative;
	vertical-align: bottom;
}

#topmenu ul {
	position: absolute;
	bottom: 0px;
	padding: 0px;
	padding-right: 15px;
	background: url('/layout/menu-end.png');
	background-position: right;
}

#topmenu ul li {
	display: inline;
	width: 130px;
	height: 30px;
	margin: 0px;
	padding: 0px;
}

#topmenu ul li a {
	display: block;
	height: 30px;
	line-height: 30px;
	width: 130px;
	float: left;
	background: url('/layout/menu-item-background.png');
	text-align: center;
	color: white;
	font-style: oblique;
	text-decoration: none;
}

#topmenu ul li.active a {
	color: #FFFF66;
}

#topmenu ul li a:hover {
	display: block;
	height: 30px;
	width: 130px;
	float: left;
	color: black;
	background: url('/layout/menu-item-background-hover.png');
}

#topmenu ul li.active a:hover {
	color: #00CC00;
}


#pagecontent {
	padding-left: 10px;
	padding-right: 10px;
}

#bottombar {
	border-top: solid 2px #00CC00;
	border-bottom: solid 2px #00CC00;
	background: black;
	color: white;
}