body {
	
/* specifys the priority for the type of font to display: font-family: veranda, arial, helvetica, serif; */ 
	font-size: 75%;
/* reduces the font size to 75%. Overcomes using #em to specify a smaller font and allows users to increase font */
	background: none; /* url(../images/css/bg1.gif) repeat;*/
/* adds a background image to the area of the page 'behind' the menu and content borders. image has been repeated along x-axis. */	
	padding: 1em;
/* Set the space in addition to the margin for the entire page */		
	margin: 0;
/* Set the margin for the entire page */	
}

#content {
	width: 57em;
/* Set the content area width. After defining the initial font-size of a page to 100%, a width of 36ems should result in a width of 576 pixels. */
	background: none; 
/* Set the content background: image url(images/images.jpg) no-repeat; */
    background-color: white;
/* Set the rest of the content background to colour white */	
	padding: 0em 0;
/* Add padding space to top and bottom of content area */	
	border: none; /*2px double #cccccc;*/
/* set the border around the content. A set of two, two pixel wide lines. Colour light grey */
	/*border-style: value; /*dotted, dashed, solid, double, groove, ridge, inset, outset*/	
	margin: auto;
}

html>body #content {
	width: 57em;
} 

a {
	text-decoration: none;
}

a:link {
	color: #FF0066;
/* Set the colour of links (menu=#336699)*/	
}

a:visited {
	color: #033669;
/* Set the colour of visited links (includes drop down list items) */
}

a:active {
	color: red;
}

a:hover {
	text-decoration: underline;
}

h1 {
	text-align: left;
	padding: 0 0 0.25em 0;
	margin: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #666666;

}