/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */

html,body {
	height: 100%;

/* needed for container min-height */
	margin: 0;
	padding: 0;
}

body {
	background: #435236 url(../images/home-background2.jpg) no-repeat 0 -25px;
}

#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:100%;
	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

	min-height:100%;
}

#cleanerlogo {
	background-image: url(../images/cleaner_logo.png);
	background-repeat: no-repeat;
	width: 100%;
	height: 80px;
	margin-left: 10px;
	margin-top: 10px;
	float: left;
}

#content {
	padding-right: 2em;
	padding-bottom: 5em;
	font: 12px/1.5 "Lucida Grande", Lucida, Verdana, sans-serif;
}


/* MENU LEFT */

#sidenav {
	margin: 10px 0px 20px -2px;
	width: 225px;
	height: 400px;
}

#sidemenu {
	width: 169px;
	margin: 0px 0px 0px 1px;
	padding: 0px;
	list-style: none;
	border-top: 1px solid #888;
}

#sidemenu li {
	text-align: left;
	border-bottom: 1px solid #888;
}

#sidemenu a {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	display: block;
	color: #fff;
	padding: 7px 10px 7px 28px;
	text-decoration: none;
}

#sidemenu a:hover {
	background: #1168a8;
	text-decoration: none;
}

#sidemenu a:active {
	background: #666666;
}

#sidemenu a.selected {
	background: #666666;
}

/* SUBMENU LEFT */

#submenu {
	width: 169px;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	list-style: none;
	border-top: 0px solid #888;
}

#submenu li {
	text-align: left;
	border-bottom: 1px solid transparent;
}

#submenu a {
	font-size: 11px;
	font-weight: normal;
	display: block;
	color: #fff;
	padding: 4px 10px 4px 38px;
	text-transform: none;
}

#submenu a:hover {
	background: #6f9bc8;
	text-decoration: none;
}

#submenu a:active {
	background: #6f9bc8;
}

#submenu a.selected {
	background: #6f9bc8;
}

/*subsubmenu left*/
#subsubmenu {
	width: 169px;
	margin: 0px 0px 0px 0px;
	list-style: none;
	padding:0;
	border-top: 0px solid #8cb0ce;
	
}

#subsubmenu li {
	margin-left:0px;
	text-align: left;
	border-bottom: 1px solid transparent;
	}

#subsubmenu a {
	font-size: 10px;
	font-weight: normal;
	display: block;
	color: #333;
	padding: 4px 10px 4px 38px; 
	text-transform: none;
}

#subsubmenu a:hover {
	background: #85BFE7;
	text-decoration: none;
}

#subsubmenu a:active {
	background: #85BFE7;
}

#subsubmenu a.selected {
	background: #85BFE7;
	color: white;
}
/*end subsubmenu*/

#footer {
	position:absolute;
	width:100%;
	bottom:0;

	padding-top: 10px;
}

#gplogo {
	float: left;
	height: 60px;
	margin-left: 10px;
	width: 250px;
}

#legal {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	float: right;
	height: 50px;
	padding-top: 15px;
	padding-right: 25px;
	color: white;
	font-size: 11px;
	width: 300px;
	text-align: right;
}

.white {
	color: white;
}

