#interContainer{
	position: absolute;
	max-width: 550px; /*Width of interstitial box*/
	width: 95%; /*Width of interstitial box*/
	left: 0;
	top: 0;
	padding: 5px;
	padding-top: 0;
	background-color: #333333;
	border: 1px solid black;
	visibility: hidden;
	z-index: 999;
}

#interContainer .headerbar{ /*CSS for header bar of interstitial box*/
color: white;
padding: 5px ;
text-align: right;
}

#interContainer .headerbar a{ /*CSS for header bar links of interstitial box*/
font-size: 120%;
text-decoration: none;
}


#interContent{ /*CSS for div that holds the content to show*/
border: 1px solid light blue;
background-color: ;
}
#interContent img{
	height: 100%;
	width: 100%;	
	}

#interVeil{ /*CSS for background veil that covers entire page while interstitial box is visible*/
position: absolute;
background: black url(imagenes/blackdot.gif);
right: 0;
width: 10px;
top: 0;
z-index: 5;
visibility: hidden;
filter:progid:DXImageTransform.Microsoft.alpha(opacity=80);
opacity: 0.8;
}