﻿body {
	font-family: tahoma;
	font-size: 11px;
}
.eff {
	/* the image size is 85x85, it's adjusted to fit the border as well*/
	width: 95px;
	height: 95px; /* important, allow the children object to move inside its parent obj */;
	position: relative; /* important, it hides the moved image */;
	overflow: hidden; /* with the clear class, make it into 3 x 3 layout */;
	float: right; /* IE float bug fix */;
	display: inline; /* styling */;
	margin: 8px;
	font-size: 11px;
	font-family: tahoma;
}
.eff img {
	display: block;
	width: 95px;
	height: 95px; /* styling */;
	text-decoration: none;
/* important, it allows this obj to move by jquery */
	position: absolute; /* make sure it appears above the caption */;
	z-index: 500;
	cursor: pointer;
	cursor: hand;
	font-family: tahoma;
	font-size: 11px;
	color: #C358BE;
}
.eff .caption {
	/* should be the same size with the image */
	width: 90px;
	height: 90px; /* styling */;
	background: #F7E8F5;
	border: 3px solid #C358BE;
	color: #C358BE; /* set the position to 0, 0 and appear under the image */;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	font-family: tahoma;
	font-size: 11px;
}


/* extra styling*/

.eff .caption a.header {
	margin: 10px 5px 5px 5px;
	display: block;
	font-size: 11px;
	font-weight: 700;
	color: #C358BE;
	font-family: tahoma;
}
.eff .caption p {
	margin: 5px;
	font-family: tahoma;
	font-size: 11px;
}
.clear {
	clear: both;
	font-family: tahoma;
	font-size: 11px;
}
