/*
 * Richmond Pharmacology - Trials4us - Phase II recruitment
 *
 * Style sheet: screen.css
 * Simple styles for screen viewing
 * Read by all CSS browsers for 'screen' and '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: #666;
}


/*
 * Links
 */

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

:link {
  color: #f60;
}

:visited {
  color: #995426;
}

:link:hover, :visited:hover, :link:active, :visited:active {
  color: #666;
  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: #ddd;
  color: #333;
}

#page-skip-links {
  margin: 1em 0;
  border-bottom: solid 1px #666;
}

#page-sidebar, #page-footer {
  margin: 1em 0;
  border-top: solid 1px #666;
  padding-top: 1em;
}

