/*
  default.css
  
  Note:
    IE 6.0 can't handle tag[class~="classValue"].  So we are stuck using
    tag.classValue
*/

/*
  Standard html tags
*/
body {
  color: rgb(0,0,0);
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
}
  

h1 {
  font-size: 130%;
  font-weight: bold;
}

h2 {
  font-size: 120%;
  font-weight: bold;
}

h3 {
  font-size: 110%;
  font-weight: bold;
}

h4 {
  font-size: 100%;
  font-weight: bold;
  font-style: italic;
}

h5 {
  font-size: 100%;
  font-weight: normal;
  font-style: italic;
}



/* *************************************************************
  Inline formating
*/

/* Citations */
cite.subject {
  font-size: 85%;
  font-style: italic;
}

cite.attribution {
  font-size: 85%;
  font-style: italic;
}

/* Spans */
span.italic {
  color: inherit;
  font-size: inherit;
  font-style: italic;
  font-weight: inherit;
}

span.bold {
  color: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: bold;
}

span.debug {
  color: rgb(0,0,255);
  font-size: inherit;
  font-style: normal;
  font-weight: normal;
}

span.info {
  color: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: normal;
}

span.notice {
  color: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: bold;
}

span.error {
  color: rgb(255,0,0);
  font-size: inherit;
  font-style: normal;
  font-weight: bold;
}

span.warning {
  color: rgb(255,0,0);
  font-size: inherit;
  font-style: normal;
  font-weight: inherit;
}



/* *************************************************************
  Divisions
*/
div.floatingImageRight {
  float: right;
  margin: 1.5em;
}

div.floatingImageLeft {
  float: left;
  margin: 1.5em;
}

div.event {
  margin-top: 2em;
}

div.pageFooter {
  font-size: 85%;
  font-style: italic;
  margin-top: 4em;
}

div.titlepage {
  padding-top: 1em;
}

div.section {
  padding-top: .5em;
}

div.appendix {
  padding-top: 1em;
}

div.qandaset {
  /* background: lightgray; */
  margin-left: 2em;
}

/* *************************************************************
  Tables
*/
table caption {
  color: inherit;
  empty-cell: show;
  font-size: inherit;
  font-style: inherit;
  font-weight: bold;
}

td.colHeader {
  border-bottom-width: thick;
  border-bottom-style: solid;
  color: inherit;
  empty-cell: show;
  font-size: inherit;
  font-style: inherit;
  font-weight: bold;
}

td.colHeader2 {
  color: inherit;
  empty-cell: show;
  font-size: inherit;
  font-style: inherit;
  font-weight: bold;
}

td.colHeader3 {
  border-bottom-width: thin;
  border-bottom-style: solid;
  color: inherit;
  empty-cell: show;
  font-size: inherit;
  font-style: inherit;
  font-weight: bold;
}

td.cell {
  color: inherit;
  empty-cell: show;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

td.cellx {
  color: inherit;
  empty-cell: show;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  width: 5%;
}

td.cellCentered {
  color: inherit;
  empty-cell: show;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  text-align: center;
}

table.vidsTable {
  border-width: thin;
  border-style: solid;
  width: 100%;
}

table.tblBorder {
  border-width: thin;
  border-spacing: .75em .10em;
  border-style: solid;
}

table.blockquote * td[width="10%"] {
  width: 2%;
}

table.blockquote * p {
  font-style: italic;
}

tr.qandadiv {
  background: lightgray;
}

tr.toc {
  background: lightblue;
}

tr.question * p {
  font-family: sans-serif;
  font-weight: bold;
}


/* *************************************************************
  Lists, terms, and definitions
*/
dl.cardStack {
  border-width: inherit;
  border-style: inherit;
}

dt.term {
  color: inherit;
  font-size: inherit;
  font-style: italic;
  font-weight: bold;
  padding-top: .5em;
}

/* *************************************************************
  Paragraphs
*/
p.cardContent {
  border-width: thin;
  border-style: solid;
}


/* *************************************************************
  pre-formatted text
*/
pre.license {
  font-size: 80%;
}


    
