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

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:998px;
	margin:auto;
}
#header
{
	width:998px;
	background: #98010c;
	height:210px; /*Height of top section*/
	overflow:hidden;
}
#contentwrapper
{
	float: left;
	width: 998px;;
	height:640px;
}
#contentcolumn
{
	padding: 0;
	margin: 0; /*Margins for content column. Should be "0 right-column-width 0 left-column-width*/
}
#leftcolumn
{
	float: left;
	width: 25%; /*Width of left column in percentage*/
	margin-left: -100%;
	background: #C8FC98;
}
#rightcolumn
{
	float: left;
	width: 200px; /*Width of right column in pixels*/
	margin-left: -200px; /*Set margin to -(RightColumnWidth)*/
	background: #FDE95E;
}
#footer
{
	position:relative;
	width: 998px;
	height:50px; /*Height of bottom section*/
	clear: left;
}

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

