@charset "utf-8";
/* CSS Document */

  ul#gallery {
    display: block;
    list-style: none;
    width: 640px;
    height: 200px;
  }
  
  ul#gallery li {
    border: solid #CCCCCC 5px;
    display: block;
    float: left;
    width: 75px;
    height: 75px;
    margin: 5px;
  }

  ul#gallery li:hover {
    border: solid #FF0000 5px;
  }
  
  ul#gallery a,
  ul#gallery a img {
    border: 0;
    padding: 0;
    margin: 0;
  };

