/* Main CSS Style Sheet*/


/*Common Objects*/

  body{
    background-color:black;
    margin:0;
    padding:0;
  }

  img{
  border:none;
  }

  h1{
    text-align:center;
   }

  p{
    text-indent:15px;
    }

  h1{
    margin:0;
    }

/*DIVS*/

  div.container{
    background-color:#262e3e;
    background-image:url(images/BG_cars.gif);
    background-repeat:no-repeat;
    margin: 0 auto;
    height:100%;
    width: 800px;
    padding-bottom:5px;
  }

  div.header{
    padding-top:0px;
  }

  div.nav{
    /*background-image:url(images/navBar.gif);*/
    background-color:black;
    border:5px groove blue;
    background-repeat:no-repeat;
    height:50px;
    width:750px;
    margin:0 auto;
  }

  div.content{
  width:750px;
  margin:0 auto;
   height:100%;
  border: 5px ridge #0000CC;
  background-color:white;
  }

  div.footer{
   color:white;
   font-size:10px;
   padding-left:200px;
  }


/* Navigation related*/

#navlist li
{
display: inline;
list-style-type: none;
padding-right: 5px;
}
  

/*Hyperlinks*/

  a:link { 
    text-decoration:none;
    color:white;
  }

  a:hover { 
    color:gray;
  }


