/* styles for magnifier image pairs */

/* style for the DIV that holds the image pair */
.magnifier {
  overflow: hidden;
  position: relative;
  
}

/* style for the DIV that is the magnifier lens */
.maglens {
  position: absolute;
  overflow: hidden;
  width: 175px;
  height: 175px;
  		-moz-border-radius: 100px;
		-webkit-border-radius: 100px;
		-khtml-border-radius: 100px;
		border-radius: 100px;
		cursor:none;
}

/* style for the small IMG that appears on the page */
.magsmall {
  position: absolute; 
  border-style: none;
  
}

/* style for the magnified image, using a clip rectangle */
.maglarge {
  position: absolute; 
  border-style: none;
}

