/**
 * @file
 * HTML Element Reset and Basic Styling
 */


/*
 * General Page Reset
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  background: transparent;
  border: 0;
  font-family: Arial, sans-serif;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  background: url(../images/background.png) repeat scroll 0 0 #880B23;
  font-size: 62.5%;    /* font-size is set to 62.5%, so 1.3em causes 13px */
  line-height: 1;
}

ol,
ul {
  font-size: 13px;
  line-height: 1.6em;
  margin-bottom: 1.6em;
}
ol {
  list-style: decimal outside none;
  padding-left: 20px;
}
ul {
  list-style: disc outside none;
  padding-left: 15px;
}

blockquote,
q {
  quotes: none;
}

:focus {
  outline: 0;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
 * Text-Styling
 */
p,
li {
  color: #5D5139;
}
p {
  font-size: 13px;
  line-height: 1.6em;
  margin-bottom: 1.6em;
}

h1, h2, h3, h4, h5, h6,
a,
blockquote,
cite,
table {
  color: #5D5139;
  font-weight: normal;
}

h1, h2, h3, h4 {
  font-family: 'Marcellus SC', serif;
}
h1, h2 {
  line-height: 1.3em;
  margin: 0 0 10px 0;
}
h1 {
  clear: both;
  font-size: 26px;
}
h2 {
  font-size: 20px;
}
h1 a,
h2 a {
  font-weight: normal;
  text-decoration: none;
}
h3, h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 15px 0;
}
h3 a,
h4 a {
  font-weight: bold;
  text-decoration: none;
}

a {
  font-weight: bold;
  text-decoration: underline;
}
a:hover {
  color: #5D5139;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

acronym,
abbr {
  border-bottom: 1px dotted #CCCCCC;
  cursor: help;
}

/*
 * Navigation Menus
 */
ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.menu li {
  display: inline;
  padding: 0;
}
ul.menu a {
  font-weight: normal;
  text-decoration: none;
}
ul.menu a:hover,
ul.menu a:focus {
  text-decoration: underline;
}

/*
 * Floating Elements
 */
.left {
  float: left;
}
.right {
  float: right;
}
.clear {
  clear: both;
}

/*
 * Hide elements from all users.
 */
.hidden {
  display: none;
  visibility: hidden;
}
