

/* clear default margins on all browsers --------------------------------------------------*/
* {
	padding: 0px;
	margin: 0px;
}

/* positional divs ------------------------------------------------------------------------*/
#wrapper { /* main centred wrapper */
width:780px;
margin:0 auto 40px auto;
text-align: left;
background-color:#e1decb;
}

/*	floats -----------------------------------------------------------------------------*/
.floatleft {
	float:left;
}
.floatright {
	float:right;
}
.clearboth {
	clear:both;
}
