/*
 * Mid Sussex Testing
 *
 * Style sheet: typography.css
 * Typography and content styling
 * Read by all CSS browsers
 *
 * By Andy Smith, Preview Graphics
 * www.preview.co.uk
 */


/* Import styles for v5+ browsers. */
@import "layout.css";


/*
 * Body font
 * (to ensure that the font remains resizeable in Internet Explorer,
 * the size is overridden in the IE-only style sheet ie.css)
 */
 
body, td, th, caption, input, textarea, select {
  font-family: "Arial", "Geneva", "Helvetica", sans-serif;
  font-size: 12px;
  line-height: 150%;
}


/*
 * Content styling
 */

div, span {
  margin: 0;
  padding: 0;
}

a img {
  border: none;
}

p, blockquote, ul, ol, dl, table {
  margin-top: 0;
  margin-bottom: 1em;
}

ul ul, ul ol, ol ul, ol ol {
  margin-bottom: 0;
}

ul, ol {
  margin-left: 0;
  padding-left: 1.33em;
}

ul li {
  list-style-type: square;
}
 
ul li, ol li {
  margin: 0.3em 0;
  padding: 0;
}

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

h1, h2, h3, h4 {
  margin: 1.33em 0 0.67em 0;
  font-weight: bold;
}

h1 { font-size: 133%; }
h2 { font-size: 120%; }
h3 { font-size: 112%; }
h4 { font-size: 100%; }

#page-content dl dt {
  font-weight: bold;
  margin: 0.33em 0 0 0;
}

#page-content dl dd {
  margin: 0 0 0.33em 1.67em;
}


/*
 * Abbreviations with expansions
 * (Get rid of the default styles - a dotted underline border in
 * Mozilla and Opera, and italics in Safari)
 */

abbr, abbr[title], acronym, acronym[title] {
  border: none;
  font-style: inherit;
}


/*
 * Images
 */

.figure {
  text-align: center;
}

.figure img {
  display: block;
  margin: 0 auto;
}

