/* common styles for Harvard Classics site  */


/* GENERAL */

html, body {
  margin: 0px;
}
body {
  background-color: #615a81;
  background-image: none;
}

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

/* floating things */
.floatleft {
  float: left;
}
.floatright {
  float: right;
}
/* div or other to clear floating things */
.clear, .divclear {
  clear: both;
}
/* clear block */
.tinyclear {
  clear: both;
  font-size: 0px;
  height: 0px;
}
/* clear self *//* http://www.positioniseverything.net/easyclearing.html */
.clearself:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
 }
/* clear self *//* under review */
.clearself-new {
  overflow: auto;
  /* overflow: hidden; */
}

/* don't allow to wrap */
.nowrap {
  white-space: nowrap;
}

/* remove space around form */
form {
  display: inline;
  margin: 0;
  padding: 0;
}
/* fieldset */
fieldset {
  margin: 1em 0px;
  padding: 0.5em;
}
legend {
}
/* standard table styles */
table {
  border-collapse: collapse;
  border-spacing: 0px;
}
/* table cells all aligned left and top */
td, th {
  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;
}

/* column table */
table.columntable {
  border: none;
  border-spacing: 0px;
  margin: 0px;
  padding: 0px;
}
table.columntable td {
  padding: 0px 40px 0px 0px;
}

/* data table */
table.datatable {
  border: none;
  border-spacing: 0px;
  margin: 0px 0px 0.75em 0px;
  padding: 0px;
}
table.datatable th,
table.datatable td {
  padding: 0px 16px 16px 0px;
}

/* elements for screen display or print display only */
span.screenonly {
  display: inline;
}
span.printonly {
  display: none;
}
div.screenonly, h1.screenonly, h2.screenonly, h3.screenonly,
h4.screenonly, h5.screenonly, h6.screenonly, p.screenonly {
  display: block;
}
div.printonly, h1.printonly, h2.printonly, h3.printonly,
h4.printonly, h5.printonly, h6.printonly, p.printonly {
  display: none;
}

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

/* horizontal rules */
hr {
  height: 1px;
  border: 1px solid #666;
}

/* default font and links */
html, body {
  font-family: Verdana, Tahoma, Arial, Lucida, Helvetica, "Bitstream Vera Sans", sans-serif;
  font-size: 12px;
  line-height: 133%; /* relative to font size */
  color: #000000;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin-top: 0px;
}
a,
a:link {
  color: #660000;
  text-decoration: underline;
}
a:visited {
  color: #660000;
  text-decoration: underline;
}
a:hover {
  color: #ff9900;
  text-decoration: underline;
}



/* OUTER SHELL */
/* container for all page content */

#divoutershell {
  width: 980px;
  margin: 0px auto;
}



/* PAGE AREA */
/* contains all visible content */

#divpagearea {
}



/* HEADER */
/* contains tools, site title, main navigation */

#divheader {
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  width: 978px;
}



/* TOOLS */
/* black bar containing tool links and Harvard link */

#divtools {
  background-color: #000000;
}
/* Harvard link */
#divharvard {
  float: left;
  margin: 0px 0px 0px 10px;
}
/* tool links */
#divtoolnav {
  float: right;
  width: 575px;
  /*padding: 6px 50px;*/
  padding: 6px 28px 6px 50px;
}
#divtoolnav ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
#divtoolnav ul li {
  float: right;
  border-right: 1px solid #ffffff;
  padding: 0px 20px 1px 20px;
}
#divtoolnav ul li.last {
  border-right: none;
}
#divtoolnav ul li a {
  text-align: center;
  font-size: 0.75em;
  font-weight: bold;
  text-transform: uppercase;
}
#divtoolnav ul li a:link,
#divtoolnav ul li a:visited {
  color: #ffffff;
  text-decoration: none;
}
#divtoolnav ul li a:hover {
  text-decoration: underline;
}



/* PIPE */
/* decorative border below tools */

#divpipe {
  border-top: 1px solid #c6ccc8;
  border-bottom: 1px solid #c6ccc8;
  height: 6px;
  background-color: #64597d;
}



/* MAIN NAVIGATION */

#divnavigation {
}
/* outer menu */
#divnavigation ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  border-top: 1px solid #c6ccc8;
}
#divnavigation ul li {
  float: left;
  width: 139px;
  border-right: 1px solid #999999;
  background-color: #352a4f;
  position: relative;
}
#divnavigation ul li.last {
  width: 138px;
  border-right: none;
}
/* inner menus */
#divnavigation ul li ul {
  position: absolute;
  left: -1px;
  top: 1.90em;
  width: 139px;
  border: 1px solid #352a4f;
  border-top: none;
  display: none;
}
#divnavigation ul li.last ul {
  width: 138px;
}
#divnavigation ul li:hover ul {
  display: block;
}
#divnavigation ul li ul li {
  width: 139px;
  border-right: none;
  background-color: #ffffcc;
}
#divnavigation ul li.last ul li {
  width: 138px;
}
/* outer links */
#divnavigation ul li a {
  display: block;
  padding: 0.25em 0px 0.35em 0px;
  width: 139px;
  text-align: center;
  font-size: 1.0em;
  font-weight: bold;
  color: #ff9900;
  text-decoration: none;
  text-transform: uppercase;
}
#divnavigation ul li.last a {
  width: 138px;
}
/* inner links */
#divnavigation ul li ul li a {
  padding: 4px 9px 4px 9px;
  width: 121px;
  text-align: left;
  font-size: 0.75em;
  font-weight: bold;
  line-height: 120%;
  color: #330066;
  text-decoration: none;
  text-transform: none;
  border-bottom: 1px dotted #352a4f;
}
#divnavigation ul li.last ul li a {
  width: 120px;
}
#divnavigation ul li ul li.subfirst a {
  padding-top: 6px;
}
#divnavigation ul li ul li.sublast a {
 padding-bottom: 7px;
 border-bottom: none;
}
#divnavigation ul li ul li a:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: #615a81;
}
