/* 
   The first line
   centers the body on
   the webpage
*/

body {
        background-color: #95B3D7;
	color: #17375E;
	font-size: 120%;
        min-width: 990px; text-align: center;
     }

#wrapper { width: 1020px; margin: 0 auto; text-align: left; }


h1 {
      color: navy;
      margin-left: 20px;
   }




/* Below is styling the MENU */

#menu ul
{
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

#menu li
{
    list-style: none;
}

#menu a
{
    display: block;
    width: 170px;   
   /*  changed to 170 from 204  */
    color: white;
    background-color: #2426B9;
    text-decoration: none;
    text-align: center;
}

#menu a:hover
{
    background-color: #2046F2;
}



#menu li
{
    list-style: none;
    float: left;
    margin-right: 0.0em;
}




