/* Main Layout style */

@page { 
    margin-left:   25mm;  
	margin-right:  25mm;
	margin-top:    20mm;  
	margin-bottom: 20mm; 
} 

html, body { 
}

#SectionTitle {
 	/* text string */
    padding-top: 0px !important;
	padding-left:0px !important;
	/* pussing down main text */
    height: 60px !important;
}

#Header{
	height: 60px !important; ;
}


#PrintButton {
	display: none !important;
}

#Footer{ position: fixed !important;}

/*widows and orphans tries to put at least 3 lines of a paragraph on the same page*/
p
{
	widows: 3;
	orphans: 3;
}
/* try to avoid page breaks in tables */
table
{
	page-break-inside: avoid;
}

/*avoid page break in sectionContent(AE paragraphs) */
.SectionContent {page-break-inside: avoid;}

/* Make hyperlinks normal text color */
a
{
	color: inherit;
	text-decoration: none;   
} 



