/*
 * CSS specific to Footnotes module.
*
* Thanks to binford2k@lug.wsu.edu for this tip and drinkypoo
* for the question leading up to it. http://drupal.org/node/80538
*/

/* Add empty space before footnotes and a black line on top. */
.footnotes {
  clear: both;
  margin-top: 4em;
  margin-bottom: 2em;
  border-top: 1px solid #000;
}
/* Make footnotes appear in a smaller font */
.footnotes {
  font-size: 0.9em;
}
/*
  Make the footnote a supertext^1
*/
.see-footnote {
  vertical-align: top;
  position: relative;
  top: -0.25em;
  font-size: 0.9em;
}
/* Hide the bullet of the UL list of footnotes*/

ul.footnotes {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}
ul.footnotes li {
  margin-left: 2.5em;
  list-style-type: none;
  background: none;
}
ul.footnotes {
  position: relative;
}
.footnotes .footnote-label {
  position: absolute;
  left: 0px;
  z-index: 2;
}
.see-footnote:target,
.footnotes .footnote:target {
  background-color: #000;
}
.see-footnote:target {
  border: solid 1px #000;
}
.footnotes .footnote-multi {
  vertical-align: top;
  position: relative;
  top: -0.25em;
  font-size: 0.75em;
}
/* First footnote */
#fn1 {
  border-top: 1px solid #000;
  margin-top: 3em;
}
.footnote {
  font-size: 0.9em;
}
 