@CHARSET "ISO-8859-1";

html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;  /* necessary on IE7+ due to box model */
}

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

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

  #controls {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    padding: 10px 0;
  }
  
  #main {
    position: relative;
    left: 0;
    top: 0;
    margin-left: 190px;
    margin-right: 150px;
    padding: 0 10px;
  }
  * html #main {
    height: 600px;   /* IE 6 and below don't support min-height */
  }

    #content {
      float: left;  /* only floated so that the footer div will clear it */
      width: 100%;
      padding: 10px 10px 0 10px;
      margin-bottom: 10px;
      min-height: 560px;
    }
    * html #content {
      height: 581px;   /* IE 6 and below don't support min-height */
    }

    #navbar {
      position: relative;
      left: -10px;
      top: 0;
      margin-right: -20px;
      line-height: 25px;
    }

  #ads_area {
    position: absolute;
    right: 0;
    top: 0;
    width: 140px;
  }

#footer {
  clear: both;
  position: relative;
  left: 0;
  top: 0;
  margin-left: -200px;
  margin-right: -160px;
  z-index: 3;
  overflow: hidden;
}
#footer .center {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
#footer p {
  margin: 0;
  padding: 0 0.5em;
  min-width: 220px;
  position: relative;
  z-index: 5;
}
#credit {
  float: left;
}
#copyright {
  float: right;
}


