/* $Id: html-elements.css,v 1.2 2008/01/06 15:50:31 johnalbin Exp $ */

/****
 **** HTML ELEMENT STYLING
 ****/


/** fonts **/
  body
  {
    font: 11px "Trebuchet MS", sans-serif;
  }

  /* IE 5 and 6 can't resize text that is specified in pixels. */
  * html body
  {
    font-size: 11px; /* IE5 will get this value */
    f\ont-size: 11px; /* IE6 will get this value */
  }

  #page
  {
    font-family: "Trebuchet MS", sans-serif;
  }

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

/** headings **/
  h1
  {
    font-size: 150%;
  }

  h1, h1 a, h1 a:hover
  {
    margin: .5em 0 .5em 0;
    font-family: trebuchet, sans-serif;
    color: #444;
  }

  h1.title
  {
    font-size: 200%;
  }

  h1.title, h1.title a, h1.title a:hover
  {
    font-family: "Trebuchet MS", sans-serif;
    font-weight: normal;
    color: #6191C5;
    margin: 0;
    margin-bottom: 0;
    line-height: normal;
  }
	
	#homeTopRightHd h1
	{
	color: #fff;
	font-weight: 500;
	margin: 0px 10px;
	}

  h2
  {
    font-size: 1.1em;
	 margin-bottom: 5px;
  }

  h2, h2 a, h2 a:hover, .block h3, .block h3 a
  {
    color: #FF6600;
    font-family: "Trebuchet MS", sans-serif;
  }

  h3
  {
   font-family: "Trebuchet MS", sans-serif;
	font-size: 107%;
  }

  h4
  {
   font-family: "Trebuchet MS", sans-serif;
	font-size: 145%;
	font-weight: 100;
  	padding-top: 10px;
	margin: 0px 0px 10px 0px;
	color: #FF6600;
	clear: both;
  }

  h5
  {
   font-family: "Trebuchet MS", sans-serif;
	font-size: 130%;
	font-weight: 100;
	margin: 0px 0px 10px 18px;
	color: #FF6600;
  }

  h6
  {
   font-family: "Trebuchet MS", sans-serif;
	font-size: 110%;
	font-weight: 700;
	margin: 8px 0px 0px 0px;
	color: #333;
  }
  
  .aboutTimelineText h6 
  {
  	margin: 5px;
	font-weight: 700;
	font-size: 110%;
  }

  .hdSearch
  {
   font-size: 110%;
   font-family: "Trebuchet MS", sans-serif;
	font-weight: 700;
	color: #FF6600;
  }

/** block-level elements **/
  p
  {
  padding: 0.5em 0;
  margin: 0;
  }

  ol, ul, dl
  {
    position: relative;
  }

  pre
  {
    background: #ddd;
    border: 1px solid #aaa;
    padding: 0.75em 1.5em;
  }

  blockquote
  {
    border: 1px #ccc solid;
    margin: 0.5em 1em;
    padding: 0.3em;
    font-style: italic;
  }
  
  .required {
	background: #fff url(../images/icon_required.gif) top left no-repeat;
	width: 20px;
  }
  
  .message {
  	font-style: italic;
	color: #777;
  }
  
  .error, .warning {
  	color: #cc0000;
  }

  

/** 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, p a:link {color: #0099cc; text-decoration: none;}
  a:visited, p a:visited {color: #0099cc; text-decoration: none;}
  a:hover, p a:hover {color: #037FA8; text-decoration: none; border-bottom: 1px dotted #AADDEE;}
  a:focus, p a:focus {color: #037FA8; text-decoration: none; border-bottom: 1px dotted #AADDEE;}
  a:active, p a:active {color: #037FA8; text-decoration: none;}


  #wrapper a:visited  {color: #0099cc; text-decoration: none;}

  
  .alignMiddle 
  {
	vertical-align: middle;
  }
  
  .italic
  {
  	font-style: italic;
  }
  
  .bold 
  {
  	font-weight: 700;
  }
  
  .alignLeft 
  {
  	text-align: left;
  }
  
  .alignRight
  {
  	text-align: right;
  }
  
  .alignCenter 
  {
  	text-align: center;
  }
  
  .alignBottom 
  {
  	vertical-align: bottom;
  }
  
  .alignTop 
  {
  	vertical-align: top;
  }
  
  .floatRight
  {
  	float: right;
	display: block;
  }
  
  .floatLeft
  {
  	float: left;
	display: block;
  }
