/* BODY */

/* This sets the background colour and font for all parts of the page */

body 
{
    background:#FFFFFF;   
    font-family: verdana, arial, sans-serif;
}


/* CONTENT - PAGE LAYOUT */

/*This indents the main titlebar*/
div.body
{
	margin-left: 2em;
	margin-right: 2em;
	line-height: 130%;
	text-align: left;
	width:750px;
}

/*This indents everything on the page under the main titlebar*/
div.text
{
	margin-left: 1.5em;
	margin-right: 2em;
	line-height: 130%;
	text-align: left;
}


/* this controls the font of headings*/

/* note this is a great green colour: #339933*/
/* not bad blue: 330099.  003366 is ok steel blue   336666 good green-blue*/

span.entryheading
{ 
    color:#4C787E;
    font-weight:normal;
    font-size:120%;
    letter-spacing:0.25em;
 }



/* This sets the colour and style of links within blocks of text */

A 
{
    text-decoration: none;
}

A:link {color: #4C787E;} 
A:visited {color: #4C787E;} 
A:active {color: #000000;} 
A:hover {color: #000000;}  


