/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
body {
	counter-reset: refnum;
}

/*
I'm copying this in here from the Theme's CSS, just in case they update it. I don't know if theirs or mine takes precedence. We shall see.
*/
.posttitle {
	margin: 0 0 5px;
	padding: 0 0 5px;
	border-bottom: 5px solid #000000;
	counter-reset: refnum;
}

h2 {
	padding-top: 20px;
}

h3 {
	padding-top: 25px;
}

h3.padding {
	padding-top: 25px;
}

hr {
	display: block;
	margin-top: .5em;
	margin-bottom: .5em;
	margin-left: 5%;
	margin-right: 5%;
	border-style: inset;
	border-width: 1px;
}

p.bigfirst::first-letter {
	font-size: 24pt;
	float: left;
	padding-right: 3px;
}

div.writing {
	background-color: LemonChiffon;
	margin: 5%;
	padding: 3%;
}

li.classA {
  background-color: MistyRose;
}

li.classB {
  background-color: PapayaWhip;
}

li.classC {
  background-color: #e6ffcc;
}

div.wwimage {
	float: right;
}

.box {
/* Box Shadow */
/* Opera */
	-o-box-shadow: 3px 3px 5px 2px rgba(0,0,0,0.15);
/* IE */
	-ms-box-shadow: 3px 3px 5px 2px rgba(0,0,0,0.15);
/* Mozilla FireFox */
	-moz-box-shadow: 3px 3px 5px 2px rgba(0,0,0,0.15);
/* Google Chrome */
	-webkit-box-shadow: 3px 3px 5px 2px rgba(0,0,0,0.15);
/* Normal */
	box-shadow: 3px 3px 5px 2px rgba(0,0,0,0.15);
}

.Rpullquote {
	width: 10em;
	margin: .25em 1em .25em 0;
	color: orange;
	background: #ffffff;
	font: 1.3em/1.3 Georgia, serif;
	text-align: left;
	float: right;
	padding: .5em;
	border: solid darkgray;
	border-width: 0 0 0 8px;
}

.Rpullquote:hover, .Rpullquote:active {
	color: red;
}

.Lpullquote {
	width: 10em;
	margin: .25em 1em .25em 0;
	color: orange;
	background: #ffffff;
	font: 1.3em/1.3 Georgia, serif;
	text-align: left;
	float: left;
	padding: .5em;
	border: solid darkgray;
	border-width: 0 8px 0 0;
}

.Lpullquote:hover, .Lpullquote:active {
	color: red;
}

.OLDpullquote {
	width: 10em;
	margin: .25em 1em .25em 0;
	color: #000000;
	background: #ffffff;
	font: italic 1.3em/1.3 Georgia, serif;
	text-align: center;
	float: left;
	padding: .5em;
	border: solid #000000;
	border-width: 8px 0;
}

.Rpullquote::first-letter {
	text-transform: uppercase;
	font-size: 150%;
}

.Lpullquote::first-letter {
	text-transform: uppercase;
	font-size: 150%;
}

li::first-letter {
	text-transform: uppercase;
}

.smallcaps {
	font-variant: small-caps;
}

dfn {
	border-bottom-style: dotted;
	border-bottom-color: green;
	border-bottom-width: thin;
	font-style: normal;
}

.ref {
	font-style: normal;
}

.ref:after {
	color: red;
	content: "[" counter(refnum) "]";
	counter-increment: refnum;
	font-size: 75%;
	vertical-align: super;
	font-weight: bold;
}

ol.footnote {
	font-size: 75%;
}

ol.footnote:before {
	font-weight: bold;
	font-size: 100%;
	content: "Footnotes:";
}