:root {
  --cassiopeia-color-primary: #009966; /*#112855; */
  --cassiopeia-color-link: #224faa;
  --cassiopeia-color-hover: #424077;
}

/* 03/10/16 added to correct odd coloring from JoomlaPlates source
a:link { color: Blue; }
a:visited { color: DarkBlue; }
a:hover { color: Black; }
a:active { color: Black; }
em {color: Black}
footer.tm-footer { color: Black; } */

/* 12/02/2015 from 13px/1.8em color #555 to larger font, less leading, darker color: */
body {
  font:normal 16px/1.5em Arial, Helvetica, sans-serif;
  color:#333;padding:0; margin:0;
  counter-reset: footnotecounter; /* Create a footnote counter scope, used with a.foot, 01/16/2016 */
 }
/* 12/01/2015 Add 20px top padding to heading styles */
h1,h2,h3,h4,h5,h6 {margin:0; padding: 20px 0 10px 0; font-weight:normal; color:#555; font-family:'Oswald', Arial, Helvetica, sans-serif;}
/* 12/03/2015 Increase the line-height of the article title from 30px to 36px */
.item-page-title, .item-page-title a {
    text-decoration: none;
    font-size: 30px;
    line-height: 36px;
}
/* 12/16/2015 Increase the line-height of the article subtitle from 30px to 120% and font size from 30px to 24px */
h3 {
    font-size: 24px;
  	line-height: 120%;
}
h4 {
  	line-height: 120%;
}
/* 12/03/2015 had been 0px, 10px, but 5px, 5px evens it out for introducing lists. */
p {
  	font-family: Georgia, Times, serif;
	margin-top: 5px;
    margin-bottom: 5px;
}
blockquote {
  font-style: italic;
  background-color: #EEEEFF;
}
li {
    	font-family: Georgia, Times, serif;
}
}
/* 01/16/2016 -- a.foot is for footnotes; see also body, for the counter, 01/07/2016 */
a.foot {
	text-decoration: none;
	outline: none;
}
a.foot:after {
	font-size: smaller;
	margin-right: 0.5em;
	vertical-align: super;
		/* sets the footnote above the baseline */
	content: counter(footnotecounter);
	counter-increment: footnotecounter;
	/* Add 1 to footnote */
}
a.backlink {
	text-decoration: none;
	outline: none;
}
a.backlink:after {
	margin-left: 0.5em;
	content: "(↩)"
	/* return link from footnote to body */
}
sup, sub { 	/* prevent superscript or subscript from interfering with line spacing */
   vertical-align: baseline;
   position: relative;
   top: -0.4em;
}
sub { top: 0.4em; }
