﻿/* Menu 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
{
   color:            #b0b0b0;
   background-color: #455372;
}

a:link    {color: #ffffff;} 
a:visited {color: #ffffff;} 
a:hover   {color: #ffff00;} 
a:active  {color: #ffffff;}

table
{
   padding: 0px;
   margin: 0px;
}

p
{
   margin-left: 10px;
}


