/* 
 * simple two column cascading style sheet, with header
 */


body 
{ margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;

}

/* use <div id="header">header stuff</div> */
#header {
  margin: 2%;
/*  padding: 1%; */
  height: 10%;
}

/* use <div id="left">left hand stuff stuff</div> */
#left {
  position: absolute;
  left: 2%;
  top: 15%;
  width: 20%;
}

/* use <div id="center">Main Content stuff</div>*/
#center {
  top: 0;
  margin-left: 23%;
  margin-right: 2%;
}

