* { 
	margin: 0px; 
	padding: 0px; 
	border: 0px; 
	clear: none; 
}
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	background: #FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	text-align: center; /* this centers the  in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333333;
}
h2 {
	font-size:12px;
	color:#830101;
	font-style:italic;
}
p, h2 {
	margin-bottom: 10px ;
	margin-top: 10px ;
}
a {
	text-decoration:underline;
	color: #830101;
	}
div#extra {
	float: right;
	border: 1px solid #ababab;
	padding: 5px 15px 15px 15px;
}
#container {
	position: relative;
	padding: 0;
	left: 0;
	top: 0;
	width: 600px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	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. */
}
