/*
 _   __           _       _           _    _                 _                      
| | / /          (_)     | |         | |  | |               (_)                     
| |/ /  _____   ___ _ __ | |     __ _| | _| |__   __ _ _ __  _   ___ ___  _ __ ___  
|    \ / _ \ \ / / | '_ \| |    / _` | |/ / '_ \ / _` | '_ \| | / __/ _ \| '_ ` _ \ 
| |\  \  __/\ V /| | | | | |___| (_| |   <| | | | (_| | | | | || (_| (_) | | | | | |
\_| \_/\___| \_/ |_|_| |_\_____/\__,_|_|\_\_| |_|\__,_|_| |_|_(_)___\___/|_| |_| |_|

*/

:root {
	/* Primary Colors */
	--color-black: #040404;
	--color-bg-dark: #131314;
	--color-bg-panel: #1f1f20;
	--color-text-primary: #dfdfdf;
	--color-text-dark: var(--color-text-primary);
	--color-white: #ffffff;

	/* Accent Colors */
	--color-red: #ef4444;
	--color-red-alt: #ef5350;
	--color-yellow: #eab308;
	--color-yellow-bright: #ffeb95;
	--color-green: #22c55e;
	--color-green-bright: #22da6e;
	--color-green-muted: #22da6f4d;
	--color-cyan: #21c7a8;
	--color-cyan-light: #7fdbca;
	--color-blue-light: #82aaff;
	--color-purple: #c792ea;

	/* UI Colors */
	--color-gray-light: #cccccc;
	--color-gray-muted: #5f7e97;
	--color-gray-medium: #999999;
	--color-gray-dark: #575656;
	--color-border: var(--color-gray-muted);
	--color-border-light: var(--color-gray-muted);

	/* Semantic Colors */
	--color-bg-light: var(--color-bg-dark);
	--color-bg-input: var(--color-bg-dark);
	--color-bg-hover: var(--color-gray-dark);
	--color-bg-selection: rgba(42, 141, 245, 0.25);
	--color-bg-alt: transparent;
	--color-bg-tab: var(--color-bg-panel);
	--color-bg-tab-active: var(--color-bg-dark);
	--color-bg-code: linear-gradient(135deg, var(--color-bg-panel) 30%, var(--color-bg-dark) 100%);
	--color-bg-header: var(--color-bg-panel);
	--color-text-muted: var(--color-gray-muted);
	--color-text-light: #ffffff;
	--color-link: var(--color-cyan-light);
	--color-link-dark: var(--color-cyan);
	--color-link-visited: var(--color-purple);
	--color-tooltip-bg: var(--color-bg-panel);
	--color-tooltip-border: var(--color-bg-panel);
}

* {

	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: antialiased;
}

html {
	overflow-y: scroll;
}

::-moz-selection {
	background: var(--color-bg-selection);
}

::selection {
	background: var(--color-bg-selection);
}

.tableouter {
	width: 100%;
	text-align: center;
}

.innertable {
	display: inline-block;
	vertical-align: top;
	margin-left: 25px;
	margin-right: 25px;
}

.overflow {
	overflow: auto;
}

div#post ul.favorites li:hover {
	background: inherit;
}

/*
span.applelink{ color:#333; text-decoration:none;}
*/

p label {
	display: block
}

textarea {
	width: 80%;
	min-height: 70px;
	resize: vertical;
	overflow-y: scroll;
	font-family: "Raleway", sans-serif;
	border-radius: 4px 0px 0px 4px;
	background-color: var(--color-bg-light);
	color: var(--color-text-dark);
}

input[type="text"],
input[type="email"] {
	font-family: "Raleway", sans-serif;
}

div.submit {
	border-top: 1px solid var(--color-border-light);

	padding: 15px;
	margin-bottom: 15px;
}

div.comments {
	padding: 15px;
}

.center {
	text-align: center;
}

.tabs {
	margin-top: 16px;
	margin-bottom: 16px;
	margin-left: 0px;
	margin-right: 0px;
}

.tabs .content {
	transition: all 2s ease;
	border: 1px solid var(--color-border);
	z-index: 1;
	position: relative;
	background: var(--color-bg-code);


}

.tabs .content>div {
	display: none;
	padding: 0px;
	opacity: 0;
	z-index: 1;
	position: relative;
	/* transition: max-height .05s ease;*/
	max-height: 0px;
}


.tabs input {
	display: none;
}

.tabs label {
	user-select: none;
	margin-left: 10px;
	border-radius: 5px 5px 0px 0px;
	background: var(--color-bg-tab);
	color: var(--color-gray-medium);
	transition: all 0s ease;
	border: 1px solid var(--color-border);
	display: inline-block;
	padding: 10px 20px;
	font-weight: 600;
	text-align: center;
	height: 22px;
	transform: translateY(1px);
	z-index: 0;
	position: relative;
	font-family: "Raleway", sans-serif;


}

.tabs input:checked+label:after {
	position: absolute;
	content: "";
	width: 98%;
	bottom: 0px;
	left: 1px;
	border-bottom: 5px solid var(--color-bg-light);
	transform: translateY(3px);
	z-index: 1;
}

.tabs label:hover {
	color: var(--color-gray-medium);
	cursor: pointer;
}

.tabs input:checked+label {
	background: var(--color-bg-tab-active);
	color: var(--color-text-dark);
	z-index: 5;
	border-bottom-color: var(--color-bg-light);


}



#tab1:checked~.content #content1,
#tab2:checked~.content #content2,
#tab3:checked~.content #content3,
#tab4:checked~.content #content4,
#tab5:checked~.content #content5,
#tab6:checked~.content #content6,
#tab7:checked~.content #content7,
#tab8:checked~.content #content8,
#tab9:checked~.content #content9,
#tab10:checked~.content #content10,
#tab11:checked~.content #content11,
#tab12:checked~.content #content12,
#tab13:checked~.content #content13,
#tab14:checked~.content #content14 {
	display: block;
	max-height: 9001px;
	opacity: 1;
}

th {
	font-family: "Raleway", sans-serif;
}

small {
	font-size: 50%;
	white-space: nowrap;
}

table.output {
	margin-right: auto;
	margin-left: auto;
	border: 1px solid var(--color-gray-light);
	font-family: "Open Sans", "Courier New", "Lucida Console", Monospace;
	padding: 10px;
	border-collapse: collapse;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, .25);
	margin-top: 25px;
	margin-bottom: 25px;
	font-size: 90%;
}

table.output th {
	border: 1px solid var(--color-border);
	padding: 10px;
	transition: ease 1s;
	font-weight: normal;
	background-color: var(--color-bg-header);

}

table.output td {
	border: 1px solid var(--color-border);
	padding: 10px;
	transition: ease 1s;


}

table.output:hover th {
	border: 1px solid var(--color-gray-muted);
}

table.output:hover td {
	border: 1px solid var(--color-gray-muted);

}

i {
	font-style: italic;
}

/* Tooltip text */
div.code .tooltiptext {
	visibility: visible;
	width: 250px;
	word-wrap: break-word;
	height: auto;
	background-color: var(--color-tooltip-bg);
	color: var(--color-white);
	text-align: left;
	border-radius: 6px;
	padding: 10px;
	position: absolute;
	left: 65%;
	top: 15%;
	opacity: 0;
	transition: opacity 1s ease;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, .25);
}

div.code .tooltiptext::after {
	content: " ";
	position: absolute;
	top: 50%;
	right: 100%;
	/* To the left of the tooltip */
	margin-top: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent var(--color-tooltip-border) transparent transparent;
}


div.code {
	font-family: "Open Sans", "Courier New", "Lucida Console", Monospace;
	font-size: 85%;
	position: relative;
	word-wrap: break-word;
	padding: 10px;
	transition: border ease 1s;
	border: 1px solid var(--color-border);
	background: var(--color-bg-code);
	overflow-x: auto;
}

div.tabs div.code {
	border: none;
	background: none;
}


code {
	font-family: "Open Sans", "Courier New", "Lucida Console", Monospace;
}


div.indent {
	padding-left: 50px;
}

/*
span{
white-space:nowrap;
}
*/

green {
	color: var(--color-green-bright);
}

red {
	color: var(--color-red);
}

blue {
	color: var(--color-blue-light);
}

/*
gray {
color:gray;
}
*/
pink {
	color: #FF69B4;
}

.red {
	color: var(--color-purple);
}

.blue {
	color: var(--color-blue-light);
}

.gray {
	color: var(--color-green-bright);
}

div#wrap {
	/*width: 500px;*/
	/*position:fixed;*/
	background-color: var(--color-bg-light);
	/*transition-duration: 0.5s;*/
	/*margin-left:-15px;*/
}

div#wrap a {
	text-decoration: none;
	/*font-weight: bold;*/
	color: var(--color-text-light);
	font-size: 20px;
	text-align: right;

}



div#title {

	height: 100%;
	width: 100%;
	color: var(--color-text-dark);
	font-size: 80%;
	font-family: "Raleway", sans-serif;

}



div#main {
	animation: fadein 1s;
	-moz-animation: fadein 1s;
	/* Firefox */
	-webkit-animation: fadein 1s;
	/* Safari and Chrome */
	-o-animation: fadein 1s;
	/* Opera */


	color: var(--color-text-dark);
	width: 100%;
	/*height:80%;*/
	margin: 0 auto;
	/*padding-bottom: 100px;*/
	/*min-height: 300px;*/
	/*overflow-y:auto;
-webkit-overflow-scrolling: touch;*/

	font-size: 100%;
}

div#restricted {
	/*background-color: RGBA(230,230,230,0.8);*/
	color: var(--color-text-dark);
	width: 90%;
	/*height:20%;*/
	margin: 0 auto;
	min-height: 280px;
	/*overflow-y:auto;*/
}


div#main h3 {
	font-family: "Raleway", sans-serif;
	color: var(--color-text-dark);

}

div#main h5,
div#main h4,
div#main h3,
div#main h2,
div#main h1 {
	font-family: "Raleway", sans-serif;
	color: var(--color-white);
	font-weight: normal;
	margin: 0px;
	padding: 10px 0px;
	/*text-decoration:underline;*/
}

ul.resume {
	margin: 0px;
}

div#main h3 {
	font-size: 1.2em;
	margin: 5px 0px;
}

div#main h2 {
	font-size: 1.6em;
}

div#main h1 {
	font-size: 2em;
}

span {
	font-style: italic;
	font-size: 0.8em;
}

div #main indent {
	text-indent: 50px;
}

div #main blockquote {
	display: block;
	margin-before: 0px;
	margin-after: 0px;
	padding-left: 0px;
}

div#main ul {
	padding-left: 0;
	list-style-type: none;


}

div#main ul.errorlist li {
	border: none;
	border-bottom: none;
}

div#main ul.errorlist li:hover {
	background-color: inherit;
}

div#news li {
	border-color: var(--color-text-dark);
	border-width: 1px;
	border-bottom: 1px solid var(--color-gray-dark);
	border-radius: 0px;
	padding: 10px 30px;
	margin: 0px;
	transition: background-color 0.15s ease;
	background-color: var(--color-bg-alt);
	font-family: "Raleway", sans-serif;
}


div#news li.last {
	border-bottom: 0px solid var(--color-black);
}

div#post2 {
	padding: 10px;
	min-height: 197px;
}

div#post img {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

div#post li {
	border: none;
	margin: 10px 0px;
}

div#post ul li {
	list-style-type: disc;
	list-style-position: inside;
}


input[type='text'],
input[type='email'],
textarea {
	font-size: 16px;
}


div#main bold {
	font-weight: bold;
}


div#main a {
	font-weight: bold;
	color: var(--color-text-dark);
	transition-duration: 0.5s;
}

div#main a:visited {
	color: var(--color-text-dark);
}

div#post {
	padding: 15px 40px 15px 40px;
	background-color: var(--color-bg-light);
}

div#news {
	background-color: var(--color-bg-light);
}

div#news a:visited:not(:first-child) {
	color: var(--color-link);
}

div#post a:visited,
div#news a:not(:first-child) {
	color: var(--color-link-visited);
}

div#post a:hover {
	color: var(--color-link-dark);
}

div#main #news ul a:hover {
	color: var(--color-text-dark) !important;

}

div#top {
	min-width: 60%;
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 10px;
	height: 100%;
	min-height: 700px;
}

@media (min-width:1000px) {

	div#news,
	div#post {
		box-shadow: 0px 0px 10px 3px var(--color-gray-dark);

	}

	div#prewrap {
		border-bottom: none;
	}

	div#main a:last-child li {
		border-bottom: none;
	}


}

#nav {
	margin: 0px;
	padding-bottom: 25px;
	padding-top: 15px;
}

#nav a {
	font-family: "Raleway", sans-serif;
	font-size: 1.5em;
	/*font-weight: bold;*/
	padding-bottom: 1px;
	margin: 10px;
	color: var(--color-white);
	text-decoration: none;
	transition: border-bottom ease 0.15s;
	border-bottom: 1px solid transparent;
}

div#nav a:hover {
	border-bottom: 1px solid var(--color-white);
}



p {
	padding: 10px 0px;
	margin: 0px;
	color: var(--color-text-dark);
	font-family: "Open Sans", sans-serif;
}


div.copyright {
	margin-top: 100px;
	min-height: 100px;
	text-align: center;
	color: var(--color-text);
	font-size: 70%;

}

.name {
	font-family: "Pacifico", "Open Sans", sans-serif;
	font-weight: normal;
	font-size: 110%;
}

div#main a {
	text-decoration: none;
	font-style: normal;
	font-weight: normal;
}

.spacer {
	height: 0px;
}

.spacer2 {
	height: 30px;
}

.spacer3 {
	height: 20%;
}

div#news {
	margin-top: 0px;
}

div#news ul {
	margin-top: 0px;
}

div#news a {
	text-decoration: none;
	font-style: normal;

	font-weight: normal;
}

div#news a:visited {
	text-decoration: none;
	font-style: normal;
}


#cons {
	color: var(--color-white);
	font-style: bold;
	position: fixed;
	top: 20%;
	bottom: 50%;
	left: 20%;
	font-size: 200%
}

html {
	width: 100%;
	height: 100%;

}

body {
	width: 97%;
	margin: auto;
	background-color: var(--color-black);
	/*
	background-color: #979797;
	background-image: url("images/main_bg_1.jpg");
	background-repeat: repeat;
	background-size:   cover;    */
	line-height: 1.4;
	font-family: "Open Sans", sans-serif;
	min-width: 300px;
}


input,
button {
	border: 1px solid var(--color-border);
	border-radius: 4px;
	outline: none;
	background-color: var(--color-bg-light);
	color: var(--color-text-dark);
}

button {
	font-size: 105%;
}

div.g-recaptcha {}

div.date,
div.ip {
	display: inline-block;
	color: var(--color-text-muted);
	font-size: 90%;
}

div.comment {
	padding: 10px;
	margin: 10px;
	border-left: 3px solid var(--color-border-light);
}



input:focus {
	outline: none;
}

input[type="password"],
input[type="text"],
input[type="email"] {
	border: 1px solid var(--color-border);
	border-radius: 4px;
	box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1);
	padding-left: 5px;
}

[type="submit"] {
	background-image: linear-gradient(to bottom, var(--color-bg-panel) 10%, var(--color-bg-dark) 100%);
	border-color: var(--color-border);
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
	transition: box-shadow .2s ease, font-size 1s ease;
}

[type="submit"]:hover {
	cursor: pointer;
}

[type="submit"]:active {
	background-image: linear-gradient(to bottom, var(--color-bg-dark) 10%, var(--color-bg-dark) 100%);
	box-shadow: none;
}

div.code:hover {
	border: 1px solid var(--color-gray-muted);
}

div.code:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

div#wrap:hover {
	/*background-color: rgba(112,0,0,.8);*/
}

div#title:hover {
	color: var(--color-text-dark);

}

div#main li:hover {
	background-color: var(--color-bg-panel);
}

div#main li[class="tab"]:hover {
	background-color: inherit;
}


#commentsubmit p {
	margin: 15px;
	margin-left: 0px;
}

#commentsubmit p:nth-of-type(1),
#commentsubmit p:nth-of-type(2) {
	display: inline-block;

}








.overflow::-webkit-scrollbar {
	-webkit-appearance: none;
}


.overflow::-webkit-scrollbar:vertical {
	width: 15px;
}

.overflow::-webkit-scrollbar:horizontal {
	height: 15px;
}

.overflow::-webkit-scrollbar-thumb {
	background-color: var(--color-gray-muted);
	border-radius: 0px;
	border: none;
}

.overflow::-webkit-scrollbar-track {
	border-radius: 0px;
	background-color: var(--color-bg-panel);
}

.overflow::-webkit-scrollbar-thumb:hover {
	background-color: var(--color-gray-light);
}

.overflow::-webkit-scrollbar-thumb:focus {
	background-color: var(--color-gray-medium);
}




div.comment {
	text-align: left;
	margin: 15px;
	margin-bottom: 30px;
	padding: 10px;
}

div.comment a:hover {
	cursor: pointer;
}



div.comment span {
	display: inline;
	font-style: normal;
	font-size: 100%;
}

div.comment span.a {
	position: relative;
}

div.comment span.b {
	position: absolute;
	top: -100px;
}

.comment table {
	font-size: 100%;
}

.comment table td.vote {
	vertical-align: top;
	padding-top: 10px;
}

.comment a {
	font-size: 80%;
}

.comment p {
	margin: 15px;
}

div.date {
	display: inline;
	font-size: 90%;
	color: var(--color-text-muted);
}

div.reply {
	display: inline;
}

div.reply input[type="checkbox"] {
	display: none;
}


div.reply div.replyform {
	transition: .5s ease;
	visibility: hidden;
	opacity: 0;
	max-height: 0px;
	z-index: -1
}

div.reply input:checked~div.replyform {
	max-height: 99999px;
	visibility: visible;
	opacity: 1;
}

div.comment {
	min-width: 350px;
	overflow-x: auto;
	overflow-y: hidden;
}

label[for="id_comment"] {
	display: none;
}

input.collapse {
	display: none;
}

input.collapse~div.collapsible {
	display: inline;
}

.collapse+label:hover {
	cursor: pointer;
}

.collapse+label:before {
	content: '[+]';
	color: var(--color-blue-light);
}

.collapse:checked+label:before {
	content: '[–]';
}

.collapse~span.collapsible {
	display: none;
}

.collapse:checked~span.collapsible {
	display: inline;
}


code span {
	font-style: normal;
	font-size: 100%;
}


@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-moz-keyframes fadein {

	/* Firefox */
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadein {

	/* Safari and Chrome */
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-o-keyframes fadein {

	/* Opera */
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}