/*
 * Mid Sussex Testing
 *
 * Style sheet: screen.css
 * Basic styles for on-screen viewing
 * Read by all CSS browsers for screen or projection media
 *
 * By Andy Smith, Preview Graphics
 * www.preview.co.uk
 */


/* Import styles for v5+ browsers. Use quotes to hide from IE5 for Mac. */
@import 'screen-layout.css';


/*
 * Basic colours
 */

html, body {
  background: #fff;
  color: #336;
}


/*
 * Links
 */

:link, :visited {
  font-weight: inherit;
  text-decoration: underline;
}

:link {
  color: #999;
}

:visited {
  color: #84848f;
}

:link:hover, :visited:hover, :link:active, :visited:active {
  color: #336;
  text-decoration: underline;
}


/*
 * Separation of sections
 */

/* Hide horizontal rules, used to separate page sections in non-CSS
   browsers. Separate sections with colour and borders instead; this
   simple separation is overridden in screen-layout.css. */

hr {
  display: none;
}

#page-navigation {
  margin: 1em 0;
  padding: 0.5em 1em;
  border: solid 1px #666;
  background: #e7e7e7;
  color: #333;
}
