/*
 * $Id: print.css,v 1.7 2006/01/30 19:57:32 fabian Exp $
 *
 * Default style sheet for printing
 *
 * This file is part of GRIPS, a resource information and planning system
 * Copyright 2005 GRIPS development team <dev@grips.cc>
 * More information: http://grips.cc/
 *
 * See the enclosed file LICENSE for license information (GPL). If you
 * did not receive this file, see http://www.gnu.org/copyleft/gpl.html.
 */

/* General definitions */
  body
  {
    margin: 2em;
    padding: 0;
    font-family: verdana, arial, hevetica, sans-serif;
  }
  
  html, body {height: 100%;}
  
  img {
    display: none;
  }
  
  table, input 
  {
    font: 100% verdana, arial, helvetica, sans-serif;  
  }
  
  table
  {
    text-align: left;
  }

  a:link 
  { 
	color: #000;
	text-decoration:none; 
  }
  
  a:visited { 
    color: #000;
  	text-decoration:none;
  }
  
  a:hover, a:active
  {
    color: #000;
    background-color: #aaa;
    text-decoration:none;
  }
  
  h2
  {
    color: #B52C07;
    font-family: verdana, arial, hevetica, sans-serif;
    font-weight: bold;
    margin: 0 0 2px 0;
  }
  
  h2 a { text-decoration: none; }
  
  h3
  {
    color: #5B5E0E;
    font-family: verdana, arial, hevetica, sans-serif;
    font-weight: bold;
    margin-top: 0;
  }

/* Main site container */ 
  #container
  {
    width: 100%;
    min-height: 100%;
    text-align: left;
  }
  
/* Header bar */ 
  #header
  { 
    background-color: #555;
    border-bottom: 2px solid #fff;
    padding: 5px;
  }
  
  #header h1
  {
    text-align: left;
    color: #fff;
    margin: 0;
    margin-left: 55px;
    padding: 0;
  }
  
  #header h2
  {
    text-align: left;
    color: #fff;
    margin: 0;
    margin-left: 55px;
    margin-top: 5px;
    padding: 0;
  }

/* Primary navigation, disabled for printing */ 
  #primarynav
  {
    background-color: #729FCF;
    margin-left: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: none;
  }
  
  #primarynav ul
  {
    margin: 0 0 0 0px;
    margin-left: 170px;
    padding: 0;
    list-style-type: none;
    border-left: 1px solid #eee;
  }
  
  #primarynav li
  {
    display: inline;
    padding: 0 10px;
    border-right: 1px solid #eee;
  }
  
  #primarynav li a
  {
    text-decoration: none;
    font-weight: bold;
    color: #fff;
  }
  
  #primarynav li a:hover
  {
    text-decoration: none;
    color: #fff;
    background-color: #ddd;
  }

/* Secondary navigation, disabled for printing */
  #secondarynav
  {
    float: left;
    width: 160px;
    height: 100%;
    display: none;
  }
  
  #secondarynav ul
  {
    margin-left: 5px;
    margin-top: 0px;
    padding-left: 0px;
    padding-right: 1px;
    list-style-type: none;
    line-height: 165%;
  }
  
  #secondarynav li
  {
    display: block;
    padding-top: 2px;
    padding-bottom: 2px;
    border-bottom: 1px solid #ddd;
  }
  
  #secondarynav li a
  {
    text-decoration: none;
    color: #000;
 
  }

/* Content area */
  #content
  {
    height: 100%;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    text-align: justify;
  }

/* Messagebox for system messages, disabled for printing */
  #messagebox
  {
    border:1px solid #aaa;
    border-left:4px solid #ccc;
    margin-top: 5px;
    margin-bottom: 5px;
    display: none;
  }
  .info
  {
    background: #D1FFD4;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
  }
  
  .warning
  {
    background: #FFFED1;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
  }
  
  .error
  {
    background: #FFD1D1;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
  }

/* Footer bar */
  #footer 
  {
    clear: both;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    color: #ffffff;
    background-color: #555;
    text-align: center;
  }
  
  #footer a
  {
    text-decoration: none;
    color: #fff;
  }
  