/* Define all main values for the web site */


body {
	
 	background: #555555;
 	
    font-family: "Lucida Grande" , "Lucida Sans Unicode", Verdana, sans-serif;
	font-size: 12px;
	margin: 0;
	padding: 0;
	line-height: 150%;
}

/* 
	Using normal flow, which dictates that block-level elements should
    appear on top of each other in the containing element (browser window)
	As long as the <div> elements appear in the correct order, we don't need
	control the position of these elements
*/
	
#container {
	width: 800px;
	background: #fff;
	margin: 10px auto;
	padding: 0;
}

#content
{
	text-align: center;
	margin: 5px auto;
	width: 680px;
	height: 600px;
}

#content .sponsorsTitle
{
	color: #9f9f9f;
	font-weight: normal;
	font-size: 0.7em;
}

/* Header box with centered logo*/
#header
{	
	text-align: center;
	margin-top: 5px;
	padding: 5px;	
}


#header h1
{
	color: #9f9f9f;
	font-weight: normal;
	font-size: 1.5em;
}

/* Highlight the name with a darker color */
#header .title
{
	color: #000000;
}




p.separator {	
	border-bottom: 1px dotted #989898;
	margin: 5px auto;
}


p.separator2
{	
	border-bottom: 1px dotted #989898;
	margin: 5px auto;
}


/* Under construction text */
#underConstruction
{	
	font-family: Georgia, "Times New Roman", Times, serif;
	text-decoration: blink;
	text-align: center;
	color: #F00;
	font-weight: normal;
	font-size: 1.5em;
}


#footer
{
	color: #5a5a5a;
	margin-top: 10px;
}

#footer p
{
	font-family: Arial, Helvetica, Geneva, sans-serif;
	text-align: center;
	font-size: 1.0em;
}


