/* _OLstyle.css
This StyleSheet is for the Classic website pages in HTML Transitional; i.e. pages ending in .html
*/

/* BEGIN style set for the overall theme of our website;
 the 'h1', 'h2', 'h3', 'h4', & 'p' lines specify the default setting for each of those tags */

  body {
    background-color: #E0E0E6;
    background-image: url("paper10.jpg");
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  h1, h2 { font-family: serif; } 

  h3, h4 { font-family: sans-serif; }

  p {
    font-family: serif;
    text-indent: 1em;
  }


/* END style for overall theme of website */


/* BEGIN styles which can be applied to any <div> or <p> */

  .align-left { text-align: left; }

  .align-right { text-align: right; }

  .align-centre { text-align: center; }

  .noindent { text-indent: 0; }

/* END styles which can be applied to any <div> or <p> */


/* BEGIN styles for layout in the various regions of each web page;
 e.g. HEADER, MAIN TEXT, FOOTER */

  .header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .maintext {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .footnotes p {
    text-align: left;
    text-indent: -2em;
  }


  .footer p {
    text-align: left;
    text-indent: 0;
  }

  .blockquote {
    font-family: sans-serif;
    margin-left: 3em;
    margin-right: 3em;
  }

/* this one is for Scripture Quotations 'sqtn' - use with <span> or <blockquote> as appropriate */
  .sqtn {
    color: #AF0000;
  }

/* END styles for layout in the various <div>s of each web page */


/* BEGIN styles for use in the MAIN TEXT <div> */

  #issue-col-left {
    float: left;
    width: 10em;
    margin-left: auto;
    border: red 1px solid;
  }

  #issue-contents {
    width: 25em;
    margin-left: auto;
    margin-right: auto;
  }

  #issue-contents li {
    list-style-type: none;
    width: 20em;
    text-align: center;
    margin: 4px;
  }

/* END styles for use in the MAIN TEXT <div> */

/* BEGIN styles for hyper-links on the TABLE OF CONTENTS page for each issue. */

  #issue-contents a {
    text-decoration: none;
    color: blue;
    display: block;
    border: 4px blue outset;
    background-image: url("BlueSplash.jpg");
  }

  #issue-contents a:hover {
    color: red;
    background-color: #FFFFFF;
    background-image: url("");
    border: 4px blue inset;
  }

  #issue-contents a:visited {
    color: black;
    border: 4px blue outset;
  }

/* END styles for hyper-links on the TABLE OF CONTENTS page for each issue. */


