@charset "utf-8";
/* CSS Document */

/****
 **** 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
  {
    /* 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 */
  }

  body, caption, th, td, input, textarea, select, option, legend, fieldset
  {
    font-family: Arial, "Bitstream Vera Sans", sans-serif;
		color: #fff;
  }
  
  input, textarea, select, option {
    color: #7D481F;
  }
  
  legend {
    color: #D47B3A; /* Maybe change this */
  }

  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: 1.6em;
    line-height: 1.3em;
    margin-top: 0;
    margin-bottom: 0.5em;	 
  }

  h2
  {
		font-family: Georgia, "Times New Roman", "Bitstream Vera Serif", serif;
    font-size: 1.8em;
    line-height: 1.3em;
    margin-top: 0.667em; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
    margin-bottom: 0.667em;
  }

  h3
  {
    font-size: 1.3em;
    line-height: 1.3em;
    margin-top: 0.769em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
    margin-bottom: 0.769em;
  }

  h4, h5, h6
  {
    font-size: 1.1em;
    line-height: 1.3em;
    margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
    margin-bottom: 0.909em;
  }
  
  h1, h2, h3, h4, h5, h6 
  { 
	color: #FFFFFF;
  }

/** block-level elements **/
  p, ul, ol, dl, pre, table, fieldset, blockquote
  {
    margin: 1em 0;
		line-height: 1.7em;
  }

/** lists **/
  /* standardize list item indentation */
  ul, ol
  {
    margin-left: 0;
    padding-left: 0;
  }

  .block ul, /* Drupal overrides */
  .item-list ul
  {
    margin: 1em 0;
    padding: 0 0 0 1em;
  }

  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;
  }

  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, a:visited
  {
  	color: #D1CC00;
		text-decoration:none;
  }

  a:hover
  {
  	color: #FFFFFF;
		text-decoration:underline;
  }

  a:active
  {
 		color: #FFFFFF;
  }
	
	a.underline
	{
		text-decoration: underline; 
	}

/** tables **/
  /* Override Drupal default CSS */
  table
  {
    border-collapse: collapse;
  }

  th,
  thead th,
  tbody th
  {
    text-align: center;
    padding-right: 0;
    border-bottom: none;
  }

  tbody
  {
    border-top: none;
  }

/** abbreviations **/
  abbr
  {
    border-bottom: 1px dotted #7D481F;
    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 #7D481F;
  }

/** forms **/
  form
  {
    margin: 0;
    padding: 0;
  }

  fieldset
  {
    margin: 1em 0;
    padding: 0.5em;
		border: 1px solid #151515;
		background: url('/themes/panoetic/images/shade-cream.png');
  }
	
	#content-top h2 /* The mission statement of the site (displayed on homepage) */
  {
		font-family: Georgia, "Times New Roman", "Bitstream Vera Serif", serif;
		font-size: 2em;
		color:#D1CC00;
		line-height: 1.7em;
		margin-bottom: 10px;
		font-weight:normal;
  }
	
	#content-top h2 span /* The mission statement of the site (displayed on homepage) */
  {
		color:#FFFFFF;
  }

	#footer
	{
		color: #B3C6D5;
	}
	
	#footer p
	{
		width: 700px;
		float: left;
	}
	
	#footer p.credit
	{
		float: right;
		width: 100px;
		text-align:right;
	}
	
	#footer p.copyright
	{
		margin-top: 0;
	}
	
	#footer p.credit a
	{
		color: #EC9543;
	}
	
	#navbar a
	{
		font-family: Georgia, "Times New Roman", "Bitstream Vera Serif", serif;
		font-size: 1.5em;
		color:#D1CC00;
		text-decoration:none;
	}
	
	#navbar a:hover
	{
		text-decoration:underline;
	}
	
	body.home #navbar li.home a, body.courses #navbar li.courses a, body.contact #navbar li.contact a, body.partners #navbar li.partners a
	{
		color:#FFFFFF;
	}
	
	#courses-intro h2, #contact-intro h2, #home-intro h2
	{
		padding: 0;
		margin: 0;
		font-family: Georgia, "Times New Roman", "Bitstream Vera Serif", serif;
		font-size: 1.4em;
		line-height: 1.8em;
		font-weight:normal;
	}
	
	#home-intro h2 /* The mission statement of the site (displayed on homepage) */
  {
		font-size: 2em;
		color:#D1CC00;
		line-height: 1.7em;
		margin-bottom: 10px;
		font-weight:normal;
  }
	
	#contact-intro h2 
	{
		margin: 13px 0;
	}
	
	#courses-intro h2 span, #contact-intro h2 span
	{
		font-size: 1.3em;
		color:#D1CC00;
	}
	
	#home-intro h2 span /* The mission statement of the site (displayed on homepage) */
  {
		color:#FFFFFF;
  }
	
	.contact h2.form-heading 
	{
		padding: 0;
		margin: 0 0 0 26px;
		font-family: Georgia, "Times New Roman", "Bitstream Vera Serif", serif;
		font-size: 1.8em;
		line-height: 1.8em;
		font-weight:normal;
		color: #D1CC00;
	}
	