@charset "utf-8";
/* CSS Document */

html {
	height:100%; 			/*Don't know if i need this*/
}
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	color: #000;
	margin:0;
	padding:0;
	text-align:center;		/*Required for centering of webpage*/
	min-width:900px;		/*Required for centering of webpage*/
	background-color: #336699;
}
.container {
	text-align:left;		/*Required for centering of webpage*/
	width:900px;			/*Required for centering of webpage*/
	margin:0 auto;			/*Required for centering of webpage*/
}
.header {
	padding:5px;
	background: #606060;
	color: #ffffff
}
.content {
	width:860px;
	min-height:250px;
	background: #FFF;
	padding:20px 20px 20px 20px;
}
* html #content {
	margin-top:0;
}			/*For IE 6 and below countermands margin-top */
*:first-child+html #content {
	padding-top:180px;
}	/*For IE 7 only*/
.footer {
	padding:20px;
	text-align:left;		/*Required for centering of webpage*/
	margin:0 auto;			/*Required for centering of webpage*/
	background:#606060;
	color: #ffffff
}

