/*
Sections that are hidden when printing the page. We only want the content printed.
*/


body {
color: #000 !important; /* we want everything in black */
background-color:#fff !important; /* on white background */
font-family:arial; /* arial is nice to read ;) */
font-size: 100% !important; /* reset everything */
border:0 !important; /* no borders thanks */
}

/* This affects every tag */
* {
border:0 !important; /* again no borders on printouts */
}

/* 
no need for accessibility on printout. 
Mark all your elements in content you 
dont want to get printed with class="noprint"
*/
.accessibility,
.noprint
 {
display:none !important; 
}

/* 
remove all width constraints from content area
*/
div#wrap,
div#mainContent {
display:block !important;
width:95% !important;
border:0 !important;
margin:0 !important;
padding:1.5em !important;
}

div#header,
div#logo1,
div#logo2,
div#content1,
div#content2,
div#content3 {
   margin:0 !important;
}
div#content2 {
   float: none !important;
   margin:0 !important;
   width:95% !important;
}

/* hide everything else! */
div#lang,
div#search,
div#navbar1,
div#footer1, 
div#footer2,
div#menu_vert,
div#news,
div#sidenav  {
   display: none !important;
}

/* print logo only in header */
div#header  {
	background: none !important;
	height: 65px !important;
}
div#logo1  {
	background: url(../img/superior_logo_1_print.gif) no-repeat left top !important;
	height: 65px !important;
}
div#logo2  {
	background: url(../img/superior_logo_2_print.gif) no-repeat left top !important;
	height: 65px !important;
}

/* revised Sidebar */
#sidebar {
	float: none !important;
}

/* Image Floats */
img {
float:none; /* this makes images couse a pagebreak if it doesnt fit on the page */
}

/* typography*/
p, li {
	font: normal 12px/17px Arial, Helvetica, sans-serif;
}
h1 {
	color: #333;
	font: normal 24px/28px Arial, Helvetica, sans-serif;
}
h2 {
	color: #333;
	font: normal 21px/26px Arial, Helvetica, sans-serif;
}
h3 {
	color: #4382BF;
	font: bold 18px/21px Arial, Helvetica, sans-serif;
}
h4 {
	color: #4382BF;
	font: bold 16px/18px Arial, Helvetica, sans-serif;
}
h5 {
	color: #333;
	font: normal 14px/18px Arial, Helvetica, sans-serif;
}
.intro {
	color: #4382bf;
	font: normal 14px/18px Arial, Helvetica, sans-serif;
}

.hangright {
	margin-right: 0 !important;
}
