/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
#galerie
 {
border-top: 1px solid #006600;
border-bottom: 1px solid #006600;
padding-top: 5px;
padding-bottom: 70px;
height: 130px;
}
.gallerycontainer{
position: relative;
display: inline;
float: left;
width: auto;

/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid transparent ;
margin: 1px 5px 5px 1px;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid #006600;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #fafafa;
padding: 5px;

left:-1000px;
border: 1px solid #006600;
visibility: hidden;
color: #006600;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border/*-width*/: 0px none;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 170px;  /*-100px;*/


                /*right: 0px; */
left: 0px; /*101%; *//*230px;*/ /*position where enlarged image should offset horizontally */
z-index: 50;

}
