/* ------------------------------
   Inspired by a TV advert for Queer Eye
   ------------------------------ */

body {
  margin: 0;
  padding: 0;
  font-family: Verdana, Impact, Arial, sans-serif;
  background: url("background.png") repeat left top;
  color: black;
}

/* ------------------------------
   Header
   ------------------------------ */

#header {
  display: none;
  height: 20px;
  text-align: center;
  border-bottom: 2px solid #afa;
  padding: 10px;
}

#headertext {
  color: #aaf;
}

/* ------------------------------
   Footer
   ------------------------------ */

#author a {
  display: none;
}

#position {
  position: absolute;
  bottom: 1em;
  right: 1em;
  text-align: right;
}


/* ------------------------------
   Navigation Icons 
   ------------------------------ */

#navigation {
  background: #fcc;
  border-left: 2px solid black;
  position: absolute;
  width: 75px;
  top: 0px;
  bottom: 0px;
  right: 0px;
}

#navigation-previous {
  background: url("left.gif") no-repeat left top;
  margin: 0px;
  padding: 0px;
  position: absolute;
  top: 5px;
  right: 40px;
  width: 30px;
  height: 30px;
}

#navigation-previous:hover {
  background: url("lefthover.gif") no-repeat left top;
}

#navigation-next {
  background: url("right.gif") no-repeat left top;
  margin: 0px;
  padding: 0px;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}

#navigation-next:hover {
  background: url("righthover.gif") no-repeat left top;
}

#navigation-toc {
  background: url("index.gif") no-repeat left top;
  margin: 0px;
  padding: 0px;
  position: absolute;
  top: 40px;
  right: 40px;
  width: 30px;
  height: 30px;
}

#navigation-toc:hover {
  background: url("indexhover.gif") no-repeat left top;
}

#navigation-switch {
  background: url("style.gif") no-repeat left top;
  margin: 0px;
  padding: 0px;
  position: absolute;
  top: 40px;
  right: 5px;
  width: 30px;
  height: 30px;
}

#navigation-switch:hover {
  background: url("stylehover.gif") no-repeat left top;
}

#navigation span {
  display:none;
}

/* ------------------------------
   Content
   ------------------------------ */

#content {
  font-size: 1.6em;
  padding: 0em 3.5em 2em 3em;
}

h1 {
  color: black;
  text-transform: uppercase;
}

ul {
  color: black;
}

li {
  padding: 0.5em 1em 0.5em 0.5em;
}

a {
  color: red;
}

a:hover {
  color: black;
}

pre {
  padding: 0em 1em 0em 1em;
  font-size: 1.1em;
  font-family: "Courier New", Courier, "LucidaSansTypewriter", monospace;
  color: black;
}

blockquote {
  padding: 0em 1em 0em 0.5em;
  font-size: 0.95em;
  color: black;
}

code {
  color: black;
}

strong {
  color: #393;
  font-style: normal;
  font-weight: normal;
}

em {
  color: #339;
  font-style: normal;
}

/* ------------------------------
   Navigation Icon Source 
   ------------------------------ */

.one {
  stroke: black;
  stroke-width: 2;
  fill: #fdd;
}

.onehover {
  stroke: black;
  stroke-width: 2;
  fill: #ccf;
}

path.two {
  stroke: black;
  stroke-linejoin: round;
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}

path.twohover {
  stroke: black;
  stroke-linejoin: round;
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}

circle.two {
  stroke: none;
  fill: black;
}

circle.twohover {
  stroke: none;
  fill: black;
}

rect.two {
  stroke: none;
  fill: black;
}

rect.twohover {
  stroke: none;
  fill: black;
}

.three {
  fill: #fcc;
}

