/* image viewer style */
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.gallerycontainer{
position: relative;
height:100% /*added to try and fix ie 6 bug - 2/2/09*/
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}
.thumbnail img{
border: 2px solid red;
margin: 0 5px 5px 0;
}
.thumbnail:hover{
background-color: transparent;
}
.thumbnail:hover img{
border: 2px solid blue;
}
.thumbnail span{ /*CSS for enlarged image*/
position: fixed;
border:outset #a5d8f6; /*background for large image*/
background:#a5d8f6; /*border for large image */
padding: 5px;
left: -1000px;
visibility: hidden;
color: black;
text-decoration: none;
}
.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}
.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: 450px; /*position where enlarged image should offset horizontally */
top:85px;
z-index: 50;
}
.style1 {
  font-family: Times New Roman, Times, serif; 
  font-size: 11px;
}  
.wrapper{width:250px; height: 450px; overflow: auto} /*Places scroll bar for thumbnails*/

/* end image viewer style */