/*
	License
	© 2020 vir2alexport
	This work is licensed under the Creative Commons Attribution 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
*/
HTML, BODY{
	margin:0;
	padding:0;
	height:100%;
}
SVG{
	position:fixed;
	bottom:0;
	left:0;
	margin:0;
	padding:0;
	z-index:-1;
	opacity:.8;
}
LI A{
	text-decoration:none;
}
A:visited{
	color:blue;
}
A:hover{
	color:crimson;
}
BUTTON {
	appearance: button;
	backface-visibility: hidden;
	background-color: #405cf5;
	border-radius: 6px;
	border-width: 0;
	box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	font-family: -apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif;
	font-size: 100%;
	height: 44px;
	line-height: 1.15;
	margin: 12px 0 0;
	outline: none;
	overflow: hidden;
	padding: 0 25px;
	position: relative;
	text-align: center;
	text-transform: none;
	transform: translateZ(0);
	transition: all .2s,box-shadow .08s ease-in;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
}
BUTTON:disabled {
	cursor: default;
}
BUTTON:focus {
	box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
}
/*____________________________________________________________________________*/
.wrapper{
	height:100%;
	display:flex;
	flex-direction:column;
}
	.header{
		background:#fff;
	}
	.content{
		flex:1;
		overflow:auto;
		padding-left: auto;
		padding-right: auto;
		
	}
	.content::-webkit-scrollbar {
		display: none;				/*	Chrome, Safari and Opera	*/
	}
	.content {
		-ms-overflow-style: none;	/*	Internet Explorer and Edge	*/
		scrollbar-width: none;  	/*	Firefox	*/
	}
		ARTICLE#greet, ARTICLE#ui, ARTICLE#facemarks, ARTICLE#contact, ARTICLE#donate{
			height:100%;
			z-index:5;
			transition-delay:2s;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			align-content: center;
		}
			.content ARTICLE H1, .content ARTICLE H2, .content ARTICLE P, .content ARTICLE IMG, .footer-links, .license {
				padding:5px;
				background:#fff;
				  -moz-border-radius:  10px 10px 10px 10px;
				-webkit-border-radius: 10px 10px 10px 10px;
				-khtml-border-radius:  10px 10px 10px 10px;
			}
			.content ARTICLE H1{
				color:green;
			}
			.content ARTICLE H2{
				font-weight:normal;
			}
			.column P{
				font-size:150%;
			}
	.footer{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		align-content: center;
	}
		.cc{
			border-width:0
		}
/*____________________________________________________________________________*/
#header-menu{
	list-style:none;
	width:100%;
	margin:0 15px 0 -15px;
	padding:0;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	align-content: center;
}
	#header-menu LI{
		color:#405cf5;
		font-weight:bold;
	}
	#header-menu LI.extension-name{
		color:green;
		font-size:200%;
		font-weight:bold;
	}
	UL#header-menu LI UL {
		position: absolute;
		list-style:none;
		top:30px;
		background:#fff;
		border-bottom:2px solid gold;
		  -moz-border-radius:  0px 0px 12px 12px;
		-webkit-border-radius: 0px 0px 12px 12px;
		-khtml-border-radius:  0px 0px 12px 12px;
		z-index:11;
	}
		UL#header-menu LI UL LI {
			float:none;
			width:100%;
			margin:10px 20px 10px -20px;
			padding:0;
			font-size:100%;
			font-weight:normal;
		}
		UL#header-menu LI UL {
			-webkit-transition-duration: 0.6s;
			 -moz-transition-duration: 0.6s;
			   -o-transition-duration: 0.6s;
				  transition-duration: 0.6s;
			visibility:hidden;
			opacity:0;
		}
		UL#header-menu LI:hover UL {
			visibility:visible;
			opacity:1;
		}
/*____________________________________________________________________________*/
/*____________________________________________________________________________*/
.ul-social{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ul-social LI{
	float:left;
	padding:0;
	font-size:100%;
	cursor:default;
	margin:0px 10px 0px 10px;
}
	.twitter, .youtube{
		width:50px;
		height:50px;
	}
	.twitter{
		background: url("images/twitter.webp") no-repeat;
	}
	.youtube{
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		border: none;
		background: url("images/youtube.webp") no-repeat #000;
	}
/*____________________________________________________________________________*/
/*____________________________________________________________________________*/