/**
 * HTML Element Styling
 *
 * This is the place where you should set (not reset) the default styling for all
 * HTML elements.
 *
 */

body {
  margin: 0;
  padding: 0;
  background:#FFF;
  text-transform: uppercase;
}

body.admin-menu {
  margin-top: 25px !important;
  background-position-y: 24px;
}


/*
 * Set Font Size & Font Color For The Entire Website
 */
#body-wrapper1 {
  line-height: 1.4em; /* 12px x 1.333 = 16px */
  font-size:9px;
  letter-spacing: 2.4px;
  font-weight:400;
  color:#000;
}

/*
 * Set the Font Family
 */
body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
  font-family: District-Book, sans-serif; 
}

/*
 * Set the Font Family for developer used elements
 */
pre,
code {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
}

/*
 * Headings
 */
h1 {
  font-family: DIN1451Com-Engschrift, 'Arial Narrow', sans-serif;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.22em;
  line-height: 1.3em;
  margin-bottom: 11px;
  margin-top: 0;
  text-transform: uppercase;
  text-align:center;
}

h2 {
  font-family: DIN1451Com-Engschrift, 'Arial Narrow', sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 1.3px;
  line-height: 1.3em;
  margin-bottom: 0.4em;
  text-transform: uppercase;
}

h3 {
  font-size: 18px;
  font-family: DIN1451Com-Engschrift, 'Arial Narrow', sans-serif;
  line-height: 1.3em;
  margin-bottom: 0.4em;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 0.22em;
}

h4,
h5,
h6 {
  font-size: 16px;
  line-height: 1.3em;
  margin-top: 0.3em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
  margin-bottom: 0.5em;
}

/*
 * Block-level elements
 */
p,
ul,
ol {
  margin:0 0 0.7em 0;
}

dl,
pre,
table {
  margin: 1em 0;
}

blockquote {
  margin: 1em 2em;
}

/*
 * Fieldset & Legend
 */

fieldset {
  margin: 1em 0 44px;
  border: none;
  padding: 0;
}

legend {
  color: #000;
  font-family: DIN1451Com-Engschrift, 'Arial Narrow', sans-serif;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 1.6px;
  line-height: 1.3em;
  margin-bottom: 21px;
  text-transform: uppercase;
}

.address-pane-table table td {
    vertical-align: middle;
}
/*
 * 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 {
  color:#000;
  text-decoration: none;
}

a:link {
}

a:visited {
}

a:hover,
a:focus {
  text-decoration: underline;
}

a:active {
}
a:hover,
a:active,
a:focus,
input.form-text,
textarea{
  outline: 0;
}
/*
 * Tables
 */
table {
  border-collapse: collapse;
  width: 100%;/* Prevent cramped-looking tables */
}

th,
thead th,
tbody th {
  text-align: left; /* LTR */
  padding: 0 0.5em 5px;
  border-bottom: none;
  background-color:#FFFFFF;
  font-weight:400;
  text-transform:uppercase;
  color:#131313;
  border-bottom:0px solid #CCC;
}

th a {
  color:#131313;
}

tbody {
  border-top: none;
}

tbody td {
  padding: 0 0.5em 5px;
  vertical-align: top;
}

tr.even {
  border-top:1px solid transparent;
  border-bottom: 1px solid transparent;
  background-color:transparent;
}

tr.odd {
  border-top:1px solid transparent;
  border-bottom: 1px solid transparent;
  background-color:transparent;
}

/*
 * Images
 */
img {
  border: 0;
  max-width: 100%;
  width:auto;
  height:auto;
}

/*
 * Horizontal rules
 */
hr {
  height: 1px;
  border: 1px solid #666;
}

input::-webkit-input-placeholder {
   color: #000;
}

input:-moz-placeholder { /* Firefox 18- */
   color: #000;  
}

input::-moz-placeholder {  /* Firefox 19+ */
   color: #000;  
}

input:-ms-input-placeholder {  
   color: #000;  
}

