/* Styles for Photo Zoom */
a.zoom{
    z-index:24; 
    text-decoration:none;
	border:none;
}

a.zoom img {
	border: none;
}

a.zoom:hover{
	z-index:25;
}

a.zoom span {
	display: none;
	width: 374px;
	height: 265px;
    position:absolute;
    top:-283px; 
	left:0px; 
	background-image:url(../images/zoom.png);
	background-repeat: no-repeat;
	background-position: center;
    text-align: center
}

a.zoom:hover span{ /*the span will display just on :hover state*/
    display:block;
	width: 374px;
	height: 265px;
    position:absolute;
    top:-283px; 
	left:0px; 
	background-image:url(../images/zoom.png);
	background-repeat: no-repeat;
	background-position: center;
    text-align: center
}
