/* CSS Document */

body {     /*sets body colour & parameters */

background-color: #ff82c0;
background-repeat: repeat;
margin-top: 0px; 
margin-left: 0px;
margin-right: 0px;
margin-bottom: 0px;
text-align: left;
	}
	
div.header
{
width: 995px;
height: auto;
text-align: left;
border-top: 0px;
border-bottom:0px;
border-left:0px;
border-right:0px;
margin-top: 0px; 
margin-left: 0px;
margin-right: 0px;
margin-bottom: 0px;
}

#main /* This is the holding frame for the CSS columns*/
{
width: 950px;
height: auto;
overflow: auto; /*added 16/10/08*/
margin-top: 5px; 
margin-left: 10px;
margin-right: 10px;
margin-bottom: 5px;
text-align: left;
}

#column1, #column2, #column3 /*Master column setup - see below*/
{
float:left;
}

#column1 /*Menu*/
{
width: 130px;
height:auto;
margin-right:15px;
}

#column2 /*main content */
{
width:595px;
height:auto;
}

#column3 /*extra side content i.e. pictures */
{ 
width:200px;
height: auto;
}

#footer
{
	/*float: left;*/
	position:absolute; /*added 16/10/08*/
	bottom: auto; /*added 16/10/08*/
	text-align: left;
	background-color: #FFFFFF;
	width: 100%;
	height: 17px;
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	}


div.spacer1 /* This is a simple spacer of 3px which produces a invisible gap*/
{
width: 100%;
height: 3px;
}

div.spacer2 /* This is a simple spacer of 8px which produces a invisible gap*/
{
width: 100%;
height:8px;
}

div.spacer3 /* This is a simple spacer of 12px which produces a invisible gap*/
{
width: 100%;
height:12px;
}

