/* setting standard page CSS */
/* January 2005 */

/* general idea is that H tags already in HTML have height/size setting 
   so don't need to repeat size in CSS */


/* BEGIN */

body {background-image: url(http://www.geocities.com/john.higson/images/page-bg.gif);
      background-color: #ffffff;   /* white */
      margin: 0;          /* alternatives are margin-top, -left, -bottom, -right */
     }


/* ------------------------------------------------------------ headings ------------------ */

#head {color: #990033; }

   /* main page heading */
h1 {text-align: center;
    font-family: Verdana, Arial, sans-serif;
   }

   /* secondary page heading */
h2 {border-bottom: 0px solid #fc6;
    text-align: center;
    font-family: Arial, Verdana, sans-serif;
   }

   /* block heading */
h3 {border-bottom: 1px solid #fc6;
    text-align: right;
    font-family: Verdana, Arial, sans-serif;
   }

   /* paragraph heading */
h4 {text-align: left;
    font-family: Arial, Verdana, sans-serif;
   }

#left-nav, #navwebdesign  H4 {text-align: center;
               font-family: Arial, Verdana, sans-serif;
              }


   /* footer */
h5 {margin-right: 5%;
    text-align: right;
    font-family: Arial, Verdana, sans-serif;
   }


#main-content h5 {text-align: center;
                  font-family: Arial, Verdana, sans-serif;
                 }



   /* 'heading note' such as date created */
h6 {
    color: #000000;
    text-align: center;
    font-family: Arial, Verdana, sans-serif;
   }



/* ------------------------------------------------------------ divs ------------------ */

#head {margin-top: 10px;
       padding-top: 1px;
       padding-bottom: 10px;
       background-color: #ffffcc;   /* pale yellow */
       text-align: center;
       font-weight: bold;
}


#standard-content { 
               margin-top: 30px;
               margin-left: 200px;   /* sets gap left of screen to left of content */
               width: 500px;        /* width of content column */
               border-left: 1px solid #000000;
               border-right: 1px solid #000000;
               padding-top: 0px;
               padding-bottom: 0px;
               padding-left: 10px; 
               padding-right: 5%;
               margin-right: 5%;
               text-align: left;
               font-family: Times, serif;
               color: black;
              }


#single-column-content {
               margin-top: 30px;
               margin-left: 150px;   /* sets gap left of screen to left of content */
               width: 500px;        /* width of content column */
               border-left: 0px solid #000000;
               border-right: 0px solid #000000;
               padding-top: 0px;
               padding-bottom: 0px;
               padding-left: 10px; 
               padding-right: 5%;
               margin-right: 5%;
               text-align: left;
               font-family: Times, serif;
               color: black; 
              }


#foot {margin-top: 30px;
       border: 0px solid #000000;
       background-color: #ffffcc;   /* pale yellow */
       padding-top: 5px;
       padding-right: 10px;
       padding-bottom: 10px;
       text-align: right;
}


hr {size:3; width: 50%; color: #ff3333;}


#navteach {position: absolute;
           top: 140px;
           left: 30px;
           width: 160px;
           background-color: yellow;
           line-height: 30px;
           font-size: 10pt;
          }

#navwebdesign {position: absolute;
           top: 215px;
           left: 30px;
           width: 160px;
           background-color: orange;
           padding-top: 5px;
           padding-bottom: 5px;
           padding-left: 5px;
           line-height: 15px;
           font-size: 10pt;
          }

#navlochistory {position: absolute;
           top: 140px;
           left: 30px;
           width: 160px;
           background-color: blue;
           line-height: 30px;
           font-size: 10pt;
          }

#navgeny {position: absolute;
           top: 140px;
           left: 30px;
           width: 160px;
           background-color: green;
           line-height: 30px;
           font-size: 10pt;
          }


#nav {position: absolute;
           top: 140px;
           left: 30px;
           width: 160px;
           background-color: yellow;
           line-height: 30px;
           font-size: 10pt;
          }

#nav li {list-style: none;
        }




a:hover, #nav a:hover, #footer {background-color: #fc6;
                                text-decoration: underlined;
                               }


#footer {background-color: #ffffff;
         color: green;
        }

