html, body {height:100%;} 

html > body  #minHeight {float:left;width:0px;height:100%;margin-bottom:-52px;} /* safari wrapper */

* html #outer{height:100%} /* for IE as IE treats height as min-height anyway */

body {
	padding:50px;
	margin:50px;
	background-color:#000;
	font:normal 1em Arial,sans-serif;
	color:#CCC;
	}
	
#outer {
	min-height:100%;
	margin-left:50px;
	margin-right:50px;
	background:#000;
	margin-bottom:-52px;
	color:#666;
	}

#header {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:75px;
	padding:20px;
	background:#000;
	overflow:hidden;
	text-align:center;
	}

#left {
	position:relative; /* ie needs this to show float */
	width:160px;
	float:left;
	margin-left:-159px; /* must be 1px less than width (needs to overlap centre column), otherwise won't push footer down */
	z-index:100;
	left:-1px;
	font-size:0.8em;
	text-align:left;
	}
	
* html #left {padding-bottom:52px;margin-right:-3px;} /*fix gap in ie next to float and clear footer because we've moved float too far left*/

#left p {padding:10px;} /* set padding for columns here, NOT in the floats */
#right p {padding:15px;font:bold 0.8em Arial,sans-serif;}

#left ul {padding:5px;margin:1px;}
#right ul {padding:5px;margin:5px;}

#left ol {padding:5px;margin:1px;}
#right ol {padding:5px;margin:5px;}

#left li {padding:3px;}
#right li {padding:3px;}

#right {
	position:relative; /*ie needs this to show float */
	width:150px;
	float:right;
	margin-right:-149px; /* must be 1px less than width (needs to overlap centre column), otherwise won't push footer down */
	left:1px;
}

#footer {
	width:100%;
	clear:both;
	height:20px;
	border-top:2px solid #900;
	padding:25px;
	background-color: #000;
	color:#CCC;
	font:normal 1em Arial,sans-serif;
	text-align:center;
	position:relative;
	}

* html #footer { /*only ie gets this style*/
	\height:52px; /* for ie5 */
	he\ight:50px; /* for ie6 */
	}
	
#clearheader{height:77px;} /*add 2px to height of header; needed to make room for header*/

#clearfooter{clear:both;height:35px;} /*needed to make room for footer*/

* > html #clearfooter {float:left;width:100%;} /* ie mac styles */

div,p  {margin-top:0;}/* clear top margin for mozilla */

* html #centrecontent {height:1%;margin-bottom:12px;} /* combat IE's 3 pixel jog */

#centrecontent {
	position:relative;
	z-index:1;
	padding:10px;
	}

#left span {display:none;}
	
#left a:hover {
	background:#000;
	padding:0;
	text-decoration: none;
	}
	
#left a:hover span {
	display:block;
	position:absolute;
	left:130px;
	width:150px;
	z-index:20;
	background:#FFF;
	}

@media all and (min-width:0;) {
	#left a:hover span {top:150px;}
	}

p ol, p ul, p dl, ol ul {font-size : 1em;}	/* to prevent text from shrinking within a list */

#centrecontent li {padding:1px;}

h1, h2, h3, h4, h5, h6 {
	font-family:Verdana,sans-serif;
	color:#CCC;
	}

h1 {font-size:1.6em;}
h2 {font-size:1.4em;}
h3 {font-size:1.2em;}
h4 {font-size:1em;}

a:link {
	font-weight:bold;
	color:#C00; 
  	text-decoration:none;
  	}

a:visited {
	color:#CCC;
	text-decoration:none;
	font-weight:bold;
	}

a:hover { 
	color:#C00;
	text-decoration:underline;
	font-weight:bold;
	}
	
table {
	background-color:#000;
	border:1px solid #CCC;
	margin-bottom:1em;
	}

th {
	background-color:#000;
	vertical-align:top;
	text-align:center;
	border:1px solid #CCC;
	margin:0.9em;
	padding:0.2em;
	font:bold 1.1em Arial;
	color:#CCC;
	}
	
td {
	vertical-align:top;
	text-align:left;
	border:1px solid #CCC;
	margin:0.2em;
	padding:5px;
	font:normal 0.8em Arial;
	}

caption {
	text-align:left;
	font:bold 1.6em Arial;
	color:#C00;
	background-color:#CCC;
	padding: 15px 0 5px 5px;
	}
	
img {border:0;vertical-align:middle;}
	
.oldbrowser {display:none;}