/* this version for PRINTER styles */
/* and should be identical to display stylesheet except */
/* where some sections are hidden, as commented below */

/* set main page background colour (white) and text colour (black) */
body
	{
	margin: 0px;
	padding: 0px;
	background-color: white;
	font: 11px verdana, tahoma, arial, helvetica, sans-serif;
	color: black;
	}

table, td     
	{
	vertical-align:top;
	text-align: left;
	padding: 0px;
	border: 0px solid black ;
	}

p	{ margin: 0em 0em 0.5em 0em; } /* set space after each paragraph */

img	{ border: 0; } /* by default, images have no border */

a:link, a:visited
	{
	text-decoration:none; /* visited links are NOT underlined */
	color:rgb(116,74,0);  /* visited links are DARK colour */
	}

a:hover
	{
	text-decoration:underline; /* do NOT underline links on hover */
	color:rgb(116,74,0); 	/* change link colour to DARK when hover over it */
	}

h1	{font-size: 1.5em; 	/* largest text is RED, spaced, centered */
	color: rgb(204,0,0); text-align:center;
	margin-bottom: 0.3em; margin-top: 0.3em; }

h2	{font-size: 1.2em; 	/* mid-sized text is DARK, spaced, centered */
	color: rgb(116,74,0); text-align:center; 
	margin-bottom: 0.3em; margin-top: 0.4em; }

h3	{font-size: 1.2em; 	/* alternative mid-sized text is left aligned */
	color: rgb(116,74,0); 
	text-align:left; 
	margin-bottom: 1px; }

hr	{ height: 1px; color:rgb(204,204,153) } /* spacer line is MEDIUM colour */


/* set up main content section in middle of window */
.content
	{
	padding-left:0.5em;
	padding-right:0.5em;
	text-align:justify;
	}

.floatleft		/* put an image or table to the left of a block of text */
	{
	border: 0px solid black;
	margin-right: 5px;
	float:left;
	}

.floatright		/* put an image or table to the right of a block of text */
	{
	border: 0px solid black;
	margin-left: 5px;
	float:right;
	}

.floatleftbordered	/* put an image or table with border to the left of a block of text */
	{
	border: 1px solid rgb(116,74,0);
	margin-right: 5px;
	float:left;
	}

.floatrightbordered	/* put an image or table with border to the left of a block of text */
	{
	border: 1px solid rgb(116,74,0);
	margin-left: 5px;
	float:right;
	}

.floatleftborderedfilled	/* put an image or filled table with border to the left of a block of text */
	{
	background-color: rgb(255,253,218);
	border: 1px solid rgb(116,74,0);
	margin-right: 5px;
	float:left;
	}

.floatrightborderedfilled	/* put an image or filled table with border to the left of a block of text */
	{
	background-color: rgb(255,253,218);
	border: 1px solid rgb(116,74,0);
	margin-left: 5px;
	float:right;
	}

.center	{ text-align: center; }	/* use as <div> to centre images */
	
.eventtable	/* table class for list of events */
	{
	background-color: #fffdda;
	border: 1px solid rgb(116,74,0);
	margin: 1em auto 2em auto;	/* t r b l  using auto l r centres the table */
	}
	
.eventtable td	/* class for each cell in event table applies spacing */
	{
	padding: 0.5em 0.5em 0.5em 0.5em;	/* t r b l */
	}

.eventdate	/* use this class for 1st cell in each row of event table */
	{
	width: 25%;
	font-weight: bold; 
	}
	
.caption	/* class to set small text after an image within text block */
	{
	font-size:0.8em;
	font-style:italic;
	width:175px;
	}

.bordered	/* use this class to add MEDIUM border to image or other object */
	{
	border-width: 1px;
	border-style: solid;
	border-color: rgb(204,204,153);
	}
	
/* end of classes for main content area */

/* these classes are not used, but are listed here to define colours */
/* the colours may be used either for text or backgrounds */
.BG0	{ color:rgb(116,74,0) } 	/* DARK (= #744a00) */
.BG1	{ color:rgb(204,204,153) }	/* MEDIUM */
.BG2	{ color:rgb(196,186,147) }	/* LIGHT-BROWN */
.BG3	{ color:rgb(255,253,218) }	/* VERY LIGHT (= #fffdda) */
.BG4	{ color:rgb(46,46,46) }		/* GREY-BLACK (= #2e2e2e) */
.BG5	{ color:rgb(64,64,64) }		/* DARKER GREY(= #404040) */
.BG6	{ color:rgb(96,96,96) }		/* DARK GREY (= #606060) */
.BG7	{ color:rgb(192,192,192) }	/* GREY (= #c0c0c0) */
.BG8	{ color:rgb(240,240,240) }	/* LIGHT-GREY (= #f0f0f0) */


/* right side news column of main content table */
/* make sure images in this area are no wider than the class width */
.newscell
	{
	width: 175px;
	font-size: 0.9em;
	border: 1px solid rgb(204,204,153);	/* use MEDIUM colour border */
	padding: 0em 0.4em 0.4em 0.4em;	/* t r b l */
	text-align: center;		/* center text in this area */
	}
/* end of news column */


/* top banner table */
#banner
	{
	width: 100%;
	margin: 0px 0px 0px 0px;  /* t r b l */
	padding: 0px;
	background: rgb(255,253,218);	/* set CREAM background colour */
	border-bottom: 1pt solid red; /* RED top and bottom border */
	border-top: 1pt solid red;
	}
	
#banner td	{ vertical-align: middle; }

#banner h1	{ font-size: 2em; }	/* within banner h1 text is larger than usual */

.logocell { width:80px; }	/* holds the left-side ident image */

.blockscell { width:76px; }	/* holds the right-side ident image */
/* end of banner cells */

/* navigation area */
#navbuttonset /* use as <td> not <div> id only */
	{
	display: none;		/* ==== DO NOT PRINT ==== */
	vertical-align:top;
	width:160px;
	margin: 0px;
	background-color:rgb(240,240,240);	/* colour beneath buttons is LIGHT-GREY */
	}

/* Classes for left-side navigation buttons */
/* First define classes for main (large) buttons */
.navbuttontitle
	{
	display: block;
	color: rgb(116,74,0);				/* DARK for title above group of buttons */
	background-color: rgb(255,253,218);		/* VERY LIGHT background for title */
  	border-bottom: 1.5pt solid rgb(116,74,0);	/* DARK border beneath title */
	font-weight: bold;
	margin-top: 0.0em; margin-bottom:-1px;	/* overlap first button margin */
	padding: 1.0em 0.2em 0.1em 0.4em;	/* t r b l */
	}
	
.navbutton { margin: 0.2em 0em 0.1em 0em ;}	/* t r b l */

.navbutton a
	{
	display: block;
	color: rgb(46,46,46);		/* GREY-BLACK text color for navigation buttons */
					/* and background to MEDIUM with matching curve image */
	background: rgb(204,204,153) url(../images/corner_tr_light.jpg) no-repeat top right;
	padding: 1.3em 0.2em 1.3em 0.3em; /* top right bottom left */
	}
  
.navbutton a:hover
	{
	color:white;			/* on hover, change button text to WHITE */
					/* and background to DARK GREY with matching curve image */
	background: rgb(96,96,96) url(../images/corner_tr_grey.jpg) no-repeat top right;
	text-decoration: none;
	}

.navbuttonselected
	{
	font-weight:bold;		/* BOLD the button text if we are on that page link */
	margin-top: 0.2em; margin-bottom:0.1em;
	}

.navbuttonselected a
	{
	display: block;
	color:white;			/* set WHITE text when on selected page */
					/* and background to DARK with matching curve image */
	background: rgb(116,74,0) url(../images/corner_tr_dark.jpg) no-repeat top right;
	text-decoration: none;
	padding: 1.3em 0.2em 1.3em 0.3em; /* top right bottom left */
	}

.navbuttonselected a:hover
	{
	color:white;			/* on selected page, hover same as non-selected */
	background: rgb(96,96,96) url(../images/corner_tr_grey.jpg) no-repeat top right;
	text-decoration: none;
	}
/* end of main button classes */

/* Define smaller navigation buttons for sub-menus */	
.navbuttonsub	{ margin: 0 0 1px 0 ;}		/* t r b l */

.navbuttonsub a
	{
	display: block;
	color: rgb(46,46,46);		/* GREY-BLACK text on sub-menu buttons */
	background: rgb(196,186,147);	/* LIGHT-BROWN sub-menu buttons */
	font-size: 0.9em;		/* and slightly smaller text */
	padding: 0.2em 0.1em 0.2em 0.7em; /* top right bottom left */
	}

.navbuttonsub a:hover
	{
	color:white;			/* on hover, change text to WHITE */
	background: rgb(96,96,96) ;	/* and background to DARK GREY */
	text-decoration: none;		/* with no underline */
	}
  
.navbuttonsubselected
	{
	color:white; font-size:0.9em;
	font-weight:normal;		/* do not make the sub-menus bold when selected */
	margin: 0 0 1px 0 ;		/* t r b l */
	}
  
.navbuttonsubselected a
	{
	display: block;
	color: white;			/* WHITE text when on selected page */
	background: rgb(116,74,0) ;	/* and DARK background too */
	text-decoration: none;
	padding: 0.2em 0.1em 0.2em 0.7em; /* top right bottom left */
	}
/* end of classes for sub-menu navigation */	

/* class for accessibility stuff at foot of nav area on home page */  
 .navfooter 
	{
	display: none;		/* ==== DO NOT PRINT ==== */
	padding-left:0.5em;
	padding-right:0.5em;
	background-color:rgb(240,240,240);
	font-family:verdana,helvetica,arial,sans-serif; 
	font-size:0.8em; 
	color:rgb(0,0,0);
	margin-top:15em;
	text-align:left
	}

/* page footer text links and copyright stuff for every page */
.pagefooter
	{
	display: none;		/* ==== DO NOT PRINT ==== */
	font-size: 0.9em;
	color: rgb(64,64,64);		/* DARKER-GREY for text */
	background-color: rgb(240,240,240);	/* background is LIGHT-GREY */
	text-align: center;
	margin-top: 0em;
	padding: 0.5em 0em 0.5em 0em;	/* t r b l */
	}

.pagefooter a
	{
	color: rgb(64,64,64);		/* DARKER-GREY for link text */
	background-color: rgb(240,240,240);	/* background is LIGHT-GREY */
	text-decoration: underline;
	}
	
.pagefooter a:hover
	{
	text-decoration: underline;
	background-color: rgb(192,192,192);	/* on hover change to GREY background */
	}
	