/*****************************IMAGE GALLERY ROLLOVER FUNCTIONALITY*/

.gallerycontainer{
	position: relative; 
	text-decoration: none;
}

.thumbnail img{
	border: 1px solid white;
	margin: 1px;
}

.thumbnail:hover{
	background-color: transparent;
	text-decoration: none;
}

.thumbnail:hover img{ 
	cursor: pointer;
}

.thumbnail span{ 
	position: absolute;
	visibility: hidden;
	text-decoration: none;
    color: #830c13;
}

.thumbnail span img{ 
	border-width: 1px solid white;
}

.thumbnail:hover span{ 
	visibility: visible;
	top: 3px;
	
	z-index: 50;
	text-decoration: none;
	text-align: center;
    left: 340px;}



.shadow-left { background-image: url(../pics/thumb-background/left.png); background-repeat: repeat-y; width: 2px; }
.shadow-right { background-image: url(../pics/thumb-background/right.png); background-repeat: repeat-y; width: 2px; }
.shadow-bottom-left { background-image: url(../pics/thumb-background/bottom-left.png); background-repeat: repeat-y; width: 2px; height: 4px; }
.shadow-bottom { background-image: url(../pics/thumb-background/bottom.png); background-repeat: repeat-x; height: 4px; background-position: top;}
.shadow-bottom-right { background-image: url(../pics/thumb-background/bottom-right.png); background-repeat: repeat-y; width: 2px; height: 4px;}
