/*****************************************************************************************************

This file should contain all div tags structuring the layout of the website

reasoning : 

so this style sheet could be used to re-structure the website and when removed
should produce the website as a easily readable list which can be used for small
screens (such as phones)

*****************************************************************************************************/

/*************************************** Structure Settings *****************************************/

html
{
	margin:0px;
	padding:0px;
}
body
{
	margin:0;
	padding:0;
	line-height: 1.2em;
	text-align:left;
	background: #3b627f;
}

#layout
{
	width:1004px;
	margin:0 auto;
	background:#FFFFFF;
}
#header
{
	position:relative;
	height:94px; /*Height of top section*/
	overflow:hidden;
}
#contentwrapper
{
	float: left;
	width: 1004px;
}
#contentcolumn
{
	position:relative;
	width:784px;
	margin: 0 220px 0 0; /*Margins for content column. Should be "0 right-column-width 0 left-column-width*/
}
#rightcolumn
{
	float: left;
	width: 220px; /*Width of right column in pixels*/
	margin-left: -220px; /*Set margin to -(RightColumnWidth)*/
}
#footer
{
	position:relative;
	width: 1004px;
	height:100px;; /*Height of bottom section*/
	clear: left;
}

.padding { margin: 15px 90px 15px 15px; clear:both; /*Margins for inner DIV inside each column (to provide padding)*/ }
