/*
This style sheet is used for treatment of all major structural elements and visual layout.

'- ---------------------------------------------------------------------
'Sites Style Sheet          CompuCraft Software Solutions (c) 1999-2006
'Date --- Init Reason----------------------------------------------
'23/03/06 DB finalised for ComWeb StandardV42
'11/04/06 DB incorporated new features, and made some minor improvements
'03/05/06 DB edited to suit CGDV42
'31/10/06 DB upgraded elements of current StandardV42
'---------------------------------------------------------------------- -

note: comments starting with cw- are used by the ComWeb Style Sheet Theme (colour) Editor.
Where more than one such comment is on consecutive lines, this is for backwards compatibility.
The first of these such lines is the latest label for the Style sheet editor to display and
the latter entries are older or redundant labels.
*/

/*
===========================================================
global settings - standardise across variety of browsers
=========================================================== 
*/

* {/*remove spacing from all elements*/
	margin: 0;
	padding: 0;
}

body {
	text-align: center;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
/* cw-Body Text */
	color:#000000;
/* cw-Body Background */
	background: #1F2227
	url(background2.gif) 0 0 no-repeat;
	font-size: 75%;
	line-height: 1.6em;
}

h1, h2, h3, h4, h5, h6, p, li, a {
	margin: .5em 0;
}

h1 {
/* cw-Page Heading Level 1  */
	color:#000000;
	font-size: 1.5em;
}

h2 {
/* cw-Page Heading  Level 2 */
	color:#000000;
	font-size: 1.5em;
}

h3 {
/* cw-Section Heading Text Level 3 */
	color:#000000;
	font-size: 1.5em;
}
h4 {
/* cw-Page Heading Level 4 */
	color:#000000;
}
h5 {
/* cw-Page Heading Level 5 */
	color:#000000;
}
h6 {
/* cw-Page Heading Level 6 */
	color:#000000;
}

* html p {/* to assist with the 'extra spacing' allowable in the ComWeb page builder. 2 br tags seem to equal 1 full line-height */
	margin-bottom: 1.6em;
}

.floatRight {
	float: right;
}

.floatLeft {
	float: left;
}

.floatClear, div.floatClear, #floatClear {
	font-size:0em !important;/*for all browsers except IE. IE 5.x and 6, which don't recognise the important value when there is another of the same property in the same declaration block*/
	font-size: 0em;
	clear: both;
	background-color: transparent;
	}

a *, a:hover, a:visited:hover {/*ensure targetted-anchor-text and anchor-images do not receive treatments*/
	border: none;
	background: none;
	padding: 0;
}

/* greater specificity for anchors that are actual text links, not targetted-anchor-text or anchor-images  */

a:link {
/* cw-Page Links Text */
	color: #FF0000;
	font-weight: normal;
	text-decoration: none;
}

a:link:visited {
/* cw-Page Links Text */
	color: #FF0000;
}

a:link:hover,
a:link:visited:hover {/*not working in Firefox, find another method*/
/* cw-Page Links Text */
	color: #FF0000;
}

a:link:hover,
a:link:visited:hover {
/* cw-Page Links Text */
	color: #FF0000;
	text-decoration: underline;
/* cw-Page Links Hover Background */
	background-color: #DDDDDD;
	padding: 2px 0;
}

a:link:active {
/* cw-Page Links Text */
	color: #FF0000;
	text-decoration: underline;
	padding: 2px 0;
}

/*Targetting IE only, needed a different padding to the rule above*/
* html a:link:hover {
	padding: 0;/*so that only list items use the padding, NOT images*/
}

/*prevent borders and/or hover backgrounds on images */
a img,
:link img,
:visited img { 
	border:none;
 }
 

/*
=====================================================
layoutLogic for the choice of one, two, or three columns, ties in with the XSLT which
inserts a specific DIV id into the body tag of each layout type, eg <body id="leftMain" etc.>
=====================================================
*/

/*layoutLogic for page with two columns: left content and main content (no right content)*/

 /* Hide the rule from IE5-mac \*/
 /*preventing the IE peekaboo bug, see http://www.positioniseverything.net/explorer/peekaboo.html*/
  /*Holly Hack, IE only, to force into 'hasLayout' mode and fix the peekaboo bug*/
* html #leftMain #content  {
	 height: 1px;
}
/* End hide from IE5-mac */ 

#leftMain #leftContent  {
	float: left;
	width: 200px;
	padding: 10px 0 10px 0;
	margin: 0 0 20px 0;
/*	No border required, and is commented out early so the Theme Editor does not pick up the Left Content Border
	border-width: 1px;
	border-style: solid;
 cw-Left Content Border 
	border-color: #FFFFFF;
	border-top: none;
	border-left:none;*/
    z-index: 99;/*keep higher than mainContent*/
	position: relative;/*for IE only, must be set so the leftContent floats above the the maincontent, not enough simply to use z-index */
/* cw-Left Content Background */
	background-color: transparent; 
	/*can be coloured as per a background colour to conceal the section rules from butting against the edge*/
	}
	
/*Targetting IE only*/
* html	#leftMain #leftContent  {
	margin-top: 0px;/*IE requires margin to move it down (padding forced the right content down as well). Conversely, firefox requires using padding for same effect */
}
	
#leftMain #rightContent  {
	display: none;
}

body#leftMain.framed0 #mainContent,
body#leftMain.framed1 #mainContent {
	margin: 0 20px;
	padding: 30px 0 10px 0px;/*firefox requires padding to move it down. Margin forced the right-content down as well. Conversely, IE requires using margin for same effect (see rule below)*/
	 z-index: 98;
}

/*Targetting IE only*/
* html #leftMain.framed0 #mainContent,
* html #leftMain.framed1 #mainContent  {
	padding-top: 0;
	margin-top: 30px;/*IE requires margin to move it down (padding forced the right content down as well). Conversely, firefox requires using padding for same effect */
	position: relative;
 /* Hide the rule from IE5-mac \*/
 /*Holly Hack, IE only, to force to fix the three-pixel text-jog bug */
 /*preventing the three-pixel text-jog bug, see http://www.positioniseverything.net/explorer/threepxtest.html*/
 /*as a bonus, it also forces IE into 'hasLayout' mode, thus rendering the line beneath the sections properly, fixing the peekaboo bug*/
	height: 1px;/*putting the height on moved the maincontent across*/
}
 /* End Hide the rule from IE5-mac */
 



/*layoutLogic for page with three columns: left content, main content and  right content*/  

 /* Hide the rule from IE5-mac \*/
 /*preventing the IE peekaboo bug, see http://www.positioniseverything.net/explorer/peekaboo.html*/
 /*Holly Hack, IE only, to force into 'hasLayout' mode and fix the peekaboo bug*/
* html #leftMainRight #content  {
	 height: 1px;
}
/* End hide from IE5-mac */ 

#leftMainRight #leftContent  {
	float: left;
	width: 200px;
	padding: 10px 0 10px 0;
	margin: 0 0 20px 0;
/*	No border required, and is commented out early so the Theme Editor does not pick up the Left Content Border
	border-width: 1px;
	border-style: solid;
 cw-Left Content Border 
	border-color: #FFFFFF;
	border-top: none;
	border-left:none;*/
    z-index: 99;/*keep higher than mainContent*/
	position: relative;/*for IE only, must be set so the leftContent floats above the the maincontent, not enough simply to use z-index */
/* cw-Left Content Background */
	background-color: transparent; 
}


#leftMainRight #rightContent { 
	float: right;
	width: 250px;
	padding: 0 0 10px 0;
	margin: 0 0 50px 20px;
    z-index: 99;/*keep higher than mainContent*/
	border: none;
 	position: relative;/*for IE only, firefox allows the section rules to layer beneath it, otherwise they run on top, regardless of z-index*/
/* cw-Right Content Background */
	background: #EEEEEE;
	/*required to couple with the above declaration, to give appearance of lines stopping before the right content*/
}

body#leftMainRight.framed0 #mainContent,
body#leftMainRight.framed1 #mainContent  {
	margin: 0 20px;
	padding: 30px 0px 10px 200px;/*firefox requires padding to move it (margin forced the right content down as well). Conversely, IE requires using margin for same effect (see rule in IE hack section)*/
 	z-index: 98;
}

/*Targetting IE only, to alter the original settings above*/
* html #leftMainRight #mainContent  {
	padding-top: 0px;
	margin-top: 30px;/*IE requires margin to move it down (padding forced the right content down as well). Conversely, firefox requires using padding for same effect */
}


/*layoutLogic for page with 2 columns: main content and right content (no left content) */  

#mainRight #leftContent  {
	display: none;
}

#mainRight #rightContent { 
	float: right;
	width: 250px;
	padding: 0 0 10px 0px;
	margin: 0 0 50px 10px;
    z-index: 99;/*keep higher than mainContent*/
	border: none;
 	position: relative;/*for IE only, firefox allows the section rules to layer beneath it, otherwise they run on top, regardless of z-index*/
/* cw-Right Content Background */
	background: #EEEEEE;
}

#mainRight #mainContent  {
	margin: 0 20px 0 20px;/*assigning the margin-left makes the div sit against the leftContent div, remains consistent as a left margin setting across all layouts*/
	padding: 30px 0 10px 10px;/*firefox requires padding to move it down. Margin forced the right-content down as well. Conversely, IE requires using margin for same effect (see rule below)*/
 	z-index: 98;
 	position:relative;/*for IE Win, to force into 'hasLayout' mode, to stop the section 'jog' when the page was loading*/
}

/*Targetting IE only*/
* html #mainRight #mainContent  {
	padding-top: 0;
	margin: 30px 0 10px 20px;/*IE requires margin to move it down. Padding forced the right-content down as well. Conversely, firefox requires using padding for same effect (see rule above)*/
}

 /*preventing the IE peekaboo bug, see http://www.positioniseverything.net/explorer/peekaboo.html*/
  /*Holly Hack, IE only, to force into 'hasLayout' mode and fix the peekaboo bug*/
  /* Hide the rule from IE5-mac \*/
* html #mainRight #mainContent  {
	 height: 1px;
}
/* End hide from IE5-mac */ 

/*layoutLogic for page with one column: NO left or right content, only main content */  

#main #leftContent  {
	display: none;
}

#main #rightContent { 
	display: none;
}

#main #mainContent  {
	margin: 30px 20px 10px 20px;
 /*preventing the IE peekaboo bug, see http://www.positioniseverything.net/explorer/peekaboo.html*/
 /*to stop the section 'jog' when the page loads*/
	position:relative;
/*end prevent IE peekaboo bug*/
}

 /*preventing the IE peekaboo bug, see http://www.positioniseverything.net/explorer/peekaboo.html*/
  /*Holly Hack, IE only, to force into hasLayout mode and fix the peekaboo bug*/
  /* Hide the rule from IE5-mac \*/
* html #main #mainContent  {
	 height: 1px;
}
/* End hide from IE5-mac */ 


/*
===========================================================
NESTED OUTER CONTAINERS
=========================================================== 
*/

/*the perimeter of the entire viewport, allows flexibility for another 'layer', especially good for including background imagery*/
#perimeter {
	position: absolute;
	top: 38px;
	left: -1px;
	right: 0px;
	height: auto;
	width /**/ : 100%;/*comment hack needed only for IE5.x, Caution: may be ignored by IE7 and may invoke a horizontal scrollbar*/
}

#outerContainer {
	text-align: left;/*converts the text-alignment back to left-align, ie. because the  body tag must originally be set to center*/
	margin: 20px auto;/*if centering using only auto for all sides gte IE6 invokes a horizontal scrollbar*/
	padding: 20px 0 0 0;
	height: auto;
	width: 768px;
/* cw-Page Background */
	background-color: #FFFFFF;
	/*color above is usually transparent in case a pattern is set in a parent container*/
	/*as required*//*background: url(replaceWithImage.gif) 0px 0px repeat-y; curtain-drop graphic to simulate background margin or column colour*/
	border: solid white;
	border-width: 3px;
}

body.framed0 #innerContainer,
body.framed1 #innerContainer {
/* cw-Page Background */
	background: #FFFFFF;
	margin: 0 auto;/*centering*/
	width: 100%;
	position: relative;
	min-width: 760px;/*for compliant browsers*/
	border-width: 0px;
	border-style: solid;
/* cw-Inner Container Outline */
	border-color: transparent;
	border-top: none;
	border-bottom: none;
}

 /* Hide the rule from IE5-mac \*/
 /*preventing the IE peekaboo bug, see http://www.positioniseverything.net/explorer/peekaboo.html*/
  /*Holly Hack, IE only, to force into hasLayout mode and fix the peekaboo bug*/
* html #innerContainer {
	height: 1px;/*prevents IE bug from overlapping of footer*/
}
/* End hide from IE5-mac */ 


/*
===========================================================
HEADER
=========================================================== 
*/

#header {
	height: 156px;
	position: relative;
	width: auto;
	z-index: 99;/*so that the navigation is always layered above the content below*/
/* cw-Header Background */
	background: #000000;
}


/*
===========================================================
HEADERLEAD
=========================================================== 
*/

#headerLead {
	margin: 0px;
}

/*
===========================================================
search
=========================================================== 
*/

#searchContainer {
	width: auto;
	height: auto;
	float: right;
	position: absolute;
	top: 115px;
	right: 20px;
	background-color: transparent;
/* cw-Search Box Border */
	border-color: #CCCCCC;
	border-width: 0px;
	border-style: solid;
	margin-top: 0px;
	padding: 0px;
}

#searchForm {
	text-align: left;
}

.searchTextField {
	width: 120px;
}

.searchInputButton {
	/*color: #000000;
	margin: 5px 0 0 0;*/
	font-family: Arial, Verdana, sans-serif;
    font-size: 90%;
    font-weight: bold;
    color: #FFF;
    background: #F00;
    text-transform: uppercase;
    vertical-align: middle;
}

.searchCheckbox {
	margin: 4px 5px 0 0;
	padding: 0;
	float:left;
}

#searchContainer  p {
	margin-top: 0 !important;
	margin-top: 3px;
	padding: 0;
}

.imageButton  {
    font-family: Arial, Verdana, sans-serif;
    font-size: 90%;
    font-weight: bold;
    color: #FFF;
    background: #F00;
    text-transform: uppercase;
    vertical-align: middle;
}




/*
===========================================================
upper navigation area
=========================================================== 
*/
#upperNavigation {
	height: 40px;
/* cw-Upper Navigation Bottom Border  */
	border-bottom-color: #FF0000;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	width: auto;
/* cw-Upper Navigation Background */
	background: #1F2325;
	/*url(lightRounded.gif) center bottom repeat-x;*/
	z-index:100;
	margin: 0;
	padding: 0;
	position:relative;
	top:-20px;
}


/*
===========================================================
instance navigation
=========================================================== 
*/

#instanceNav  {
	float: left;
	position: absolute;
	top: -20px;/*rising above the innerContainer parent top border*/
	left: 0px;
/* cw-Instance Nav Background */
	background: transparent
	url(blackGreyGradation.gif) 40px 0px repeat-x;
	/*url(darkRounded.gif) 0 0 repeat-x;*/
	height: 40px;/*Firefox requires an explicit height*/
	margin:0;/*IE requires explicit margin on all levels of list*/
	font-size: 11px;
	padding: 0;
	z-index: 100;
}

/*
===========================================================
reference links
=========================================================== 
*/

#referenceLinks  {
	position: absolute;
	top: 11px;
	right: 0px;
	float: right;
	margin:0;/*IE requires explicit margin on all levels of list*/
	font-size: 11px;
}

#referenceLinks ul {
	float: left;
	list-style-type: none;
	height: 20px;
	margin:0;/*IE requires explicit margin on all levels of list*/
	padding:0;/*Firefox uses 20px padding by default */
}

#referenceLinks li {
	display: inline;
	white-space: nowrap;
	margin:0;/*IE requires explicit margin on all levels of list*/
/* cw-Reference Links Vertical Lines */
	border-right-color: #FFFFFF;
	border-right-width: 1px;
	border-right-style: solid;
	padding: 0 10px;
}

#referenceLinks li.firstItem {
	border-left: none;
}

 #referenceLinks li.lastitem {
	border-right: none;
}

#referenceLinks a:link,
#referenceLinks a:visited
 {
	text-decoration: none;
	white-space: nowrap;
	margin:0;/*IE requires explicit margin on all levels of list*/
/* cw-Reference Links Text */
	color: #FFFFFF;
}

#referenceLinks a:hover {
/* cw-Reference Links Hover Background */
	background-color: transparent;
	text-decoration: underline;
}




/*
===========================================================
hierarchy navigation
=========================================================== 
*/

#orgHierarchyNav  {
	float: right;
	font-size: .9em;
	margin:0;/*IE requires explicit margin on all levels of list*/
	padding: 0;
	line-height: 1.8em;
}

#orgHierarchyNav ul  {
	float: left;
	list-style-type: none;
	height: 20px;
	margin:0;/*IE requires explicit margin on all levels of list*/
	padding: 0;
}

#orgHierarchyNav li  {
	display: inline;
	white-space: nowrap;
/* cw-Org Hierarchy Nav Links Vertical Lines */
	border-left-color: #666666;
	border-left-width: 1px;
	border-left-style: solid;
	margin:0;/*IE requires explicit margin on all levels of list*/
	padding: 0 10px;
}

#orgHierarchyNav li.firstItem  {
/* cw-Org Hierarchy Nav Link Text */
	color: #000000;
	padding-right: 10px;/*when overall div #orgHierarchyNav is floated right use padding-right, but if it is floated left, make the padding-left instead*/
	border-left: none;
}

#orgHierarchyNav li.lastitem  {
/*as required*/
}

#orgHierarchyNav a:link,
#orgHierarchyNav a:visited  {
	text-decoration: none;
	white-space: nowrap;
	margin:0;/*IE requires explicit margin on all levels of list*/
	padding: 0;
/* cw-Org Hierarchy Nav Link Text */
	color: #000000;
}

#orgHierarchyNav a:hover  {
/* cw-Org Hierarchy Nav Link Hover Background */
	background-color: transparent;
	text-decoration: underline;
}

	
	

/*
===========================================================
title block
=========================================================== 
*/

#titleBlock {
	position: absolute;
	top: 153px;
	left: 4px;
	padding: 10px;
	color: #FFFFFF;
	z-index: 99;
	width: 473px;
}

body.framed1 #titleBlock {
	position: absolute;
	top: 20px;
	left: 20px;
}

#titleBlock ul {
	list-style-type: none;
	margin:0;
	padding:0;
}

#titleBlock li {
	font-weight: normal;
	margin:0;
	padding:0;
	display:block;
}

li#titleInstance {
	font-size: .8em;
	display:block;
	position: relative;
	text-transform: uppercase;
}

li#titleSite {
	font-size: 1.8em;
}

li#titlePage {
	font-size: .8em;
}




/*
===========================================================
identity
=========================================================== 
*/

#identity {
	position: absolute;
	top: 20px;
	left: 0px;
	z-index: 99;
	padding:0;
	width: 180px;/* the width of the margin, or an 'optical' adjustment to appear centered */
	height: 97px;/* minimum the height of the logo graphic */
	text-align: center;
/* cw-Identity Background */
	background: transparent;
 }
 
 body.framed2 #identity {
	top: 0px;
 }
 
 #identity img {
	margin: 0;
}

 #identity a:hover,
  #identity a:visited hover  {
	border: none;
	background-color: transparent;
}


/*
===========================================================
feature
=========================================================== 
*/

#feature { 
	margin:0;
	padding:0;
 }
 
 #feature img {
	 margin:0;
}


/*
===========================================================
header image
=========================================================== 
*/

img#banner {
	float: right;
	z-index:10;/*so that it is layered below the breadcrumbs and TOC*/
}



/*
===========================================================
HEADER TAIL
=========================================================== 
*/

#headerTail {
	margin: 0;
	width: 100%;
	position: absolute;
	left: 0;
	top: 160px;
	overflow: visible;
/* cw-Horizontal Menu Strip Background */
	background:  #666666
	url(largeDarkRounded.gif) 0 0 repeat-x;
	height: 50px;
/* cw-Horizontal Menu Strip Border Top */
	border-top-color: #000000;
	border-top-width: 0px;
	border-top-style: solid;
/* cw-Horizontal Menu Strip Border Bottom */
	border-bottom-color: #000000;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	z-index: 98;
}

/*
===========================================================
breadcrumbs navigation
=========================================================== 
*/

#breadcrumbs  {
	font: .8em arial;
	margin:0;/*IE requires explicit margin on all levels of list*/
	padding: 0;
	height: 22px;/* so that any hover-invoked background colours have a boundary*/
	position: absolute;
	top: 0px;
	left: 0px;
	width: 766px;
	height: 40px;

/* cw-Breadcrumb non-anchored text */
	color: #FFFFFF;

}

#headerTail #breadcrumbs  {
/*relative to headertail, in horizontal version*/
	top: -30px;
	left: 1px;
}

body.framed1 #headerTail #breadcrumbs {
	left: 20px;
}

#breadcrumbs ul  {
	list-style-type: none;
	margin:0;/*IE requires explicit margin on all levels of list*/
	padding:0;/*Firefox uses 20px padding by default */
	z-index: 100;
}

#breadcrumbs li {
	float: left;
	white-space: nowrap;
	margin:0;/*IE requires explicit margin on all levels of list*/
}

#breadcrumbs li.firstItem {
	font-weight: bold;
	margin-right: 5px;
/* cw-Breadcrumb You are Here Intro Text */
	color: #FF0000;
}

#breadcrumbs a:link,
#breadcrumbs a:link:visited {
/* cw-Breadcrumb Links Text */
	color: #FFFFFF;
	text-decoration: none;
	margin:0;/*IE requires explicit margin on all levels of list*/
}

#breadcrumbs a:hover {
	text-decoration: underline;
/* cw-Breadcrumb Links Hover Background */
	background-color: #666666;
}





/*
===========================================================
TOC navigation
=========================================================== 
*/

#TOC {
	padding: 0;
	margin:0;/*IE requires explicit margin on all levels of list*/
	position: relative;
	font-size: .9em;
	width:auto;
}



/*
===========================================================
TOCHorizontal
=========================================================== 
*/

#TOCHorizontal {
	position: absolute;
	top: 5px;
	right: 20px;
	padding : 0;
	margin:0;/*IE requires explicit margin on all levels of list*/
	height: 36px;
	width: 450px;
}

#headerTail #TOCHorizontal {
	margin-left:220px;/*same distance as the left content column */
}

#TOCHorizontal ul {
	list-style-type: none;
	text-align: right;/*so that when the browser is resized smaller, the links wrap to more than one line, aligned right*/
	margin:0;/*IE requires explicit margin on all levels of list*/
	padding:0;
	float: right;
	z-index: 100;
	height: auto;

}

#TOCHorizontal ul li {
	display: inline;
	margin:0;/*IE requires explicit margin on all levels of list*/
	margin-left: 0px;
	padding: 0;
/* cw-TOC Horizontal Links Vertical Lines */
	border-left-color: #DDDDDD;
	border-left-width: 1px;
	border-left-style: solid;
	line-height: 18px;
		
}

#TOCHorizontal ul li.firstItem {
	border-left: none;
}

#TOCHorizontal ul a,
#TOCHorizontal ul a:visited
 {
/* cw-TOC Horizontal Links Text */
	color: #FFFFFF;
	text-decoration: none;
	padding: 0;
	margin:0;/*IE requires explicit margin on all levels of list*/
	vertical-align: middle;
	padding: 0px 5px;
	white-space: nowrap;/*so that the links doesn't break across two lines*/
}

#TOCHorizontal ul a:hover {
/* cw-TOC Horizontal Links Hover Background */
	background-color: #666666;
	text-decoration: underline;
}




/*
===========================================================
CONTENT
=========================================================== 
*/

#content {
	padding: 0;
	margin: 0;
/* Hide the rule from IE5-mac \*/
/*preventing the IE peekaboo bug, see http://www.positioniseverything.net/explorer/peekaboo.html*/
/*Holly Hack, IE only, to force into hasLayout mode and fix the peekaboo bug*/
	position:relative;
/* End hide from IE5-mac */ 

}




/*
===========================================================
LEFT CONTENT
=========================================================== 
*/

#leftContent p,
#leftContent li
 {
	font-size: .9em;
	line-height: 1.2em;
}

/*prevent shrinkage due to compounding within nested lists*/
#leftContent li li
 {
	font-size: inherit;
	font-size: 1em;
}

#leftContent img {
	margin: 0 0 10px 0;
}

#leftContent img.icon {
	margin: 0;
	border: none;
}


/*
===========================================================
left content lead (for Change Menu Style Link)
=========================================================== 
*/

#leftContentLead {
}

#changeMenu  {
	height: 30px;
	/*preventing the IE peekaboo bug, see http://www.positioniseverything.net/explorer/peekaboo.html*/
	position: relative;
	/*end prevent IE peekaboo bug*/
	text-align: center;
}

#changeMenu a  {
	margin: 0px;
	padding: 2px 0;
	font-size: .8em;
	font-weight: bold;
	text-decoration: underline;
}


/*
===========================================================
left feature
=========================================================== 
*/

.leftFeature {
/* cw-Left Feature Border */
	border-color: #CCCCCC;
	border-width: 1px;
	border-style: solid;
/* cw-Left Feature Background */
	background: #E2E2E2;
	margin: 10px 10px 0 10px;
	padding: 10px;
	font-size: .9em;
	line-height: 1.2em;
	width: auto;
	clear: both;
}

 /* Hide the rule from IE5-mac \*/
 /*preventing the IE peekaboo bug, see http://www.positioniseverything.net/explorer/peekaboo.html*/
  /*Holly Hack, IE only, to force into 'hasLayout' mode and fix the peekaboo bug*/
* html .leftFeature {
	height: 1px;
	}
/* End hide from IE5-mac */ 

.leftFeature a.h2,
.leftFeature td.h2,
.leftFeature h2 a,
.leftFeature h2 a:hover,
.leftFeature a.h3,
.leftFeature td.h3,
.leftFeature h3 a,
.leftFeature h3 a:hover
{
/* cw-Left Feature Section Heading */
	color:#FF0000;
	line-height: 1em;
	background: transparent;
	font-weight: bold;
	text-decoration: none;
	display: block;
	margin: 0;
} 

.leftFeature p {
/* cw-Left Feature Text */
	color: #000000;
	font-size: .9em;
}

.leftFeature a:link {
/*should a different style be required, other than default page link colours*/
}

.leftFeature a:hover {
/*should a different style be required, other than default page link colours*/
}



/*
===========================================================
RIGHT CONTENT
=========================================================== 
*/

#rightContent p, 
#rightContent li {
/*would prefer these to be in em's and so will be scalable. However, they push the left column too wide in IE with large words so I have reverted to pixel dimensions*/
	font-size: .9em;
	line-height: 1.2em;
}


#rightContent img {
	margin: 0 0 10px 0;
}

#rightContent img.icon {
	margin: 0;
}


/*
===========================================================
right feature
=========================================================== 
*/

.rightFeature {
/* cw-Right Feature Border */
	border-color: #333333;
	border-width: 1px;
	border-style: solid;
/* cw-Right Feature Background */
	background: #E5E5E5;
	margin: 10px 10px 0 10px;
	width: auto;
	padding: 10px;
	font-size: .9em;
	line-height: 1.2em;
 }
 
/* Hide the rule from IE5-mac \*/
/*preventing the IE peekaboo bug, see http://www.positioniseverything.net/explorer/peekaboo.html*/
  /*Holly Hack, IE only, to force into 'hasLayout' mode and fix the peekaboo bug*/
* html .rightFeature {
	height: 1px;
	}
/* End hide from IE5-mac */ 

.rightFeature a.h2,
.rightFeature td.h2,
.rightFeature h2 a,
.rightFeature h2 a:hover,
.rightFeature a.h3,
.rightFeature td.h3,
.rightFeature h3 a,
.rightFeature h3 a:hover
 {
/* cw-Right Feature Section Heading */
	color: #333333;
	font-weight: bold;
	line-height: 1em;
}

.rightFeature a:link {
/*should a different style be required, other than default page link colours*/
}

.rightFeature a:hover {
/*should a different style be required, other than default page link colours*/
}


/*
===========================================================
MAIN CONTENT
=========================================================== 
*/

#mainContentLead {
	margin: 0;
	padding:0;
	position: relative;/*to allow positioning of child items (breadCrumbs and TOC in vertical style navigation)*/
	overflow: visible;
}



/*
===========================================================
TOCVertical
=========================================================== 
*/

#TOCVertical ul {
	padding : 0;
	margin: 0;/*IE requires explicit margin on all levels of list*/
}

#TOCVertical ul li {
	margin: 0 0 0 .5em;/*IE requires explicit margin on all levels of list*/
}

  /* Targetting IE only, to provide a more spacious line height*/
* html #TOCVertical ul li {
	line-height: 1.5em;
}

#TOCVertical ul a {
/* cw-TOC Vertical Links Text */
	color: #FF0000;
	text-decoration: none;
}

#TOCVertical ul a:hover {
	text-decoration: underline;
/* cw-TOC Vertical Links Hover Background */
	background-color: #DDDDDD;
}




/*
===========================================================
FOOTER
=========================================================== 
*/

#pageFoot {
/*not used by default, is a good place to put decorative page-bottom design elements*/
height: 3px;
background: #DDDDDD;
}
 
#footer {
	text-align:left;
	margin: 0;
	width:auto;
	padding:10px 20px 20px 20px;
/* cw-Footer top border */
	border-top-color: #000000;
	border-top-width: 2px;
	border-top-style: solid;
/* cw-Footer Bottom Border  */
	border-bottom-color: #000000;
	border-bottom-width: 2px;
	border-bottom-style: solid;
/* cw-Footer background */
	background: #333333
	url(blackGreyGradation.gif) 0 0px repeat-x;
	z-index: 100;/*stops the menu images overlapping footer*/
	font-weight: bold;
}

body.framed2 #footer {
	display:none;
}

#footerInfo {
	margin: 0;
	padding: 0;
}

#footerInfo p {
	margin: 0;
	padding: 0;
	font-size: .9em;
	line-height: 1.4em;
/* cw-Footer Text  */
	color: #FFFFFF;
	}
	
#footerInfo a {
/* cw-Footer Links Text */
	color: #FF0000;
	font-weight: bold;
	margin-right: 10px;
}

#footerInfo a:hover {
/* cw-Footer Links Hover Text */
	color: #EEEEEE;
	background: transparent;
}

/*
===========================================================
footer navigation
=========================================================== 
*/

ul#footerNav {
	float: right;
	list-style-type: none;
}

#footerNav  li {
	float: left;
	padding: 0;
	margin: 0 0 10px 5px;
}

#footerNav  a,
 #footerNav  a:visited {
/* cw-Footer Navigation Links Text */
	color: #FFFFFF;
	padding: 0 5px;
	margin: 0;
	font-size: .8em;
	font-weight: bold;
	text-decoration: none;
}

#footerNav  a:hover {
 /* cw-Footer Navigation Links Hover Text */
	color: #FFFFFF;
	text-decoration: underline;
	background-color: transparent;
}


/* Non-StandardV42 Additions
------------------------------------------------------------------------------------- */


/* referenceLinks Additions
------------------------------------------------------------------------------------- */
div#referenceLinks ul li a.lastitem,
div#referenceLinks ul li a:visited.lastitem {
/* cw-ReferenceLinks Last Item Link */
	color:#FF0000;

