/* Start of CMSMS style sheet 'theme : 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: candara, Arial, Helvetica, sans-serif;
border:0; /* no borders thanks */
padding:0;
marging:0;
}

a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #E37222; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
   color: #E37222;
}


a:hover {
   text-decoration: underline;
   color: #E37222;
}

div#printtop{
	float:right;
	clear:both;
	border:1px solid #000;
	margin:0 0 0em 0;
	}
	
div#printfooter{
	float:right;
	clear:both;
	color:#666 !important;
	margin-top:4em;
	}

/* 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
*/
#holder{margin:5em 0 0 0;}
div#content,
div#main {
display:block !important;
width:100% !important;
border:0 ;
padding:1em;
}

/* dynamo segment dk */

div#imageholder{
	float:left;
	width:100%;
}

div#imageholder table {
	float:left;
	margin-right:1em;
	clear:both;
	width:33%;
}

div#imageholder{
	float:left;
}

div#imageholder a{
	font-weight:bold;
}

div#textholder{
	float:left;
}

div.productholder{
	float:left;
	width:33%;
	}

div#pica {
	clear:both;
	float:left;
	}
	
div.mootabs_panel {
	clear:both;
	float:left;
	}
	
.mootabs_panel.active {
	clear:both;
	float:left;
	}
	
#tabnavigate { display:none;}

/* hide everything else! */
div#header,
div#header h1 a,
div.breadcrumbs,
div#search,
div#footer,
div#menu_vert,
div#news,
div.right49,
div.left49,
div#sidebar  {
   display: none !important;
}

div#top_vert {display: none !important;}
div#topside {display: none !important;}
div.footercell {display: none !important;}
div#main_vert ul{display: none !important;}
div#background_vert{display: none !important;}
img {

}
/* End of 'theme : Print' */

