﻿<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  <title>CSS_Layout</title>
  <style type="text/css">
  <STYLE>

  body {
		font-family:arial,helvetica,sans-serif;
		}
  #wrapper {
		width:800px;
		margin:0px auto;
		border:1px solid #bbb;
		padding:2px;
	}
  #header {
		border:1px solid #bbb;
		height:80px;
		padding:2px;
	    BACKGROUND-COLOR: clear:both;
 	}
	#content {
		margin-top:2px;
		padding-bottom:2px;
		width:640px;
	}
	/* applies to all divs within the content div */
  #content div {
		padding:2px;
		border:1px solid #bbb;
    float:left;
	}
  #content-left {
  	width:150px;
  	BACKGROUND-COLOR: white;
  	font-size:12px;
	}
  #content-main {
		margin-left:10px;
		width:640px;
		BACKGROUND-COLOR: white;
	  	font-size:12px;
	}
  #footer {
		float:left;
		margin-top:2px;
		margin-bottom:2px;
    padding:2px;
    border:1px solid #bbb;
    width:800px;
    BACKGROUND-COLOR: clear:both;
	}
  #bottom {
		clear:both;
		text-align:right;
	}
}
</STYLE>
</head>