/**
* @package		formatFootnotes CSS Endnote Version
* @updated               4-Dec-2018
* @version		1.0
* @copyright            (C) 2018 {kunŽeze}. All rights reserved.
* @original-author	Timothy Groves	desk@brandspankingnew.net
* @since		26-Jan-2006
*/

/* footnotes as they original appear inline, before reformatting */
div.footnote span.footnote {
	padding-left: 10px;
}

/* footnote links in text */
a.ftnlink {
	vertical-align: super;
	font-size: xx-small;
}
a.ftnlink-square:before {
	content: "[";
}
a.ftnlink-square:after {
	content: "]";
}
a.ftnlink-round:before {
	content: "(";
}
a.ftnlink-round:after {
	content: ")";
}

/* div to hold all reformatted footnotes */
.footnoteholder {
	border-left: 1px solid #ccc;
	margin: 10px 0 20px 0;
	padding: 0px 0 0 10px;
	font-size: x-small;
	line-height: 1.2em;
}

/* div to hold single reformatted footnote */
.footnoteholder div.footnote {
	margin: 0 0 10px 0;
}