.magnifyarea { /* CSS to add shadow to magnified image. Optional */

	filter: progid:DXImageTransform.Microsoft.dropShadow(color=#aaa, offX=5, offY=5, positive=true);
	background: white;
top :175px !important; border:solid 1px #ccc !important
}

.targetarea { /* CSS for container div(s) of the zoomable image */
	width: 370px; /* wide or wider than the widest zoomable image */
	/*height: 400px;  high or higher than the tallest zoomable image */
	margin-top:3px; text-align:center; float:left; margin-left:6px; 
}

#two { /* Added CSS for second target div of zoomable images */
	height: 243px; /* high or higher than the tallest zoomable image */
}

.targetarea img { /* zoomable image */
	margin: auto; /* for horizontal centering */
	display: block; /* also for horizontal centering */
	position: relative; /* along with on the fly calculations in script, for vertical centering */
	border-width: 0;
     top: 0px !important;
}

.thumbs { /* divs holding the trigger links - styles optional, used here to center their links below their respective zoomable image */
	padding-top: 3px;
	width: auto;
	text-align: center; float:left;
}

.thumbs a { /* trigger links on the thumbnail images */
 width:50px; height:auto; margin-bottom:8px; padding-top:8px; padding-bottom:8px;	text-decoration: none; border:solid 1px #ddd; display:block; /* avoid underlines of images, text or spaces in these links */
}
.thumbs a:hover{ border:solid 1px #666}
.thumbs img { /* trigger images - the thumbnails used to load new zoomable images into the targetarea */
	border-width: 0; /* avoid default borders in some browsers */
}

#description, #description2 {
	position: absolute; /* required for description folows image bottom (descpos: true) */
	width: 325px; /* should be width of zoomable image container (.targetarea) */
	text-align: center;
	font: bold 95% sans-serif;
	margin-top: 3px; /* when following image bottom, this sets a fixed distance for that */
	color: #222;
	background-color: #fff;
}