/*

   Whiskers & Wags Main Layout Style Sheet

   Filename:         wnw_layout.css
   

*/

/* Layout styles for desktop screen display */



/* Body styles */

body {
   background-color: ghostwhite;
   margin: 0px auto;
   width: 960px;
} 


/* Header styles */


h1.mainHead {
     text-align: center;
     width: 100%;
}

img.lrglogo {
    height: 130px;
    width: 300px;
}

/* Navigation list in header */

header nav {
   
   background-color: saddlebrown;
   height: 42px;
   margin-left: 50px;
   margin-right: 60px;
}

header nav li {
   display: block;
   float: left;
   line-height: 42px;
   text-align: center;
   width: 123px;
  /* border: 1px solid red;*/ /*to help determine border of nav cells */
  
}

header nav li a {
   color: darkblue;
   font-variant: small-caps;
   font-size: 18px;
   font-family: 'Trebuchet MS', Helvetica, sans-serif;
   text-decoration: none;
}

header nav li a:hover {
   color: rgb(230, 252, 171);
}



/* footer style */

footer.now {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: small;
    text-align: center;
    margin-top: 50px;
    clear: both;
    
    } 