.thumbnail{
	position: relative;
	z-index: 0;
	text-decoration: nones;

}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
text-decoration: none;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: white;
padding: 10px; /*Border margin around image*/
left: -1000px;
border: 1px solid gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.divLeft { /*CSS for left pop up - to keep within the page limits*/
position: absolute;
left: 50px;
width:350;
top: 0;

}

.divRight { /*CSS for right pop up - to keep within the page limits*/
position: absolute;
right: 20px;
width:350;
top: 0;

}
.thumbnail span img{ /*CSS for enlarged image prior to hover*/
border: none;
padding: 2px;
text-decoration: none;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -200;
left: -50; /*position where enlarged image should offset horizontally */
text-decoration: none;

}

.SiteTitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	font-weight: bold;
	text-decoration: none;
	text-align: left;
}

.SiteDesc {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000000;
	font-weight: normal;
	text-decoration: none;
	text-align: justify;
	width: 100%
}

