/**
 * @file
 * HTML Element Styling
 *
 * Ok, I admit it. I fooled you. This isn't a "reset" stylesheet. Instead this
 * is the place where you should set (not reset) the default styling for all
 * HTML elements.
 *
 * @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 * @see http://snook.ca/archives/html_and_css/no_css_reset/
 */


/*
 * 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 */
}

#skip-link,
#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 */


}

body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
	font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;
  
}

pre,
code {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

/*
 * OLD Headings*/
h1, h2, h3, h4, h5, h6
{
    font-weight: 700;
    margin: 0;
    padding: 0;
}


h1
{
	margin: .5em 0;
	font-size: 2.4em;
	color: #8A1F03;
	font-weight: normal;
/*	line-height: 1.9em;*/
}

h2
{
	font-size: 1.75em;
	margin: 0;
	color: #000;
	padding: .1em 0 0 0;
	letter-spacing: -0.02em;
  line-height:112%;
}

h2 a:link, h2 a:visited
{
    color: #000;
    padding: 1em 0 .5em 0;
    line-height:112%;
}

h2 a:link, h3 a:active, h3 a:visited
{
    color: #000;
    padding: 1em 0 .5em 0;
    line-height:112%;
}

h2 a:hover
{
    text-decoration: none;
}

h3
{
	font-size: 1.5em;
	margin: 1em 0 0em 0;
	color: #8A1F03;
}
h4
{
	font-size: 1.3em;
	color: #000;
	margin: 0 0 -8px 0;
}
h5 {
	font-size: 1.2em;
	color: #8A1F03;
	margin-bottom: -0.5em;
}
h6 {
	font-weight: bold;
	font-size: 1em;
	margin-bottom: -0.5em;
	color: #000;
}
/*
 * OLD Headings
h1 {
  font-size: 2.5em;
color: #8A1F03;
font-weight:normal;
  line-height: 1.2em;
margin: .5em 0;
}

h2{font-size:1.7em;
line-height:1.3em;
margin-top:0.667em;
margin-bottom:0.667em;}

h3 {
 color:#8A1F03;
 font-size:1.5em;
 line-height:1.3em;
 margin-top:0.769em;
 margin-bottom:0.769em;
}

h4{
font-size:1.3em;
}

h5  {color:#8A1F03;
font-size:1.1em;
line-height:1.1em;
margin-top:0.909em;
margin-bottom:0px;}
h6 {
font-size:1.1em;
line-height:1.1em;
margin-top:0.909em;
margin-bottom:0.909em;
}
 */

/*
 * Block-level elements
 */
p,
ul,
ol,
dl,
pre,
table,
fieldset {
	font-size: 1em;
	color: #333333;
	line-height: 1.3em;
	margin: 1.3em 0;
}

blockquote {
  margin: 1em 2em;
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  margin-left: 0;
  padding-left: 2em; /* LTR */
}

.block ul,
.item-list ul /* Drupal overrides */ {
  margin: 1em 0;
  padding: 0 0 0 2em; /* LTR */
}

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,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {
  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 {
	color:#069;
	text-decoration:none;
}

a:visited {
	color:#069;
	text-decoration:none;
}

a:hover,
a:focus {
	text-decoration:underline;
}

a:active {
}

/*
 * Tables
 *
 * Drupal provides table styling which is only useful for its admin section
 * forms, so we override this default CSS. (We set it back in forms.css.)
 */
table {
  border-collapse: collapse;
  /* width: 100%; */ /* Prevent cramped-looking tables */
}

th,
thead th,
tbody th {
  text-align: left; /* LTR */
  padding: 0;
  border-bottom: none;
}

tbody {
  border-top: none;
}

/*
 * Abbreviations
 */
abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

abbr.created /* Date-based "abbreviations" show computer-friendly timestamps which are not human-friendly. */ {
  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;
}
