@charset "UTF-8";
/* CSS Document */

.lightbox {
	display: none;
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	text-decoration: none;
}

.lightbox:target {
	outline: none;
	display: block;
}

.lightboxContainer {
	background: rgba(0, 0, 0, 0.5);
	padding: 5px;
	width: 90%;
	max-width: 1024px;
	margin: 2% auto;
	height: 90%;
	border-radius: 15px;
	display: table;
}

.lightboxTitle {
	font-size: 18pt;
	font-family: 'NanamiExtraLight', Helvetica, Arial, Sans-Serif;
	font-weight: lighter;
	color: white !important;
}

.lightboxContent {
	background-color: #FFFFFF;
	font-size: 12pt;
	font-family: 'NanamiExtraLight', Helvetica, Arial, Sans-Serif;
	font-weight: lighter;
	padding: 25px;
	margin: 45px 15px 15px 15px;
	overflow: scroll;
	height: 85%;
	text-align: justify;
	color: #565656 !important;
}

strong {
	font-family: 'NanamiBold', Helvetica, Arial, Sans-Serif;
	font-weight:bold;
	}
