
/* commented backslash hack v2 \*/ 
html, body{height:100%;} 
/* end hack */ 

body {
	padding:0;
	margin:0;
	background:#33c ;
	color: #000000;
}
#outer{
	min-height:100%;
	margin-left:130px;
	margin-right:130px;
	background:#FFF;
	border-left:1px solid #000;
	border-right:1px solid #000;
	margin-bottom:-52px;
	color: #000000;
}
 
* html #outer{height:100%} /*for IE as IE treats height as min-height anyway*/
#header{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:130px;
	background:#3333cc;
	border-top:1px solid #000;
	
	overflow:hidden;
	color: #000000;
}
#left {
	position:relative;/*ie needs this to show float */
	width:130px;
	float:left;
	margin-left:-129px;/*must be 1px less than width otherwise won't push footer down */
	z-index:100;
	left:-1px;
}
* 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-left:3px;padding-right:2px}
#right p {padding-left:3px;padding-right:2px}

#right {
	position:relative;/*ie needs this to show float */
	width:130px;
	float:right;
	margin-right:-129px;/*must be 1px less than width otherwise won't push footer down */
	left:1px
}

#footer {
	width:100%;
	clear:both;
	height:50px;
	
	border-bottom:1px solid #000;
	background-color: #33c;
	color: #000000;
	text-align:center;
	position:relative;
}
* html #footer {/*only ie gets this style*/
	\height:52px;/* for ie5 */
	he\ight:50px;/* for ie6 */
}
#clearheader{height:132px;}/*needed to make room for header*/
#clearfooter{clear:both;height:40px;}/*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}

/* css stuff below is just for presentation and not needed for the demo */

#left span {
	display:none;	
}	
#left a:hover {
	color: #666666;
	background: #FFFFCC;
	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: 0px){
  #left a:hover span {
	top:150px;
  }
}
/*#footer span {
	display:none;	
}	
#footer a:hover {
	color: #666666;
	background: #FFFFCC;
	text-decoration: none;
}
#footer a:hover span {
	display:block;
	position:absolute;
	top:-95px;
	width:150px;
	z-index:20;
	background:#fff;
	left:50%;
}*/
html > body  #minHeight{float:left;width:0px;height:100%;margin-bottom:-52px;} /*safari wrapper thanks to Tim Connor*/

/* --------------------------------MENU STYLES BELOW ------------------------------------- */
/*
		Style for the menu in the left hand column.
		Thanks to www.alistapart.com for most of the following
	*/
	
	#menu {
		width: 130px;
		padding: 0 0 0 0;
		/*margin-bottom: 1em;*/
		font-family: Arial, Verdana, Lucida, Geneva, Helvetica, Arial, sans-serif;
		font-size:12px;
		background-color: #3333CC;
		/*border-bottom:1px solid #000;*/
		color: #ffffff;
	}
	
	#menu ul {
		list-style: none;
		margin: 0;
		padding: 0;
		border: none;
		}
		
	#menu li {
		
		margin: 0;
		}
	#menu li .last {

		
		}
		
	#menu li a {
		display: block;
		padding: 5px 5px 5px 0.5em;
		border-right:1px solid #000;
		background-color: #33c;
		color: #ffffff;
		text-decoration: none;
		width: 100%;
		}

	#menu li.selected a {
		display: block;
		padding: 5px 5px 5px 0.5em;
		border-top:1px solid #000;
		border-bottom:1px solid #000;
		border-right:1px solid #fff;
		background-color: #ffffff;
		color: #33c;
		text-decoration: none;

		}

	html>body #menu li a {
		width: auto;
		}

	#menu li a:hover {
		/*border-left: 10px solid #1c64d1;
		border-right: 10px solid #5ba3e0;*/
		background-color: #CCCCCC;
		border-right:1px solid #000;
		color: #333399;
		}