/* common styles for Goldstein site  */


/* GENERAL */

html, body {
  margin: 0px;
}
body {
  background-color: #ffffff;
  background-image: url(../img/ff9966_200x100.gif);
  background-repeat: repeat-y;
}

/* for div containing skip links and other content that should never be seen by visual browsers */
.offscreen {
  position: absolute;
  left: 0px; top: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
/* for back to top anchor */
#divtopanchor {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 1px;
  height: 1px;
  z-index: 1;
}

/* div or other to clear floating things */
.clear, .divclear {
  clear: both;
}

/* remove space around form */
form {
  display: inline;
  margin: 0;
  padding: 0;
}
/* get rid of fieldsets and legends */
fieldset {
  display: inline;
  border: none;
  margin: 0;
  padding: 0;
}
legend {
  display: none;
}

/* table cells all aligned left and top */
td {
  text-align: left;
  vertical-align: top;
}

/* layout table */
/* note: cellspacing=0 must still be specified in table tag because of IE */
table.layouttable {
  border: none;
  border-spacing: 0px;
  margin: 0px;
  padding: 0px;
}
table.layouttable td {
  padding: 0px;
}

/* elements for screen display or print display only */
span.screenonly {
  display: inline;
}
span.printonly {
  display: none;
}
div.screenonly {
  display: block;
}
div.printonly {
  display: none;
}

/* all lists use solid bullet */
ul {
  list-style-type: disc;
}

/* default font and links */
html, body {
  font-family: "Palatino Linotype", Palatino, "Times New Roman", Times, serif;
  color: #000000;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin-top: 0px;
}
a,
a:link {
  color: #339966;
  text-decoration: none;
}
a:visited {
  color: #339966;
  text-decoration: none;
}
a:hover {
  color: #006633;
  text-decoration: none;
}



/* BANNER */

#divbanner {
  background-color: #ff9966;
  height: 100px;
}
#divbanner a {
	position: relative;
}
#divbanner h1, #divbanner h2 {
  padding: 30px 0px 22px 220px;
  margin: 0px;
  text-align: center;
}


/* NAVIGATION AREA */

#divnavigation {
  position: absolute;
  left: 20px;
  top: 120px;
  width: 160px;
}
#divnavigation ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
#divnavigation ul li {
  display: block;
  width: 160px;
  margin-bottom: 8px;

  font-family: "Monotype Corsiva", Palatino, Arial, Lucida, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 120%;
  color: #006633;
}
#divnavigation ul li.home {
  margin-top: 32px;
}
#divnavigation ul li a {
  display: block;
  width: 160px;
}
#divnavigation ul li a,
#divnavigation ul li a:link,
#divnavigation ul li a:visited {
  color: #006633;
  text-decoration: none;
}
#divnavigation ul li a:hover {
  color: #000000;
  text-decoration: none;
}
#divnavigation ul li a.current,
#divnavigation ul li a.current:link,
#divnavigation ul li a.current:visited,
#divnavigation ul li a.current:hover {
  color: #000000;
}


/* TEXT AREA */

#divtext {
  padding: 20px 20px 40px 220px;
  min-width: 532px;
}
#divtext h1 {
  font-size: 24px;
	font-weight: bold;
  color: #006633;
}
#divtext h1 span.subtitle {
  font-size: 18px;
}
#divtext h2 {
  font-size: 18px;
	font-weight: bold;
	margin-top: 32px;
}
#divtext p, #divtext li {
  font-size: 14px;
}
#divtext ul.paragraphic li {
  margin-bottom: 12px;
}

/* book images on main books page */
p.mainbooknav {
  text-align: center;
	white-space: nowrap;
}
p.mainbooknav img {
  margin: 6px;
}
p.mainbooknav a img {
  border: 2px solid #ffffff;
}
p.mainbooknav a:hover img {
  border: 2px solid #ff9966;
}

/* book images on individual book pages */
p.booknav {
  text-align: center;
	white-space: nowrap;
}
p.booknav img {
  margin: 0px 4px 0px 4px;
}
p.booknav a img {
  border: 2px solid #ffffff;
}
p.booknav a.current img {
  margin: 0px 16px 0px 16px;
}
p.booknav a:hover img {
  border: 2px solid #ff9966;
}
p.booknav a.current:hover img {
  border: 2px solid #ffffff;
}

/* paragraph containing book jacket text */
#divtext .jackettext {
  padding: 8px 8px 12px 8px;
	background-color: #f0f0f0;
	border: 1px solid #e0e0e0;
	margin-bottom: 1.5em;
}
#divtext .jackettext p {
  margin-bottom: 0px;
}

/* images that float to sides */
img.floatleft {
  float: left;
  margin: 2px 8px 6px 0px;
}
img.floatright {
  float: right;
  margin: 2px 0px 6px 8px;
}
