#interContainer{
position: absolute;
width: 600px; /*Width of interstitial box*/
left: 0;
top: 0;
padding-top: 0;
background-color: #000;
visibility: hidden;
z-index: 999;
}

#interContainer .headerbar { /*CSS for header bar of interstitial box*/
top: 5px;
right: 5px;
position: absolute;
}

#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*/
color: #FFF;
font-size: 16px;
letter-spacing: 0;
padding: 0 0 30px;
}

#interContent h1 {
margin-bottom: 0;
}

#interContent button {
border: none;
font-size: 16px;
background-color: #1eafe1;
color: #FFF;
padding: 5px 10px;
margin-top: 10px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}

#interVeil{ /*CSS for background veil that covers entire page while interstitial box is visible*/
position: absolute;
background: black url(blackdot.gif);
right: 0;
width: 100%;
height: 100% !important;
top: 0;
z-index: 998;
visibility: hidden;
filter:progid:DXImageTransform.Microsoft.alpha(opacity=80);
opacity: 0.8;
}