/**
 * ------------------------------------------
 *   PVII Luna
 *   by Project Seven Development
 *   www.projectseven.com
 *   Layout02: Type Maestro - Vertical Menu
 *   ------------------------------------------
 *
 * @format
 */
/* width */
::-webkit-scrollbar {
	width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
	background: rgb(197 59 56);
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #fff;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: rgb(95, 4, 4);
}
body {
	font-family: Calibri, Geneva, Arial, Helvetica, sans-serif;
	margin: 0;
	background-color: #fff;
	color: #000;
	padding: 0;
}

#logo {
	background-color: #000;
	position: fixed;
	top: 0;
	left: 0px;
	width: 100%;
	z-index: 9999999;
	border-bottom: 1px solid #fff;
	text-transform: uppercase;
}

/*Logo CSS3 Properties*/
#logo {
	-moz-box-shadow: 3px 3px 20px #ccc;
	-webkit-box-shadow: 3px 3px 20px #ccc;
	box-shadow: 3px 3px 20px #ccc;
}

/*Navigation basic properties and Fallbacks for older browsers*/
.navigation {
	padding: 16px 16px 8px 16px;
	position: fixed;
	left: 26px;
	top: 62px;
	width: 192px;
	z-index: 999999;
	border: 1px solid #999;
	zoom: 1;
}

/*Navigation CSS3 properties for modern browsers*/
.navigation {
	border: 1px solid rgba(255, 255, 255, 1);
	-moz-border-radius: 0 0 4px 4px;
	-webkit-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
	-moz-box-shadow: 0px 0px 20px #bbb;
	-webkit-box-shadow: 0px 0px 20px #bbb;
	box-shadow: 0px 0px 20px #bbb;
	background-color: #e3e3e3;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#ffffff),
		to(#cccccc)
	);
	background: -moz-linear-gradient(top, #ffffff, #cccccc);
	background: linear-gradient(#ffffff, #cccccc);
}

/*Navigation Microsoft Filter*/
.navigation {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#CCCCCC');
}

.p7Luna-menu {
	font-size: 16px;
	margin: 0 auto;
	padding: 0px;
}

.p7Luna-menu li {
	list-style-type: none;
}

.p7Luna-menu a {
	text-align: left;
	padding: 6px 12px;
	display: block;
	margin-bottom: 6px;
	text-decoration: none;
	color: #000;
	outline: 0;
	background-color: #999;
	border-top: 1px solid #ccc;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
	border-left: 1px solid #ccc;
}

.p7Luna-menu a:hover,
.p7Luna-menu a:focus {
	color: #ddd;
	background-color: #222;
	border-color: #222;
}

/*Menu Hover Links CSS3 Properties*/
.p7Luna-menu a:hover,
.p7Luna-menu a:focus {
	-moz-box-shadow: 3px 3px 20px 3px #888;
	-webkit-box-shadow: 3px 3px 20px 3px #888;
	box-shadow: 3px 3px 20px 3px #888;
}

.p7Luna-menu a.down {
	background-color: #c30;
	border-color: #f03d00 #9d2700 #9d2700 #f03d00;
	color: #fff;
}

/*Menu Down State Links CSS3 Properties*/
.p7Luna-menu a.down {
	-moz-box-shadow: 3px 3px 10px #666;
	-webkit-box-shadow: 3px 3px 10px #666;
	box-shadow: 3px 3px 10px #666;
}

h1,
h2,
h3,
h4 {
	font-family: "MatchbookMatchbook", Calibri, Geneva, Arial, Helvetica,
		sans-serif;
	font-weight: normal;
	line-height: normal;
}

h1 {
	font-size: 54px;
	margin: 0;
}

h2,
h3,
h4 {
	margin: 24px 0 0 0;
	font-size: 50px;
}

h3 {
	font-size: 44px;
}

h4 {
	font-size: 40px;
}

.section-header {
	margin: 0 0 20px 0;
}

span.subheading,
p.subheading {
	font-family: Calibri, Geneva, Arial, Helvetica, sans-serif;
	display: block;
	font-size: 11px;
	color: #c30;
	text-transform: uppercase;
	font-weight: bold;
}

/*Adjust bottom padding to leave room for footer
Adjust left margin to leave room for navigation menu*/
#p7PGS_content {
	max-width: 700px;
	padding-bottom: 100px;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	margin: 0 0 0 280px;
	position: relative;
	z-index: 1;
}

/*Adjust padding to set top position of content sections and the space at the bottom of each section*/
div.section {
	padding-top: 100px;
	padding-bottom: 300px;
}

.section img {
	display: block;
	margin: 20px auto;
	border: 1px solid #eeebeb;
	border-radius: 8px;
	box-shadow: rgba(5, 4, 4, 0.178) 4px 4px 14px;
}
.section h2,
.section h1,
.section .subheading {
	text-align: center;
}
/*Text properties and white space for content in sections. Top padding is not necessary*/
div.section-content {
	line-height: 1.5;
	font-size: 16px;
	padding: 0px 30px;
}

.section-content ul {
	margin-left: 0.85em;
	padding-left: 0.85em;
}

.section-content li {
	list-style-type: square;
}

.section-content strong {
	color: #c30;
}

.section-content em {
	font-style: normal;
	text-transform: uppercase;
}

.section-content a,
.section-content a:visited {
	color: #66cc00;
}

.section-content a:hover,
.section-content a:focus {
	color: #000;
	outline: 0;
}

#footer {
	position: fixed;
	width: 100%;
	top: auto;
	bottom: 0px;
	z-index: 999999;
	background-color: #000;
}

#footer .footer-content {
	margin-left: 280px;
	color: #999;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	padding: 16px 0;
	max-width: 702px;
}

.shadow-box {
	margin: 20px 0;
	padding: 20px 28px;
	background-color: #222;
	border-top: 1px solid #333;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	border-left: 1px solid #333;
	color: #ccc;
	line-height: 1.35;
}

/*ShadowBbox CSS3 Properties*/
.shadow-box {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-moz-box-shadow: 10px 10px 20px #666;
	-webkit-box-shadow: 10px 10px 20px #666;
	box-shadow: 10px 10px 20px #666;
}

.shadow-box a,
.shadow-box a:visited,
#footer a,
#footer a:visited {
	color: #2d7ba6;
}

.shadow-box a:hover,
.shadow-box a:focus,
#footer a:hover,
#footer a:focus {
	color: #c30;
	outline: 0;
}

div.css-column-50percent {
	display: table-cell;
	padding: 0 20px;
	width: 50%;
	vertical-align: top;
}

div.css-column-60percent {
	display: table-cell;
	padding: 0 20px 0 0;
	width: 60%;
	vertical-align: top;
}

div.css-column-70percent {
	display: table-cell;
	padding: 0 20px 0 0;
	width: 70%;
	vertical-align: top;
}

div.css-column-40percent {
	display: table-cell;
	padding: 12px 20px;
	width: 40%;
	border-left: 1px dotted #000;
	vertical-align: top;
	font-size: 13px;
	line-height: 1.3;
}

div.css-column-30percent {
	display: table-cell;
	padding: 12px 20px;
	width: 30%;
	border-left: 1px dotted #000;
	vertical-align: top;
	font-size: 13px;
	line-height: 1.3;
}

table.data-table {
	width: 95%;
	background-color: #000;
	font-size: 12px;
	color: #ccc;
	margin: 12px 0;
	border: 12px solid #000;
}

/*Data Table CSS3 Properties*/
table.data-table {
	-moz-box-shadow: 10px 10px 20px #666;
	-webkit-box-shadow: 10px 10px 20px #666;
	box-shadow: 10px 10px 20px #666;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

table.data-table th {
	font-weight: normal;
	text-align: left;
	padding: 0;
	background-color: #000;
}

table.data-table td {
	border: 1px solid #999;
	text-align: center;
	padding: 2px;
	background-color: #999;
	color: #000;
}

table.data-table .no {
	background-color: #151515;
	color: #ccc;
}

/*
Bottom padding is assigned to the last section on the page. Adjust as necessary.
*/
div.section.last {
	padding-bottom: 600px;
}

/*Styles read only by Mobile Devices*/
.p7PGS_mobile #logo,
.p7PGS_mobile #footer {
	position: static !important;
	width: auto !important;
}
.p7PGS_mobile .navigation {
	position: absolute !important;
}
.p7PGS_mobile div.section {
	padding: 30px 0 !important;
}
#mobile-view {
	display: none;
}
@media (max-width: 868px) {
	body {
		display: block;
		width: 100%;
		overflow: scroll;
	}
	.m-logo {
		position: fixed;
		top: 0;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
		left: 0;
		right: 0;
		color: #fff;
		background-color: rgb(197 59 56);
		font-size: 20px;
		box-shadow: rgb(8, 7, 7) 2px 2px 8px;
		z-index: 5;
	}
	.m-logo a {
		color: #fff;
		text-decoration: none;
		font-size: 14px;
	}
	#logo {
		display: none;
	}
	#mobile-view {
		display: block;
	}
	.navigation {
		display: block;
		position: static;
		width: 99%;
		max-width: 500px !important;
		padding: 20px !important;
		margin: 20px auto !important;
	}
	#p7PGS_content {
		display: block;
		padding: relative;
		padding: 20px 10px 100px 10px;
		width: 100vw !important;
		margin: 0;
	}
	#footer {
		position: static;
		margin: 0;
		padding: 0;
	}
	.navigation img {
		display: block;
		margin: 8px auto;
	}
	div.section {
		padding: 10px 0px !important;
		margin-bottom: 15px;
		box-shadow: 1px 1px 20px #666;
	}
	#footer .footer-content {
		margin: 0;
		padding: 20px 10px;
		text-align: center;
	}
	img {
		max-width: 100% !important;
	}
}
