/* CSS Image Viewer from CSSplay (www.cssplay.co.uk) */

#gallery 
{ position: relative; 
  width: 950px;
  height: 400px;
  padding-top: 8px;
}

#thumbs 
{ width: 300px; 
  float: right;
}

#thumbs a 
{ display: block; 
  float: right; 
  margin: 4px 0px 6px 10px; 
  width: 65px; 
  height: 65px; 
  border: 0px solid #333333;
}

#thumbs a img 
{ width: 65px; 
  height: 65px; 
  border: 2;
  border-color: #666666;
}

#thumbs a:hover {border-color: #666666;}

#thumbs a:hover img 
{ position: absolute; 
  width: auto; 
  height: auto; 
  right: 325px; 
  top: 8px; 
  padding: 2px;
  border: 2px solid #333333;
}


