@charset "utf-8";
/* CSS Document */
/****************************** Main Css ******************************/
*/
html, body {border: 0; margin: 0; padding: 0; height: auto;}
body {	
	font: 11px arial, helvetica, sans-serif;
	color: #000000; /*Font color*/
	background:#cccccc;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
	p {}
	p, ul, ol { margin: 0; padding: 0; }
	img, img a { border: none; }
	form { margin: 0; padding: 0; }
	
/************************* Global linking *************************/	

/************************* Wrapper Css *************************/	
#Wrapper {
	width: 960px;
	height: 640px;
	background: #221e1f;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

/****************************** Header Css ******************************/
#header{
	width: 960px;
	height: 155px;
	text-align:left;
	background-color:#221e1f;
	float:left;
}

/****************************** Content area Css ******************************/
#main-content {
	width: 661px; /*661*/
/*	height:272px;*/
	float:left;
	
	/* IE6
	< margin-left:80px;
	*/
	text-align:left;
	background-color:#221e1f;
}

#main-content p{ font-size:14px;padding:0 28px; margin-top:5px; color:#FFFFFF;}

/****************************** Right area Css ******************************/
#right-content {
	width: 386px;
	float:left;
	background-color:#221e1f;
	text-align:left;
}

/****************************** Footer Css ******************************/
#footer{
	width: 960px;
	height:20px;
	background-color: #ffffff;
	font-size:9px;
	font-family:arial, verdana, tahoma;
	vertical-align: text-bottom;
}

a.footerlink:link, a.footerlink:visited
{
	color:#EE3325;
}

a.footerlink:hover
{
	text-decoration:none;
}
	
/****************************** Clear float Css ******************************/	
#clear{
	clear:both;
}

/****************************** Blank DIV ******************************/	
#blank{
	width: 960px;
	height:50px;
	float: left;
}