/* $Id: print.css,v 1.1.2.1 2009/02/13 06:40:02 johnalbin Exp $ */

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

/* 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
  {
    margin: 30px 0 0 0 !important;
    padding: 0 !important;
    border-left: none !important;
  }

/* Turn off any background colors or images */
  body,
  #page, #page-inner,
  #main, #main-inner,
  #content, #content-inner
  {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
    font-size: 12pt;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
  }
  
  #content {
    margin-bottom: 10px;
  }
  
  h1, h2, h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin: 10pt 0;
  }

/* Hide sidebars and nav elements */
  #skip-to-nav, #navbar, #block-menu_block-1, #sidebar-right, #footer,
  .breadcrumb, div.tabs, .links, .taxonomy,
  .book-navigation, .forum-topic-navigation, .pager, .feed-icons,
  #header-blocks
  {
    visibility: hidden;
    display: none;
  }

/* Otherwise, Firefox clips the content after the first page. */
  #page
  {
    overflow-y: visible;
  }
  
#header {
  background-image: none;
}

#content-bottom,
#sidebar-left {
  display: none;
}

#content-area ul li {
  list-style-type: disc;
  margin-left: 10px;
  padding-left: 10px;
}


