body
{
margin:5px;
background-color: #E6E6FA;
}
/* sets global margin and background colour*/
a:link 
{
color: #E6E6FA;
}
/* all links will now be in grey*/
a:hover
{
color:white; 
background-color:transparent; 
font-weight:bold; 
text-decoration:none;
text-decoration:none;
}
/* as the mouse hovers a link, the text will turn white and the underline will dissapear and be bold*/
#header
{
position: absolute;
top: 5px;
width: 886px;
height: 50px;
color: #E6E6FA;
background-color: #778899;
border: solid white 2px;
}
/* this division will cover the top part of the page all across*/
#navigation
{
position: absolute;
top: 50px;
margin-top: 10px;
width: 200px;
color: #E6E6FA;
background-color: #778899;
height: 450px;
border: solid white 2px;
font-family: arial, helvetica, sans-serif;
}
/* sets navigation table, vertical left. not full screen*/
#maincontent
{
	position: absolute;
	top: 51px;
	margin-top: 10px;
	margin-left: 10px;
	width:681px;
	height: 450px;
	left: 200px;
	color: #E6E6FA;
	background-color: #778899;
	border: solid white 2px;
	overflow:auto;
}
/* creates neat remaining space for content*/
img.first
{
border: solid #E6E6FA 2px;
float: right;
margin-right: 5px;
margin-bottom: 5px;
}
/* this image will go to the right of the division and the text will wrap around it*/
img.second
{
float:left;
border: solid #E6E6FA 2px;
margin-left: 5px;
}
/* this image will go to the right of the division and the text will wrap around it*/

