 
#container{
  width : 750px;
  

  
  margin-left : auto;
  margin-right : auto;
}
#header{
  width : 750px;
  padding-top : 5px;
  padding-left : 5px;
  padding-right : 5px;
  padding-bottom : 5px;
}
#main{
  width : 550px;
  
  bottom : auto;
  

  
  float : right;
  

  padding-top : 5px;
  padding-left : 5px;
  padding-right : 5px;
  padding-bottom : 5px;
}
#menu{
  width : 180px;
  bottom : auto;
  
  
  
  
  
  

  float : left;
  
  clear : left;
  text-align : left;
  padding-top : 5px;
  padding-left : 5px;
  padding-right : 5px;
  padding-bottom : 5px;
  margin-left : auto;
  margin-right : auto;
  list-style-type : none;
}
#footer{
  width : 750px;
  
  
  text-align : center;
  bottom : auto;
  padding-top : 5px;
  padding-left : 5px;
  padding-right : 5px;
  padding-bottom : 5px;
}
BODY{
  color : white;
  background-color : black;
  font-family : "Book Antiqua",serif;
}
H1{
  font-size : 1.5em;
  font-weight : normal;
  text-align : center;
}
H2{
  font-size : 1.3em;
  font-weight : normal;
  text-align : center;
}
H3{
  font-size : 1.1em;
  font-weight : normal;
}
H4{
  font-size : 0.9em;
  font-weight : normal;
  line-height : 110%;
}
P{
  font-size : 0.9em;
  font-weight : normal;
  line-height : 110%;
}
TABLE{
  font-size : 0.9em;
  font-family : "Book Antiqua",serif;
  font-weight : normal;
  bottom : auto;
  
  
  
background-position : center center;
  
  
  
border-spacing : 65px;
  
  
  
  
  
  
  
  
  
  
  
  
}
A:hover{
  color : #ff0080;
  
  
  position : relative;
  top : 2px;
  left : 2px;
  text-decoration : none;
}
A{
  color : #ff0080;
  text-decoration : none;
}
A:link{
  color : #ff0080;
  text-decoration : none;
}
A:active{
  color : red;
  text-decoration : none;
}
A:visited{
  color : #ff0080;
  text-decoration : none;
}









function backToTop() {
  var x1 = x2 = x3 = 0;
  var y1 = y2 = y3 = 0;
  if (document.documentElement) {
      x1 = document.documentElement.scrollLeft || 0;
      y1 = document.documentElement.scrollTop || 0;
  }
  if (document.body) {
      x2 = document.body.scrollLeft || 0;
      y2 = document.body.scrollTop || 0;
  }
  x3 = window.scrollX || 0;
  y3 = window.scrollY || 0;
  var x = Math.max(x1, Math.max(x2, x3));
  var y = Math.max(y1, Math.max(y2, y3));
  window.scrollTo(Math.floor(x / 2), Math.floor(y / 2));
  if (x > 0 || y > 0) {
      window.setTimeout("backToTop()", 25);
  }
}

