/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.gallerycontainer{
position: relative;
background:url(../logo.jpg) no-repeat;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
/*border: 0px solid white;*/
margin: 0;
}

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

.thumbnail:hover img{
/*border: 1px solid blue;*/
border:none;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #FFFFFF; /* Fondo de la imagen */
padding: 10px;
left: -1000px;
border: 1px dashed #333333;
visibility: hidden;
color: #333333;
font-size: 10px;
font-weight:bold;
font-family: Verdana, Arial, Helvetica, sans-serif;
text-decoration: none;
}

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

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
top: 15px;
right: 0;
left: 250px; /*position where enlarged image should offset horizontally */
z-index: 50;
}