@charset "utf-8";

/* CSS Document */
@import url(_default.css);
@import url(_font.css);
@import url(_colour.css);

html {height:100%;}
body {
	width:966px;  				/* set width of page */
	margin:0px auto;
	position:relative;
	
	display:block;
	height: 100%;
}

/* Layout 1 - absolute positioned 3 column */
div#primary { 
	position:relative;
	display:inline;
	float:left;
	left:200px;
	width:580px;
	background-color:#00FFCC;
	min-height:590px;
	height:auto !important;
	height:590px;
}
div#secondary {
	position:relative;
	display:inline;
	float:left;
	top:0px;
	left:-580px;
	width:200px;
	background-color:#ff0000;
	min-height:590px;
	height:auto !important;
	height:590px;
}
div#tertiary {
	position:relative;
	display:inline;
	float:right;
	width:200px;
	background-color:#CCFF99;
	min-height:590px;
	height:auto !important;
	height:590px;
}
div#footer {
	position:relative;
	display:block;
	clear:both;
	width:100%;
	height:50px;
	background-color:#00CC66;

}
div#cornerBox {
	position:relative;
	display:block;
	width:200px; height:200px;
	margin:20px;
	background-color:#009999;
}
