/* Force all browsers (including future CSS3 browsers) to use the traditional box model */
* {
 box-sizing: border-box;
 -moz-box-sizing: border-box;
}

/* Start from common margin and padding (stolen from HTML 4.0 spec recommendations) */

* { margin: 0; padding: 0; }

#content h1 { margin: .67em 0; }
#content h2 { margin: .83em 0; }
#content h3 { margin: 1em 0; }
#content h4, #content p, #content ul { margin: 1.33em 0; }
#content h5 { margin: 1.67em 0; }
#content h6 { margin: 2.33em 0; }
#content ol, #content ul { margin-left: 40px; }
#content ol ul, #content ul ol, #content ul ul, #content ol ol { margin-top: 0; margin-bottom: 0; }

/* Common classes */

.hidden {
 display: none;
}

/* Navigation */

#nav {
 list-style-type: none;
 float: left;
 margin: 1px 0px 0px 1px;
}

#nav ul {
 list-style-type: none;
}

#nav div {
 color: #FFF;
 background-color: #036;
 text-decoration: none;
 font-weight: bold;
 border-style: outset;
 border-color: #9CF;
}

#nav div div {
 padding: .2em .8em .2em .8em;
 border-style: none;
}

#nav div a {
 color: #FFF;
 display: block;
 width: 9em;
 text-decoration: none;
 font-weight: bold;
 padding: .2em .8em .2em .8em;
}

#nav div a:hover {
 color: #FFF;
 background-color: #69C;
}

#nav li li a {
 padding: .2em .2em .2em 1.6em;
 background-color: #369;
 font-weight: normal;
}

/* Header */

#directory {
 padding: .5em;
 background-color: #69C;
 font-weight: bold;
 margin: 1px 1px 0px 1px;
}

/* Footer */

#footer {
 clear: both;
}

#footer_first_posted {
 float: left;
}

#footer_last_modified {
 float: right;
}

/* Content */

html, body {
 background-color: #9CF;
}

#content .new {
 background-color: #CFF;
}

#content {
 width: 98%; /* Fix for IE resizing causing content text to position below nav */
 margin-left: 10.5em;
 padding: 0em 1em 0em 0em;
 height: 1%; /* Fix: IE@/ebooks/ */
}

#content.content_fullsize {
 margin: 0em;
 padding: 0em 1em 0em 1em;
}

#content h1 {
 margin-top: .5em;
}

#content * {
 line-height: 130%;
}

/* Quotations */

.quote_source {
 font-size: smaller;
 font-style: italic;
 text-align: right;
}
