 /*BASILS CSS 20070104 - COPY THIS TO ALL THREE WEBSITES AND KEEP IN SYNC!
This CSS file contains the CSS code for the left NAV (leftnav) and the mainbody. Also new Bold definition. Also increased top padding in h2*/
/*-----------------DEFAULT CSS SETTINGS - the '*' makes these apply to everything in the CSS----*/
*{
font-family: Verdana, Arial, Helvetica, sans-serif;/* This changes the font everywhere in the body*/
font-size: 11px;
}
/*-----------This CSS CODE does not have a DIV selector or class defn so it will apply everywhere---------*/

a:link 
{
    font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	text-decoration: underline;
}
a:hover 
{
    font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	text-decoration: none;
	background-color: #FFFF99;
}
a:visited 
{
    font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	text-decoration: underline;
}
p 
{
    font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 15px;
	margin: 0px;
}
li 
{
	list-style-position: inside;
	padding-top: 2px;
	padding-right: 3px;
	padding-bottom: 5px;
	padding-left: 20px;
}
ul 
{
	padding: 3px;
	margin: 0px;
}
img
{
	padding-left: 10px;
}
/* Banner is the text at the top of index.html page above the main text*/
.Banner-White
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #0065CE;
}
.Banner-text
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: bold;
	line-height: 20px;
	padding: 10px;
/* SideBoxText is the text in the RH sidebox - it needs less padding*/
}
.SideBoxText {
	padding: 2px;
}
/* Bold is to bold text in the body - do not use inline styles*/
.Bold {
	font-style: normal;
	font-weight: bold;
}
/* ---------------------HEADER DEFINITIONS---------------------- */
/* h1 is the header at the top of each page just before the main text*/
h1 
{
    font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size: 12px;
	color: #2A5389;
	text-decoration: underline;
	margin-bottom: 5px;
	margin-top: 12px;
	padding-left: 8px;
}
/* h2 is in the main text before individual paragraphs*/
h2
{
    font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration:underline;
	font-style:italic;
	color: #333333;
	padding-top: 10px;
	padding-left: 8px;
	margin: 0px;
	padding-bottom: 3px;
}
/* h3 - USED WHERE? Set to 24px to see where I have used it in other websites*/
h3
{
    font-family:Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #2A5389;
	vertical-align: middle;
}
/* h4 is the sub title just below the headline GIF*/
h4 
{
    font-family:Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
	vertical-align: middle;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
}
/* h5 is the copywrite notice at the botttom of the screen*/
h5 
{
    font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #2A5389;
	padding: 0px;
	margin: 0px;
	}
/* --------THE CODE FOR THE LEFT HAND VERTICAL NAV - Just used for font formatting not layout-----------------*/
#leftnav a:link
{
	text-decoration: none;
	color: #000000;
}
#leftnav a:visited
{
	color: #2A5389;
	text-decoration: none;
}
#leftnav a:hover
{
	color: #000099;/* The color the text changes to when hovering*/
	text-decoration: underline;
}
/*----------END OF CODE FOR LEFT NAV--------------------------------*/
