/* CSS Document */
* {margin:0; padding:0;}
body {
	font-family:Verdana, Arial, Helvetica, sans-serif; 
	font-size:62.5%;
	background-color: #FFFFFF;
	behavior:url(csshover.htc);
}
input, select, th, td {
	font-size: 1.2em;
}
.topcentredLayer {
	height: 80px;
	width: 750px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	background-color: #FFFFFF;
	top: 20px;
	z-index: 4;
}
.centredLayer {
	width: 750px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	background-color: #E9F5E7;
	top: 20px;
	z-index: 1;
	text-align: left;
	padding-top: 10px;
	min-height: 600px;
}
h1 {
	font-size: 3em;
	color: #666699;
}
h3 {
	font-family:'Trebuchet MS', Arial, Helvetica, sans-serif;
	font-size: 2em;
	margin-top: 10px;
	color: #666699;
	margin-left: 5px;
}
h4 {
	font-size: 1.5em;
	margin-top: -10px;
	color: #999999;
}
h5 {
	font-size: 1.3em;
}
.clickonimage {
	margin-top: 35px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
}
.largemargin {
	margin: 30px;
}
.largepadding {
	padding-left: 20px;
	padding-right: 20px;
}
.bannerR {
	font-size: 16px;
	color: #2F6F79;
	text-align: right;
	font-weight: bold;
}
.maintext {
	font-size: 1.2em;
	line-height: 1.5;
	margin: 12px 12px 12px 20px;
	color: #3E467D;
}
#leftcol {
	width:380px;
	float:left;
}
#rightcol {
    width:370px;
	float:left;
}
.smalltext {
	font-size: 1.1em;
	line-height: 1.5em;
	margin-bottom: 8px;
	margin-left: 20px;
	margin-right: 40px
}
.smallertext {
	font-size: 0.9em;
	font-weight:normal;
}
.clearfloats {
	clear:both;
}
.leftside {
    float:left;
}
.rightside {
	float:right;
}
div#nav {
	font-family:Arial, Helvetica, sans-serif;
	clear:both;
	margin-left:auto;
	margin-right:auto;
	width:660px;
	float:left;
	font-size:14px;	/* SET FONT-SIZE HERE */
	font-weight:bold;
	z-index: 2;
	color:#000099;
	background-color:#FFF; /* colors the div */
	margin-top:0px; /* TEMPORARY - pushes the div away from the top of the browser for clarity in this example*/
	}
div#nav ul {
	margin:0 0 0 10px;/* indents ul from edge of container - NOTE: diff value for IE in hacks below */
	}
div#nav li {
	border-top:1px solid #619AB6;
	border-bottom:1px solid #619AB6;
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	background-color:#FFF; /*sets the background of the menu items */
	padding:0 6px;
	border-right:1px solid #619AB6; /* creates dividing lines between the li elements */
	}
div#nav li:first-child {
	border-left:1px solid #619AB6; /*the first vertial line on the menu */
	}

div#nav li:hover { 
	background-color:#FFF; /*sets the background of the menu items */
	}
div#nav a {
	display:block;
	padding:0 6px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#006699;	/* sets the type color */
	}
div#nav a:hover {
	color:#F46F7C;
	}
/* the menu ends here */
/* the drop-down starts here */
div#nav ul li ul {
	margin:0; 
	z-index:10; /* puts drop-down on top of div - Safari needs this as menu is 1px higher */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:6em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	border-right:0; /* stops SCBs drops having two right borders - they inherit the border, IE doesn't */
	left:-1px; /*aligns the drop exactly under the menu */
	border-top: 0px none #006699;
	}
div#nav ul li ul li {
	padding:0 3px;
	width:100%; /* makes the list items fill the list container (ul) */
	border-left:1px solid #006699; /*  three sides of each drop-down item */
	border-right:1px solid #006699;
	border-top: 0px none #006699;
	background-color:#EDEFFF;
	color:#003399;
	font-size:13px;	/* SET FONT-SIZE HERE */
	font-weight:normal;
	text-align:left;
	line-height:15px;
	
	}
div#nav ul li ul li a {padding:1px 1px;}
div#nav ul li ul li:first-child {
	border-top:1px solid #006699; /*the top edge of the dropdown */
	border-left:1px solid #006699; /*the first vertial line on the menu */
	}
/* make the drop-down display as the menu is rolled over */
div#nav ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#nav ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#nav ul {
	float:left; /* makes the ul wrap the li's */
	border-left:1px solid #619AB6; /* adds the rightmost menu vertical line to the ul */
	margin-left:15px; /* IE doubles the given value above - why? */
	}
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  div#nav ul li ul {
	border-top:1px solid #069;
	border-left:0px; /* stops the drop inheriting the ul border */

/* the drop-down ends here */
/* END OF LIST-BASED MENU */

