/*Ian Rolfe*/
Div.pagelayout
{
	align: center;
	width: 100%;
}


/*	There are the 4 main fonts which we can use. 
	H1 is the largest / biggest /strongest heading, H2 is the second largest, H3... H4... 
	
	Mouse-Over Text effect - 	When the mouse is over any of the text headings you might want to
								have an effect where the text might become bold or change colour.
								to do this simply add/alter the A:hover Stle
								
	Hyperlink Colour / font - 	If you want to control the hyperlink colour and font, you can use:
								A:link - for normal unvisited links
								A:visited - for normal visited links
								A:hover - as above, to change colour / font / size when the mouse is over.

*/

H1
{
	font-family: "century gothic", arial, sans serif;
	font-size: 20pt;
	font-weight: bold;
	text-transform: uppercase;
	font-style: normal;
	color:white;
}

H2 
{
	font-family: "century gothic", arial, sans serif;
	font-size: 16pt;
	font-weight: bold;
	font-style: italic;
	color:white;
	}
/*page title*/
H3 
{
	font-family: "century gothic", arial, sans serif;
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
	font-style: normal;
	color:white;
	display: inline;
	}
/* sub tiltle*/
H4 
{
	font-family: "century gothic", arial, sans serif;
	font-size: 10pt;
	font-weight: normal;
	font-style: normal;
	color:#4a494a;
	display: inline;
	}



H4 A:link
{
	font-family: "century gothic", arial, sans serif;
	font-size: 10pt;
	font-weight: normal;
	font-style: normal;
	color:#4a494a;
	text-decoration:none;
	}

H4 A:visited
{
	font-family: "century gothic", arial, sans serif;
	font-size: 10pt;
	font-weight: normal;
	font-style: normal;
	color:#4a494a;
	text-decoration:none;
}

H4 A:hover
{
	font-family: "century gothic", arial, sans serif;
	font-size: 10pt;
	font-weight: normal;
	font-style: normal;
	color:#4a494a;
	text-decoration:none;
}

/*	The p style is the default font that the site will use.

	Try not to use a large size, 10pt is normally fine.

	Again, you can specify the following effects:
	
	e.g. 	p a:link
	or 		p a:visited
	or		p a:hover
	
	Mouse-Over Text effect - 	When the mouse is over any of the text headings you might want to
								have an effect where the text might become bold or change colour.
								to do this simply add/alter the A:hover Stle
								
	Hyperlink Colour / font - 	If you want to control the hyperlink colour and font, you can use:
								A:link - for normal unvisited links
								A:visited - for normal visited links
								A:hover - as above, to change colour / font / size when the mouse is over.

*/

p
{
	vertical-align: top;
	font-size: 9pt;
	color: white;
	font-family: "century gothic", arial, sans serif;
}
p a:link
{
	vertical-align: top;
	font-size: 9pt;
	color: white;
	font-family: "century gothic", arial, sans serif;
	text-decoration: none;
}
p a:visited
{
	vertical-align: top;
	font-size: 9pt;
	color: white;
	font-family: "century gothic", arial, sans serif;
	text-decoration: none;
}
p a:active
{
	vertical-align: top;
	font-size: 9pt;
	color: white;
	font-family: "century gothic", arial, sans serif;
	text-decoration: underline;
}
p a:hover
{
	vertical-align: top;
	font-size: 9pt;
	color: #cacaca;
	font-family: "century gothic", arial, sans serif;
	text-decoration: underline;
}

body
{
/*	Always set background-colour to white otherwise it will stuff up the CMS system
*/
	background-color: White;
	vertical-align: top;
	font-size: 10pt;
	color: Black;
	font-family: "century gothic", arial, sans serif;
	height: 100%;
	
}

/*	Bullet Point.
		. abcde
		. abcde
		. abcde
*/

ul
{
	vertical-align: top;
	font-size: 9pt;
	color: white;
	font-family: "century gothic", arial, sans serif;
}
li
{
	vertical-align: middle;
	font-size: 9pt;
	color: white;
	font-family: "century gothic", arial, sans serif;
}

/*	Number Points... e.g.
		1. abcde
		2. abcde
		3. abcde
*/

ol
{
	vertical-align: top;
	font-size: 9pt;
	color: white;
	font-family: "century gothic", arial, sans serif;
}



/*	The following definitions control the left menu tree options.
=========================================================================
*/

bLeftMenuTree, a.bLeftMenuTree {font-size:10px;text-transform: uppercase;}

TreeLeaf, a.TreeLeaf 
{ font-family: "century gothic", arial, sans serif; color: white; font-size:10px; display: block; padding-top: 3px; padding-bottom: 3px; padding-left: 3px; text-transform: uppercase; }

TreeLeaf, td.Treeleaf
{ font-family: century gothic, arial, sans serif; color: white; font-size:10px; padding-left: 5px; padding-top: 3px; padding-bottom: 3px; padding-right: 0px;}

TreeLeaf, a.TreeLeaf:hover 
{color:#4fc21c; }

TreeSelectedLeaf, a.TreeSelectedLeaf
{ color:#4fc21c;}

/*	The following definitions control the interactive left menu options.
=========================================================================
*/


/*	Table.MenuLevel0 is the control for the base level menu
*/

MenuLevel0, a.MenuLevel0 {font-family: Verdana; font-size: 10pt; color: Black;}

Table.MenuLevel0 {Background-color: Silver; width:100%; padding-left:10px; padding-top:2px; padding-bottom:2px;font-family: Verdana; font-size: 10pt; color: Black;}

/*	Table.MenuLevel1 is the control for the Expaneded level menu
*/

MenuLevel1, a.MenuLevel1 {font-family: Verdana; font-size: 10pt; color: Black;}

Table.MenuLevel1 {background-color:Silver; width:100%; padding-left:20px; padding-right:10px;  padding-top:2px; padding-bottom:2px;font-family: Verdana; font-size: 10pt; color: Black;}


/*	The following Table is the table that stretches right across - effectivly its your canvas
=========================================================================

The only thing you really need to change is the colour.
*/

TABLE.BackgroundTable
{
	background-color:#BBBDBF;
	width: 100%;
	height: 100%;
	padding-top: 0;
	border: 0;
	padding :0;
	cellspacing:0;
	vertical-align: top;
	margin-top: 0;
	margin-bottom: 0;
	margin-left:0;
	margin-right:0;
	margin: 0 auto;
	text-align: center;
}
td.backgroundtablerow
{
	vertical-align:top;
	padding-top: 0px;
}
/*	The header table that is INSIDE the Background Table
=========================================================================
*/

TABLE.HeaderTable
{
	align: center;
	width: 692px;
	height:161px;
	vertical-align: top;
	border: 0;
	padding :0;
	cellspacing:0;
	background-color: #4A494A;
}

/*	The main table is split into 2 columns and the whole table is beneath the header table
The left column contains the menu. 
The right column contains the content.
=========================================================================
*/
TABLE.MainTable
{
	width: 692px; height:464px;
	vertical-align: top;
	border: 0;
	padding :0;
	background-color: #4A494A;

}

td.leftcolumn
{ 

	
	width: 158px;
	height:100%;
	vertical-align: top;
	padding: 34px 0px 0px 10px;
	
	}

td
{
	color: White;
        font-size: 8pt;
	font-family: "century gothic", arial, sans serif;
}

td a:link
{
	color: white;
        font-size: 8pt;
	font-family: "century gothic", arial, sans serif;
}
td a:visited
{
	color: Silver;
        font-size: 8pt;
	font-family: "century gothic", arial, sans serif;
}

td a:hover
{
	color: #4fc21c;
        font-size: 8pt;
	font-family: "century gothic", arial, sans serif;
}

td.rightcolumn
{ 	vertical-align: top;
padding: 0px 7px 0px 0px;

	vertical-align: top;
background:#4A494A url(/File.aspx?x=254&File=maintable_BG.gif) repeat-y top right;
	


		}

/*	The header table that is INSIDE the Background Table
=========================================================================
*/

TABLE.FooterTable
{
	width: 692px;
	font-size:xx-small;
	vertical-align: top;
	align:center;
	}
.quickmenu
{
	font-family: "century gothic", arial, sans serif;
	font-size: 10px;
	color:white;
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
	}
	
a.quickmenu:link { color: white; text-decoration: none;}
a.quickmenu:visited { color: white; text-decoration: none;}
a.quickmenu:active { color: white; text-decoration: none;}
a.quickmenu:hover { color: #4A494A; text-decoration: none;}

.footerlink
{	vertical-align: top;
	font-size: 9px;
	color: #6D6E70;
	font-family: Verdana;
		
}
a.footerlink:link { color: #6D6E70;	text-decoration: none;}
a.footerlink:visited { color: #6D6E70;	text-decoration: none; }
a.footerlink:hover {color: #6D6E70;	text-decoration: underline;}

img.gallery a:hover {visibility:hidden; width: 100%;}

img.gallery {filter:gray(); width: 100%;}
img.galleryover  {width: 100%;}

.pdf {font-weight: bold;}

