﻿/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*******************************    End of CSS Reset    ******************************/

body{
	font-family: Arial;
	font-size: 16px;
	padding: 5px;
	width: 60%;
	height: 100%;
	margin: 1% auto 10% auto;
   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0px 1px 4px rgba(0,0,0,0.3), inset 0px 0px 40px rgba(0,0,0,0);
	position: relative;
	padding-top: 20px;
	border: thin;
	border-style: solid;
	border-color: #D9D9D9;
	border-radius: 10px;

}

header {
	background-color: white;
}

/*-------------------------------------------------------------------------------- Links ----------------------------------------------------------*/


a:link {
     color: blue;
    text-decoration: underline;
}

a:visited {
     color: blue;
}

a:hover {
     color: blue;
	 text-decoration:none;
}

a:active {
     color: blue;
}


/*------------------------------------------------------------------------------- Button ----------------------------------------------------------*/

.button {
	-moz-box-shadow:inset 0px 0px 15px -2px #024661;
	-webkit-box-shadow:inset 0px 0px 15px -2px #024661;
	box-shadow:inset 0px 0px 15px -2px #024661;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0090c9), color-stop(1, #006d94));
	background:-moz-linear-gradient(top, #0090c9 5%, #006d94 100%);
	background:-webkit-linear-gradient(top, #0090c9 5%, #006d94 100%);
	background:-o-linear-gradient(top, #0090c9 5%, #006d94 100%);
	background:-ms-linear-gradient(top, #0090c9 5%, #006d94 100%);
	background:linear-gradient(to bottom, #0090c9 5%, #006d94 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0090c9', endColorstr='#006d94',GradientType=0);
	background-color:#0090c9;
	text-decoration:none;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #0090c9;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:arial;
	font-size:22px;
	padding:10px 34px;
	text-shadow:0px 1px 0px #0090c9;
}
.button:link{
	text-decoration:none;
}
.button:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #006d94), color-stop(1, #0090c9));
	background:-moz-linear-gradient(top, #006d94 5%, #0090c9 100%);
	background:-webkit-linear-gradient(top, #006d94 5%, #0090c9 100%);
	background:-o-linear-gradient(top, #006d94 5%, #0090c9 100%);
	background:-ms-linear-gradient(top, #006d94 5%, #0090c9 100%);
	background:linear-gradient(to bottom, #006d94 5%, #0090c9 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#006d94', endColorstr='#0090c9',GradientType=0);
	background-color:#006d94;
	text-decoration:none;
}
.button:active {
	position:relative;
	top:1px;
	text-decoration:none;
}

.link{
	text-align: center;
}

/*------------------------------------------------------------------------- Main Styles ---------------------------------------------------*/

h1{
	font-size: 2em;
	font-weight: bold;
	color: black;
	margin-bottom: 45px;
	vertical-align: middle;
	padding: 30px 0 0 0;
}

h2{
	font-size: 1.2em;
	font-weight: 600;
	color: black;
	margin-top: 0.8%;
	margin-bottom: 0.8%;
	background-color: #D9D9D9;
	padding: 0.2%;
}

h3 {
	font-size: 1.2em;
	font-weight: 600;
	color: black;
	margin-top: 0.8%;
	margin-bottom: 0.8%;
	background-color: #D9D9D9;
	padding: 0.2%;
	margin-top: 73px;
}

p {
	line-height: 170%;
	margin-bottom: 2%;
}

strong {
	font-weight: bold;
}

em {
	font-style:italic;
}

img {
	float: right;
	padding: 0px 10px 25px 0px;
}

.cols {
	column-count: 2;
}

.col1 {
	page-break-inside: avoid;
	overflow: hidden;
}

.col2 {
	page-break-inside: avoid;
	overflow: hidden;
}