/* CSS Document */
h2 {
   font: Georgia, "Times New Roman", Times, serif;
   color: #0033FF;
  }
h4 {
   font: Georgia, "Times New Roman", Times, serif;
   color: #0033FF;
   }

#header {
   font: Georgia, "Times New Roman", Times, serif;
   color: #0033FF;
   font-size: 22px
   }
   
#tagline {
   font:Georgia, "Times New Roman", Times, serif;
   color: #0033FF;
   font-style: italic;
   font-size: 16px;
   }

#navbar ul {
margin: 0;
padding: 5px; /* Set margin and padding for cross browser consistency. */
list-style-type: none; /* Needed to eliminate list item marker */
text-align: center; /* Centers navigation bar */
background-color: #000; /* Set as desired */
}

#navbar ul li {
display: inline; /* Needed to create horizontal effect */
}

#navbar ul li a {
text-decoration: none; /* The setting of "none" allows the link to not be underlined. This is up to user preference. */
padding: .2em 1em; /* Gives the link space inside it's individual block. */
color: #fff; /* Set as desired */
background-color: #000; /* Set as desired */
}

#navbar ul li a:hover {
color: #000;
background-color: #fff; /* Both of these values create the "Rollover effect, Set as desired */
}

#footer {
   font: Georgia, "Times New Roman", Times, serif;
   color: #0033FF;
   font-size: 16px;
   }