/*-------------------------------------------------------------------------------------------------------------
CSS FOR GENERIC SETTINGS TO BE APPLIED THROUGHOUT
-------------------------------------------------------------------------------------------------------------*/

/*AFFECTS TEMPLATE(S)
-------------------------------------------------------------------------------------------------------------*/
/*This CSS sets all elements to zero attributes, no not modify*/
html, body, ul, ol, li, p,
h1, h2, h3, h4, h5, h6,
form, fieldset, a, img, hr {
margin: 0px;
padding: 0px;
border: none;
}
/* This CSS sets generic body elements, which will be applied unless specific styles are used*/
body {
	font-size: 11px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	margin-top: 15px;
	text-align: center;
	background-image: url(/assets/images/generic/background_shadow.jpg);
	background-repeat: repeat-y;
	background-position: center;
}
/*CSS for the main table within each page that holds all content, nav etc except header which 
is defined in the header_area.css*/
#main_container {
	width: 800px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
}

/*AFFECTS INCLUDE: site_legal.inc
-------------------------------------------------------------------------------------------------------------*/
/*CSS for legal disclaimer at footer*/
#siteinfo_legal {
	margin-top: 20px;
	font-size: 9px;
	color: #666666;
	text-align: center;
}
#siteinfo_legal p {
	margin-bottom: 0px;
}
#siteinfo_legal a:link {
	color: #666666;
	text-decoration: none;
}
#siteinfo_legal a:visited {
	color: #666666;
	text-decoration: none;
}
#siteinfo_legal a:hover {
	color: #666666;
	text-decoration: underline;
}
#siteinfo_legal a:active {
	color: #666666;
	text-decoration: none;
}