* {
	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";
}
header {
	position: relative;
	margin-top: 50px;
	margin-bottom: 25px;
	height: 100px;
	font-family: aroma_bold;
	border: solid thin #444;
	border-radius: 10px;
	background: white url('../images/bg1.jpg') no-repeat center center;
	background-image: url('../images/bg2.jpg'); /*PRELOAD*/
	background-image: url('../images/bg3.jpg'); /*PRELOAD*/
	background-image: url('../images/bg4.jpg'); /*PRELOAD*/
	background-size: cover;
	animation: change_bg 60s linear 0s infinite normal;
}
header h1 {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translate(0, -50%);
	text-align: center;
	text-shadow: 0 0 3px white;
	color: black;
}
@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 change_bg {
	0%	{ background-image: url('../images/bg1.jpg'); }
	23%	{ background-image: url('../images/bg1.jpg'); }
	25%	{ background-image: url('../images/bg2.jpg'); }
	48%	{ background-image: url('../images/bg2.jpg'); }
	50%	{ background-image: url('../images/bg3.jpg'); }
	73%	{ background-image: url('../images/bg3.jpg'); }
	75%	{ background-image: url('../images/bg4.jpg'); }
	98%	{ background-image: url('../images/bg4.jpg'); }
	100%{ background-image: url('../images/bg1.jpg'); }
}
/*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');
}
.success, .info, .warning, .error {
	margin: 10px 0 10px 0;
	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: #156577;
	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');
}
.switch {
	width: 208px;
	height: 23px;
	color: #666;
	font-weight: bold;
	font-size: 15px;
	border: solid 2px #ddd;
	background-color: white;
	transition: border-color 500ms linear 0s;
}
.switch:hover {
	border-color: #57a8c3;
}
.switch .overflow_hidden {
	overflow: hidden;
	position: absolute;
	height: 100%;
	width: 100%;
}
.switch input[type="checkbox"] {
	display: none;
}
.switch span {
	position: absolute;
	top: 2px;
	padding: 2px;
	width: calc(100% - 33px);	/*100% - (div[width] + switch[border] + span[padding])*/
	height: calc(100% - 8px);	/*100% - (2 x (switch[border] + first_span[top]))*/
	background-color: white;	/*grey=>#f4f4f4 | white*/
	transition: left 1s ease-in-out 0s;
}
.switch input[type="checkbox"]:checked + .overflow_hidden span:nth-of-type(1) {
	left: 2px;
}
.switch input[type="checkbox"]:checked ~ .overflow_hidden span:nth-of-type(2) {
	left: calc(100% + 2px);		/*100% + switch[border]*/
}
.switch input[type="checkbox"]:checked ~ div:not(.overflow_hidden) {
	left: calc(100% - 22px);	/*100% - (div[width]px - first_span[left])*/
	background-color: #57a8c3;	/*alt 86c6db 57a8c3 27a1ca*/
}
.switch span:nth-of-type(1) {
	text-align: left;
	padding-left: 7px;
	left: calc(-100% + 22px);	/*-100% + first_span[left]*/
}
.switch span:nth-of-type(2) {
	text-align: right;
	padding-right: 7px;
	left: 22px;					/*div[width] - first_span[left]*/
}
.switch div:not(.overflow_hidden) {
	position: absolute;
	left: -2px;					/*-switch[border]*/
	margin-top: -2px;			/*-switch[border]*/
	width: 24px;
	height: calc(100% + 4px);	/*100% + (2 x switch[border])*/
	background-color: #ddd;
	transition: left 1s ease-in-out 0s, background-color 1s ease-in-out 0s;
}
#valueTargetType2, #valueTargetType3, #noteTargetType2, #noteTargetType3 {
	display: none;
}
.content_add_label, .content_other_label {
	display: inline-block;
	font-family: printClearly;
	font-size: 24pt;
	line-height: 50px;
	text-align: center;
	width: calc(50% - 0px);
	height: 50px;
	border-bottom: solid thin rgba(0, 0, 0, 0);
	background-color: white;
	-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;
}
.content_add_label:hover, .content_other_label:hover {
	padding-left: 5px;
	margin-right: -5px;
	animation: blink 750ms linear 0s infinite normal;
}
.content_other_label {
	margin-left: -6px;
	border-left: solid thin #bbb;
}
#content_add:checked ~ .content_add_label,
#content_other:checked ~ .content_other_label {
	font-weight: bold;
	border-bottom-color: black;
}
#content_add:checked ~ .content_add_label:hover,
#content_other:checked ~ .content_other_label:hover {
	animation-delay: -375ms;
}
#content_add:checked ~ .content_add,
#content_other:checked ~ .content_other {
	display: block !important;
}
#content_other_log:checked ~ .content_other_log,
#content_add_tag:checked ~ .content_add_tag,
#content_add_attr:checked ~ .content_add_attr,
#content_add_prop:checked ~ .content_add_prop,
#content_add_func:checked ~ .content_add_func,
#content_add_value:checked ~ .content_add_value,
#content_add_note:checked ~ .content_add_note {
	height: auto;
	padding: 10px 10px 53px 20px;
}
#edit:checked ~ .edit > *,
#content_other_log:checked ~ .content_other_log > *,
#content_add_tag:checked ~ .content_add_tag > *,
#content_add_attr:checked ~ .content_add_attr > *,
#content_add_prop:checked ~ .content_add_prop > *,
#content_add_func:checked ~ .content_add_func > *,
#content_add_value:checked ~ .content_add_value > *,
#content_add_note:checked ~ .content_add_note > * {
	display: block;
}
#content_other_log:checked ~ .content_other_log h3,
#content_add_tag:checked ~ .content_add_tag h3,
#content_add_attr:checked ~ .content_add_attr h3,
#content_add_prop:checked ~ .content_add_prop h3,
#content_add_func:checked ~ .content_add_func h3,
#content_add_value:checked ~ .content_add_value h3,
#content_add_note:checked ~ .content_add_note h3 {
	color: #3e3e3e;
}
.content {
	overflow: hidden;
	background-color: white;
	border-radius: 10px;
	color: #5f5f5f;
	margin-bottom: 50px;
}
.content input, .content textarea, .content select {
	height: 15px;
	width: 200px;
	padding: 5px;
	border: 0;
	color: #040404;
	outline: #ffffff auto 0px;
	border: solid thin #ddd;
	background-color: white;	/*grey=>#f4f4f4 | white*/
	transition: outline 500ms linear 0s, background-color 500ms linear 0s;
}
.content input:hover, .content textarea:hover, .content select:hover, .content input:focus, .content textarea:focus, .content select:focus {
	outline-offset: -2px;
	outline: #4d90fe auto 5px;
	background-color: #f4f4f4;	/*white | #f4f4f4 | #eee*/
}
.content textarea {
	resize: none;
	z-index: 0;
	border-left-color: #006f74;
	transition-property: height, width, z-index, outline, background-color;
	transition-duration: 1s;
	transition-timing-function: ease-in-out;
	transition-delay: 0s;
}
.content textarea:focus {
	width: 400px;
	height: 150px;
	z-index: 10;
}
/*Colors: http://paletton.com/#uid=73j270kMlo9wSD7HVteQrjfUKdn*/
.content select {
	width: 212px;
	height: 27px;
	padding: 4px;
	color: #999;
	font-family: "Source Code Pro", "Lucida Console", Monaco, monospace;
	border-left-color: #7d007d;
}
.content select:focus {
	color: #5f5f5f;
}
.content select option[disabled] {
	background-color: #eee;
}
.content select option {
	font-family: "Source Code Pro", Monaco, "Lucida Console";
	background-color: #f4f4f4;
}
.content select option span {
	text-align: left;
}
.content input[type="text"] {
	border-left-color: #4aab00;
}
.content input[type="number"], .content input[type="password"] {
	border-left-color: #c05900;
}
.content input[type="submit"] {
	margin-top: 18px;
	width: 212px;
	height: 25px;
	background-color: #f4f4f4;	/*#f4f4f4 | #ddd*/
	border-color: #bbb;
	border-left-color: #ad0031;
}
.content input[type="submit"]:hover, .content input[type="submit"]:focus {
	background-color: #eee;
}
.content input[type="radio"] {
	display: none !important;
}
.content h3 {
	display: block !important;
	margin: 0 0 20px -10px;
	color: #888;
	transition: color 250ms ease-in-out 0s;
}
.content h3:hover {
	color: #5f5f5f;
}
.content form {
	overflow: hidden;
	display: none;
	height: 0;
	border-top: solid thin #ddd;
	padding: 10px 10px 35px 20px;
}
.content form > textarea, .content form > input, .content form > select, .content form > .switch, .content form > .setting  {
	display: none;
	position: absolute;
	right: 10px;
}
.edit {
	padding: 10px 10px 35px 20px;
}
.edit h3 {
	color: #3e3e3e !important;
}
.edit > textarea, .edit > input, .edit > select, .edit > .switch, .edit > .setting {
	position: absolute;
	right: 10px;
}
.admin {
	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 {
	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 {
	filter: brightness(1.4);
	-webkit-filter: brightness(1.4);
}