/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */

html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
	background: lightblue;
	
	font-family: Helvetica, Verdana, sans-serif;
	font-size:small;
	color:#666;
}

h1 { 
	font:1.5em Helvetica, Verdana, sans-serif;
	margin:0.5em 0;
}

	h1 a{
		text-decoration: none;
	}

h2 {
	font:1.25em Helvetica, Verdana, sans-serif;
	margin:0 0 0.5em;
}
	h1, h2, a {
		color:darkblue;
	}

p { 
	line-height:1.5; 
	margin:0 0 1em;
}

div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:750px;
	background:#ffffff;
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treated as min-height*/
	min-height:100%; /* real browsers */
}

div#header {
	padding: .5em 1em .5em 1em;	
	border-bottom:6px double lightblue;
}
	div#header h1 {
		padding-left: 40px;
		background: url('logo.gif') center left no-repeat;
		height: 2em;
		line-height: 2em;
		font-size: 2em;
	}
	
	div#header-nav {
		margin-top: -2.5em;
		float:right;
		height: 2em;
		line-height: 2em;
		font-size: 2em;
	}
	
		div#header-nav a {
			text-decoration: none;
		}


div#content {
	padding:1em 1em 5em; /* bottom padding for footer */
}
	div#content p {
		text-align:justify;
		padding:0 1em;
	}
	
	div#content ul li#restta {
		list-style: none;
		height: 100px;
		background-image: url(restta.gif);
		background-position: left top;
		background-repeat: no-repeat;
		padding-left: 110px;  /* space for the image */
	}
	
	div#content ul li#ssi {
		list-style: none;
		height: 100px;
		background-image: url(ssi.gif);
		background-position: left top;
		background-repeat: no-repeat;
		padding-left: 110px;  /* space for the image */
	}
	
	div#content ul li#clog {
		list-style: none;
		height: 100px;
		background-image: url(clog.gif);
		background-position: left top;
		background-repeat: no-repeat;
		padding-left: 110px;  /* space for the image */
	}

		div#content ul li#tabgrabber {
		list-style: none;
		height: 100px;
		background-image: url(tabgrabber.gif);
		background-position: left top;
		background-repeat: no-repeat;
		padding-left: 110px;  /* space for the image */
	}
div#footer {
	position:absolute;
	width:100%;
	bottom:0; /* stick to bottom */
	background:#ffffff;
	border-top:6px double lightblue;
}
	div#footer p {
		padding:1em;
		margin:0;
	}