/* Start of CMSMS style sheet 'Construction : Print' */
/*
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 ;) */
}

/* 
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; 
}

/* hide everything else! */
div.bar,
.form,
.social
.fields,
.nav,
.addthis_toolbox,
.addthis_default_style,
h1 {
   display: none !important;
}

img {
float: none; /* this makes images couse a pagebreak if it doesnt fit on the page */
}

/* Visible Elements */

.logo {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 209px;
	height: 31px;
	display: compact;
}

.logoimg {
	position: relative;
	height: 30px;
	width: 108px;
	background: url(images/logo.png);
	background-position: bottom;
}

.footer {
	text-align: center;
}

.print {
	display: block;
}

.logop {
	padding-bottom: 10px;
}

.info,
.news,
.pbox {
	text-align: justify;
	color: #000;
	height: 100%;
	padding-top: 0px;
	padding: 10px;
}

.news,
.pbox {
	border-top: double #000 1px;
}
/* End of 'Construction : Print' */

