/* $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.286em; /* 14px x 1.286 = 18px */
  }

  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: Tahoma, Verdana, Arial, Helvetica, "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 **/
  h1
  {
    font-size:24px;
    font-weight:bold;;
    line-height: 1.3em;
    margin-top: 12px;
    margin-bottom: 6px;
  }

  h2, h3
  {
    font-size:16px;
    font-weight:bold;
    line-height: 1.3em;
    margin-top: 12px;
    margin-bottom: 6px;
  }

  h4, h5, h6
  {
    font-size: 14px;
    font-weight:bold;
    line-height: 1.3em;
    margin-top: 12px;
    margin-bottom: 6px;
  }
  
  h1.title{
	  font-size:24px;
	  font-weight:normal;
  }
 
/* Used when node title is shown in list of nodes */ 
  h2.title{
	  font-size:24px;
	  font-weight:normal;
  }
  
  h2.title a{
	  text-decoration:none;
	  background:none !important;
  }
  
h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

/** block-level elements **/
  p, ul, ol, dl, pre, table, fieldset, blockquote
  {
    margin: 0 0;
  }
  
/* paragraph spacing */
  p{
	margin:6px 0;
  }

/** lists **/
  /* standardize list item indentation */
  ul
  {
    margin-left: 0px;
    padding-left: 16px;
  }
  
  ol
  {
    margin-left: 0px;
    padding-left: 22px;
  }

  .block ul, /* Drupal overrides */
  .item-list ul
  {
    margin: 1em 0;
    padding: 0 0 0 15px;
  }
  
  .webkit ul,
  .webkit .block ul,
  .webkit .item-list ul{
	padding-left:18px;
  }

/* previous indents for ol and ul lists - this is replaced with definition below, so that we can use different padding-left for each
  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;
    padding-left:15px;
  }
*/

  ul ol,
  ol ol,
  .block ul ol,
  .block ol ol,
  .item-list ul ol,
  .item-list ol ol
  {
    margin: 0;
    padding-left:20px;
  }

  ul ul, 
  ol ul,
  .block ul ul,
  .block ol ul,
  .item-list ul ul, 
  .item-list ol ul
  {
    margin: 0;
    padding-left:15px;
  }
  
  .ie7 ol{
	padding-left:23px;
  }

  li
  {
    margin: 6px 0; /* same as used at end of paragraph */
    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;
    padding: 0;
  }

  ul          { list-style-type: disc; }
  ul ul       { list-style-type: disc; }
  ul ul ul    { list-style-type: disc; }
  ul ul ul ul { list-style-type: disc; }
  ol          { list-style-type: decimal; }
  ol ol       { list-style-type: decimal; }
  ol ol ol    { list-style-type: decimal; }

  ul.red, ol.red {color:red;}
  ul.red li span, ol.red li span{color:black;}

  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:#3A00F1;
    text-decoration:none;
  }

  a:visited
  {
    color:#3A00F1;
    text-decoration:none;
  }

  a:hover,
  a:focus
  {
    
  }

#content-area a:hover, #top1 a:hover, #bottom1 a:hover, #page_bottom2 a:hover, 
#banner_block a:hover, #content-top a:hover, #content-bottom a:hover, 
#page_container a:hover, #page_bottom2 a:hover
{	
    color:#000000;
    background:#e3e3e3;
    text-decoration:none;
}

/* Used to override the hover style, with sexybutton hyperlinks */
#content-area a.sexybutton:hover, #top1 a.sexybutton:hover, #bottom1 a.sexybutton:hover, #page_bottom2 a.sexybutton:hover, 
#banner_block a.sexybutton:hover, #content-top a.sexybutton:hover, #content-bottom a.sexybutton:hover, 
#page_container a.sexybutton:hover, #page_bottom2 a.sexybutton:hover
{ 
    color: black;
    background: #a3a3a3; 
    text-decoration:none;
}

  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;
  }
  
  ul.tips{
	list-style-position:inside;
  }

/*** Color not to change **/

#sidebar-left .block h2.title,
#sidebar-right .block h2.title,
#inner_right_sidebar .block h2.title,
#top1 .block h2.title{
	color:#010101 !important;
}

div.tabs ul.tabs li a{
	color:#1f262d !important;
}

div.tabs ul.tabs li.active a{
	color:#747679 !important;
}

#site_tabs ul li a{
	color:#1f262d !important;
}
#site_header_right #primary a{
	color:#010101 !important;
}

#sitebar, .block h2.title{
	color:#010101 !important;
}

.breadcrumb{
	color:#010101 !important;
}

.node .meta, .comment .meta{color:#4c4f54 !important;}

li a.active{
	color:#010101 !important;
}

#block-block-8 .flinks, #block-block-8 .flinks a{color:#cccccc !important;}

.block-quicktabs ul.quicktabs_tabs li a{
	color:#1F262D !important;
}

#logo_header .block .content{
	color:#ffffff !important;
}

#logo_header .block a{
	color:#ffffff;
	text-decoration:underline;
}

#logo_header .block a:hover{
	color:#ffffff;
	text-decoration:none;
}

table tr th {
	color:#1F262D !important;
}

#bottom1 .block .content,
#page_bottom2 .block .content,
#site_login .block .content{
	color:#000000 !important;
}

/* DHTML Menu */

/* Set menu item text colour */

#sidebar-left li.dhtml-menu a,
#sidebar-right li.dhtml-menu a,
#inner_right_sidebar li.dhtml-menu a{
/*        color:#565a5e !important; */
	color:#000000 !important;
}

/* Set manu item background colour according to menu depth */

#sidebar-left li.dhtml-menu a,
#sidebar-right li.dhtml-menu a,
#inner_right_sidebar li.dhtml-menu a{
	background-color:#b0b0b0 !important;
}
#sidebar-left li.dhtml-menu ul li a,
#sidebar-right li.dhtml-menu ul li a,
#inner_right_sidebar li.dhtml-menu ul li a{
	background-color:#c0c0c0 !important;
}
#sidebar-left li.dhtml-menu ul ul li a,
#sidebar-right li.dhtml-menu ul ul li a,
#inner_right_sidebar li.dhtml-menu ul ul li a{
	background-color:#d0d0d0 !important;
}
#sidebar-left li.dhtml-menu ul ul ul li a,
#sidebar-right li.dhtml-menu ul ul ul li a,
#inner_right_sidebar li.dhtml-menu ul ul ul li a{
        background-color:#e0e0e0 !important;
}
#sidebar-left li.dhtml-menu ul ul ul ul li a,
#sidebar-right li.dhtml-menu ul ul ul ul li a,
#inner_right_sidebar li.dhtml-menu ul ul ul ul li a{
        background-color:#f0f0f0 !important;
}

