<!--
/* Usage: photosegments, magnification loupe

.masterbox: relative parent to provide cursor coordinate axes system;
		must be confined inside a width- and height-specified box (ex. ph or pv),
		or must specify width, height, left, and top in this style definition
.loupe: magnification loupe
.targetmarker: colored border/indicator for magnification segments
.target: actual mouseover trap/target for magnification segments
.segment: magnified segments
*/
img.hasseg {
	border-color: #66FFFF;
	}
.masterbox {
	position: relative;
	left: 0px;
	top: 0px;
	}
.loupe {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 175px;
	height: 175px;
	border-color: #000000;
	border-width: 3px;
	border-style: solid;
	overflow: hidden;
	visibility: hidden;
	}
.targetmarker {
	position: absolute;
	/*if target is at targx,targy with targw,targh
	then targetmarker should be at targx,targy with targw-10,targh-10*/
	/*border-color: is specified in photofocus.php since it must change dynamically*/
	border-width: 5px;
	border-style: solid;
	visibility: hidden;
	}
.target {
	position: absolute;
	}
.target img {
	border-width: 0px;
	border-style: none;
	}
.segment {
	position: absolute;
	top: 0px;
	left: 0px;
	}
.segment #segmentimg {
	border-width: 0px;
	border-style: none;
	}
-->