/**
 * 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-color:#000;
	background-image:url(../images/bg.jpg);
	background-position:top center;
	background-repeat:no-repeat;
	background-attachment:fixed;
	font-family:arial,sans-serif;
	font-size:small;
	color:#999;
	font-weight:bold;
}

h1 { 
	font:1.5em georgia,serif; 
	margin:0.5em 0;
}

h2 {
	font:1.25em georgia,serif; 
	margin:0 0 0.5em;
}
	h1, h2, a {
		color:#42655e;
	}

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:1024px;
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/
	min-height:100%; /* real browsers */
}

div#header {
	padding:1em;
	background:transparent;
}
	div#header p {
		font-style:italic;
		font-size:1.1em;
		margin:0;
	}

div#content {
	padding:1em 1em 5em; /* bottom padding for footer */
}
	div#content p {
		text-align:justify;
		padding:0 1em;
	}

div.col1 {
	width:330px;
	height:auto;
	height:100%;
	min-height:400px;
	float:left;
	background-color:#C0F;
}

div.col2 {
	width:330px;
	float:left;
	background-color: #C90;
}

div.col3 {
	width:330px;
	float:left;
	background-color: #6F6;
}

div#footer {
	position:absolute;
	width:100%;
	bottom:0; /* stick to bottom */
	text-align:center;
	font-size: small;
}
	div#footer p {
	padding:0em;
	margin:0;
}
