/* CSS Document */

	ul.thumb {
		float: left;
		list-style: none;
		margin: 0; padding: 0px;
		width: 203px;
	}
	ul.thumb li {
		margin: 0; padding: 0px;
		float: left;
		position: relative;  /* Set the absolute positioning base coordinate */
		width: 203px;
		height: 270px;
	}
	ul.thumb li img {
		width: 203px; height: 270px; /* Set the small thumbnail size */
		-ms-interpolation-mode: bicubic; /* IE Fix for Bicubic Scaling */
		padding: 0px;
		background:#FFFFFF;
		position: absolute;
		left: 0; top: 0;
	}
	ul.thumb li img.hover {
		background:#FFFFFF no-repeat center center;  /* Image used as background on hover effect
		border: none; /* Get rid of border on hover */
	}
