﻿<!--

/*
sits-print.css
This CSS is linked to all new e:vision screens from 7.2.0
It can also be used with e:vision SRLs.
It is linked directly following the sits.css
It is normally used to provide an alternative page header for
printed version of a web page.
This works by hiding any 'screen only' sections which are normally
defined by the client site within their page header (body-start.hts)
and their page footer (body-end.hts)
Commonly, the portal page tabs (navigation menu) would also 
be placed within a 'screenonly' DIV in order to hide them 
when printing a page.
*/


/***************************************************************/
/* Print or Screen Only classes - also listed within sits.css  */
/***************************************************************/
/* to use add a <DIV> with 'sitsscreenonly' or sitsprintonly' class */
/* as required to show or hide DIV while viewing on screen or printing */ 

.sitsscreenonly {
	display:none;
}

.sitsprintonly {
	display:block;
}
-->