/***************************************************************************************/
/*  CSS layout 
/***************************************************************************************/

html, body, p, h1, h2, h3, h4, h5, h6, ul, li, ol, form, fieldset, table, tr, td, img, hr {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: top; 
}
	
body {
	background-color: White;
	background-image: url(../images/backgrnd.jpg);
	color: #000; 
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	font-size: 13px;
	line-height: 16px;
}

/***************************************************************************************/
/*  MAIN DIVS
/***************************************************************************************/

#header {
	background-image: url(../images/topban.gif);
	height: 60px;
	margin: 24px auto 0 auto;
	width: 600px;
}

#header h1 {
	font-size: 18px;
	font-weight: bold;
	padding-top: 18px;
	text-align: center;	
}

#nav {
	height: 40px;
	margin: 12px auto 0 auto;
	text-align: center;
}


/***************************************************************************************/
/*  BOTTOM BANNER
/***************************************************************************************/

#bottom {
	clear: right;
	width: 775px;
	height: 60px;
	background-color: #1A80B0;
	background-image: url(../images/panelB.jpg);
	background-position: top;
	background-repeat: no-repeat;
	color: White;
	text-align: center;
}

#bottom p {
/*	color: White;
	background-color: transparent; */
	font-size: 8px;
	font-weight: bold;
	padding-top: 35px;
	text-transform: uppercase;	
}

#bottom a, #bottom a:visited {
	background-color: transparent;
	color: White;
	text-decoration: none;
}

#bottom a:hover {
	color: Fuchsia;
}

/***************************************************************************************/
/*  MAIN CONTENT
/***************************************************************************************/

#content {
	padding: 0 20px 0 20px;
	text-align: justify;
}

#content p {
	text-align: justify;
	padding: 6px 0 6px 30px;
}

#content h1 {
	color: #166767;
	font-size: 22px;
	font-weight: normal;
	text-align: left;
	margin: 36px 0 18px 0;
}

#content h2 {
	color: #166767;
	font-size: 15px;
	font-weight: bold;
	text-align: left;
	margin: 36px 0 12px 0;
}

#content h3 {
	color: #166767;
	font-size: 11px;
	font-weight: bold;
	text-align: left;
	margin: 0;
}


/***************************************************************************************/
/*  HYPERLINKS	
/***************************************************************************************/

#content a, #content a:visited {
	background-color: White;
	color: #339999;
	text-decoration: none;
}

#content a:hover, #content a:active, #content a:focus { color: #993364; }

/***************************************************************************************/
/*  IMAGES
/***************************************************************************************/

#content .photoright {
	float: right;
	margin-left: 15px;
	margin-bottom: 12px;
}

#content .photoleft {
	float: left;
	margin-right: 15px;
	margin-bottom: 12px;
}

#content .noborder {
	border: 0px none; 
}
	
/***************************************************************************************/
/*  FONTS
/***************************************************************************************/

#content .f09 { font-size: 9px;  }
#content .f10 { font-size: 10px; }
#content .f11 { font-size: 11px; }
#content .f12 { font-size: 12px; }
#content .f13 { font-size: 13px; }
#content .f14 { font-size: 14px; }
#content .f15 { font-size: 15px; }
#content .f16 { font-size: 16px; }
#content .f18 { font-size: 18px; }

#content .lh  { line-height: 1em; }
#content .lh2 { line-height: 1.2em; }

/***************************************************************************************/
/*  FORMATTING
/***************************************************************************************/

#content .bd { font-weight: bold;  }
#content .it { font-style: italic; }

/***************************************************************************************/
/*  COLOURS
/***************************************************************************************/

#content .black  { color: #000; }
#content .blue   { color: #003F60; }
#content .red    { color: #F00; }
#content .white  { color: #FFF; }
#content .dblue  { color: #003F60; }

/***************************************************************************************/
/*  MARGINS
/***************************************************************************************/

#content .mt00  { margin-top: 0;     }
#content .mt03  { margin-top: 3px;   }
#content .mt06  { margin-top: 6px;   }
#content .mt09  { margin-top: 9px;   }
#content .mt12  { margin-top: 12px;  }
#content .mt18  { margin-top: 18px;  }
#content .mt24  { margin-top: 24px;  }
#content .mt30  { margin-top: 30px;  }
#content .mt36  { margin-top: 36px;  }
#content .mt50  { margin-top: 50px;  }
#content .mt100 { margin-top: 100px; }
#content .mt200 { margin-top: 200px; }

#content .mb00  { margin-bottom: 0;    }
#content .mb06  { margin-bottom: 6px;  }
#content .mb09  { margin-bottom: 9px;  }
#content .mb12  { margin-bottom: 12px; }
#content .mb18  { margin-bottom: 18px; }
#content .mb24  { margin-bottom: 24px; }
#content .mb36  { margin-bottom: 36px; }

#content .ml10  { margin-left: 10px; }
#content .ml15  { margin-left: 15px; }
#content .ml25  { margin-left: 25px; }
#content .ml35  { margin-left: 35px; }
#content .ml50  { margin-left: 50px; }

#content .w15 { width: 15px;}

/***************************************************************************************/
/*  ALIGNMENT
/***************************************************************************************/

#content .centre {
	text-align: center;
	margin-left: auto;
	margin-right: auto; 
}

#content .ac { text-align: center; }
#content .al { text-align: left;   }
#content .ar { text-align: right;  }
#content .aj { text-align: justify;}

#content .vm { vertical-align: middle; }
#content .vt { vertical-align: top;    }
#content .vb { vertical-align: bottom; } 

/***************************************************************************************/
/*  LISTS
/***************************************************************************************/

#content ol { margin: 12px 0 12px 75px; }

#content ul { 
	list-style: url(../images/bullet.gif);
	margin: 18px 0 0px 75px; 
}
	
#content li { margin: 12px 0 12px 0; }

/***************************************************************************************/
/*  ENQUIRY FORM
/***************************************************************************************/

#content p.form {
	margin: 4px 0 0 0;
	padding: 0;
}

#content form {
	margin: 12px 0 12px 0; 
	padding: 10px 0 10px 20px;
	border: 3px double Silver;
}

#content form p {
   	clear: both;
		text-align: left;
}

#content form p label {
   display: inline;
   float: left;
   width: 150px;
   margin: 0;
   text-align: left;
   padding: 0 10px 0 0;
}

#content form p input, form p textarea, form p select {
   margin: 0;
   padding: 0;
}

/***************************************************************************************/
/*  MISCELLANEOUS
/***************************************************************************************/

.clearit {
	clear: both;
	height: 1px;
	overflow: hidden;				/* IE hack */
}

.clearleft {
	clear: left;
	height: 1px;
	overflow: hidden;
}

.clearright {
	clear: right;
	height: 1px;
	overflow: hidden;
}

.floatright {
	float: right;
}

hr {
	background-color: White;
	color: #039;
	height: 1px;
	margin-bottom: 0px;
	margin-top: 12px;
	width: 250px;
	text-align: center;
}

#content .seo {
	border: none;
	margin: 0px;
	padding: 0px;
	text-align: center;
}
/***************************************************************************************/
/*  PHOTO ENLARGEMENTS
/***************************************************************************************/

#photos {
	background-image: url(../images/pagebgrnd.jpg);
	padding: 0 0 5px 0;
	width: 775px;
}

#photos img { border: 0px none; }

#photos p {
	background-color: transparent;
	color: White;
	font-size: 13px;
	font-weight: normal;
	text-align: center;
}

#photos p.return {
	background-color: transparent;
	color: White;
	font-size: 8px;
	font-weight: bold;
	padding: 12px 0 10px 0;
	text-transform: uppercase;
}

#photos a, #photos a:visited {
	background-color: transparent;
	color: White;
	text-decoration: none;
}

#photos a:hover {
	color: Fuchsia;
}

.version {
	font-size: 7pt;
	margin-top: 12px;
	text-align: center;
}

.seologo {
	border:						0px none;
	margin:						250px auto 0px auto;
	text-align:					center;
}

.ac {
	text-align:					center;
}