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

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;
}

#layout
{	
	width:980px;
	float:left;
}
#header
{
	position:relative;
	width:980px;
	height:180px; /*Height of top section*/
	overflow:hidden;
}
#contentwrapper
{
	float: left;
	width: 100%;
}
#contentcolumn
{
	margin: 0 0 0 440px; /*Margins for content column. Should be "0 right-column-width 0 left-column-width*/
}
#leftcolumn
{
	position:relative;
	float: left;
	width: 440px; /*Width of left column in percentage*/
	margin-left: -100%;
}
#footer
{
	position:relative;
	font-size:x-small;
	width: 980px;
	height:131px; /*Height of bottom section*/
	clear: left;
}

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