
/*  Time-stamp: "2006-06-17 23:50:20 ADT" */

@media print {
  input, select, textarea, option
  {
    background-color: white;
    color: black;
  }
}

@media screen {

  a:link    { text-decoration: underline !important; color: blue;   }
  a:visited { text-decoration: underline !important; color: purple; }
  a:active  { text-decoration: underline !important; color: red;    }


  a[href^="javascript:"] { cursor: crosshair; }
   /* ^^ http://www.mozilla.org/support/firefox/tips  */


  /* Make it easier to tell what form element is focussed...
      These rules are a hack because I know no way of selecting input
      elements with no 'type' attribute.
  */

  input:not([type="image"]):not([type="reset"]):not([type="submit"]):not([type="file"]),  select, textarea, option
  {
    background-color: black !important;
    color: white !important;
  }

  /* And a hack to keep the dropmarker from being affected by the
     above rules.  It still reacts a bit oddly though.  Bug somewhere?
  */
  select input[type="button"][type="button"][type="button"][type="button"][type="button"]
  {
    background-color: buttonface !important;
    color: black !important;
  }

  textarea { border-bottom-width: 3px !important; }
   /* so that the following focusborder is legible */

  textarea:focus, input:focus, select:focus {
    border-bottom-color: #2f2 !important;
    border-bottom-style: dashed !important;
  }

}

/* END!!! */
