

/*
If two or more style rules have the same importance, origin and specificity, The rule that is specified last wins.
Notes:
- The browser default stylesheet is treated as if it is an imported stylesheet imported before all others in a document.
- Imported style sheets are cascaded depending on their import order, and are considered to exist before the style sheet that imported them.
*/

/* Netscape 4.x will cannot handle the import, so the two-column styling will not be applied, which is good because Netscape 4 really messes the two business up and links in the right column are not clickable. */
@import url("twocol.css");

body
{
  color: black;
  background-color: #f0f0fc; /* "#5490c4" */
  font-family: serif;
  font-weight: normal;
  text-decoration: none;
  margin: 1em 1em 1em 1em;
  /* font-family: 'Lucida Grande', Verdana, Geneva, Lucida, Arial, Helvetica, sans-serif; */
}

h1 {color:blue}
h2 {color:blue}
/* body {background-color:#ddeeff;} */

span.path {color:red}  /* path to file or directory */
span.fn {color:purple} /* file name (no path) */
span.cmd {font-family:monospace; color:brown;}
ul.none {list-style:none}

.center { text-align: center; }
.blue {color:blue}
.red {color:red}
.boldred {color:red;font-weight:bold}
.purple {color:purple}

img.narrow_border_print { border: 1px solid #999; margin: 0 15px 15px 0; padding: 5px; }

/* Indent paragraphs that follow other paragraphs */
/* p + p {
  text-indent: 1.5em;
  margin-top : 0em } */
/* Some exceptions */
/* p.caption {text-indent: 0} */

/* stb (small thematic break), mtb (medium thematic break) and ltb (large thematic break) */
p.stb { text-indent: 0; margin-top: 0.83em }
p.mtb { text-indent: 0; margin-top: 2.17em }
p.ltb { text-indent: 0; margin-top: 3.08em }

/* Small superscripts, such as numbers used in dictionary definitions */
.sup { vertical-align: super; font-size: small; }
.smcap { font-variant: small-caps; }

li + li { margin-top : .25em }
li ol { margin-top : .1em }

UL.plain  { list-style: none }
