/* Start of CMSMS style sheet 'Print' */
/*
Sections that are hidden when printing the page. We only want the content printed.
*/


body {
color: #000; /* we want everything in black */
background-color:#fff !important; /* on white background */
font-family:"lucida sans unicode", "lucida sans", lucida, arial, sans-serif; /* arial is nice to read ;) */
border:0 !important; /* no borders thanks */
}

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

/* hide everything else! */
div#nav-wrapper,
div#logo,
div#content-top,
div#content-bottom,
div#hours {
   display: none !important;
}
div#content-block {
	width: auto !important;
}
div#header {
	height: auto !important;
	padding: 0 !important;
}
div#header h1 {
	color: #072543 !important;	
	border-bottom: 2px solid #000 !important;
}
div#wrapper,
div#content-wrapper {
	margin: 0 !important;
	padding: 0 !important;
}
img {
float:none; /* this makes images couse a pagebreak if it doesnt fit on the page */
}
a:focus {
	outline:0;
}
a:link {
	color: #A4A4A4;
}
a:visited {
	color:#A4A4A4;
}
a:active, a:hover {
	color: #fff;
}

.brown {
	color: #805944;
}
.blue {
	color: #3472A9
}
h3 {
	color: #805944;
	font-size: 36px;
}
div#addressBox h5 {
	color: #805944;
	font-size: 24px;
}

h4 {
	color: #805944;
	font-size: 16px;
	font-weight: normal;
}


/* End of 'Print' */

