* {
	margin: 0;
	padding: 0;
}
html {
	overflow-x: hidden;
	overflow-y: scroll;
	background: white url('images/bg.png') no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	min-height: 100vh;
}
body {
	position: relative;
	width: 80vw;
	margin: 0 auto;
	font-family: Arial, "Times New Roman";
}
a:link, a:visited {
    text-decoration: none;
	transition: 150ms color linear 0s;
}
a:link {
	color: #090857;
}
a:visited {
	color: #5a0049;
}
a:link:hover {
	color: #4e4cb2;
    text-decoration: underline;
}
a:visited:hover {
	color: #b63c9f;
    text-decoration: underline;
}
a:link:active, a:visited:active {
	color: #cb9b06;
}
.main > div > div > h3, code, samp, var, .html_tag {
	font-family: Consolas, Courier, monospace;
	transition: color 500ms linear 250ms;
}
#content_html:checked ~ .main > div > div > h3, code {
	color: #14a4c0;
}
code::before {
	content: "<";
}
code::after {
	content: ">";
}
#content_js:checked ~ .main > div > div > h3::after, var::after {
	content: "()";
}
#content_css:checked ~ .main > div > div > h3, samp {
	color: blue;
}
#content_js:checked ~ .main > div > div > h3, var {
	color: black;
}
input[type="radio"] {
	display: none;
}
header {
	height: 150px;
	margin: 20px auto;
	width: 80%;
	background-size: contain !important;
}
header img {
	width: 100px;
}
header .intro_label {
	display: none;
	margin: 0 auto;
	height: 150px;
	width: 150px;
}
#content_html:checked ~ header .intro_label_html,
#content_css:checked ~ header .intro_label_css,
#content_js:checked ~ header .intro_label_js {
	display: block;
}
#content_html:checked ~ header {
	background: transparent url('images/htmlLogo.png') no-repeat center center;
}
#content_css:checked ~ header {
	background: transparent url('images/cssLogo.png') no-repeat center center;
}
#content_js:checked ~ header {
	background: transparent url('images/jsLogo.png') no-repeat center center;
}
#content_html:checked ~ header img.cssLogo,
#content_css:checked ~ header img.htmlLogo,
#content_js:checked ~ header img.htmlLogo {
	float: left;
}
#content_html:checked ~ header img.htmlLogo,
#content_css:checked ~ header img.cssLogo,
#content_js:checked ~ header img.jsLogo {
	display: none;
}
#content_html:checked ~ header img.jsLogo,
#content_css:checked ~ header img.jsLogo,
#content_js:checked ~ header img.cssLogo {
	float: right;
}
#content_html:checked ~ .html_content,
#content_css:checked ~ .css_content,
#content_js:checked ~ .js_content {
	z-index: 1;
	opacity: 1;
	margin: 0 100px 100px 0;
	
	transition-property: opacity, margin;
	transition-duration: 800ms;
	transition-timing-function: ease-in-out;
	transition-delay: 100ms;
}
#content_html:not(:checked) ~ .html_content,
#content_css:not(:checked) ~ .css_content,
#content_js:not(:checked) ~ .js_content {
	animation: drop 400ms ease-in 0s 1 normal;
}
/*header h1 {
	color: white;
	text-align: center;
}*/
@keyframes blink {
	0%	{border-bottom-color: rgba(50, 50, 50, 0);}
	50%	{border-bottom-color: rgba(50, 50, 50, 1);}
	100%{border-bottom-color: rgba(50, 50, 50, 0);}
}
@keyframes drop {
	0%	{
		margin: 0;
		z-index: 2;
	}
	100%{
		margin: 60vh 0 -60vh 0;
		z-index: 2;
	}
}
/*INTERNET EXPLORER COMPATIBLE*/
@font-face {
	font-family: printClearly;
	src: url('fonts/PrintClearly.eot');
}
@font-face {
	font-family: aroma_bold;
	src: url('fonts/aroma_bold.eot');
}
/*NORMAL*/
@font-face {
	font-family: printClearly;
	src: url('fonts/PrintClearly.otf');
}
@font-face {
	font-family: aroma_bold;
	src: url('fonts/aroma_bold.ttf');
}
.intro {
	overflow: hidden;
	padding: 20px;
	font-size: 20pt;
	max-height: 1000px;
	transition: max-height 1s ease-out 0s, padding 1s ease-out 0s;
	font-family: "Courier New";
}
.intro h1 {
	color: #3e3e3e;
}
.intro p {
	text-align: justify;
}
.intro p img {
	float: right;
	height: 100px;
	color: red;
	font-weight: bold;
}
.intro b.image_available {
	color: #146b6b;
}
.intro i.translation, .intro b.theme {
	color: #3e3e3e;
}
.explanation_reference {
	vertical-align: sub;
    font-size: smaller;
	text-decoration: none;
}
.html {
	color: #733a00; /*974c00 / e58a2e*/
}
.html_tag {
	color: blue;
}
.css {
	color: #06154d; /*0c2066 / 2e459b*/
}
.js {
	color: #736100; /*978000 / e5c92e*/
}
.success, .info, .warning, .error {
	position: fixed;
	z-index: 10;
	left: 50vw;
	top: 50vh;
	transform: translate(-50%, -50%);
	padding: 10px 10px 10px 58px;
	min-height: 40px;
	border: solid 2px black;
	border-radius: 5px;
	background-repeat: no-repeat;
	background-position: left center;
}
.success {
	color: #179a17;
	border-color: #179a17;
	background-color: #a5cca5;
	background-image: url('images/success.png');
}
.info {
	color: #156577;
	border-color: #156577;
	background-color: #d0f6ff;
	background-image: url('images/info.png');
}
.warning {
	color: #c16e1d;
	border-color: #c16e1d;
	background-color: #ffe7ce;
	background-image: url('images/warning.png');
}
.error {
	color: #c11d1d;
	border-color: #c11d1d;
	background-color: #ffcece;
	background-image: url('images/error.png');
}
.main {
	position: absolute;
	top: 200px;
	left: 0;
	overflow: hidden;
	border-radius: 10px;
	background-color: white;
	
	opacity: 0;
	margin: 100px 0 0 100px;
	width: 100%;
	height: auto;
	z-index: 0;
	
	transition: opacity 400ms ease-in 0s;
}
.main::after {
	clear: both;
}
.main input:not(.intro_radio):checked ~ .content_main {
	height: 80vh !important;
	padding: 15px;
}
.main input:not(.intro_radio):checked ~ .intro {
	max-height: 0;
	padding: 0 20px;
}
#content_html:checked ~ .main label:hover {
	background-color: #ffc384 !important;
	animation-delay: -375ms;
}
#content_css:checked ~ .main label:hover {
	background-color: #92aaff !important;
	animation-delay: -375ms;
}
#content_js:checked ~ .main label:hover {
	background-color: #ffec84 !important;
	animation-delay: -375ms;
}
.main label {
	display: inline-block;
	font-family: printClearly;
	float: left;
	font-size: 24pt;
	margin-left: -1.2px;
	border-left: solid thin #bbb;
	border-bottom: solid thin rgba(0, 0, 0, 0);
	border-top: solid thin #bbb;
	background-color: white;
	text-align: center;
	line-height: 50px;
	width: 20%;
	height: 50px;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
	transition-duration: 500ms;
	transition-property: padding, margin, background-color;
}
.main label.small_font {
	font-size: 20pt;
}
.main label:hover {
	padding-left: 5px;
	margin-right: -5px;
	animation: blink 750ms linear 0s infinite normal;
}
.main > .content_labels {
	overflow-x: hidden;
	overflow-y: scroll;
	height: 261px;
	background-color: #eee;
}
.main > .content_main {
	overflow-x: hidden;
	overflow-y: scroll;
	color: black;
	border-top: solid thin #5e5e5e;
	padding: 0 15px 0 15px;
	height: 0;
	width: calc(100% - 30px);
	transition: height 1s ease-in-out 0s, padding 1s ease-in-out 0s;
}
.main > .content_main > div {
	display: none;
}
.main > .content_main > div > a {
	float: right;
}
.main > .content_main > div > h3 {
	display: inline;
}
.main > .content_main > div > h4.notes {
	display: inline;
	font-weight: 600;
	color: #7C4700;
}
.main > .content_main > div > h4.code_heading {
	display: inline;
	font-weight: 600;
	color: #4d7400;
}
.main > .content_main > div > i {
	display: block;
	color: #7C4700;
	margin: 15px 0 15px 15px;
	padding: 15px;
	background-color: rgba(255, 232, 0, 0.2);
	border-left: solid medium #ffe800;
}
.main > .content_main > div > span {
	display: block;
	color: #3e3e3e;
	padding: 15px;
}
.main > .content_main > div > .code {
	margin: 15px 0 15px 15px;
	padding: 15px;
	background-color: rgba(146, 236, 0, 0.2);
	border-left: solid medium #92ec00;
	font-family: Consolas, Courier, monospace;
	font-weight: bold;
}
.main > .content_main > div > .code .code_html_property,
.main > .content_main > div > .code .code_css_class,
.main > .content_main > div > .code .code_css_important {
	color: red;
}
.main > .content_main > div > .code .code_html_tag,
.main > .content_main > div > .code .code_css_html_tag {
	color: blue;
}
.main > .content_main > div > .code .code_css_at,
.main > .content_main > div > .code .code_css_id {
	color: DeepSkyBlue;
}
.main > .content_main > div > .code .code_css_property {
	color: #abcdef;
}
.main > .content_main > div > .code .code_html_property_value,
.main > .content_main > div > .code .code_css_quot_single,
.main > .content_main > div > .code .code_css_quot_double {
	color: purple;
}
.main > .content_main > div > .code .code_css_selector {
	color: orange;
}
.main > .content_main > div > .code .code_css_pseudo {
	color: pink;
}
.main > .content_main > input[type="checkbox"] {
	margin-right: 5px;
}
.main > .content_main > span {
	color: #3e3e3e;
	transition: color 250ms linear 0s;
}
.main > .content_main > input[type="checkbox"]:checked + span {
	color: #14a4c0;
}
.main table.browserSupport {
	position: relative;
	margin: 20px 0 30px 0;
	width: 100%;
}
.main table.browserSupport th {
	height: 50px;
	width: calc(100% / 6);
	border: solid thin #888;
	background-color: white;
}
.main table.browserSupport td {
	text-align: center;
	table-layout: fixed;
	height: 50px;
	width: calc(100% / 6);
	border: solid thin #888;
	background: #fafafa none no-repeat center center;
	background-size: contain;
}
.main table.browserSupport .compatibleChrome {
	background: white url('images/compatible_chrome.gif') no-repeat center center;
}
.main table.browserSupport .compatibleFireFox {
	background: white url('images/compatible_firefox.gif') no-repeat center center;
}
.main table.browserSupport .compatibleOpera {
	background: white url('images/compatible_opera.gif') no-repeat center center;
}
.main table.browserSupport .compatibleSafari {
	background: white url('images/compatible_safari.gif') no-repeat center center;
}
.main table.browserSupport .compatibleEdge {
	background: white url('images/compatible_edge.gif') no-repeat center center;
}
.main table.browserSupport .compatibleIExplorer {
	background: white url('images/compatible_iexplorer.gif') no-repeat center center;
}
#show_html_attr_global:checked ~ table.subcmd .html_attr_global {
	display: table-row-group;
}
.main table.subcmd .html_attr_global {
	display: none;
}
.main table.subcmd .html_attr_global td {
	border-color: #14a4c0;
}
.main table.subcmd {
	width: 100%;
	table-layout: fixed;
}
.main.html_content table.subcmd tbody:last-child tr,
.main.css_content table.subcmd tbody:first-of-type tr {
	display: none;
}
.main.css_content table.subcmd th:first-child,
.main.css_content table.subcmd td:first-child  {
	width: 10%;
}
.main table.subcmd tr:nth-child(even) td {
	background-color: #fefefe;
}
.main table.subcmd th {
	height: 50px;
	width: calc(100% / 3);
	color: #5e5e5e;
	border: solid thin #888;
	background-color: white;
}
.main table.subcmd td {
	padding: 20px;
	text-align: center;
	width: calc(100% / 3);
	border: solid thin #888;
	background-color: #fafafa;
}
.main table.subcmd td:nth-child(2):not(:last-child) {
	font-style: italic;
}
.admin, .about {
	position: fixed;
	top: 0;
	width: 100px;
	left: -80px;
	padding: 5px;
	font-family: aroma_bold;
	color: darkgreen;
	background-color: black;
	border-bottom-right-radius: 5px;
	transition: left 1s ease-in-out 0s;
}
.admin:hover {
	left: 0;
}
.admin img, .about img {
	position: absolute;
	top: 3px;
	right: 5px;
	filter: brightness(1);
	-webkit-filter: brightness(1);
	transition: filter 1s ease-in-out 0s;
	-webkit-transition: -webkit-filter 1s ease-in-out 0s;
}
.admin:hover img, .about:hover img {
	filter: brightness(1.4);
	-webkit-filter: brightness(1.4);
}
.about {
	left: auto;
	border-bottom-right-radius: 0;
	text-align: right;
	right: -80px;
	border-bottom-left-radius: 5px;
	transition: right 1s ease-in-out 0s;
}
.about:hover {
	right: 0;
}
.about img {
	left: 5px;
	right: auto;
}
.admin_options {
	display: inline;
	vertical-align: sub;
}
.admin_options input[type="image"] {
	filter: brightness(1);
	-webkit-filter: brightness(1);
	transition: filter 1s ease-in-out 0s;
	-webkit-transition: -webkit-filter 1s ease-in-out 0s;
}
.admin_options input[type="image"]:hover {
	filter: brightness(1.4);
	-webkit-filter: brightness(1.4);
}
.content_construction {
	overflow: hidden !important;
}
.construction {
	padding: 25px;
	height: 100%;
	width: 100%;
	background-color: #850000;
	text-align: center;
	color: #ffff00;
	font-family: "Comic Sans MS";
}
.construction img {
	margin: 0 auto;
}
.construction h1 {
	font-size: 40pt;
}