/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
   */

   /* HTML5 display-role reset for older browsers */
   article, aside, details, figcaption, figure, 
   footer, header, hgroup, menu, nav, section {
    display: block;
  }
  body {
    line-height: 1;
  }
  ol, ul {
    list-style: none;
  }
  blockquote, q {
    quotes: none;
  }
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  .shadow {
    box-shadow: 10px 10px 5px rgba(0,0,0,1);
  }
  table{
    border-collapse: collapse;
  }
  td {
    border-left: 10px solid;
    border-top: 10px solid;
  }


/*=========================================
    Main Styles
    =========================================*/
    body {
      font-family: Times,serif;
      font-size: 20px;
      text-align: center;
      background-image: url(../img/StoneBackground.jpg);
    }

    header {
      padding-bottom: 100px;
    }

    header nav {
     float: center;

    }

    header nav li {
     display: inline;
     font-size: 20px;
     background-color: rgb(196,196,196);
     padding: 10px;
     border-style: inset;
     border-width: 5px;
    }
    header h1 {
      padding-bottom: 20px;
    }

    .container {
      width: 1040px;
      padding: 10px;
      margin: 0 auto;
      background-color: rgb(240,240,240);
    }

    footer {
      text-align: center;
    }

    .GalPic {
      width: 500px;
      height: 400px;
    }

    .reviewStar {
      width: 25px;
      height: 25px;
    }

    .reviewContainer {
      width: 800px;
      padding: 10px;
      margin: 0 auto;
      background-color: rgb(255,255,255);
      border-style: solid;
      border-width: 2px;
      margin-bottom: 30px;
    }

    /*from http://www.w3schools.com/howto/howto_js_slideshow.asp*/
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}