/* CSS Cookbook Standard Style
 *
 *
 */

body
  {
   background: White;
   color: black;
  }

body, td, p {
   font-size: small;
   font-family: Verdana, sans-serif
}

/* Links
 *
 */
 
a:link
  {
   color: #0080C0;
   text-decoration: underline;
  }
  
a:visited
  {
   color: #0000C0;
   text-decoration: none
  }

/* not necessary and distracting for index and copyright links to become visited */
/* background ? #C0D9D9 */

div.header a:visited
  {
   color: #0080C0;
   text-decoration: none
  }

/* Set default active link to a color in keeping with color scheme so it does not become an irritation. */

a:active { color: red }

h1 { font-size: large; text-align: center; color: black; font-family: Optimum, Times, serif }

h2 { text-align: center }

h2, { font-size: medium; color: black; font-family: Optimum, Times, serif }

h3 { font-size: medium; text-decoration: underline; color: black; font-family: Optimum, Times, serif }

h4,h5,h6 { font-size: medium; color: black; font-family: Optimum, Times, serif }

/* Code Examples
 * Examples of code are contained in PRE (block) and 
 * CODE (text) elements.
 */

pre, code { color: #004080 }

pre { margin-left: 5% }

/*
h1 { font-size: large }

h2 {
   font-size: 100%;
   font-weight: bold;
   border-top: 1px  #808080 solid;
   border-left: 1px  #808080 solid;
   }

h3 {
   background: #FFFFFF;
   color: #0080C0;
   font-size: 100%;
   font-weight: bold;
   font-style: italic;
   border-left: 1px  #808080 solid;
   }
*/

div.header, div.footer { margin-left: -4%; margin-right: -4%; font-size: 90%; font-family: Verdana }

/* Note
 *
 *
 */
 
div.note {
   color: #990000
}

/* Example
 *
 *
 */
 
div.example {
   color: #ff6600
}

.roadmap p { font-size: x-small }

div.lead { font-size: 120%; font-weight: bold }

span.icap { font-size: 200%; font-family: Optimum, times, serif }

hr { color: #808080 }

.copyright { font-size: 60%; font-family: Verdana, sans serif }
.address { font-size: 60%; font-family: Verdana, sans serif }

