/* Print stylesheet
----------------------------------------------
	Name: Firstname Lastname
	Date: Day Month Year
*/ 


/* Index
----------------------------------------------
	1. Typography
	2. Hidden Elements
*/


/* 1. Typography
----------------------------------------------*/

body
{
	padding: 20px;
	color: #333;
	font: normal 13px/22px "Open Sans",Arial,Helvetica,sans-serif; 
	/* for more information on font stacks please visit - http://articles.sitepoint.com/article/eight-definitive-font-stacks */
	/* for more information on css typeset please visit - http://www.jan-quickels.de/tools-web-typography/ */
}

/* --- links */
	
a
{
	color: #27479E;
	text-decoration: none;
}

a:hover
{
	text-decoration: underline;
}


/* --- paragraph */

p
{
	padding: 4px 0 8px;
}

/* --- lists */

ul
{
	margin: 0;
	padding: 6px 0 12px 18px;
}

ol
{
	padding: 6px 0 12px 21px;
}

ul li
{
	list-style: square;
	padding: 3px 0 0 5px;
}	

ol li
{
	list-style: decimal;
	padding: 3px 0;
}	
li ul li
{
	list-style: disc;
}	
li li ul li
{
	list-style: circle;
}	

/* --- headings */

h1
{	
	font-size: 37px;
	line-height: 45px;
	margin:  0 0 14px;
	font-weight: normal;
	font-family: "Open Sans Condensed", Impact, Impact, Charcoal, sans-serif;
	font-style: italic;
	color: #27479e;
}
h2, h3, h4, h5, h6
{
	margin:  5px 0 10px;
	font-family: "Open Sans Condensed", Impact, Impact, Charcoal, sans-serif;
}
h2
{
	font-size: 33px;
	line-height: 41px;
	font-weight: normal;
	font-style: italic;
	color: #fba618;
}
h3
{
	font-size: 28px;
	line-height: 35px;
	font-weight: normal;
	font-style: italic;
	color: #27479e;
}
h4, h5, h6
{
	font-weight: bold;
	text-transform: uppercase;
}
h4
{
	font-size: 20px;
	line-height: 28px;
	color: #fba618;
}
h5
{
	font-size: 19px;
	line-height: 27px;
	color: #27479e;
}
h6
{
	font-size: 14px;
	line-height: 21px;
}
h4 a, h5 a, h6 a
{
	color: #faa518;
	display: block;
}

/* --- images */

img
{
	border: 0;
}
	
	
/* 2. Hidden Elements
----------------------------------------------*/

/* hide here any elements you do not want to print */

form,
#backgroundoverlay,
#header,
#sideBar,
#footer
{
	display: none !important;
}