/* $Id: html-elements.css,v 1.1.2.2 2009/02/13 19:42:10 johnalbin Exp $ */

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

  #page
  {
    /*
     * 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 12px base font size with a 16px line height */
    font-size: 0.75em; /* 16px x .75 = 12px */
    line-height: 1.333em; /* 12px x 1.333 = 16px */

    /* Use a 14px base font size with a 18px line height */
    font-size: 0.875em; /* 16px x .875 = 14px */
    line-height: 1.57em; /* 14px x 1.57 = 22px */
		
		color:#333333;
  }

  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;

     */

    font-family: Verdana, Arial, Helvetica, Tahoma, "Bitstream Vera Sans", sans-serif;
  }

  pre, code
  {
    font-size: 1.1em; /* Monospace fonts can be hard to read */
    font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
  }

/** headings **/

	#content h1, #content h2, #content h3, #content h4 { padding-top:10px;}
    #content h1 { margin: 0 0 0px; font-size: 32px; line-height: 1.1em; color: #333333;}
	#content h2 { margin: 0px 0 10px; font-size: 1.25em ;	color: #333333; line-height:1.2em;}
	#content h3 { margin: 15px 0 10px; font-size: 1em;	color: #333333;}
	#content h4 { margin: 15px 0 10px; font-size: 18px;	color: #333333;}
	#content p { margin: 0 0 10px; line-height:1.571em; }
	
	#content table { margin: 10px 0;}
	#content th { background: #cccc99; padding: 5px; font-weight: bold;}
	#content td { padding: 5px; border-top: 1px solid #8da8bd;}
	
	#content ul { margin: 10px 0 0 0px; list-style:disc; }	
	#content ol { margin: 10px 0 0 0px; list-style: decimal;}
	#content li { line-height: 20px; padding-bottom: 15px; }
	#content ul li { padding: 0 0 6px 0; margin: 0 4px;}
	#content ol ul li {	padding: 0 0 6px 0; margin: 0 4px 0 0; }
	#content ol li { padding: 0 0 6px 0; margin: 0;	}
		
	
/*BlockQuotes*/
	blockquote.indented-line, blockquote.largequote {
	font-size:120%; line-height:135%; font-style:italic; color: #666666;}
	
	blockquote.indented-line {
		padding: 10px 15px 10px 15px; margin-left: 10px; margin-bottom: 30px;
		border-left: 10px solid #111150;
	}
		
	blockquote.largequote {
		padding: 10px 15px 10px 45px; margin-left: 0px; margin-bottom: 30px;
		background: url(../images/shared/quote.jpg) top left no-repeat;
	}

  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
   */
  a:link
  {
	color:#0066cc;
  }

  a:visited
  {
	color:#0066CC;
  }

  a:hover,
  a:focus
  {
	color:#0066CC;
  }

  a:active
  {
  }

/** tables **/
  /* Override Drupal default CSS */
  table
  {
    border-collapse: collapse;
    /* 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: 1px;
    border: 1px solid #666;
  }

/** forms **/
  form
  {
    margin: 0;
    padding: 0;
  }

  fieldset
  {
    margin: 1em 0;
    padding: 0.5em;
  }

h1, h2, h3, h4, h5, h6 {
    font-family: 'museo-slab';
    font-style: normal;
    font-weight: 500;
}


h1, h2, h3, h4, h5, h6{
color:#333333;
font-family:'MuseoSlab500Regular',"museo-slab","Rockwell", verdana, sans-serif!important;
margin:0 0 5px 0!important;
padding:0!important;
line-height:1.3!important;
}