
/* POPUP */

.galleryPopup {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color:#F3F3F3;
}
.galleryPopup img {
border:0px;
}

.galleryPopup .title {
	position:absolute;
	left:10px;
	top:10px;
	width:700px;
	height:23px;
	overflow:hidden;
	background-color:#990100;
	
}
.galleryPopup .title h2 {
	color:#FFF;
	padding:3px 0px 0px 3px;
	margin:0px;
	font-size:130%;
	
}

.galleryPopup .title .close {
	position:absolute;
	right:0px;
	top:0px;
}

.galleryPopup .imageHolder {
	position:absolute;
	left:10px;
	top:50px;
	width:700px;
}
.galleryPopup .prevItem {
	position:absolute;
	left:0px;
	top:0px;
}
.galleryPopup .image {
	position:absolute;
	left:50px;
	top:0px;
}
.galleryPopup .nextItem {
	position:absolute;
	right:0px;
	width:50px;
}
.galleryPopup .caption {
	padding-top:10px;
	font-size:100%;
}


/* MASK AND POPUP CONTAINER */

body {
	height:100%;
}

#galleryMask {
	position:fixed;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	background-color:#000;
	filter:alpha(opacity=80);
	opacity: 0.8;
	-moz-opacity:0.8;
	/*display:none;*/
	z-index:400;
	cursor:pointer;
}

 /* ie6 hack */
* html #galleryMask {
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#galleryFrame {
	position:fixed;
	left:50%;
	top:50%;
	width:720px;
	height:550px;
	margin-left:-360px;
	margin-top:-275px;
	background-color:#F3F3F3;
	border:1px solid #000;
	display:none;
	z-index:500;
}

/* ie6 hack */
* html #galleryFrame {
	position: absolute;
	margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}