/*
 * One-stop-shop for HTML style.
 * For use with MEDIA="any"
 * This sheet will import any necessary media-specific sheets.
 */

/* Basic styles, for all media. */
@import url("../_aCommon/ssmForMedia_any.css");

/* this for real browsers... */
@import url("../_aCommon/ssmForMedia_aural.css") aural;
/* this for IE6... */
@media aural {
  @import url("../_aCommon/ssmForMedia_aural.css");
}

/* Style common for all MEDIA="print". */
/* this for real browsers... */
@import url("../_aCommon/ssmForMedia_print.css") print;
/* this for IE6... */
@media print {
  @import url("../_aCommon/ssmForMedia_print.css");
}

/* Style common for all MEDIA="screen". */
/* this for real browsers... */
@import url("../_aCommon/ssmForMedia_screen.css") screen;
/* this for IE6... */
@media screen {
  @import url("../_aCommon/ssmForMedia_screen.css");
}

/* - - - - up to here is the same for all style sheets. */

/*
 * This section should only affect colors and backgrounds.
 * All other styling for MEDIA="screen" should be done via the shared ssmForMedia_screen.css.
 */
@media screen {

  /* Background color/image. */
  body
  {
    background: rgb(255,80,80);
  }

  /* Text color. Insure sufficient contrast with background! */
  body, td, th
  {
    color: #000000;
  }

  /* Link color. Insure sufficient contrast with background! */
  /* {use default} */

  /* Add horizontal divider between sections. */
  #LocalNavigation, #MainContent, #RelatedPages, #Tools
  {
    /*<IMG SRC="../_aCommon/bar-BarbedWire.gif" WIDTH=572 HEIGHT=31 ALT="----------">*/
    background: url(../_aCommon/bar-BarbedWire.gif) no-repeat top center;
    padding-top: 31px;
  }

} /* MEDIA="screen" */

