/* CSS Document */
/* PAGE LAYOUT */
body{
	text-align:center;
	background-color:#ffffff;
	margin: 0px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:14px;
	color: #ffffff;
}

html{
	min-height: 100%; margin-bottom: 1px; 
	/* this is used to stop the page shift in firefox - when the scrollbar comes in
	firefox recalculates what the actual screen size is and messes up the centering of the page. */
}

p{
	margin:0px;
}

#container {
	width:800px;
	height:100%;
	margin: 0px auto;
	text-align:left;
	background-image:url(../images/bg.gif);
	background-attachment:scroll;
	background-repeat:repeat-y;

}


#header{
	position:relative;
	width:800px;
	height: 100px;
	background-color:#ffffff;
}

#contentLeft{
	position:relative;
	float:left;
	width:400px;
}



#contentRight{
	position:relative;
	float:left;
	width:360px;
	padding:20px;
}

#navPanel{
	height:140px;
	font-weight:bold;
}


.clearboth { clear: both; }

 


/* FONT STYLES ETC... */
a:link, a:visited{
	color: #ff0000;
	text-decoration: none;	
	
}

a:hover{
background-color: #FF0000;
color: #ffffff;
}

/* nav section links */
#navPanel a:link, #navPanel a:visited{
	color: #ff0000;
	text-decoration: none;	
	font-size: 11px;
}
#navPanel a:hover{
	background-color: #FF0000;
	color: #ffffff;
	font-size: 11px;
}


