/* style-all.css
 */

html, body {
  background: #ffc; color: #330; margin: 0; width: 100%;
  }

#header { text-align: center;   }
#content{ text-align: left;   }
#footer { text-align: center; }

hr {
  background: black;
  color:      blue;
  width:      80%;
  }

p     { margin-left: 1em; margin-right: 2em; }

table {
  width:            80%;
  margin:           auto;
  border-collapse:  collapse; 
  border:           solid 2px blue;
  background:       white;
  color:            black;
  }
  td {
    border:           1px solid black;
    padding:          0 0.5em 0 0.5em;
    }

li {
  padding-right: 3em;
  }

.whitebox {
  background:     white;
  color:          black;
  border:         solid thin blue;
  width:          90%;
  margin-left:    auto;
  margin-right:   auto;
  padding:        2em;
  }

.underline {
  text-decoration: underline;
  }

.functionName {
	font-style:     oblique;
	}

.variableName {
  font-family:    monospace;
  font-size:      1.1em;
  }

.filename, .fileName, .programName {
  font-family:    monospace;
  font-style:     oblique;
  font-size:      1.1em;
  }

.codeSnippet {
  font-size:        1.1em;
  font-family:      monospace;
  }

.codeblock, .codeBlock {
	font-size:        1.1em;
  font-family:      monospace;
  white-space:      pre;
  background-color: white;
  color:            black;
  border:           1px solid red;
	}

.inlineList {
	display: inline;
	}

.level1outline {
  list-style-type:  decimal;
  }

.level2outline {
  list-style-type:  lower-alpha;
  }
