/*
 * PVL UK
 *
 * Style sheet: screen.css
 * Basic styling for screen viewing
 * Read by all CSS browsers with 'screen' or 'projection' media
 *
 * Note that this style sheet is called separately from the HTML
 * with 'screen' and 'projection' links rather than the combined
 * 'screen, projection' because that isn't understood by NS4.
 *
 * Note also that a lot of the styling in this sheet is overridden
 * in screen-layout.css for more advanced browsers.
 *
 * By Andy Smith, Preview Graphics
 * www.preview.co.uk
 */

/* Layout for v5+ browsers */
@import url(screen-layout.css);


/*
 * Main colours
 */
 
html, body {
  background: #000;
  color: #fff;
}


/*
 * Links
 */
 
:link, :visited {
  font-weight: bold;
  text-decoration: none;
}

:link:hover, :visited:hover, :link:active, :visited:active {
  font-weight: bold;
  text-decoration: underline;
}

:link {
  color: #f60;
}

:visited {
  color: #cc6a29; /* #ffa366; */ /* #f30; */
}

:link:hover img, :visited:hover img,
:link:active img, :visited:active img {
  text-decoration: none;
}


/*
 * Separation of sections
 * (overridden in screen-layout.css)
 */

#page-main-nav, #page-sub-nav, #page-title, #page-footer {
  border: solid 1px #333;
  padding: 0.5em;
  margin: 1em 0;
  background: #222;
}

#page-end-nav, #page-credits {
  border-top: solid 1px #333;
  padding-top: 0.5em;
}

#admin label {
    float: left;
    width: 200px;
    margin-right: 10px;
    clear: left;
}

#admin input {
	float: left;
	margin-bottom: 10px;
}

#admin input.submit {
	clear: both;
    width: auto;
}
