﻿/* Margins and padding are set with properties for an element using shorthand notation (top, right, bottom, left) */
/* If all four measurements are the same then you need only use one unit of measurement - instead of 0px 0px 0px 0px use just 0px */
/* 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: 1em;
  border-style: none;
  border-color: inherit;
  border-width: 0px;
}
/*============ Colour and Font sizes ==============*/
.bold {font-weight:bold;}
.underline {text-decoration: underline;}
.centre {text-align:center;}
.right {text-align:right;}
.left {text-align:left;}
.border {border:solid 1px #B5AE84;}

.c1 {color: #B5AE84;}	/* Tan */
.c2 {color: #828282;}	/* Dark Grey */
.c3 {color: #787b78;}	/* Light Grey */
.c4 {color: #000000;}	/* Black*/
.c5 {color: #FFFFFF;}	/* White */
.c6 {color: #933;}		/* Red */

.fs0 {font-size: 0.6em;} /* Smallest text */
.fs1 {font-size: 0.7em;} /* Smallest text */
.fs2 {font-size: 0.75em;} /* Smaller text */
.fs3 {font-size: 0.85em;} /* Main text */
.fs4 {font-size: 1.2em;} /* Sub Headers */
.fs5 {font-size: 1.5em;} /* Column Headers */
.fs6 {font-size: 1.8em;} /* Large Titles */
.fs7 {font-size: 2.3em;} /* Page Titles */

ul, ol{
	/*list-style: none;
	margin:0px;
	padding:0em;
	line-height:1em;*/
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling 
of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color 
of the page and create a centered container for the page content to display. */

body {
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background-color: #FFFFFF;
	line-height: 1.2em;
	font-size: 1em;
	font-family:Arial,Tahoma,Verdana,Geneva,sans-serif;
}

body img {
	border: 0px;
	text-decoration: none;
	vertical-align:middle;/*for icon placement*/
}
/* Commonly used to style page titles. */
h1, h2, h3 ,h4{
	line-height:1em;
	margin: 5px 0px 5px 0px;
	color:inherit;
	
}

/* Sets the style for unvisited links. */
a{
  text-decoration: none;color:inherit;
}
a:link {
  text-decoration: none;
  color:#828282;
}
/* Sets the style for visited links. */
a:visited {
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  /*color: #B5AE84;*/
  /*text-decoration:underline;*/
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
 /*color: #039;*/  
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to 
avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container 
on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left 
and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	width: 970px;
	min-width:775px;
	max-width: 970px;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	margin: 0px auto 0px auto;
	
}
.max600
{
	width:expression(document.body.clientWidth > 970? "970px": "auto" );
}


#outerWrapper #contentWrapper {
	min-height:670px;
}
#outerWrapper #header {
	padding: 0px;
	height: 80px;	
	color: #B5AE84;
		
}
#outerWrapper #header .logo {
	padding: 0px;
	float:left;
}
#outerWrapper #header .title {
	font-size: 1.6em;font-weight:bold;
	font-family: Comic Sans MS;
	margin-top: 22px;
	margin-left: 5px;
	float:left;  line-height: 25px;
}
#outerWrapper #header .logostrapline {
	font-size: 0.40em;font-weight:bold;
	font-family: Comic Sans MS;
	margin: 2px 0px 0px 0px ;
	line-height: 1.4em;
}
#outerWrapper #header .banner {
	margin-top:  5px;
	margin-left: 5px;
}
#outerWrapper #topNavigation {
	background-color: #828282;
	padding-top:0.3em;
	height: 1.5em;
	font-size: 0.8em;
	border-bottom: 0.25em solid #B5AE84;   /* Sets the bottom border properties for an element using shorthand notation */
	z-index:1; /*ie fix required?*/
}

#outerWrapper #topNavigation a {
	background-color: #828282;
	color: #fff;
	text-decoration: none;
	padding:1px 10px 1px 15px;
	display: block;
	font-size: 0.8em;
	line-height: 1em;
	text-align:left;
}
#outerWrapper #topNavigation a.level3:hover {
	background-color: #B5AE84;	
	color: #fff;
}
.level1{}
.level2{
	text-align:left;
    border-left: 1px solid #B5AE84;
}

a.level3{
	background-color: #828282;
	color: #fff;
	text-decoration: none;
	padding:2px 10px 1px 15px;
	display: block;
	font-size: 0.8em;
	line-height: 1em;
	text-align:left;
}
a.level3:hover {
	background-color: #B5AE84;	
	color: #fff;
}	
#outerWrapper #leftColumn .sidemenu {
	height: 20px;
	font-size: 0.8em;
	width: 100%;
	
  }
#outerWrapper #leftColumn .leftColumnTop {
	min-height: 510px;
  }
  
.sidelevel1{
    color: #828282;
    border-bottom: 1px solid #B5AE84;
    padding-top: 5px; padding-bottom: 10px;
    font-size: 1.5em;
}

.sidelevel2{
     color: #828282;
	 padding-top: 10px;padding-bottom: 10px;	 
}

.sidelevel2 a:hover{
    color: #B5AE84;
}
.line{	
	width:100%;
	height: 1px;
	border-bottom: 1px solid #B5AE84;
}
.column-header{
	height: 12px;
}
.list{
	display:inline-block;
	border-style:none;
	vertical-align:middle;
	padding:0em 0em 0em 0.4em;
	line-height:1em;
	list-style: none;
	margin:0px;	
	overflow:hidden;
}
* html .list { display:inline; }  /* for IE 6 */
* + html .list { display:inline; }  /* for IE 7 */

.collapsepanel{
	height:0px;
	width:100%;
	overflow:hidden;
}
/* Contains the full page content. When using a mutliple column layout the external margins, and padding are accounted for here to allow for single style. */

.leftColumn {
	padding: 10px 10px 10px 10px; 
	float: left;
	width: 145px;
}	
.rightColumn {
 	padding: 10px 10px 10px 10px; 
	float: right;
	width: 160px;
}

.blankrightColumn {
	float: right;
	width: 0px;
}
.blankleftColumn {
	float: right;
	width: 0px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
.centerColumn {
  padding: 10px 10px 10px 10px; 
  margin: 0px 180px 0px 165px;

 }
 /*** IE6 Fix ***/
* html .centerColumn {
  display:inline-block;
  width:expression(document.body.clientWidth > 595? "595px": "auto" );
  }     

.fullpage {
  margin-left: 0px; 
  margin-right: 0px;
  padding:0px;
}
.onecolleft{
  padding: 10px 10px 10px 10px; 
  margin: 0px 0px 0px 170px;
}

* html .onecolleft{/*** IE6 Fix ***/
  display:inline-block;      
  width:expression(document.body.clientWidth > 775? "775px": "auto" );
}
.onecolright{
  padding: 10px 10px 10px 10px; 
  margin: 0px 170px 0px 0px;
}
* html .onecolright{/*** IE6 Fix ***/
  display:inline-block;     
  width:expression(document.body.clientWidth > 775? "775px": "auto" );
}
.padded{
 padding: 10px 10px 10px 10px;
 }
 .padtop
 {
 	padding-top:10px;
 }
 .halfpadded{
 padding: 5px 5px 5px 5px;
 }

 .unpadded{
 padding: 0px;
 }
.nopadbottom{
 padding-bottom: 0px;
 }
 
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without 
being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before 
the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  display: block;
  clear: both;
}
#outerWrapper #footer {
  border-top: 1px solid #B5AE84; /* Sets the top border properties for an element using shorthand notation */
  padding: 0px 10px 0px 10px; 
  color:#828282;
  font-size: .8em;
}

/* removes the top and bottom margins*/
#outerWrapper #footer a {
	text-align: left;
	color:#828282;
	padding-right:20px;
	display:inline-block;
}
 #outerWrapper #footer a:hover {
  color: #B5AE84;
  text-decoration:underline;
}

#outerWrapper #footer .copyright{
  float:right; font-size: 0.7em;
}

.bread-crumbs {
	width:100%;
	font-size: 0.8em;
  	line-height: 10px;
    vertical-align:top;
}	
.bread-crumbs h1,.bread-crumbs span, .bread-crumbs a:link, .bread-crumbs a:visited {
  text-decoration: none; 
  text-transform: none; 
  color: #828282;
   }
.bread-crumbs a:hover {color: #BDB380}



/*============ Image Placement ==============*/
.imgborder {
	padding: 0px; 
	margin: 0px 10px 2px 4px;
	float: left;
	display: inline;
	border:solid 1px #B5AE84;
}
.imglft {
	padding: 5px 10px 5px 0px;
	float: left;
	border:solid 1px #B5AE84;
}
.imgrgt {
	padding: 5px 0px 5px 10px;
	float: right;
}

/* center image in div */
.imgctr {
	display: block;
	margin: 0px auto;
	text-align:center;
}
.imgsctr{
	margin: 0 10px;
}
.imglist{
display: inline-block;
}
.buttonrgt {
	float: right;
	background-color:#828282;
	color:#fff;
	cursor:hand;
	Border-Color:#B5AE84;
    Border-Style:Solid;
    border-width:2px;
    padding:1px;
    font-size:0.75em;
}

/*============ Page Specific - non Generic ==============*/
#homepage-splash {
	height: 400px;
}
#homepage-splash a {
	height:100%;
	color: #fff;
	display: block;	
	text-decoration: none;
	font-size: 0.8em;
	
}
#tile{
	width:235px;
	min-width:187px;
	height: 115px;	
}

#homepage-splash a h2{
	display: block;
	background: #B5AE84;
	line-height: 17px;
	color: #fff;
	margin:0px;
}
.visible {visibility:hidden;}
* html .visible {visibility:visible;}  /* for IE 6 as nohover */

#homepage-splash a:hover h2 {
	visibility:visible; 
}


.splashlabel {
	margin:0px;
	float:right;
	line-height: 1.6em;
	font-size: 1.3em;
	color: #fff;
	font-weight:bold;
	font-family: Comic Sans MS;
	padding:0px 12px 0px 0px;
}
#Columns {
	display:block;
}
table.columns{
	display:block;
	vertical-align:top;		
}
table.columns td a{	

  text-decoration: none;
  display:block;
  color:inherit;
}

table.columns td {
	width:25%;
	vertical-align:top;
	padding: 0px 5px 0px 5px;
	text-decoration: none;
}
table.columns td h1,table.columns td h2,table.columns td h3,table.columns td h4{
	color:inherit;
	font-size:inherit;
	font-weight:inherit;
	font-family:inherit;
}
table.columns td h1:hover,table.columns td h2:hover,table.columns td h3:hover,table.columns td h4:hover
{
 /*color: #B5AE84;*/
}

#sitemap a
{
	text-decoration:none;
	font-size: 0.8em;color:#828282;
}
#sitemap a:hover{color: #B5AE84; text-decoration: underline;}

