* {
	padding:0;
	margin:0;
}

h1, h2, h3, h4, h5, h6{
	font-size:18px;
	color:#FF0000;
	margin-bottom:10px;
}


html body{
	font-family: Arial, Helvetica, sans-serif;
	font-size:11px; 
	color:#666;
}


#flash_container{
	width:100%;
	margin:0 auto;
}

#flash_container.max{
	max-width:1600px;
	min-width:930px;
}

* html #flash_container.max{
	width:930px;
}

#flash_object{
	max-width:1600px;
	margin:0 auto;
}

#flash_object object, #flash_object embed{
	margin:0; padding:0;
}


/* 
vertical centering technique from: 
http://perishablepress.com/press/2007/09/25/absolute-horizontal-and-vertical-centering-via-css/ 
*/

html, body {
	height: 100%;         /* required */
}
body {
	text-align: center;   /* horizontal centering hack for IE */
	padding: 0;           /* required to "hide" distance div */
	margin: 0;            /* required to "hide" distance div */
}
div#distance { 
	margin-bottom: -305px;/* half of content height */
	width: 1px;           /* required to "hide" distance div */
	height: 50%;          /* required */
	float: left;          /* required */

}
div#content {
	position: relative;   /* positions content on top of distance */
	text-align: left;     /* horizontal centering hack for IE */
	height: 610px;        /* required - desired height */
	width: 100%;          /* required - desired width */
	margin: 0 auto;       /* required */
	clear: left;          /* required */
}