#interContainer{
position: absolute;
width: 500px; /*Width of popupbox box*/
left: 0;
top: 0;
padding: 0px;
padding-top: 0;
background-color: #F00;
border: 1px solid black;
visibility: hidden;
z-index: 6;
}

#interContainer .headerbar td{ /*CSS for header bar of popupbox box*/
color: White;
font-size: 18px;
font-weight: bold;
padding: 0px 5px 0px 5px;
}

#interContainer .headerbar td a{ /*CSS for header bar links of popupbox box*/
color: White;
text-decoration: none;
font-size: 12px;
}


#interContent{ /*CSS for div that holds the content to show*/
border: 2px solid #F00;

background-color: white;
}

#interVeil
{
	/*CSS for background veil that covers entire page while popupbox box is visible*/
	position: absolute;
	background-color: #FFC;
	right: 0;
	width: 10px;
	top: 0;
	z-index: 5;
	visibility: hidden;
	filter: progid:DXImageTransform.Microsoft.alpha(opacity=50);
	opacity: 0.8;
}
