/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */
html,body { margin:0; padding:0; height:100%; }
div#container { position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:696px; height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

	min-height:100%; /* real browsers */
}
div#header { height: 173px; float: left; }
#logo { width: 186px; height: 174px; float: left; }
#marquee { width: 510px; height: 174px; float: left; }
div#nav { width: 200px; }
div#content { width: 496px; float: right; padding-bottom: 2em; /* bottom padding for footer */
}
#sidebar { width: 200px; float: left; }
div#footer { position:absolute; width:100%; bottom:0; /* stick to bottom */
	height: 30px; }
.divclear { font-size: 0; line-height: 0; height: 0; clear: both; }

