/* 
 * Afton's totally original template css. Three columns. Absolute positioning everywhere: damn. 
 * Footer still doesn't work. Need to get it to float relative to the 'main' div. Did I mention that
 * I hate css?
 */
body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #A0A0A0 

}

#header {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0px;    
  left: 0px;
  width: 100%;
  height: 80px;
  text-align: left;
}

#header h1 {
    padding: 0px 240;
}
#header span {
    font-size: medium;
}

#left {    
  padding: 0;
  margin: 0;
  position: absolute;    
  top: 100px;
  left: 20px;
  bottom: 20px;
  width: 200px;    
}

#right {    
  padding-left: 10px;
  margin: 0;
  position: absolute;    
  top: 100px;
  left: 760px;
  border-left-style: solid;
}

#main {
  padding: 0;
  margin: 0;
  position: absolute;    
  top: 100px;
  left: 240px;
  right: 20px;
  bottom: 20px;
  max-width: 500px;
  font-family: times-new-romans;
  font-size: large;
}

#footer {
    padding: 10px;
    text-align: center;
    font-weight: bold:
    font-variant: small-caps;
    color: #FFFFFF
}

