/*
Coming Soon

Main Stylesheet
v2.0.0
2020-12-10

Highlight Text Colour: #ff6600 (icons?)
*/

@import url("fonts.css");
@import url("fa-all.min.css");

/* document setup */

html,
body {
	height: 100%;
}

html {
	background: #161415 url(../images/bg.jpg) no-repeat center center fixed;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	background-size: cover !important;
}

body {
	font: 15px/30px "montserrat-regular", sans-serif;
	font-weight: normal;
	color: #575859;
	background: rgba(0, 0, 0, 0.75);
}

a,
a:visited {
	outline: none;
	color: #ff6600;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
	color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "montserrat-bold", sans-serif;
	color: #575859;
	font-style: normal;
	text-rendering: optimizeLegibility;
	margin: 18px 0 15px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-weight: inherit;
}

h1 {
	font-size: 30px;
	line-height: 36px;
	margin-top: 0;
	letter-spacing: -1px;
}

h2 {
	font-size: 24px;
	line-height: 30px;
}

h3 {
	font-size: 20px;
	line-height: 30px;
}

h4 {
	font-size: 17px;
	line-height: 30px;
}

h5 {
	font-size: 14px;
	line-height: 30px;
	margin-top: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

h6 {
	font-size: 13px;
	line-height: 30px;
	margin-top: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

p {
	margin: 15px 0 15px 0;
}

p img {
	margin: 0;
}

p.lead {
	font: 17px/33px "montserrat-regular", sans-serif;
	color: #707273;
}

em {
	font: 15px/30px "montserrat-regular", sans-serif;
	font-style: normal;
}

strong,
b {
	font: 15px/30px "montserrat-bold", sans-serif;
	font-weight: normal;
}

small {
	font-size: 11px;
	line-height: inherit;
}

blockquote {
	margin: 18px 0px;
	padding-left: 40px;
	position: relative;
}

blockquote:before {
	content: "\201C";
	opacity: 0.45;
	font-size: 80px;
	line-height: 0px;
	margin: 0;
	font-family: arial, sans-serif;
	position: absolute;
	top: 30px;
	left: 0;
}

blockquote p {
	font-family: georgia, serif;
	font-style: italic;
	padding: 0;
	font-size: 18px;
	line-height: 30px;
}

blockquote cite {
	display: block;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
}

blockquote cite:before {
	content: "\2014 \0020";
}

blockquote cite a,
blockquote cite a:visited {
	color: #707273;
	border: none;
}

abbr {
	font-family: "montserrat-bold", serif;
	font-variant: small-caps;
	text-transform: lowercase;
	letter-spacing: .5px;
	color: #7d7e80;
}

pre,
code {
	font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

code {
	padding: 3px;
	background: #ECF0F1;
	color: #707273;
	border-radius: 3px;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

mark {
	background: #FFF49B;
	color: #000;
}

hr {
	border: solid #ff6600;
	border-width: 1px 0 0;
	clear: both;
	margin: 23px 0 12px;
	height: 0;
}

ul,
ol {
	margin-top: 15px;
	margin-bottom: 15px;
}

ul {
	list-style: disc;
	margin-left: 17px;
}

dl {
	margin: 0 0 15px 0;
}

dt {
	margin: 0;
	color: #ff6600;
}

dd {
	margin: 0 0 0 20px;
}

img.pull-right {
	margin: 12px 0px 0px 18px;
}

img.pull-left {
	margin: 12px 18px 0px 0px;
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: black;
	z-index: 9999999;
	height: 100%;
}

.no-js #preloader,
.oldie #preloader,
.ie9 #preloader {
	display: none;
}

#loader {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	padding: 0;
}

#loader:before {
	content: "";
	border-top: 11px solid rgba(255, 255, 255, 0.2);
	border-right: 11px solid rgba(255, 255, 255, 0.2);
	border-bottom: 11px solid rgba(255, 255, 255, 0.2);
	border-left: 11px solid #ff6600;
	-webkit-animation: load 1.1s infinite linear;
	animation: load 1.1s infinite linear;
	display: block;
	border-radius: 50%;
	width: 60px;
	height: 60px;
}

@-webkit-keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}

}

@keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}

}


.browserupgrade {
	text-align: center;
	padding: 15px 30px;
	background: white;
}

#content-wrap {
	min-height: 100%;
	padding-top: 6%;
}

@media only screen and (max-width:900px) {
	#content-wrap {
		padding-top: 9%;
	}

}

@media only screen and (max-width:768px) {
	#content-wrap {
		padding-top: 13%;
	}

}

@media only screen and (max-width:600px) {
	#content-wrap {
		min-height: auto;
		padding-top: 60px;
	}

}

@media only screen and (max-width:400px) {
	#content-wrap {
		padding-top: 54px;
	}

}

main.row {
	max-width: 700px;
}

main {
	text-align: center;
}

main::after {
	content: "";
	display: block;
	height: 150px;
}

main h1 {
	font: 38px/1.2em "montserrat-bold", sans-serif;
	color: #ff6600;
	margin-bottom: 12px;
	padding: 0;
}

main p {
	font: 17px/36px "montserrat-regular", sans-serif;
	color: #fff;
	margin-bottom: 18px;
	padding: 0;
}

main hr {
	border: solid #ff6600;
	border-width: 5px 0 0;
	margin: 19px auto 12px;
	height: 0;
	width: 100px;
}

main .site-header .logo {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 36px 0;
	padding: 0;
}

main .site-header .logo a {
	display: block;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	width: 116px;
	height: 80px;
	background: url("../images/logo/logo@2x.png") no-repeat;
	background-size: contain;
}

@media only screen and (max-width:900px) {
	main.row {
		width: 85%;
	}

	main h1 {
		font: 35px/1.2em "montserrat-bold", sans-serif;
	}

	main p {
		font: 16px/30px "montserrat-regular", sans-serif;
	}

	main .site-header .logo {
		margin: 0 0 30px 0;
	}

	main .site-header .logo a {
		width: 104px;
		height: 72px;
	}

}

@media only screen and (max-width:768px) {
	main.row {
		width: 92%;
	}

	main h1 {
		font: 32px/1.2em "montserrat-bold", sans-serif;
	}

	main p {
		font: 15px/30px "montserrat-regular", sans-serif;
	}

	main .site-header .logo {
		margin: 0 0 24px 0;
	}

}

@media only screen and (max-width:500px) {
	main.row {
		width: 96%;
	}

	main h1 {
		font: 30px/1.2em "montserrat-bold", sans-serif;
	}

	main p {
		line-height: 27px;
	}

	main::after {
		height: 78px;
	}

}

@media only screen and (max-width:400px) {
	main.row {
		width: 100%;
	}

	main h1 {
		font: 28px/1.2em "montserrat-bold", sans-serif;
	}

	main p {
		font: 14px/27px "montserrat-regular", sans-serif;
	}

	main .site-header .logo a {
		width: 95px;
		height: 66px;
	}

}

#counter {
	width: 90%;
	color: white;
	text-align: center;
	margin: 18px auto 0;
}

#counter span {
	font: 62px/1em "montserrat-bold", sans-serif;
	display: block;
	padding: 12px 0 30px;
	min-width: 25%;
	float: left;
}

#counter span em {
	font: 11px/18px "montserrat-regular", sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 3px;
	display: block;
	color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width:900px) {
	#counter {
		width: 92%;
	}

	#counter span {
		font: 58px/1em "montserrat-bold", sans-serif;
	}

}

@media only screen and (max-width:768px) {
	#counter {
		width: 100%;
	}

	#counter span {
		font: 52px/1em "montserrat-bold", sans-serif;
	}

}

@media only screen and (max-width:600px) {
	#counter {
		margin-bottom: 24px;
	}

	#counter span {
		font: 48px/1em "montserrat-bold", sans-serif;
	}

}

@media only screen and (max-width:500px) {
	#counter {
		margin-bottom: 12px;
	}

	#counter span {
		font: 37px/1em "montserrat-bold", sans-serif;
	}

	#counter span em {
		font: 9px/18px "montserrat-regular", sans-serif;
		letter-spacing: 1.5px;
	}

}

@media only screen and (max-width:400px) {
	#counter span {
		font: 31px/1em "montserrat-bold", sans-serif;
	}

	#counter span em {
		font: 8px/18px "montserrat-regular", sans-serif;
		letter-spacing: 1px;
	}

}


.modal-toggles {
	clear: both;
}

.modal-toggles ul {
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	font: 13px/24px "montserrat-bold", sans-serif;
	letter-spacing: 1px;
}

.modal-toggles li {
	display: inline-block;
}

.modal-toggles li:first-child {
	border-right: 1px solid #3b3b3b;
	color: white;
}

.modal-toggles li a {
	padding: 0 40px 0 65px;
	position: relative;
	display: block;
	line-height: 30px;
}

.modal-toggles li a::before {
	display: inline-block;
	padding: 0;
	position: absolute;

}

.modal-toggles .about-us a::before {
	left: 1em;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 2em;
	content: "\f007";

}

.modal-toggles .data-use-information a::before {
	left: 1em;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 2em;
	content: "\f15c";
}

@media only screen and (max-width:600px) {
	.modal-toggles {
		padding: 0 25px;
	}

	.modal-toggles li {
		text-align: center;
		display: block;
	}

	.modal-toggles li:first-child {
		border: none;
		margin-bottom: 18px;
	}

	.modal-toggles li a {
		padding: 0 40px;
		line-height: 54px;
		border: 2px solid rgba(255, 255, 255, 0.2);
		border-radius: 3px;
	}

	.modal-toggles li a:hover {
		border: 2px solid #ff6600;
		color: black;
		background: #ff6600;
	}

	.modal-toggles li a::before {
		content: none;
		postion: static;
	}

}

@media only screen and (max-width:400px) {
	.modal-toggles {
		padding: 0;
	}

}

#mod-about,
#mod-dsi {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	min-height: 100%;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	zoom: 1;
}

#mod-about {
	-moz-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
}

#mod-dsi {
	-moz-transform: translateX(100%);
	-o-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
}

#mod-dsi.is-visible,
#mod-about.is-visible {
	-moz-transform: translateX(0);
	-o-transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	zoom: 1;
	max-height: calc(100vh - 210px);
	overflow-y: auto;
}

#mod-about.is-visible {
	position: absolute;
	min-height: none;
}

.modal-toggle {
	position: fixed;
	top: 30px;
	left: 40px;
	display: inline-block;
	z-index: 999995;
}

.modal-toggle a {
	display: block;
	height: 46px;
	width: 46px;
	border-radius: 50%;
	background: black;
	text-indent: -99999em;
	float: left;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.modal-toggle a::before,
.modal-toggle a::after {
	content: '';
	position: absolute;
	display: inline-block;
	width: 4px;
	height: 14px;
	border-radius: 2px;
	top: 16px;
	left: 21px;
	background-color: white;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.modal-toggle a::before {
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.modal-toggle a::after {
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.modal-toggle a:hover::before,
.modal-toggle a:hover::after {
	background-color: #ff6600;
}

@media only screen and (max-width:600px) {
	.modal-toggle {
		left: 35px;
	}

	.modal-toggle a {
		height: 42px;
		width: 42px;
	}

	.modal-toggle a::before,
	.modal-toggle a::after {
		top: 14px;
		left: 19px;
	}

}

@media only screen and (max-width:400px) {
	.modal-toggle {
		left: 25px;
	}

}

#mod-about {
	z-index: 999991;
}

#mod-about::after {
	content: "";
	display: block;
	height: 120px;
}

#mod-about .row {
	max-width: 750px;
}

/* about header */
.about-header {
	text-align: center;
	margin-top: 5%;
}

.about-header h1 {
	font: 38px/1.2em "montserrat-bold", sans-serif;
	color: #ff6600;
}

.about-header .icon-wrap {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 36px 0;
	padding: 0;
}

.about-header .icon-wrap:before {
	display: block;
	border: none;
	position: relative;
	font-family: "Font Awesome 5 Free";
	font-size: 5em;
  left: 10px;
  content: "\f007";
}

@media only screen and (max-width:900px) {
	.about-header {
		margin-top: 7%;
	}

	.about-header h1 {
		font: 35px/1.2em "montserrat-bold", sans-serif;
	}

	.about-header .icon-wrap i {
		width: 61px;
		height: 50px;
	}

}

@media only screen and (max-width:768px) {
	.about-header {
		margin-top: 10%;
	}

	.about-header h1 {
		font: 32px/1.2em "montserrat-bold", sans-serif;
	}

	.about-header .icon-wrap {
		margin: 0 0 24px 0;
	}

}

@media only screen and (max-width:600px) {
	.about-header {
		margin-top: 60px;
	}

}

@media only screen and (max-width:500px) {
	.about-header {
		margin-top: 54px;
	}

	.about-header h1 {
		font: 30px/1.2em "montserrat-bold", sans-serif;
	}

}

@media only screen and (max-width:400px) {
	.about-header h1 {
		font: 28px/1.2em "montserrat-bold", sans-serif;
	}

	.about-header .icon-wrap i {
		width: 56px;
		height: 46px;
	}

}

/* about content */
.about-content {
	color: white;
}

.about-content h3 {
	font: 14px/1em "montserrat-bold", sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #ff6600;
}

.contact p {
	margin: 9px 0;
}

.contact h3 {
	margin-top: 24px;
	margin-bottom: 0;
}

/* about slider */
.slider hr {
	filter: alpha(opacity=10);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
	opacity: 0.1;
	zoom: 1;
}

#owl-slider {
	margin: 24px 0 0 0;
	padding: 0;
}

#owl-slider .item {
	list-style: none;
	color: #ff6600;
	text-align: center;
	font: 12px/18px "montserrat-bold", sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 0;
}

#owl-slider .item .slider-icon {
	display: block;
	height: 50px;
	width: 50px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 0 auto 6px;
	padding: 0;
}


.owl-pagination {
	text-align: center;
	width: 100%;
	margin: 6px 0 0;
}

.owl-theme .owl-controls .owl-page {
	display: inline-block;
}

.owl-theme .owl-controls .owl-page span {
	display: block;
	width: 12px;
	height: 12px;
	margin: 12px 8px 0 8px;
	border-radius: 50%;
	display: inline-block;
	background: #969696;
}

.owl-theme .owl-controls .owl-page.active span {
	background: #ff6600;
}



/*
 * DSI Styles
*/

/* dsi header */
.dsi-header {
	text-align: center;
	margin-top: 5%;
}

.dsi-header h1 {
	font: 38px/1.2em "montserrat-bold", sans-serif;
	color: #ff6600;
}

.dsi-header .icon-wrap {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 36px 0;
	padding: 0;
}

.dsi-header .icon-wrap:before {
	display: block;
	border: none;
	position: relative;
	font-family: "Font Awesome 5 Free";
	font-size: 5em;
  left: 10px;
  content: "\f15c";
}

@media only screen and (max-width:900px) {
	.dsi-header {
		margin-top: 7%;
	}

	.dsi-header h1 {
		font: 35px/1.2em "montserrat-bold", sans-serif;
	}

	.dsi-header .icon-wrap i {
		width: 61px;
		height: 50px;
	}

}

@media only screen and (max-width:768px) {
	.dsi-header {
		margin-top: 10%;
	}

	.dsi-header h1 {
		font: 32px/1.2em "montserrat-bold", sans-serif;
	}

	.dsi-header .icon-wrap {
		margin: 0 0 24px 0;
	}

}

@media only screen and (max-width:600px) {
	.dsi-header {
		margin-top: 60px;
	}

}

@media only screen and (max-width:500px) {
	.dsi-header {
		margin-top: 54px;
	}

	.dsi-header h1 {
		font: 30px/1.2em "montserrat-bold", sans-serif;
	}

}

@media only screen and (max-width:400px) {
	.dsi-header h1 {
		font: 28px/1.2em "montserrat-bold", sans-serif;
	}

	.dsi-header .icon-wrap i {
		width: 56px;
		height: 46px;
	}

}

/* dsi content */
.dsi-content {
	color: white;
}

.dsi-content h3 {
	font: 14px/1em "montserrat-bold", sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #ff6600;
}

.contact p {
	margin: 9px 0;
}

.contact h3 {
	margin-top: 24px;
	margin-bottom: 0;
}


/* Footer CSS - START */

footer {
	clear: both;
	font: 12px/24px "montserrat-regular", sans-serif;
	background: #000;
	padding: 18px 30px;
	color: #303030;
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999992;
}

footer a,
footer a:visited {
	color: #525252;
}

footer a:hover,
footer a:focus {
	color: #fff;
}

.footer-copyright {
	margin: 0;
	padding: 0;
	float: left;
}

.footer-copyright li {
	display: inline-block;
	margin: 0;
	padding: 0;
	line-height: 24px;
}

.footer-copyright li::before {
	content: "|";
	padding-left: 6px;
	padding-right: 10px;
	color: #2c2c2c;
}

.footer-copyright li:first-child:before {
	display: none;
}

/* social links */
.footer-social {
	font-size: 18px;
	margin: 0;
	padding: 0;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.8);
	float: right;
}

.footer-social li {
	display: inline-block;
	margin: 0 10px;
	padding: 0;
}

.footer-social li a {
	color: #ff6600;
}

.footer-social li a:hover {
	color: white;
}

@media only screen and (max-width:768px) {
	footer {
		padding-top: 24px;
		text-align: center;
	}

	.footer-copyright {
		float: none;
	}

	.footer-social {
		float: none;
		margin-bottom: 15px;
	}

}

@media only screen and (max-width:600px) {
	footer {
		position: static;
		padding-bottom: 30px;
	}

	.footer-copyright li {
		display: block;
		margin: 0;
		padding: 0;
		line-height: 24px;
	}

	.footer-copyright li::before {
		content: none;
	}

}

@media only screen and (max-width:400px) {
	.footer-social {
		font-size: 17px;
	}

	.footer-social li {
		margin: 0 6px;
	}

}

/*
Name: tag auto mumbering by css
Version: 01.07.00
Description: styling for automatic numbering of items
Author: Eric POSTLACK
Author URI: https://postlack.de
License: GNU General Public License v2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Usage: add the corresponding classes to html tags
*/

counter-reset: l46_h1counter l46_h2counter l46_h3counter l46_pcounter l46_scounter;

#l46_tag_auto_numbering  h1 {
 counter-increment: l46_h1counter;
 counter-reset: l46_h2counter l46_h3counter l46_pcounter l46_scounter;
}

#l46_tag_auto_numbering  h2 {
 counter-increment: l46_h2counter;
 counter-reset: l46_h3counter l46_pcounter l46_scounter;
}

#l46_tag_auto_numbering  h3 {
 counter-increment: l46_h3counter;
 counter-reset: l46_h4counter l46_pcounter l46_scounter;
}

#l46_tag_auto_numbering  h4 {
 counter-increment: l46_h4counter;
 counter-reset: l46_pcounter l46_scounter;
}

#l46_tag_auto_numbering  .l46_list_alp_np {
 counter-increment: l46_pcounter;
}

#l46_tag_auto_numbering  h2::before {
 content: counter(l46_h2counter, decimal) ".\0000a0";
}

#l46_tag_auto_numbering  h3::before {
 content: counter(l46_h2counter, decimal) "."counter(l46_h3counter) "\0000a0";
}

#l46_tag_auto_numbering  h4::before {
 content: "("counter(l46_h4counter, decimal) ") \0000a0";
 padding: 0.25em;
}

#l46_tag_auto_numbering  .l46_list_alp_np::before {
 content: counter(l46_pcounter, lower-alpha) ") \0000a0";
 padding: 0.5em;
}

#l46_tag_auto_numbering  .l46_list_disc::before {
 content: counter(l46_lcounter, disc) "\0000a0";
 padding: 1em;
}

#l46_tag_auto_numbering  p {
 margin: 0 0 0.25em;
 line-height: 1.25em;
}

#l46_tag_auto_numbering  p#l46-version {
	font-style: italic;
	font-size: 0.75em;
}
