/* CSS Image Viewer from CSSplay (www.cssplay.co.uk) */

#gallery 
{ position: relative; 
  width: 656px;
  padding-top: 24px;
}

#thumbs 
{ width: 205px; 
  float: right;
}

#thumbs a 
{ display: block; 
  float: right; 
  margin: 1px 0px 3px 10px; 
  width: 50px; 
  height: 50px; 
  border: 2px solid #40403E;
}

#thumbs a img 
{ width: 50px; 
  height: 50px; 
  border: 0;
}

#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; 
  left: 0px; 
  top: 24px; 
  padding: 2px;
  border: 2px solid #40403E;
}

#thumbs a:hover span 
{ position: absolute; 
  width: auto; 
  height: auto; 
  left: 0px; 
  top: -2px; 
  padding: 2px;
  visibility:visible;
  width: 400px; 
  height: 30px;
}

