<!--
/* 
   layout.css
   This file contains the style properties for the layout of the page.
   It determines where the header, footer, and main page divs are positioned.
   Author: Kurt McMillan - kurtmcmillan@gmail.com
*/

#header {
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
}

#main { 
  margin: 80px 10px 0px 10px;
}

#footer {
  margin-top: 10px;
  position: absolute;
  left: 0px;
  background: #339933 url(../images/themes/pt-green/topbar/bg.jpg) repeat-x;
  height: 36px;
  padding: 0px;
  width: 100%;
}

-->
