/* @override
	http://www.livingwatercollege.com/resources/css/html-elements.css
*/


/* $Id$ */
 
/****
 **** HTML ELEMENT STYLING
 ****/
 
 
/** fonts **/
  /*
   * Our font size and line height declarations are based on the following ALA
   * article:
   *   http://www.alistapart.com/articles/howtosizetextincss
   *
   * All modern browsrs use a 16px default font size. Specifying the font-size
   * and line-height in ems (relative to the 16px default font) allows the user
   * to resize the font in the browser and produces the most consistent results
   * across different browsers.
   */
  body
  {
    font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
  }
  html>body {
  	font-size: 16px;
  }
 
  #wrapper
  {
    /*
     * To use a 12px font size on the page, delete the 14px declarations.
     * to use a 14px font size on the page, delete the 12px declarations.
     */
     
    /* Use a 14px base font size with a 22px line height */
    font-size: 0.875em; /* 16px x .875 = 14px */
    line-height: 1.571em; /* 14px x 1.571 = 22px */
  }
 
  body, caption, th, td, input, textarea, select, option, legend, fieldset
  {
    /* The following font family declarations are based on the Microsoft core
     * web fonts which are common fonts available on most computer systems. The
     * Bitstream Vera fonts are commonly available on Linux systems where the MS
     * fonts are less common.
     *
     * A user's web browser will look at the comma-separated list and will
     * attempt to use each font in turn until it finds one that is available
     * on the user's computer. The final "generic" font (sans-serif or serif)
     * hints at what type of font to use if the web browser doesn't find any
     * of the fonts in the list.
 
    font-family: "Times New Roman", Times, Georgia, "Bitstream Vera Serif", serif;
    font-family: Times, "Times New Roman", Georgia, "Bitstream Vera Serif", serif;
    font-family: Georgia, "Times New Roman", "Bitstream Vera Serif", serif;
 
    font-family: Verdana, Tahoma, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
    font-family: Tahoma, Verdana, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
    font-family: Helvetica, Arial, "Bitstream Vera Sans", sans-serif;
    font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
 
    font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
 
     */
  }
 
  pre, code
  {
    font-size: 1.1em; /* Monospace fonts can be hard to read */
    font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
  }
 
/** headings **/
  h1
  {
    font-size: 2em; /* 14px x 2 = 28px */
    line-height: 1.571em; /* 28px x 2 = 44px */
    margin-top: 0em; /* 14px x 0 = 0px */
    margin-bottom: 0.857em; /* 14px x .857 = 12px */
    /* 0.5em is equavalent to 1em in the page's base font.
     Remember, a margin specified in ems is relative to
     the element's font-size, not to the pages' base
     font size. So, for example, if we want a 1em margin
     (relative to the base font), we have to divide that
     length by the element's font-size:
     1em / 2em = 0.5em */
  }
 
  h2
  {
    font-size: 1.571em; /* 14px x 1.571 = 22px */
    line-height: 1em;	/* 22px x 1 = 22px */
    margin-top: 1.5em;	/* 22px x 1.5 = 33px */
    margin-bottom: 0.5em; /* 22px x 0.5 = 11px */
  }
 
  h3
  {
    font-size: 1.286em; /* 14px x 1.286 = 18px */
    line-height: 1.222em; /* 18px x 1.222 = 22px */
    margin-top: 1.833em;	/* 18px x 1.833 = 33px */
    margin-bottom: 0.611em;	/* 18px x 0.611 = 11px */
  }
 
  h4, h5, h6
  {
    font-size: 1em; /* 14px x 1 = 14px */
    line-height: 1.571em; /* 14px x 1.571 = 22px */
    margin-top: 2.357em; /* 14px x 1.571 = 33px */
    margin-bottom: 0.786em; /* 14px x 1.571 = 11px */
  }
  
  h1, h2, h3, h4, h5, h6
  {
  	/*font-weight: normal;*/
  	font-family: "Palatino Linotype", Palatino, Georgia, "Times New Roman", "Bitstream Vera Serif", serif;
  	color: rgb(50,50,50);
  }
 
/** block-level elements **/
  p, ul, ol, dl, pre, table, fieldset, blockquote
  {
    margin: 0 0 1.571em 0; /* 14px x 1.571 = 22px */
  }
  
  sub, sup {
  	line-height: 0;
  }
 
/** lists **/
  /* standardize list item indentation */
  ul, ol
  {
    margin-left: 0;
    padding-left: 2em;
  }
 
  .block ul, /* Drupal overrides */
  .item-list ul
  {
    margin: 1em 0;
    padding: 0 0 0 2em;
  }
 
  ul ul, ul ol,
  ol ol, ol ul,
  .block ul ul, .block ul ol,
  .block ol ol, .block ol ul,
  .item-list ul ul, .item-list ul ol,
  .item-list ol ol, .item-list ol ul
  {
    margin: 0;
  }
 
  li
  {
    margin: 0;
    padding: 0;
  }
 
  .item-list ul li /* Drupal override */
  {
    margin: 0;
    padding: 0;
    list-style: inherit;
  }
 
  ul.menu li, /* Drupal override */
  li.expanded,
  li.collapsed,
  li.leaf
  {
    margin: 0 0 .25em 0;
    padding: 0;
  }
 
  ul          { list-style-type: disc; }
  ul ul       { list-style-type: circle; }
  ul ul ul    { list-style-type: square; }
  ul ul ul ul { list-style-type: circle; }
  ol          { list-style-type: decimal; }
  ol ol       { list-style-type: lower-alpha; }
  ol ol ol    { list-style-type: decimal; }
 
  dt
  {
    margin: 0;
    padding: 0;
  }
 
  dd
  {
    margin: 0 0 0 2em;
    padding: 0;
  }
 
/** links **/
  /* The order of link states are based on Eric Meyer's article:
   * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
   * Modified to combine hover/active, link/visited states
   */
   
  div.mainbody a {
	font-weight: bold;
  }
  div.mainbody a:link,
  div.mainbody a:visited {
	text-decoration: none;
/*	color: rgb(130,0,43);*/
  }
  div.mainbody a:hover,
  div.mainbody a:active,
  div.mainbody a:focus {
  	text-decoration: underline;
  /*	color: rgb(130,0,43);*/
  }
  
  a:link,
  a:visited
  {
  }
 
  a:hover,
  a:focus,
  a:active
  {
  	text-decoration: underline;
  }
 
/** tables **/
  /* Override Drupal default CSS */
  table
  {
    border-collapse: collapse;
    border-width: 0;
    /* width: 100%; */ /* Prevent cramped-looking tables */
  }
 
  th,
  thead th,
  tbody th
  {
    text-align: left;
    padding-right: 0;
    border-bottom: none;
  }
 
  tbody
  {
    border-top: none;
  }
 
/** abbreviations **/
  abbr
  {
    border-bottom: 1px dotted #666;
    cursor: help;
    white-space: nowrap;
  }
 
  /* Date-based "abbreviations" show computer-friendly timestamps which are not
     human-friendly. */
  abbr.created
  {
    border: none;
    cursor: auto;
    white-space: normal;
  }
 
/** images **/
  img
  {
    border: 0;
  }
 
/** horizontal rules **/
  hr
  {
    height: .071em; /* 14px x .071 = 1px */
    border: .071em solid #666; /* 14px x .071 = 1px (2px top/bottom) */
    margin-top: 2.929em; /* 14px x 2.929 = 41px */
    margin-bottom: 2.357em; /* 14px x 2.357 = 33px */
  }
 
/** forms **/
  form
  {
    margin: 0;
    padding: 0;
  }
 
  fieldset
  {
    margin: 1em 0;
    padding: 0.5em;
  }