﻿/* Header (Content) Style Sheet 

All styles follow the CSS syntax: 

   selector {property: value}

You can use as selector an HTML tag name, or include a
period to define a class, or include a number sign to 
define an ID.
*/

body
{
   font-size:        smaller;
   color:            #ffffff;
   background-color: #455372;
}

a:link    {color: #ffffff;} 
a:visited {color: #ffffff;} 
a:hover   {color: #ffff00;} 
a:active  {color: #ffffff;}



