*
{
	box-sizing: border-box;
}

body
{
	margin: 0;
	padding: 0;
	background: black;
	font-family: arial, helvetica, sans-serif;
}

#Rotator 
{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    overflow: hidden;
    background: #555;
	border-bottom: 12pt solid white;
	border-top: 12pt solid white;
	border-left: 12pt solid white;
}

#Rotator #InnerRotator
{
	height: 100%;
	width: 99999px;
}

#Rotator img
{
	height: 100%;
	float: left;
	border-right: 12pt solid white;
}

#Content
{
	position: fixed;
	left: 15%;
	right: 15%;
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	border: 12pt solid white;
	
	-webkit-box-shadow: 0px 0px 30px 10px rgba(255,255,255,1);
	-moz-box-shadow: 0px 0px 30px 10px rgba(255,255,255,1);
	box-shadow: 0px 0px 30px 10px rgba(255,255,255,1);
	
	display: none;
}

#Content h1
{
	font-size: 3em;
	font-family: Brush Script MT, cursive; 
	text-align: center;
}

#Content  h2
{
	text-align: center;
}

#Content  p
{
	padding: 12pt;
}

#Content  p a
{
	color: white;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	width: 100%;
	display: inline-block;
	font-size: 1.5em;
}

#Content  p a:hover
{
	text-decoration: underline;
}