@charset "utf-8";


/*************CSS styles for main layout sections ****************/

	/****   BODY   ****/
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
    font: 100% Verdana, Arial, Helvetica, sans-serif;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	
	background-image:url(../StyleImages/BGpattern.png);
	background-repeat:repeat;
	background-color: #FFF;
	font-size: 10px; /* Most have defult size of 16 pixels, this converts defult size wo approx 10px. Can use "em" to adjust from there. */

}

	/****   Main page CONTAINER   ****/

.MainStyle #container {
	width: 890px; /* this is the banner width of 890px */ 
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin: 0 auto;
	border: #1FA137 4px solid;
}

h1, h2, h3, h4 {color: #1FA137}

h1 {font-size: 2.4em;}

h2 {
	font-size: 1.6em;
	margin-bottom: 0.2em;
	}

h3 {
	font-size: 1.2em;
	margin-bottom: 0.2em;
	}
p {font-size: 1.2em}

li{
    font-size: 1.2em;
	margin-top: .75em;
}



/*************CSS styles for HEADER ****************/


.MainStyle #header {
	width: 100%;
	height:113px; /* this is the banner hight of 113px */
	background: #white;
    border-Bottom: 1px Solid #1FA137;	
} 
.MainStyle #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/*************CSS styles for the TOP NAVIGATION BAR ****************/

.MainStyle #TopNavContainer {
	width: 748px; /* Use this to centre the block of buttons in the Nav Bar container. To claculate this value Width = Number of buttons X (Link Width:123px + (2 X Li Padding:px)) */
	margin: 4px Auto;    
	height:35px;
	text-align: center;
}

#TopNavBar ul {
	list-style-type: none;
    padding: 0px;  /** Zero padding settings to overcome Ul Left defult settings that make room for bullet points **/
    margin:  0px; 
}

#TopNavBar li {
	float: left;
	height: 33px;
	margin: 0px;
	padding:0px 32px; /*left/right settings used to add speperation space b/w buttons and as part of the Nav Container Centering eq (see "Li Margin" in #TopNavContainer) */ 
}


#TopNavBar a, #TopNavBar a:visited{
	height: 28px;
	width: 123px; /* width set to size of button JPG and used as part of the Nav Container Centering eq (See "Link Width" in #TopNavContainer) */ 
	text-decoration: none;
	display: block;
	font-size: 12px;
	color: #000;
	font-weight: bold;
	padding: 8px 0px 0px 0px; 			/*Use Padding to centre the text on the button  */
  	background: no-repeat url(../StyleImages/TopNavButtonUp.png);
}


#TopNavBar a:hover{
  	background: no-repeat url(../StyleImages/TopNavButtonDown.png);
	text-decoration: none;
	color: #FFF;

}



/*************CSS styles for BREADCRUMB ****************/

.MainStyle #BreadCrumbContainer {
	width: 100%;
	padding: 0px;
	margin: 2px 0px 5px 0px;
    border-Top: 1px Solid #1FA137;
}

 
#BreadCrumb ul {
    padding: 0px;  /** Zero padding settings to overcome Ul Left defult settings that make room for bullet points **/
    margin: 0px 0px 0px 5px; 
	color: #060;

}

#BreadCrumb li {
	font-size: 10px;
	display: inline; 
	padding: .5em .5em .5em 1.5em;
	background-image: url(../StyleImages/double-arrow.gif);
	background-repeat: no-repeat;
	background-position: 0% center;

}


.FistCrumb {
	background: none;  /* for some reason this don't work so use first-child method below...*/
	margin: 0 0 0.5em -0.5em; /* pushes back alignment to compensate for the lack of an arrow.... */ 
}
#BreadCrumb li:first-child {background:none}  


#BreadCrumb a, #BreadCrumb a:visited{
	color: #060;
}

#BreadCrumb a:hover{
	color: #690;
}

/*************CSS styles for the SIDE BAR ****************/

.MainStyle #sidebar {
	float: left; 
	width: 160px; /* since this element is floated, a width must be given. Need to set .MainStyle #mainContent to same value*/
	padding: 0px; /* top and bottom padding create visual space within this div  */
}


	/****   SIDE BAR Sections Link Navigation   ****/
	
#SideNavBar{
	width: 145px;
	margin: 0px 0px 0px 7px;
	padding: 0px;
}

#SideNavBar ul {
	list-style-type: none;
    /** Need to zero UL margins and padding to overcome the spacing left for the bullet point gifs **/
	margin: 0px;
	padding: 0px;
}


#SideNavBar li {
	padding: 0px;
	margin: 2px;
}


#SideNavBar a:link, #SideNavBar a:visited {
	display: block;
	border-bottom: 2px solid black;
	border-right: 2px solid black;
	border-top: 1px solid dimgrey;
	border-left: 1px solid dimgrey;

	font-weight: bold;
	font-size:10px;
	padding: 3px;
	color: #FFFFFF;
	background-color: #1FA137;
	text-decoration: none;
}
 
#SideNavBar a:hover{
	border-bottom: 1px solid dimgrey;
	border-right: 1px solid dimgrey;
	border-top: 2px solid black;
	border-left: 2px solid black;
	
	color: #000;
    background-image: url(../StyleImages/nav_arrow.gif);
	background-repeat: no-repeat;
	background-position: right 1px;

}

#SideNavBar a:active{
	color: #000;
    background-image:url(../StyleImages/nav_arrow-Black.gif);
	background-repeat: no-repeat;
	background-position: right 1px;
	font-weight:bold;
}


	/****   SIDE BAR News Link Navigation   ****/

#NewsItem {
	margin:30px 10px 2px 10px;
	border-top:1px Solid #1FA137;
}

#NewsItem h2 { margin-top:0.9em; font-size: 1.2em;}
#NewsItem h3 { margin-top:0.9em; font-size: 1.0em;}
#NewsItem p {
	margin-top:5px;
	margin-bottom:6px;
	font-size: 1em;
	text-align:center;
}

#NewsItem a{color:#1FA137;}

/*************CSS styles for the Main Content section ****************/
/* Note from original tremplate file
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/


.MainStyle #mainContent {
	margin: 0px 20px 0px 160px; /* Right margins need to be set to width of .MainStyle #sidebar */
	padding: 0px 0px 0px 20px;
	min-height: 400px;
	border-left: 1px Solid #1FA137;

} 

.MainStyle #mainContent h1 {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
}


/*************CSS styles for the Footer section ****************/
 

.MainStyle #FooterContainer {
	width: 100%;
	margin: 0px;    
	text-align: center;
	border-Top: 2px Solid #1FA137;
}

#FooterBar ul {
	list-style-type: none;
    padding: 0px;  /** Zero padding settings to overcome Ul Left defult settings that make room for bullet points **/
}


#FooterBar li {
	float: left;
	width: 22%; /* Set % to adjust spacing and centring of Footer Nav elements. */ 
	margin: 3px 8px 0px 6px;
	font-size:11px;
	padding: 0px;
	color: #060;

}

#FooterBar a, #FooterBar a:visited{
	color: #060;
}

#FooterBar a:hover{
	color: #393;
}


/*************CSS styles for the FundingStatemnt section ****************/
 

.MainStyle #FundingStatement {
	width: 90%;
	margin: 2px Auto;
	padding: 10px 0 2px 0;
	text-align: center;
	vertical-align: middle;
	font-size:8px;
}

/************************************************************/
/************* Miscellaneous classes for reuse *************/

/**** Styles for setting file info on document links  ****/
.DocTag {
	font-size: 0.8em;
}


/**** Styles for setting image holding tables  ****/
.ImgTable thead{  /* Used for images: table has header(style set here), footer and body (img) sections */
	color: #1FA137;
	text-align: center;
	font-size: 15px;
	}
.ImgTable tfoot{  /* Used for images: table has header, footer (style set here) and body (img) sections */
	text-align: center;
	font-size: 9px;
	}



/**** Style aids for tables listing peoples detrails (Project Team, Contact detrails etc)  ****/
.TitleCol { 		/*Used to set the title (e.g postion or name) in tables listing people's detials */
	font-weight: bolder;
	color:#1FA137;
}

.SpacerRow {			/*Used to size the spacer row in tables listing people's detials */
	font-size: .75em;
}

.TopPage {				/*Style Set for links to the top of th page on long pages */ 
	text-align:center;
	width:600px;
	color:#1FA137;
}
.TopPage a{color:#1FA137;}



/**** Style aids for floating objects  ****/

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


#PageDisclaimer {
	width: 90%;
	margin: 2px Auto;
	padding: 10px 0 2px 0;
	text-align: center;
	vertical-align: middle;
	font-size:8px;
}



/*************CSS styles for Document Download tables  ****************/

.DownloadShell {
	width:100%;
}

.DownloadContainer {
	width: 50%;
	padding: 10px 15px 0px 0px;
}


.docContainer {
	width:100%;
	border: 3px solid #1FA137;
}


.docSplash {
	text-align:center;
	height: 74px; 
	vertical-align: top;
}

.docSplash a {
	color: #1FA137;
		text-decoration:none;

}


.docSplash a:hover {
	color: blue;
}


.docTitle {
	font-size: 1.2em;
	color: #1FA137;
	font-weight:bold;
	vertical-align: top;
}

.docType {
	font-size: 0.8em;
	font-weight: bold;
	text-align: right;
	vertical-align: bottom;
	color: black;

}




/*************************************************************************/
/*************                                    ************************/
/*************   Page Spercific CSS Formates      ************************/
/*************                                    ************************/
/*************************************************************************/



/****** Spercific Styles for Home --> Project Team ***********/ 


#ProjectTeamTable {                       /* Project Team Table */
	font: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color:#000;
	margin: 10px Auto;
}

#ProjectTeamTable td{
	vertical-align:top;
}


/****** Spercific Styles for Contact --> General Enquiries  ***********/ 


#EnquiriesTable {                       /* General Enquires contact list Table */
	font: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color:#000;
	margin: 0px 0px 0px 50px;
}


#EnquiriesTable td{
	border:0px;	
	padding:5px 2px;
	vertical-align:top;

}
	
#EnquiriesTable .SpacerRow{
	border-bottom:0px;	
	border-bottom:1px dashed green;	

}

	
/****** Spercific Styles for Contact --> Project Team Contact List  ***********/ 


#TeamContactTable {                       /* Project team contact list Table */
	font: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color:#000;
	margin: 10px Auto;
}

#TeamContactTable td{
	vertical-align:top;
}



/****** Spercific Styles for Site Map ***********/ 
/* So Menu Library items can be used to auto update the site map, have added extra div container called "SiteMapContainer"  */
/* that will allow all the SideNavBar link CSS styles to be reset to stop them looking looking the sidebar Nav Buttons... */ 

#SiteMapContainer #SideNavBar{
	margin : 0px 0px 15px 10px;
	padding: 0px;
	width: 200px;
}

#SiteMapContainer #SideNavBar ul {
	list-style-type:disc;
	margin: 0;
	padding: 0px 0px 0px 30px;
}

#SiteMapContainer #SideNavBar li {
	height: 9px 0px 0px 0px; 
	padding: 0px;
}

#SiteMapContainer #SideNavBar a{
	font-weight: normal;
	font-size:1em;
	color: blue;
	text-decoration:underline;
	background: none;
	background-color: #FFF;
	border: none;

}

#SiteMapContainer h2 {margin-bottom: 0em; } /* Readjusted to compensate for list table spacing */


/****** Spercific Styles for Forms ***********/ 
/* The following CSS codes have been adapted from the PHPList CSS code so that forms can be cut and pasted into local templates  */

/** Copied directly from php list ***/
.attributename {
	FONT-WEIGHT: normal; FONT-SIZE: 12px; COLOR: black; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-DECORATION: none
}
.attributeinput {
	FONT-WEIGHT: normal; FONT-SIZE: 12px; COLOR: black; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-DECORATION: none
}
.required {
	FONT-WEIGHT: bold; FONT-SIZE: 12px; COLOR: red; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-DECORATION: none
}
.missing {
	FONT-WEIGHT: bold; FONT-SIZE: 14px; COLOR: red; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif
}
.error {
	FONT-WEIGHT: normal; FONT-SIZE: 12px; COLOR: red; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-DECORATION: none
}
.info {
	FONT-WEIGHT: normal; FONT-SIZE: 12px; COLOR: magenta; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-DECORATION: none
}


/** local ***/

.FormInstruction
{
	FONT-WEIGHT: bold; FONT-SIZE: 11px; COLOR:#1FA137; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-DECORATION: none
}



