﻿/* CSS layout */

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, 
would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 
0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	  margin:0px; padding:0px; border:0px; outline:0px; font-size: 100%;}

html{height:100%;} /* needed for footer positioning*/

body 
{
	color:#000000; font-size:9pt; font-family:Verdana, arial, Arial, Helvetica, sans-serif;
	background: #4C66D4 url('../images/bckgr_page.jpg') repeat-x fixed center top;
	height:100%; /* needed for footer positioning*/
	/* -the next line stretches a background pic to fit the full screen, it adjusts to the viewer's screen */
	/* background-size:100%; */
}



/* This rule resets a core set of elements so that they will appear consistent across browsers. */
* {margin:0; padding:0;}


/* - - - - - - - - - - */
/*     FORMATTING      */
/* - - - - - - - - - - */

h1 {color:#FFFFFF; font-size:18px; font-weight:bold; padding-bottom:20px; padding-top:30px; font-family:Verdana, arial, Arial, Helvetica, sans-serif;}
h2 {color:#000000; font-size:25px; font-weight:bold; padding-bottom:20px; text-align:center; font-family:Verdana, Arial, Helvetica, sans-serif;}
h3 {color:#009BD7; font-size:24px; font-weight:bold; padding-bottom:20px; text-align:center; font-family:Arial, Helvetica, sans-serif;}
h4 {color:#0000FF; font-size:18px; font-weight:bold; padding-bottom:20px; font-family:Verdana, Geneva, Tahoma, sans-serif; line-height:140%;}
h5 {color:#009BD7; font-size:12px; font-weight:bold; font-family:Verdana, arial, Arial, Helvetica, sans-serif;}
h6 {color:#000000; font-size:13px; font-weight:bold; text-align:center; font-family:Verdana, Arial, Helvetica, sans-serif;}


p {font-size:9pt; text-align:justify; font-family:Verdana, arial, Arial, Helvetica, sans-serif; line-height:140%}
p.center {text-align:center;}
p.indent {text-indent:20px;}
p.italic {font-style:italic;}
p.justify {text-align:justify;}
p.left {text-align:left;}
p.right {text-align:right;}
p.row {display:inline;}
p.uppercase {text-transform:uppercase;}

a:link {color:#009BD7; text-decoration:underline;}     /*   same colour as H5   */
a:visited {color:#009BD7; text-decoration:underline;}  /*   same colour as H5   */
a:active {color:#0000FF; text-decoration:underline;}   /*   same colour as H4   */
a:hover {color:#0000FF; text-decoration:underline;}    /*   same colour as H4   */

ul {margin-bottom:0;}
ol {text-align:justify; margin-top:4px; margin-bottom:0px;}
li {margin-top:10px; margin-bottom:0px; text-align:left; line-height:1em; font-size:8pt;}
li.indent {margin-left:20px;}

.form {color:#000000;}

.greynote {color:#808080; font-size:12px; font-family:Calibri, Arial, Helvetica, sans-serif;}
.greynote a:link {color:#808080;}
.greynote a:visited {color:#808080;}
.greynote a:active {color:#000000;}
.greynote a:hover {color:#000000;}

.pic {border:0px;}
.quote {color:#0995C4;}
.small {font-size:12px; font-family:Calibri, Arial, Helvetica, sans-serif;}



/* - - - - - - - - - - */
/*     PAGE LAYOUT     */
/* - - - - - - - - - - */

/* 1. The 'clear' statement disallows anything on either side outside of the container, but does allow other elements inside it. */
/* 2. The 'margin:0 auto' statement is what centers the container. */
/* 3. The 'overflow:auto' statement ensures that the container stretches to the same height as the longest element inside it. */
/* 4. If there is no outer wrapper enclosing the main content, then widths must have fixed px values. */

#header
{ 
	clear:both;
	margin:0 auto;
	overflow:auto;
	width:100%;
	position:relative;
	border:0px;
	padding-top:8px;
	padding-bottom:8px;
	text-align:center;
}

#masthead
{
	clear:both;
	margin:0 auto;
	overflow:auto;
	width:100%;
	background:url('../images/header.jpg') top center no-repeat;
	vertical-align:middle;
	text-align:center;
}


/* 3 column layout */

#column3_left {display:none}

#column3_right  {display:none}

#column3_center {width:auto; vertical-align:top;}

#footer
{
	clear:both;
	margin:0 auto;
	overflow:auto;
	position:relative;
	width:100%;
	padding-bottom:7px;
	padding-top:7px;
	text-align:center;
	color:#E3F1FC;
}

#spacer
{
	clear:both;
	margin:0 auto;
	overflow:auto;
	width:996px;
	height:10px;
	position:relative;
}

.screen {display:none}



