/* $Id: print.css,v 1.4 2009/02/13 06:39:42 johnalbin Exp $ */

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */


/* underline all links */
a:link, a:visited
{
  text-decoration: underline !important;
}

/* Don't underline header */
/*#site-name a:link,
#site-name a:visited
{
  text-decoration: none !important;
}

#site-name a
{
font-size:0px; 
}
*/

/* Hide the Site-Name */
#site-name
{
	display:none;
}

#printheader
{
	display: block; /*Show logo when printing*/
}

/* CSS2 selector to add visible href after links */
#content a:link:after,
#content a:visited:after
{
  content: " (" attr(href) ") ";
  font-size: 0.8em;
  font-weight: normal;
}

/* Un-float the content */
#content,
#content-inner
{
  float: none;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  font-size:18px;
  line-height:1.5em;
}

/* Turn off any background colors or images */
body,
#header, #header-wrapper, #header-inner,
#page, #page-inner,
#main, #main-inner,
#content, #content-inner
{
  color: #000;
  background-color: transparent !important;
  background-image: none !important;
}

/* Hide sidebars and nav elements */
#skip-to-nav, #navbar, #sidebar-left, #sidebar-right,
#block-menu-secondary-links, #content-top, body.front #content-bottom, #content-bottom-top,
#closure-blocks, #block-search-0, #block-block-50,
#block-mvp_blocks-8, #block-mvp_blocks-10, #block-mvp_blocks-11,
#block-secondary_nav_block-6, 
.breadcrumb, div.tabs, .links, .taxonomy,
.fivestar-static-form-item, .book-navigation, .forum-topic-navigation, .pager, .feed-icons
{
  visibility: hidden;
  display: none;
}


/* If you un-comment the "page { overflow-y: hidden; }" ruleset, Firefox clips
   the content after the first page. */
#page
{
  overflow-y: visible;
}

/* page title should be displayed */
#site-name {
	text-indent: 0;
	font-size: 2.8em;
	}
	
#header {
	padding: 0;
	}
	
#header-inner {
	height: auto;
	}
	
#main-wrapper {
	padding: 1em 0;
	}

li {
	font-size:14px;
	line-height:1.2em;
	width:600px;
	}