/* Global Styles--------------------------------*/

body {
	font-family: "Times New Roman", Times, serif; /* Sets the font to one with a serif. Making it easier to read when printed.*/
	font-size: 12pt; /* Sets the font size to 12 points. A print unit of measurement.*/
	background-color: #FFFFFF; /* Sets the background colour to white. Safeguards against printers which do not turn off background printing by default.*/
}
/* Sidebar--------------------------------------*/

#sidebar {
	float: none; /* Avoids printing problems by removing float.*/
	width: 100%; /* Sets the width to 100% of the papers width.*/
}
/* Nav, Subnav and Footer-----------------------*/

#nav, #subnav, #footer {
	display: none; /* By not displaying these divs, they will not be printed.*/
}
/* SideContent----------------------------------*/

#sideContent {
	display: none; /* By not displaying this div, it will not be printed. Reducing ink consumption.*/
}
/* Container------------------------------------*/

#container {
	border-top-style: none; /* Removes border from the top of the container.*/
	border-right-style: none; /* Removes border from the right of the container.*/ 
	border-bottom-style: none; /* Removes border from the bottom of the container.*/
	border-left-style: none; /* Removes border from the left of the container.*/
}
/* ContentI-------------------------------------*/

#contentI {
	margin: 0px; /* Removes the margin from the div.*/
	width: 80%; /* Sets the width to 80%. Causing the images to print smaller. Helping to reduce ink consumption.*/ 
}
/* Content--------------------------------------*/

#content {
	margin: 0px; /* Takes the margin off the div so as to print using the printers default margins.*/
	border-top-style: none; /* Removes the border from the top of the container.*/
	border-right-style: none; /* Removes the border from the right of the container.*/
	border-bottom-style: none; /* Removes the border from the bottom of the container.*/
	border-left-style: none; /* Removes the border from the left of the container.*/
	width: 100%; /* Sets the width to 100% of the paper available.*/
}
/* GalleryNav-----------------------------------*/

#gallerynav {
	display: none; /* By not displaying this div, it will not be printed.*/
}
