/* CSS Document */
/* 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; }

/* Appropriate wrapper class applied for section background color */

body.main {
background: #8a2ec4 url(images/bodyplum.gif) fixed repeat-y 780px 0;
}

body.main #wrapper {
background-color: #8a2ec4;
}

body.plum {
background: #8a2ec4 url(images/bodyplum.gif) fixed repeat-y 780px 0;
}

body.plum #wrapper {
background-color: #8a2ec4;
}

/* main wrapper aligned left */

#wrapper {
float: left;
margin: 0;
padding: 0 0 10px 10px;
display: inline;
}

* html #wrapper {
#padding: 0;
}

/* header items */

#header {
background-color: #FFF;
border-bottom: 3px solid #9373ad;
float: left;
width: 760px;
padding: 10px 10px 5px 10px;
display: inline;
}

#navigation {
float: left;
width: 320px;
margin: 0 0 0 10px;
padding:0;
background-color: #FFF;
display: inline;
}

#topright {
float: right;
width: 360px;
margin: 0;
background-color: #FFF;
display: inline;
padding: 5px;
}

.quotecap {
display: none;
}

.quotebutt {
display: none;
}

.quotebody {
width: 350px;
border: 3px solid #639;
background: #FFF;
padding: 5px;
}

#subheader {
clear: both;
width: 250px;
height: 123px;
padding: 0;
margin: 5px 0 0 260px;
}

/* special header items for approriate sections */

.plum #topright {
float: right;
width: 118px;
height: 77px;
margin: 0;
background-color: #000;
border: 5px solid black;
display: inline;
}

/* horizontal rule graphic */

.hr {
clear: both;
height: 10px;
width: 760px;
background: transparent url(images/hr.gif) bottom left repeat-x;
margin: 2px 0 2px 0;
border-right: 2px solid #8a9fed;
border-left: 2px solid #8a9fed;
}

*html .hr {
border-right: none;
border-left: none;
}

/* universal spacer div */
.spacer {
clear: both;
}


/* footer */

#footer {
clear: both;
height: 30px;
width: 740px;
padding: 10px;
margin: 10px 0 10px 0;
}

/* column layout */

.primaryContent {
float: left;
width: 560px;
display: inline;
}

.sideContent {
float: left;
width: 200px;
display: inline;
}

.halfContentLeft {
float: left;
width: 380px;
display: inline;
}

.halfContentRight {
float: left;
width: 380px;
display: inline;
}

.fullContent {
float: left;
width: 760px;
display: inline;
}

/*-- boxes as used by Tedd http://www.sperling.com/examples/box/ --*/

/* primary is the two-thirds left box on main section pages */
.primaryContent .box {
float: left;
margin: 0;
padding: 0;
width: 560px;
display: inline;
}

/* side is the right one-third box on the main pages */
.sideContent .box {
float: left;
margin: 0;
padding: 0;
width: 200px;
display: inline;
}

/* half is the two-column layout used in book section pages */
.halfContentLeft .box {
float: left;
margin: 0;
padding: 0;
width: 380px;
display: inline;
}

.halfContentRight .box {
float: left;
margin: 0;
padding: 0;
width: 380px;
display: inline;
}

.plum .halfContentLeft .boxcontent {
height: 400px;
}

.plum .halfContentRight .boxcontent {
height: 400px;
}

/* full is the full width colum used at the bottom of book section pages */

.fullContent .box {
float: left;
margin: 0;
padding: 0;
width: 760px;
display: inline;
}

/* generic innner wrapper for boxes */

.boxcontent {
padding: 20px;
}

.box {
background-color: #FFF
}
		
/* ---=== border code follows ===--- */
/*
	tlc = top left corner
	trc = top right corner
	blc = bottom left corner
	brc = bottom right corner
	lb = left border
	rb = right border
	tb = top border
	bb = bottom border 
*/

.tlc, .trc, .blc, .brc
	{
	background-color: transparent;
	background-repeat: no-repeat;
	}

.tlc
	{
	background-image:url(images/tlc.gif);
	background-position: 0% 0%;
	}

.trc
	{
	background-image:url(images/trc.gif);
	background-position: 100% 0%;
	}
	
.blc
	{
	background-image:url(images/blc.gif);
	background-position: 0% 100%;
	}

.brc
	{
	background-image:url(images/brc.gif);
	background-position: 100% 100%;
	}

.tb, .bb
	{
	background-color: transparent;
	background-repeat: repeat-x;
	}
			
.tb
	{
	background-image:url(images/tb.gif);
	background-position: 0% 0%;
	}

.bb
	{
	background-image:url(images/bb.gif);
	background-position: 50% 100%;
	}
	
.rb
	{
	background-image:url(images/r.gif);
	background-position: 100% 0%;
	background-repeat: repeat-y;
	}

.lb
	{
	background-color: #FFF;
	background-image:url(images/l.gif);
	background-position: 0% 100%;
	background-repeat: repeat-y;
	}
	
/* End of Box Styling
-----------------------*/

/* tables styling */

table.jacket {
border-collapse: collapse;
background-color: #FFF;
border: none;
}

table.jacket td {
vertical-align: top;
padding: 5px;
}

td.pubinfo {
text-align: center;
}

td.pubinfo img {
margin: 15px 0 0 0;
}

/* image control */

img.default {
float: none;
}

img.header {
float: left;
display: inline;
}

.primaryContent .box img {
float: left;
display: inline;
}

.halfContentRight img.banner {
margin: 0 0 10px 0;
}

/* link formatting */

.main .box li a:link {
color: #000;
}

.main .box li a:visited {
color: #000;
}

.main .box li a:hover {
color: #b72dff;
}

.main .box li a:active {
color: #b72dff;
}

/* plum section links 
---------------------*/
.plum .halfContentLeft li a {
text-decoration: underline;
}

.plum .halfContentLeft li a:link {
color: #000;
}

.plum .halfContentLeft li a:visited {
color: #000;
}

.plum .halfContentLeft li a:hover {
color: #b72dff;
text-decoration: none;
}

.plum .halfContentLeft li a:active {
color: #b72dff;
}

.plum .halfContentLeft li a:link.thispage, .plum .halfContentLeft li a:visited.thispage, .plum .halfContentLeft li a:hover.thispage, .plum .halfContentLeft li a:active.thispage {
color: #b72dff;
text-decoration: none;
}

.plum .halfContentRight li a:link {
color: #000;
}

.plum .halfContentRight li a:visited {
color: #000;
}

.plum .halfContentRight li a:hover {
color: #b72dff;
}

.plum .halfContentRight li a:active {
color: #b72dff;
}

.plum .halfContentRight li a:link.thispage, .plum .halfContentRight li a:visited.thispage, .plum .halfContentRight li a:hover.thispage, .plum .halfContentRight li a:active.thispage {
color: #b72dff;
}



/* drop down menus gotten from 
http://www.deansabatino.com/suckerfish/suckerfish.html 
-----------------------------------------------------*/

/* Overall main navigation styles */

#nav {
margin-left: 10px;
}

#nav ul {
float: left;
list-style: none;
line-height: 1em;
padding: 0;
margin: 0;
color: #000;
}

/* The top main navigation links */
#nav a {
text-decoration: none;
color: #000;
display: inline;
}

#nav li {
float: left;
padding: 0px 10px 0 5px;
}

/* -------------------------- */
/* The dropdown links lists */
#nav li ul {
height: auto;
width: 220px; 
border: 2px solid #000;
background-color: #FFF;
/* these control the gap between menu top and the list items */
margin: 1.1em 0 0 -80px;
padding: 5px;
}

#nav li li {
padding: 0 5px 5px 5px;
}

#nav li ul a {
padding: 0;
width: 200px;
display: block;
}

/* This controls the flyout location of the second level dropdowns 
-----------------------------------------------------------------*/
#nav li ul ul {
margin: -2em 0 0 140px;
}
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
left: auto;
}

/* -------------------------- */
/* Here is the background of the main nav link while looking at the dropdown */
#nav li:hover, #nav li.sfhover {
background-color: #FFF;
}

/* The dropdown links list colors */
#nav li ul.under a {
background: #FFF;
color: #000;
}

#nav li ul.under a:hover {
color: #b72dff;
}
/* -------------------------- */
/* The background of the second level links while looking at the dropdown under it... */
#nav li ul.under li:hover a.daddy, #nav li ul.under li.sfhover a.daddy {
}
#nav li ul.under li:hover, #nav li ul.under li.sfhover {
}
/* -------------------------- */

/* If you need to have a second set of drop menus on the same page (No!!!),
   they need to have a set of styles as well. If they need to look
   the same, you could fold these references to #secnav into the
   styles above. Otherwise - a separate CSS file would be the way
   to go. I've included them here for this example...
 */

/* Begin our secondary navigation styles */

#secnav, #secnav li {
	float: left;
	list-style: none;
	line-height: 1em;
	color: #000;
	background-color: transparent;
	padding: 0;
	margin: 0;
}
/* -------------------------- */
/* Here are the top secondary navigation links */
#secnav a {
	display: block;
	padding: 0;
	color: #000;
	text-decoration: underline;
}

#secnav li {
	float: left;
	padding: 0;
}

/* -------------------------- */
/* The dropdown links lists */
#secnav li ul {
	position: absolute;
	left: -999em;
	height: auto;
	width: 280px; 
	font-weight: normal;
	border: 2px solid #000;
	background-color: #FFF;
	/* these control the gap between menu top and the list items */
	margin: 0;
	padding: 10px 0 0 0;
}
#secnav li li {
padding: 0 5px 5px 5px;
}

#secnav li ul a {
	padding: 0 5px 5px 5px;
	width: 280px;
	text-decoration: none;
}

#secnav li:hover ul, #secnav li li:hover ul, #secnav li li li:hover ul, #secnav li.sfhover1 ul, #secnav li li.sfhover1 ul, #secnav li li li.sfhover1 ul {
	left: auto;
}

#secnav li ul a:hover {
color: #b72dff;
}

#secnav li:hover, #secnav li.hover {
position: static;
}

/* text formatting - general */

body {
font-family: Tahoma, Geneva, sans-serif;
color: #000;
}

#nav li {
font: 15px Tahoma, Geneva, sans-serif;
}

#nav li li {
font: 13px Tahoma, Geneva, sans-serif;
}

#nav .update {
font: 12px Georgia, "Times New Roman", Serif;
color: #CC0033;
}

.quotebody {
font: 13px Georgia, "Times New Roman", Serif;
}

.quotebody p {
text-align: right;
margin-top: 3px;
}

p.author {
font-weight: bold;
}

/* text formating by section */

.primaryContent .box ul {
float: left;
font: bold 18px Tahoma, Geneva, sans-serif;
margin: 0 0 0 0;
text-align: center;
}

.primaryContent .box li {
padding: 10px 0 5px 0;
}

.primaryContent .box p {
font: 14px Tahoma, Geneva, sans-serif;
}

.sideContent .box p {
font: 14px Tahoma, Geneva, sans-serif;
}

.sideContent .box ul {
float: left;
font: 14px Tahoma, Geneva, sans-serif;
margin: 0;
padding: 0;
text-align: left;
}

.halfContentLeft .box ul {
font: 16px Tahoma, Geneva, sans-serif;
padding: 0;
}

.halfContentLeft .box li {
padding: 0 0 3px 0;
}

.halfContentRight .box ul {
font: bold 20px Tahoma, Geneva, sans-serif;
padding: 0 0 50px 0;
text-align: center;
}

.halfContentRight .box li {
padding: 0 0 10px 0;
}

#footer {
text-align: center;
font: 13px verdana, Tahoma, Geneva, sans-serif;
}

.plum p {
font: 15px Tahoma, Geneva, sans-serif;
padding: 0 0 10px 0;
}

/* header fonts by section */

.main .box h1 {
font: bold 24px Tahoma, Geneva, sans-serif;
text-transform: uppercase;
margin: 0 0 10px 0;
text-align: center;
}

.main .box h2 {

}

.plum .box h1 {
font: bold 24px Tahoma, Geneva, sans-serif;
text-transform: uppercase;
margin: 0 0 10px 0;
text-align: center;
}

.plum .halfContentRight h2 {
font: bold 22px Tahoma, Geneva, sans-serif;
text-transform: uppercase;
text-decoration: underline;
margin: 0 0 10px 0;
text-align: center;
}

.plum .halfContentLeft h2 {
font: bold 22px Tahoma, Geneva, sans-serif;
text-transform: uppercase;
margin: 0 0 10px 0;
text-align: center;
}

.plum .box h3 {
font: bold 18px Tahoma, Geneva, sans-serif;
margin: 0;
text-align: left;
}

.sideContent .box h2 {
font: bold 18px Tahoma, Geneva, sans-serif;
text-align: center;
margin: 0 0 10px 0;
}

.plum h4 {
font: bold 16px Tahoma, Geneva, sans-serif;
padding: 10px 0 10px 0;
}

/* color control by section */

.main h2 {
color: #1a50fe;
}

.main h1.thirteen {
color: #ef1e24;
text-decoration: underline;
}

.plum h1.thirteen {
color: #0092ef;
}

.plum h2.thirteen {
color: #0092ef;
}

.plum h2 {
color: #000;
}

.plum h3.thirteen {
color: #ef1e24;
}

h1.nochance {
color: #068df6;
text-decoration: underline;
}

h1 .nochance
#sideContent .box h2 {
color: #1a50fe;
}

#footer {
color: #faecff;
}

/* bug fixes */

*html .quotecap {
margin: 0 0 -10px 0;
}

* html #nav li ul a {
width: 180px;
}

* html #secnav li ul a {
width: 180px;
}

* html #tlc, * html #trc {height: 1%;}

*html .tlc, .trc, .blc, .brc, .bb, .tb, .rb, .lb {
}

*html #wrapper {
zoom: 1;
margin-left: 10px;
}

#html .hr {
border: none;
}
