/* Page position */
    body {
      margin: 0;
      padding: 0;
      border: 0;
      overflow: hidden;
      height: 100%; 
      max-height: 100%; 
    }
    
    #navbar {
      position: absolute;
      top: 0;
      bottom: 0; 
      left: 0;
      width: 275px; /*Width of frame div*/
      height: 100%;
      overflow: auto; /*Disable scrollbars. Set to "scroll" to enable*/
      border: medium solid #aaa;
    }
    
    #main {
      position: absolute;
      top: 0; 
      left: 275px; /*Set left value to WidthOfFrameDiv*/
      right: 0;
      bottom: 0;
      overflow: auto; 
    }
    
    .innertube {
      margin: 10px; /*Margins for inner DIV inside each DIV (to provide padding)*/
    }
    
    * html body { /*IE6 hack*/
      padding: 0 0 0 275px; /*Set value to (0 0 0 WidthOfFrameDiv)*/
    }
    
    * html #main { /*IE6 hack*/
      height: 100%; 
      width: 100%; 
    }

    #header {
      position: absolute;
      top: 10px; 
      left: 15px; 
      width: 750px;
      align: center;
    }

    #home_content {
      position: absolute;
      top: 495px; 
      left: 15px; 
      width: 750px;
      padding-bottom: 15px;
      border: thin solid black;
    }

    #default_content {
      position: absolute;
      top: 245px; 
      left: 15px; 
      width: 750px;
      padding-bottom: 15px;
      border: thin solid black;
    }

/* Styles */
    body {
      font-family: Verdana;
      color: black;
      background: white;
    }

    /* Navigator styles */
    #navbar {
      background:  	#C0C0C0;
      background-color:  	#C0C0C0;
      background-image: url(images/nav_bg.jpg);
    }

    .top_menu {
      margin-left: 0px;
      color: #0000CC;
      font-size: 18px;
      font-family: Verdana;
      font-weight: Bold;
      padding: 2px;
      text-decoration: none;
    }
    .top_menu a {
      margin-left: 0px;
      color: #0000CC;
      font-size: 18px;
      font-family: Verdana;
      font-weight: Bold;
      padding: 2px;
      text-decoration: none;
    }
    .top_menu a:hover {
      color: #B22222;
      margin-left: 2px;
      font-size: 18px;
      font-family: Verdana;
      font-weight: Bold;
      padding: 5px;
      text-decoration: none;
    }
    .menu {
      display: none;
      margin-left: 2px;
      color: black;
      font-size: 13px;
      font-family: Verdana;
      font-weight: Bold;
      padding: 5px;
      text-decoration: none;
      line-height: 160%
    }
    .menu a {
      margin-left: 2px;
      color: black;
      font-size: 13px;
      font-family: Verdana;
      font-weight: Bold;
      padding: 5px;
      text-decoration: none;
      line-height: 160%
    }
    .menu a:hover {
      color: #B22222;
      margin-left: 4px;
      font-size: 13px;
      font-family: Verdana;
      font-weight: Bold;
      padding: 5px;
      text-decoration: none;
      line-height: 160%
    }
    .sub_menu {
      display: none;
      margin-left: 2px;
      color: #330066;
      font-size: 12px;
      font-family: Verdana;
      font-weight: Bold;
      padding: 5px;
      text-decoration: none;
      line-height: 160%
    }
    .sub_menu a {
      margin-left: 2px;
      color: #330066;
      font-size: 12px;
      font-family: Verdana;
      font-weight: Bold;
      padding: 5px;
      text-decoration: none;
      line-height: 160%
    }
    .sub_menu a:hover {
      color: #CC0033;
      margin-left: 4px;
      font-size: 12px;
      font-family: Verdana;
      font-weight: Bold;
      padding: 5px;
      text-decoration: none;
      line-height: 160%
    }

/* Main styles */
    div.main {
      background: white;
    }
    
    div.bodytitle {
      font-size: 20px;
      font-family: Verdana;
      font-weight: Bold;
      background: #0066CC;
      color: white;
      text-align: center;
    }

    div.home_header {
      font-weight: Bold;
      margin-left: 5px;
      padding: 5px;
    }

    div.home_inner {
      margin-left: 10px;
      padding: 10px;
    }

    div.default_header {
      font-weight: Bold;
      margin-left: 5px;
      padding: 5px;
    }

    div.story_header {
      font-weight: Bold;
      font-size:15px;
      margin-left: 5px;
      padding: 5px;
      text-align: center;
    }

    div.default_inner {
      margin-left: 10px;
      padding: 10px;
    }