/* -------------------------------------------------------------- 
   
themes.css
* Version:   1.0 
* Website:   https://krk8.pasco.k12.fl.us
* Creator:   Richard MacLemale

Themes are CSS classes which can be used to style a web page.
Themes can be specified in an individual entry.
As new Themes are created, this file will be updated. 

CONTENTS
	
-------------------------------------------------------------- */

/* ----- Paper Theme ----- */
.paper {
	background-image: url(/library/themes/paper/white-paper-bg.jpg);

	font-family: 'myriad-pro-condensed',sans-serif;
	font-size: 1.2em;
	padding: 20px;

	}
.paper h1 h2 h3 {
	font-family: 'myriad-pro-condensed',sans-serif;
	color: black;
	}
.paper h1 {
	font-size: 2.2em;
	font-weight: bold;
	}
.paper h2 {
	font-size: 1.8em;
	font-weight: bold;
	}
.paper h3 {
	font-size: 1.4em;
	font-weight: bold;
	}
.paper a:link { 
	font-weight: bold; 
	text-decoration: none; 
	color: #b12023;
	}
.paper a:visited { 
	font-weight: bold; 
	text-decoration: none; 
	color: #D4CDDC;
	}
.paper a:hover, a:focus, a:active { 
	text-decoration: underline; 
	color: #9685BA;
	}
