.magnifyarea { /* CSS to add shadow to magnified image. Optional */
	box-shadow: 5px 5px 7px #818181;
	-webkit-box-shadow: 5px 5px 7px #818181;
	-moz-box-shadow: 5px 5px 7px #818181;



	filter: progid:DXImageTransform.Microsoft.dropShadow(color=#818181, offX=5, offY=5, positive=true);
	background-color: #CCC;
	position: relative;
	left: auto;
}

.targetarea { /* CSS for container div(s) of the zoomable image */
	width: 700px; /* wide or wider than the widest zoomable image */
	height: 540px;
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;













































	background-color: none
	margin: 3px;
	bottom: auto;
	top: 81px;
	position: absolute;
	left: 10px;
	right: auto;
}

#two { /* Added CSS for second target div of zoomable images */
	height: 250px; /* 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;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
	float: none;
}

.thumbs { /* divs holding the trigger links - styles optional, used here to center their links below their respective zoomable image */
	padding-top: 0px;
	width: 99%;
	text-align: left;
	border: 00px none #FFF;
	position: absolute;
	top: 654px;
	left: 2px;
	overflow: auto;
	height: 110;
	float: none;
}

.thumbs a { /* trigger links on the thumbnail images */
	text-decoration: none; /* avoid underlines of images, text or spaces in these links */
}

.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: 1000px; /* should be width of zoomable image container (.targetarea) */
	text-align: left;
	margin-top: 3px; /* when following image bottom, this sets a fixed distance for that */
	color: #333;
	background-color: #FFFFFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10pt;
	font-style: normal;
	-webkit-transition: all;
	-moz-transition: all;
	-ms-transition: all;
	-o-transition: all;
	transition: all;
	left: 200px;
	top: 600px;
	height: 4px;
}
