/*
To set font sizes in content use em with sliding decimal
18pt = 1.8em, 16pt = 1.6em, 14pt = 1.4em, 12pt = 1.2em, 10pt = 1em, 8pt = 0.8em
Common fonts to all versions of Windows & Mac equivalents
Arial, Helvetica, sans-serif
'Arial Black', Gadget, sans-serif
Courier New, monospace
Georgia, serif
Impact, Charcoal, sans-serif
Lucida 'Sans Unicode', Lucida Grande, sans-serif
Tahoma, Geneva, sans-serif
'Times New Roman', Times, serif
'Trebuchet MS', Helvetica, sans-serif
Verdana, Geneva, sans-serif
*/

body {
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 80%; /* set default for base font size to 10pt */
	line-height: 140%;
}
p { margin: 15px 0px; }
h1 { font-size: 1.8em; font-weight: bold; margin: 15px 0px; line-height: 140%; }
h2 { font-size: 1.6em; font-weight: bold; margin: 15px 0px; line-height: 140%; }
h3 { font-size: 1.4em; font-weight: bold; margin: 15px 0px; line-height: 140%; }
h4 { font-size: 1.2em; font-weight: bold; margin: 15px 0px; line-height: 140%; }
a img { border: none; } /* remove border for linked images */
form input { font-size: 1em; }
ul.disc { list-style-type: disc; }
ul.circle { list-style: circle;}
ul.square { list-style-type: square; }
ul.none { list-style-type: none; }

a.pagination_link:link {
	font-size: 8pt;
	font-family: Verdana;
	color: #ffffff;
	text-decoration: none;
	padding: 0 10px;
}

a.pagination_link:visited {
	font-size: 8pt;
	font-family: Verdana;
	color: #ffffff;
	text-decoration: none;
	padding: 0 10px;
}

a.pagination_link:hover {
	font-size: 8pt;
	font-family: Verdana;
	color: #8cd6f9;
	text-decoration: none;
	padding: 0 10px;
}
/*** Pop-Up Styles *******/
#backgroundPopup{
	display:none;
	position:fixed;
	_position:absolute; /* hack for internet explorer 6*/
	height:100%;
	width:100%;
	top:0;
	left:0;
	background:#000000;
	border:1px solid #cecece;
	z-index:1;
}
#popupContainer{
	display:none;
	position:fixed;
	_position:absolute; /* hack for internet explorer 6*/
	height:350px;
	width: 500px;
	background:#FFFFFF;
	border:2px solid #cecece;
	z-index:2000;
	padding:12px;
	font-size:13px;
}
.popup_title{
	text-align:left;
	color:#8d2434;
	cursor: pointer;
	font-size:22px;
	font-weight:700;
	border-bottom:1px dotted #D3D3D3;
	padding-bottom:2px;
	margin-bottom:20px;
}
#popupClose{
	font-size:14pt;
	font-weight: bold;
	line-height:14pt;
	right:6px;
	top:4px;
	position:absolute;
	color:#b90000;
	cursor: pointer;
	font-weight:700;
	display:block;
}