/*
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: .7em;
border:0 ; /* no borders thanks */
}

/* This affects every tag */
* {
border: 0; /* 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#content{
display:block !important;
width:100% !important;
border:0 !important;
padding:0 !important;
}

/* hide everything else! */
div#logo,
form#form-search,
div#footer,
div#menu-top,
div#left-col,
div#right-col,
ul#menu-top,
div#page-navigation,
hr  {
   display: none !important;
}
h1 {
	padding: 0;
	margin :0 0 .3em 0;
	font-size: 2.5em;
	line-height: .7em;
}
h1 span {
	font-size: .4em;
}
#breadcrumbs {
border-top: 1pt solid black;
border-bottom: 1pt solid black;
font-size: .75em;
padding: .5em 0;
	
}
h3 {
	font-size: 1.4em;
	border-bottom: 1pt dashed black;
	padding-bottom: .5em;
	margin: 1em 0 .5em 0;
}
h4 {
	font-size: 1.2em;
	border-bottom: 1pt dashed black;
	padding-bottom: .5em;
	margin: 1em 0 .5em 0;
}

img {
float:none;
}
