﻿/* 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:20px; font-weight:500; font-family: Verdana, arial, Arial, Helvetica, sans-serif;}
h2 {color:#000000; font-size:25px; font-weight:bold; margin-top:70px; margin-bottom:20px;  text-align:right; padding-right:70px; font-family:Verdana, Arial, Helvetica, sans-serif;}
h3 {color:#009BD7; font-size:24px; font-weight:bold; margin-top:80px; margin-bottom:0px;  text-align:center; padding-left:40px; font-family:Arial, Helvetica, sans-serif;}
h4 {color:#0000FF; font-size:15px; font-weight:bold; margin-bottom:10px; font-family:Verdana, Geneva, Tahoma, sans-serif; line-height:140%;}
h5 {color:#009BD7; font-size:12px; font-weight:bold; margin-top:5px; font-family:Verdana, arial, Arial, Helvetica, sans-serif;}
h6 {color:#000000; font-size:12px; font-weight:bold; margin-top:20px; 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:11px; 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:15px;
	padding-bottom:15px;
	text-align:center;
}

#wrapper  /* encloses everything except the header and footer */
{
	clear:both;
	margin:0 auto;
	overflow:auto;
	width:1000px;
	min-height:101%; /* real browsers */
	position:relative;
	border: 2px #59CFF3 solid;
	background-color:#FFFFFF;

/* -the next 4 lines are needed to create rounded corners */
	/* -moz-border-radius:20px;
    -webkit-border-radius:20px;
    -khtml-border-radius:20px;
    border-radius:20px; */

/* -the next 3 lines are needed to create shadows */
	/* box-shadow: 4px 4px 10px #CCC3B4;
	-moz-box-shadow: 4px 4px 10px #CCC3B4;
	-webkit-box-shadow: 4px 4px 10px #CCC3B4; */
}

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


#base
{
	clear:both;
	margin:0 auto;
	overflow:auto;
	position:relative; /* needed for footer positioning*/
	height:auto !important; /* real browsers */
	height:50%; /* IE6: treaded as min-height*/
	min-height:50%; /* real browsers */
	width:1000px;
	z-index:2000;
	background:#FFFFFF url('../images/bckgr_content.jpg') repeat-y center top;
}

/* 3 column layout */

#column3_left 
{
	float:left;
	width:180px;
	padding-top:25px;
	padding-bottom:15px;
	padding-left:20px;
	padding-right:12px;
	vertical-align:top;
	color:#009BD7;
}

#column3_right 
{
	float:right;
	width:190px;
	padding-top:25px;
	padding-bottom:15px;
	padding-left:20px;
	padding-right:12px;
	vertical-align:top;
	color:#009BD7;
}

#column3_center 
{
	width:auto;
	vertical-align:top;
	margin-top:15px;
	margin-bottom:15px;
	margin-left:242px;
	margin-right:252px;

}

#form 
{
	width:300px;
	margin:0 auto;
	position:relative;
}


#footer
{
	clear:both;
	margin:0 auto;
	overflow:auto;
	position:relative;
	width:998px;
	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;
}

.print {display:none}



