/**
 * @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
 * articles:
 * - http://www.alistapart.com/articles/howtosizetextincss
 * - http://24ways.org/2006/compose-to-a-vertical-rhythm
 *
 * All modern browsers 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-to-nav,
#page {
  font-size: 13px; /* The base font size is 13 pixels */
  line-height: 1.5em; /* 13px x 1.5 = 19.5px */
}

body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
  /* Helvetica Neue for Mac, Arial otherwise. Sans-serif as a fallback */
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

pre,
code,
kbd,
samp,
tt,
var {
  font-size: 1.1em /*To make monospace fonts easier to read */
  font-family: "DejaVu Sans Mono", "Courier New", monospace;
  margin: 1.364em 0; /* Equivalent to 1.5em in the page's base font: 1.5 / 1.1 = 1.364 */
}

/* Headings */

h1, h2, h3, h4, h5, h6 {
  /* Purple, bold headings */
  color: #336699;
  font-weight: bold;
}

/* Ems are relative to the element's font size, not to the pages' base font size. */

h1 {
  font-size: 1.2em;
  margin-bottom: 5px;
}

h2 {
  font-size: 1.231em; /* 16px level 2 headings */
  margin-bottom: 0.75em; /* 12px bottom margin */
}

h3 {
  font-size: 1.077em; /* 14px level 3 headings */
  margin-bottom: 0;
}

/* Other block-level elements */
p {
  margin: 0 0 1em 0;
  color: #222;
}

blockquote {
  margin-left: 2em;
  margin-right: 2em;
}

hr {
  height: 1px;
  border: 0; /* Override Zen's full border */
  border-top: 1px solid #666;
  margin: 0 0 1em 0;
  padding 0;
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  padding-left: 1.5em; /* LTR */
  margin: 0 1.5em 0 0;
}

.item-list ul /* Drupal overrides */ {
  margin: 1.5em 0;
  padding: 0 0 0 2em; /* LTR */
}

li {
  margin: 0;
  padding: 0;
}

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

/*
 * 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 */
  border: none;
}

th {
  text-align: left; /* LTR */
  padding: 0;
  border-bottom: none;
}

tbody {
  border-top: none;
}

thead {
}

tfoot {
}

caption {
}

colgroup {
}

col {
}

tr {
}

td {
}

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

fieldset {
  padding: 0.5em;
}

legend {
}

label {
}

input {
}

select {
}

optgroup {
}
option {
}

textarea {
}

button {
}

/*
 * 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
 */
h2 a {
  color: #593F9A;
}

a {
  color: #0066CD;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

a:active {
}

/*
 * Other inline elements
 */
img {
  border: 0;
  /* vertical-align: bottom; */ /* Suppress the space beneath the baseline */
}

strong, b {
  font-weight: bold;
}

em, i {
  font-style: italic;
}
