@charset "utf-8";
/* Lightbox styles */
.light-header {
	font-family: 'Lato', Arial, Helvetica;
	font-size: 40px;
	color: #00427F;
	line-height: 45px;
	text-decoration: none;
	font-weight: 300;
}
.light-subheader {
	font-family: 'Lato', Arial, Helvetica;
	font-size: 18px;
	color: #999;
	line-height: 49px;
	text-decoration: none;
	font-weight: 300;
}
.grey-line {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
.light-main {
	font-family: 'Open Sans', Arial, Helvetica;
	font-size: 14px;
	color: #6d6d6d;
	line-height: 24px;
	text-decoration: none;
	font-weight: 300;
}


a.lightbox {
	display: block;
	width: 266px;
	height: 51px;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	color: #0f55a5;
	line-height: 51px;
	text-decoration: none;
	padding-left: 24px;
	background-color: #FFF;
	background-image: url(images/arrow-blue.png);
	background-position: 235px 17px;
	background-repeat: no-repeat;
	-webkit-border-radius: 6px; 
	-moz-border-radius: 6px; 
	border-radius: 6px;
	text-align: left;
}
a.lightbox:hover {
	color: #FFF;
	background-color: #3176c5;
	background-image: url(images/arrow-white.png);
}
.lightbox-target {
	position: fixed;
	top: -100%;
	left: 50%;
	margin-left: -50%;
	background: rgba(0,0,0,.5);
	width: 100%;
	opacity: 0;
	-webkit-border-radius: 6px; 
	-moz-border-radius: 6px; 
	border-radius: 6px;
	-webkit-transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;
	overflow: hidden;
	z-index: 20000000000000000000;
}
.lightbox-target > table {
	margin: auto;
	position: absolute;
	left: 50%;
	margin-left: -300px;
	top: 20%;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	z-index: 20000000000000000000;
	-webkit-border-radius: 6px; 
	-moz-border-radius: 6px; 
	border-radius: 6px;
}
a.lightbox-close {
	display: block;
	width:50px;
	height:50px;
	background: white;
	color: black;
	text-decoration: none;
	position: absolute;
	right: 0;
	background-image:url(images/close.png);
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	-webkit-border-radius: 6px; 
	-moz-border-radius: 6px; 
	border-radius: 6px;
}
.lightbox-target:target {
	opacity: 1;
	top: 0;
	bottom: 0;
}
.lightbox-target:target table {
	max-height: 100%;
	max-width: 100%;
}
.lightbox-target:target a.lightbox-close {
	top: 0px;
}
