/* SEVEN CSS 
 ***********************************************/

/* Globals */
* { margin: 0; padding: 0; }

html {
	width: 100%;
	height: 100%; }
body {
	height: 100%;
	text-align: center;
	color: #111;
	font-family: Helvetica, Arial, sans-serif;
	background-color: #002c53; }
h2 { margin-top: 10px; }
p { 
	font-size: 16px;
	line-height: 22px; }
ol { list-style: none; }
ol li { margin-top: 10px; }

/* Layout */
#container { 
	width: 100%;
	min-width: 960px;
    width: expression(document.body.clientWidth < 970 ? "960px": "100%" );

	height: 100%;
	min-height: 600px;
    height: expression(document.body.clientHeight < 610 ? "600px": "100%" );
    
	text-align: left;
	overflow: hidden; }

#noflash {
	margin-top:100px;
	color: #FFF;
	height: 600px;
	overflow: hidden;
	text-align: center; 
}

#noflash p.alert {
	padding: 20px;
}

#content { 
	padding: 20px;
	display:none;
}