/* Printer Style Sheet */

/* Lose the white space */

body, #wrapper, #content, #data, #spreadsheet {
	margin: 0;
	padding: 0;
}


/* Use white background black Arial */
body {
	background-color: #FFFFFF;
	font-family: "Arial Narrow", Arial, sans-serif;
	font-size: 8pt;
}

/* Switch off extraneous items and navigation */
#menu, #menu ul, #menu lu li, #feedback, #trailinglinks, #masthead { 
	display: none;
}

/* Display print logo */

#logo {
	position: relative;
	left: 0px;

}	

/* Headings */
#content h1, #data h1  {
	font-family: Arial;
	font-size: 16pt;
	font-weight: bold;
	color: #000000;
	margin: 0px;
}

#content h3, #data h3  {
	font-family: Arial;
	font-size: 12pt;
	font-weight: bold;
	color: #000000;
	margin: 0px;
	text-align: center;
	text-decoration: underline;
}

/* Lighten up spreadsheet borders, remove left table border, which prints where not wanted, set class for left border */
table#spreadsheet {
	margin: 0;
	padding: 0;
	width: 100%;
	border-collapse: separate;
	border-color: #CCCCCC;
    border-width: 0 0 1px 0;
    border-style: solid;
}
table#spreadsheet th {
	border: 0;
	padding: 2px;
	margin: 0;

}
table#spreadsheet td {
	border-color: #CCCCCC;
	border-width: 1px 1px 0 0;
	border-style: solid;
	padding: 2px;
	margin: 0;
}

table#spreadsheet .firstblankrow {
	border-bottom:  4px double #CCCCCC;
	border-right: solid 1px #FFFFFF;
	border-left: solid 1px #FFFFFF;
}

table#spreadsheet .noborder {
	border-right: solid 1px #FFFFFF;
	border-left: solid 1px #FFFFFF;
}

table#spreadsheet .leftBorder {
	border-left: solid 1px #CCCCCC;
}

table#spreadsheet .blue {
	color: blue;
}

table#spreadsheet .blueLeft {
	color: blue;
	border-left: solid 1px #CCCCCC;
}

table#spreadsheet .grey {
	background-color: #e2e2e2;
}

