#splash_screen {
	top: 0;
	left: 0;
	position: absolute;
/*	background-color: #000;
	filter:alpha(opacity=60);
	-moz-opacity:0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;*/
	z-index: 1;
	cursor: pointer;
}

#thumbBox{ /*Outermost DIV for thumbnail viewer*/
	font-family:Arial, Helvetica, sans-serif;
	font-size : 11px;
	position: absolute;
	left: 0;
	top: 0;
	width: auto;
	padding: 5px 10px 15px 10px;
	background: #fff;
	border: 1px solid #477FAE;
	visibility: hidden;
	z-index: 100;

	min-width:300px;
	text-align: center;
}

#thumbBox .footerbar{ /*Footer DIV of thumbbox that contains "close" link */
	font-family:Arial, Helvetica, sans-serif;
	font-size : 10px;
	font-weight : bold;
	letter-spacing: 5px;
	line-height: 8px;
	color: #000;
	padding: 0 0 5px 0;
	text-align: right;
	cursor: hand;
	cursor: pointer;

	min-width:300px; _width:expression(document.getElementById(\'thumbImage\').offsetWidth < 341 ? \'300\' : \'auto\');
}

#thumbLoading{ /*DIV for showing "loading" status while thumbbox is being generated*/
	font-family:Arial, Helvetica, sans-serif;
	font-size : 12px;
	font-weight : bold;
	position: absolute;
	visibility: hidden;
	border: 1px solid black;
	background-color: #EFEFEF;
	padding: 5px;
	z-index: 5;
}

#thumbBox .legend{
	margin-top:15px;
	text-align: left;
}

#thumbImage {
	min-width:300px; _width:expression(document.getElementById(\'thumbImage\').offsetWidth < 341 ? \'300\' : \'auto\');
}

#hoverNav a{ outline: none;}
#prevLink, #nextLink{
	position: absolute;
	width: 49%;
	height: 100%;
	background: transparent url(./blank.gif) no-repeat; /* Trick IE into showing hover */
	display: block;
	cursor: hand;
	cursor: pointer;
}
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(./prev.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(./next.gif) right 15% no-repeat; }
