// Styling for the skip navigation link:
a.offscreen { { 
 
position:absolute; 
 
left:-1000px; 
 
top:-1000px; 
 
width:1px; 
 
height:1px; 
 
text-align: left; 
 
overflow:hidden; 
 
} 
a.offscreen:focus, a.offscreen:active, a.offscreen:hover { 
 
position:absolute; 
 
left:0; 
 
top:0; 
 
width:auto; 
 
height:auto; 
 
overflow:visible; 
 
background-color:#FF3; 
 
border: 1px dotted #000; 
 
}
#navbar
{
   margin: 0;
   padding: 0;
}

#navbar li
{
   margin: 0;
   padding: 0;
   list-style: none;
   float: left;
}

#navbar li a
{
   display: block;
   margin: 0 1px 0 0;
   padding: 4px 10px;
   width: 80px;
   background: Black;
   color: White;
   text-align: center;
}

#navbar li a:hover
{
   background: Green;
}

body {
    background: LightBlue;
}

h1, h2 {
    text-align: center;
    text-decoration: underline;
}

h1 {
    font-family: Georgia;
}

p {
    font-family: Trebuchet;
}

