/*
This stylesheet sets out the basic layout of the page. If you are happy with the basic layout of the page, and only wish to make stylistic changes (changing colours, background images, etc.) or adding styling to particular page elements, then it is recommended that you leave this stylesheet as is, and affect any changes in the lookandfeel.css file, which is referenced AFTER this sheet, and will therefore override styles in this sheet.
this stylesheet expect the following divs to be present in the HTML, in the order specified:
body
	div#all
		div#header
		div#content
		div#mainnav
		div#footer
*/
body
{
	padding: 0px;
	margin: 0px;
	margin-bottom: 30px;
}
div#all {
 position: left;
text-align: left;
/*width: 740px; */
margin-left: 0px;
margin-right: 0px;
}
div#header
{
	height: 125px;
}
/* give padding to div's that directly contain content*/
div#content, div#mainnav, div#additional, div#footer
{
	padding: 1em;
}

/* position mainnav div below the header div and to the right of the page*/
 div#mainnav
 {
	position: absolute;
 	top: 138px;
 	right: 0px;
 	width: 180px;
 	padding: 0px;
 	margin: 0px; 
 }
 /*  hide the main nav h2 - it makes sense to have it in the mark-up, but we don't want to show it,  as the purpose of the nav bar is obvious visually.
 
To hide it, we set the position as absolute, and place it way off screen (this is recommended in preference to using display:none because "display:none" may hide it from screenreaders, which we don't want)
 */
div#mainnav h2
{
	position: absolute;
 	right: -3600px;
}
 
/* for the div's below header that aren't absolutely positioned, give them a left margin as least as wide as the width of the absolutely positioned mainnav column, so that they don't overlap witht the mainnav column */
div#content
{
 	margin-top: 3px;
 	margin-bottom: 3px;
	margin-left: 3px;
	margin-right: 183px;
	min-height: 400px;
}
div#footer
{
	clear:both;
	margin-left: 0px;
	margin-right: 0px;
	height: 80px;
}
/* give padding to div's that directly contain content*/
div#content, div#mainnav, div#additional, div#footer
{
	padding: 1em;
}

/* position mainnav div below the header div and to the right of the page*/
 div#mainnav
 {
	position: absolute;
 	top: 130px;
 	right: 0px;
 	width: 180px;
 	padding: 0px;
 	margin: 0px;
 }
 /*  hide the main nav h2 - it makes sense to have it in the mark-up, but we don't want to show it,  as the purpose of the nav bar is obvious visually.
 
To hide it, we set the position as absolute, and place it way off screen (this is recommended in preference to using display:none because "display:none" may hide it from screenreaders, which we don't want)
 */
div#mainnav h2
{
	position: absolute;
 	right: -3600px;
}
 
/* for the div's below header that aren't absolutely positioned, give them a left margin as least as wide as the width of the absolutely positioned mainnav column, so that they don't overlap witht the mainnav column */
div#content
{
 	margin-top: 3px;
 	margin-bottom: 3px;
	margin-left: 3px;
	margin-right: 183px;
}
div#footer
{
	clear:both;
	margin-left: 0px;
	margin-right: 0px;
}
/*  IE 6 only selector to force 'has-layout'  to fix the peekaboo bug   
(only IE 6 will recognise "* html" as a valid selector)
*/
* html div#all
{
	height: 1%;
	position: relative;
}
#site-slogan
{
	position: absolute;
	top: 110px;
	left: 10px;
}
}
