/* global font and colour settings */
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75em; /* This sets the default font size to be equivalent to 12px from 16px - so let's hope the default is 16! */
  color: #333333;
  background-color: #fff;
  margin: 0;
  line-height: 1.517em;
}





/* headings */
h1, h2, h3, h4, h5, h6 { margin: 0.5em 0; }
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child { margin-top: 0; }

h1 { font-size: 2.0em; line-height: 1.4em; letter-spacing:-0.083em; }
h2 { font-size: 1.333em; line-height: 1.4em; }
h3 { font-size: 1.3em; line-height: 1.4em; }
h4 { font-size: 1.2em; line-height: 1.4em; }
h5 { font-size: 1.1em; line-height: 1.4em; }
h6 { font-size: 1.0em; line-height: 1.4em; }


/* lists will mostly be special and require no margins andstuff */
ul.clean    { list-style: none; margin: 0; padding: 0; }
ul.clean li { margin: 0; padding: 0; }

/* horizontal rule */
hr {
  margin: 18px 0;
  border-bottom: solid #666 1px;
  height: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
}

/* form elements */
input, button, select, option, textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
} /* for some reason, input, select, options and textareas get a separate font, and 'inherit' doesn't work for IE7, grr! */
textarea { width:450px; height:80px; }
pre { font-size: 1.3em; }
p { margin: 0; margin-bottom: 10px; }
form { margin: 0; padding: 0; }

table th,
table td { text-align: left; }

table tr[align="center"] th,
table tr[align="center"] td,
table th[align="center"],
table td[align="center"] { text-align: center; }

table tr[align="right"] th,
table tr[align="right"] td,
table th[align="right"],
table td[align="right"] { text-align: right; }

/* no borders on normal images */
img { border: 0; }


/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

* html>body .clearfix {
  display: inline-block;
  width: 100%;
}

* html .clearfix {
  /* Hides from IE-mac \*/
  height: 1%;
  /* End hide from IE-mac */
}