/* hide these rules from CSS-challenged browsers */
@media screen, projection {
/* below exploits a parsing error so @media rules will be visible to MacIE5 */
.BeNiceToMacIE5 {
  font-family: "\"}\"";
  font-family: inherit;
}
/* left column */
.nav {
  width: 28%;              /* % of inner-container width is ~same width as right column */
  float: left;             /* left side of inner-container */
  margin: 0;               /* keep flush with adjacent containers */
  padding: .3em 0 0 2%;    /* space from window edge (IE messes up with margin, so use padding) */
  font-size: 100%;
}
#navcontainer { width: 90%; }

#navcontainer ul
{
margin-left: 0;
padding-left: 0;
list-style-type: none;

font-family: Arial, Helvetica, sans-serif;
}

#navcontainer a
{
display: block;
padding: .5em 1em;
width: 90%;
background-color: #9c6;
border-bottom: 1px solid #cf9;

}

#navcontainer a:link, #navlist a:visited
{color: #606;
font-weight: 600;
text-decoration: none;
}

#navcontainer a:hover
{
background-color: #060;
color: #ffc;
padding: .5em 1em;
}
/* center column */
.content {
  width: 65%;              /* % of inner-container width */
  float: right;            /* right side of inner-container */
  padding: .2em 1.5%;      /* some padding for readability */
  margin: 0;               /* keep flush with adjacent containers */
  background-color: #ffc;  /* light blue color will show behind the center column */
  color: #000;
  border-color: #999;      /* W3C CSS validation service get an erroneous */
  border-style: solid;     /*   parse error on border-right shorthand, */
  border-width: 0 1px;     /*   but not on individual properties */
  font-size: 95%;
}

} /* end screen only rules */

@media screen, projection, print {
/* below exploits a parsing error so @media rules will be visible to MacIE5 */
.BeNiceToMacIE5 {
  font-family: "\"}\"";
  font-family: inherit;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-image: url(images/bookshelf.png);  /* dark green body color */
  color: #000;
  font-family: arial, helvetica, sans-serif;
}
h1 {
  font-size: 175%;
  margin: .3em;
}
h2 {
  font-size: 135%;
  line-height: 150%;
  margin: 1em 0;
}
a:link {
  color: #00f;
  background-color: transparent;
}
a:visited {
  color: #909;
  background-color: transparent;
}

.hangindent {
 text-indent: -3em; margin-left: 3em; 
}

#byline {
	font-weight: 800;
	font-size: 95%;
	}
/* page header, uses body colors */
.header {
  width: 90%;             /* full window width */
  margin: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  text-align: center;
  color: #ffc;
}
.header img {
  float: left;
  margin-left: 2em;
  } 
  
.header h1 {
  font-size: 180%;}
/* page footer, uses body colors */
.footer {
  clear: both;             /* below all columns */
  width: 100%;             /* full window width */
  margin: 0;
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: 88%;
  text-align: center;
  color: #ffc;
}
.header p,
.footer p {
  margin-bottom: 0;        /* prevent gaps between divs in some browsers */
}
.wrap { 
  width: 90%;
  margin: 5% 5%;  background-color: #060;
  }
  
blockquote {
	  margin: 5px 0 0px 15px;
	  padding: 18px 0 0 40px;
	  font-size: 88%;
	  color:#000;
	  line-height: 1.3em;
	  background: url(images/quote-open.jpg) no-repeat top left;
	  }
	  
blockquote p {
	  margin: 0px 0 00px 5px;
	  padding: 0px 0 0 0px;
}		
/* container for the 3 columns */
.outer-container {
  width: 100%;             /* full window width */
  margin: 0;               /* keep flush with adjacent containers */
  background-color: #cf9;  /* light green color will show behind the right column */
  color: #000;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  clear: both;
}
/* container for just the left and center columns */
.inner-container {
  width: 76%;              /* leaves 24% of window width for right column */
  float: left;             /* left side of window */
  background-color: #cf9;  /* light green color will show behind the left column */
  color: #000;             /*   delete these colors to get same color as right column */
  margin: 0;               /* keep flush with adjacent containers */
}
/* right column */
.sidebar {
  width: 21%;              /* a little less than available 24% */
  float: right;            /* right side of window */
  margin: 0;               /* keep flush with adjacent containers */
  padding: .3em 1.5% .3em 0;      /* some space from right window edge */
  font-size: 90%;
}
.clear {
  clear: both;
  margin: 0;               /* keep flush with adjacent containers */
  padding: 0;
  height: 0;
  overflow: hidden;
}
} /* end screen/print rules */

/* rules for WinIE only */
@media screen, projection {
* html .clear {
  display: none;           /* prevent excessive gap at div bottom in WinIE5 */
}
} /* end WinIE only rules */



/* print only rules (per request) */
@media print {
.nav {
	display: none;
}
.content {
	float: left;
}

} /* end print only rules */

.updatelist {
	list-style-position: inside;
	list-style-type: circle;
}
