/**
 * @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 */

  /* 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 */

  /* Use a 10px base font size with a 16px line height */
  font-size: 0.625em; /* 16px x .75 = 12px */
  /*line-height: 1.65em;  12px x 1.333 = 16px */
}


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 DejaVu
   * fonts are commonly available on Linux systems where the MS fonts are less
   * common. Tahoma and Helvetica are also widely available.
   *
   * 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, "DejaVu Serif", serif;
  font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;

  font-family: "Courier New", "DejaVu Sans Mono", monospace;

   */

  font-family: Verdana, Helvetica, Arial, sans-serif;
}

pre,
code {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

/*
 * Headings
 */
p {
  margin:0 0 15px 0; /* 14x1.286=18px */
  font-size: 1.1em;
  line-height:1.65em;
}

p.linked {
  margin:0 0 6px 0; /* 14x1.286=18px */
  font-size: 1.1em;
  line-height:1.65em;
}

p.noSpace {
  margin:0; /* 14x1.286=18px */
  font-size: 1.1em;
  line-height:1.65em;
}

p.noImage {
  margin:10px 0 15px 0; /* 14x1.286=18px */
  font-size: 1.1em;
  line-height:1.65em;
}

.indent {
  text-indent: 16px
}

h1 {
  margin:0;
  font-family: "museo-sans-1", "museo-sans-2", Verdana, Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 2.7em;
  color: #640000;
}

/*.pageTitle {float: left; margin: 5px 0; padding: 0; width: 465px;  clear:both;}
 .pageTitle {margin: 0; padding: 0; width: 705px; height: 37px; clear:both;} */
h1.title {
  margin: 5px 0; 
  padding: 0; 
  width: 465px; 
  clear:both;
}

h2 {
  margin:0 0 10px 0;
  font-family: "museo-sans-1", "museo-sans-2", Verdana, Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 2.1em;
  color:#640000;
  line-height: 1.2em;
}

h3 {
  margin:0 0 6px 0;
  font-family: "museo-sans-1", "museo-sans-2", Verdana, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.4em;
  color:#640000;
}

h4 {
  margin:0 0 0px 0;
  font-family: "museo-sans-1", "museo-sans-2", Verdana, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.3em;
  color:#43433c;
  line-height: 1.5em;
}

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

a:hover {
  color: #aeae9f;
  text-decoration: none;
}

.titleImage {
  margin:0 0 4px 0;
  color: #640000;
  text-transform: uppercase;
} /* Title for inline images in body */

.bold,
.event-city {
  font-weight: bold;
}

.ital,
.publication-name {
  font-style:italic;
}
/*
 * 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;
}
