
/* Header */

#header {
   position: fixed;
   background: #222 url(images/title-gradient.png) repeat-x left top;
   width: 100%;
   height: 100px;
   margin: 0 auto;
   top: 0;
   left: 0;
   z-index: 15;
   padding: 0;
   border-bottom: 3px ridge #500000;
}

/* To have this block sit exactly within the enclosing block
   (of class "header") is difficult. Normally it will be positioned
   about 15 pixels down. But if you specify a positive border-top,
   that value is how far down it will go.

   Thus, giving it a 1px transparent top border and reducing its height
   by 1 pixel gives near enough the desired appearance. */
#headercontent {
   position: relative;
   margin: 0 auto;
   width: 750px;
   height: 99px;
   color: red;
   border-top: 1px solid transparent;
}

#telnet {
   font-family: sans-serif;
   font-size: small;
   position: relative;
   float: right;
   padding: 3px;
   margin: 2px;
}


/* Body */

body {
   background: #222;
}

#content {
   font-family: sans-serif;
   background: #000;
   padding: 6px;
   margin: auto;
   top: 90px;
   position: relative;
   width: 750px;
   color: #ccc;
   text-align: left;
   z-index: 5;
   padding: 1em 1em 0.6em 1em;
}

#content p:first-letter {font-size:150%; color:silver}

a {
   color: silver;
}

/* Footer */

/* Override the content first-letter */
p#footer:first-letter {
   font-size: 100%;
   color: #ccc;
}

#footer {
   clear: both;
   border-top: 4px groove #800;
   padding-top: 0.6em;
   margin-bottom: 0px;
   font-family: sans-serif;
   font-size: small;
   font-variant: small-caps;
   text-align: center;
   color: #ccc;
}

