/* undohtml.css */
/* (CC) 2004 Tantek Celik. Some Rights Reserved.             */
/*   http://creativecommons.org/licenses/by/2.0                   */
/* This style sheet is licensed under a Creative Commons License. */

/* Purpose: undo some of the default styling of common (X)HTML browsers */


/* link underlines tend to make hypertext less readable, 
   because underlines obscure the shapes of the lower halves of words */
:link,:visited { text-decoration:none }

/* no list-markers by default, since lists are used more often for semantics */
ul,ol { list-style:none }

/* avoid browser default inconsistent heading font-sizes */
/* and pre/code too */
h1,h2,h3,h4,h5,h6,pre,code { font-size:1em; }

/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with 
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input
{ margin:0; padding:0 }

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img { border:none }

/* de-italicize address */
address { font-style:normal }

/* more varnish stripping as necessary... */

body {
 background-color: #000;
 text-align: center;
 margin: 50px 0;
 }
 
div#wrap {
 width: 700px;
 margin: 0 auto;
 text-align: left;
 }
 
 h1#masthead {
  width: 700px;
  height: 229px;
  }
  
  h1#masthead a {
   display: block;
   height: 100%;
   width: 100%;
   text-indent: -9999px;
   background: url('/images/masthead.jpg') top left no-repeat;
   }
   
div#body {
 background: url('/images/content-bg.jpg') top left no-repeat;
 min-height: 260px;
 padding: 0 20px;
 }
 
div#nav {
 text-align: center;
 color: black;
 padding: 13px 0;
 font-family: "Lucida Grande", "Lucida Sans", Helvetica, Arial, sans-serif;
 font-size: 12px;
 margin-bottom: 20px;
 }

div#nav p a:link, div#nav p a:visited, div#nav p a, div#nav p a:active {
 color: #000;
 text-decoration: none;
}

div#nav a:hover {
 color: #000;
 border-bottom: 1px solid #000;
}
  
div#body h2 {
 font-family: Georgia, "Times New Roman", serif;
 text-transform: uppercase;
 font-weight: normal;
 letter-spacing: 3px;
 font-size: 120%;
 padding-bottom: 5px;
 border-bottom: 1px solid #333;
 margin: 35px 0 12px 0;
 }

div#body h2 a {
 border: 0;
 text-decoration: none;
 color: #000;
}

div#body h3 {
 font-family: Georgia, "Times New Roman", serif;
 margin-top: 20px;
}
 
 div#content p, div#content ul, div#content ol {
  font-family: Georgia, "Times New Roman", serif;
  padding: 7px 10px;
  font-size: 90%;
  line-height: 180%;
  }

div#content p.right {
 text-align: right;
}

div#content p.posted {
 text-align: right;
 color: #333;
 font-family: "Lucida Grande", "Lucida Sans", Helvetica, Arial, sans-serif;
 font-size: 12px;
}

div#content a {
 color: #333;
 border-bottom: 1px solid #333;
}

div#content li {
 list-style-type: square;
 margin-left: 40px;
}
  
div#footer {
 height: 28px;
 text-align: center;
 background: url('/images/footer.jpg') top left no-repeat;
 color: #000;
 padding-top: 12px;
 font-family: "Lucida Grande", "Lucida Sans", Helvetica, Arial, sans-serif;
 font-size: 12px;
 }