/* CSS Image Viewer from CSSplay (www.cssplay.co.uk) */

#gallery 
{ position: relative; 
  width: 608px;
  padding-top: 8px;
}

#thumbs 
{ width: 205px; 
  float: left;
}

#thumbs a 
{ display: block; 
  float: left; 
  margin: 1px 0px 3px 0px; 
  width: 133px; 
  height: 100px;
  border: 1px solid #40403E;
  
}

#thumbs a img 
{ width: 133px; 
  height: 100px; 
  border: 0;visibility:visible;
}

#thumbs a span
{ position: absolute;
  width: 0px; 
  height: 0px; 
  border: 0;
  visibility:hidden;
}

#thumbs a:visited span
{ width: 0px; 
  height: 0px; 
  border: 0;
  visibility:hidden;
}

#thumbs a:hover 
{border-color: #ddd;

}

#thumbs a:hover img 
{ position: absolute; 
  width: auto; 
  height: auto; 
  right: 0px; 
  top: 6px; 
  padding: 0px;
  
}

#thumbs a:hover span 
{ position: absolute; 
  width: auto; 
  height: auto; 
  left: 0px; 
  top: 0px; 
  padding: 2px;
  visibility:visible;
  width: 400px; 
  height: 30px;
}

