/**
 * CSS for lightweight gallery viewer.  There are some other great pure Javascript galleries but they 
 * are all to heavy for use over dial-up.  This was designed to a minimal implementation.
 *
 * Copyright (c) 2008 - Renee Burkett
 */

.galleryFrame
{
	position:relative;
	width:200px;
	height:200px;
	overflow:hidden;
	background-color:eee9d5;
	border:none;
}

.galleryImage
{
	position:absolute;
	display:block;
	opacity:0;
	-moz-opacity:0;
	filter:alpha(opacity=0);
	margin:0;
	border:solid black 1px;
}