<!--
/* Last changed: 15/6/04 */
/* This is the main style, all these attributes are inherited thru to the text. Note that the default is left alignment */
body {
    font-family: Geneva, Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 15px;
    font-style: normal;
    font-weight: normal;
    color: black;
    text-decoration: none;
	text-align: left;
    background-color: #92AAB5;
    background-image: url(basebackgrad.jpg);
    background-repeat: repeat-x;
	}
/*This id is used only for the top menu */
#menubutton {
    color: #000066;
    font-weight: bold;
    text-align: center;
    border: thin none black; 
	}
#menubutton A:link {
	color: #000066;
	text-decoration: none;
	}
#menubutton A:hover {
	color: #000066;
	text-decoration: none;
	}
#menubutton A:visited {
	color: #000066;
	text-decoration: none;
	}
/* Notice that links of ordinary text are purple, that they don't change after use, and that they change to blue when the cursor is over them */
body a {
	color: purple; 
	text-decoration:underline; 
	}
body a:link {
	color: purple; 
	text-decoration:underline; 
	}
body a:visited {
	color: purple; 
	text-decoration:underline; 
	}
body a:hover {
	color: blue; 
	text-decoration:underline; 
	}
/* id used only for outer holding table, has a full border */
table#outertableborder {
    border: thin solid black;
	}
/* id which gives a top border only for the inner content table */
table#contenttableborder {
    border-top: thin solid black;
    border-right: thin none black;
    border-bottom: thin none black;
    border-left: thin none black;
	}
td {
	}
/* an id of td, makes sure there isn't any border around menu buttons */
#bannerborder {
    border-top: thin none black;
    border-right: thin none black;
    border-bottom: thin solid black;
    border-left: thin none black;
	}
/* a class that lays down that central dashed line for 2-column tables */
.splitdash {
    border-top: thin none #000000;
    border-right: thin dashed #000000;
    border-bottom: thin none #000000;
    border-left: thin none #000000;
	}
/* Main heading, note that when they're also used as links, they don't change colour at all, except they turn purple when the cursor is over them */
	h1 {
    font-size: 16px;
    line-height: 24px;
    font-style: normal;
    font-weight: bold;
    color: #000066;
    text-decoration: underline;
	}
h1 a:link {
	color: #000066; 
	text-decoration:underline; 
	}
h1 a:visited {
	color: #000066; 
	text-decoration:underline; 
	}
h1 a:hover {
	color: purple; 
	text-decoration:underline; 
	}
/* subheader, red except if you apply the special class, then green */
h2 {
    font-size: 14px;
    line-height: 16px;
    font-style: normal;
    font-weight: bold;
    color: #cc0000;
    text-decoration: none;
	}
.makemegreen {
	color: #009900;
	}
//-->

