@charset "UTF-8";
/* CSS Document */

/* styles unrelated to zoom */
		* { border:0; margin:0; padding:0; }
		p { position:absolute; top:3px; right:28px; color:#555; font:bold 13px/1 sans-serif;}

		/* these styles are for the demo, but are not required for the plugin */
	
#wrapper {
    position: relative;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.zoom {
    display:inline-block;
    position: relative;
}
		
/* magnifying glass icon */
.zoom:after {
    content:'';
	display:block; 
	width:33px; 
	height:33px; 
	position:absolute; 
	top:0;
	right:0;
	background:url("images/icon.png");
}

.zoom img {
    display: block;
}

.zoom img::selection { 
    background-color: transparent; 
}

/* changes mouse look */
#ex2 img:hover {
	cursor: grab;
}

#ex2 img:active {
	cursor: grabbing;
}
