/*

 Print stylesheet

 floated elements must be disabled to avoid print-related bugs
 http://www.alistapart.com/articles/goingtoprint/
 
*/

#content-main #content-block,
#content-left,
#content-right {
 float:none !important;
}

html>body .column {
 /* mozilla has a more serious float-related print bug */
 float:none !important;
}

.divider {
 border:1px solid #fff;
 clear:both;
 float:none;
}

html, body {
 background:#fff;
}

.screen-only {
 display:none;
}

.print-only {
 display:block;
}

#logo {
 left:20px;
}

#nav-top,
#nav-left,
#persistent-nav,
#footer {
 display:none;
}

