/*CSS for photo gallery pop-up pages using the galleria plugin*/
	
	/* BEGIN GALLERY STYLES */

* { /*Clearing*/
	margin:0;
	padding:0
}

body { 
	background:white;
	text-align:center;
	font-size:75%; /*For IE, sets to 12px font-size but allows it to remain scalable (from the normal 16px in IE)*/
	line-height:1.5em; /*Sets to 18px line height*/
	font-family: Tahoma, Geneva, sans-serif;
	color: black;
	letter-spacing:.05em;
}

html>body {
	font-size:12px; /*For Firefox and Safari*/
}

.pad {
	width:818px; /*Wrapper centers within pad (workaround to an IE padding bug when loaded as an Iframe)*/
	margin: 0 auto!important;
}

.wrapper {
	width:810px;
	margin: 0 auto!important;
	position: relative;
	text-align:left;
	padding-top:4px;
}

#frame {
	padding:4px;
	border:1px solid #444444;
}

.galleria_container { /*The area for the full size image*/
	margin:0px;
	height:500px;
	width:800px;
	overflow:hidden;
	position:relative;
}

ul.galleria { /*The area for the thumbnail*/
	list-style:none;
}

ul.galleria li {
	display:block;
	overflow:hidden;
	float:left;
	width:68px;
	height:50px;
	border:1px solid #444444;
	background:#000;
	margin:4px 4px 3px 0px;
}

ul.galleria li a {
	display:none;
}

ul.galleria li img.thumb {
	cursor:pointer;
	top:auto;
	left:auto;
	display:block;
	width:auto;
	height:auto;
}

.caption {
	display:block;
	padding-top:.5em;
	position:absolute;
	bottom:0px;
	right:0px;
	background-color:black;
	padding:5px 10px;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
	filter: alpha(opacity=65);
	opacity:.65;
	color:white;
	}
	
/*img {display:none;}*/	/*Sets the images to invisible to prevents flash of the image during the initial load-in */