/*
	Imports
*/
@font-face
{
	font-family: "nimbus";
	src: url("../fonts/NimbusMonL-Regu.ttf") format("truetype");
	font-weight: normal;
    font-style: normal;
}
@font-face
{
	font-family: "nimbus";
	src: url("../fonts/NimbusMonL-Bold.ttf") format("truetype");
	font-weight: bold;
    font-style: normal;
}
@font-face
{
	font-family: "nimbus";
	src: url("../fonts/NimbusMonL-ReguObli.ttf") format("truetype");
	font-weight: normal;
    font-style: italic;
}
@font-face
{
	font-family: "nimbus";
	src: url("../fonts/NimbusMonL-BoldObli.ttf") format("truetype");
	font-weight: bold;
    font-style: italic;
}
/*	Font: dhicons
		A: Open menu
		B: Close menu
		E: Explosion icon
		M: Forward arrow
		N: Back arrow
		O: Close button
		V: Check mark
		W: Check mark with circle
		Y: Yeild sign
*/
@font-face
{
	font-family: "dhicons";
	src: url("../fonts/dhicons.ttf") format("truetype");
	font-display: block;
}
/*
	CSS vars
*/
:root
{
	/*	Base style vars		*/
	--font-default: nimbus, courier, "Courier New", "Courier 10 Pitch", monospace;
	/*	dhicons char ref_lnk	*/
	--icon-menu-open: "A";
	--icon-menu-close: "B";
	--icon-explode: "E";
	--icon-arrow_forward: "M";
	--icon-arrow_backward: "N";
	--icon-close: "O";
	--icon-check: "V";
	--icon-check-circle: "W";
	--icon-yeild: "Y";
	/*	link color and styles	*/
	--link-color: rgb(153, 255, 153);
	--link-color-focus: rgb(255, 153, 102);
	/*	Other colors	*/
	--color-dk-grey: rgb(40, 40, 40);
	--color-whiteish: rgb(220, 220, 210);
}
/*
	Main Elements
*/
html, body
{
	height: 100%;
	position: static;
	margin: 0;
	font-family: var(--font-default);
	overflow: hidden;
	min-height: 20rem;
}
body
{
	background: rgba(70, 70, 70);
	transition: background 1s;
	min-width: 320px;
	width: auto;
	
	display: block;
	position: relative;
}
hr
{
	color: #c97;
	margin: 1.2em 0;
	clear: both;
}
code
{
	display: block;
	white-space: pre-line;
	word-break: break-all;
}
.gradient_mask
{
	width: auto; 
	height: auto; 
	min-width: 100%; 
	min-height: 100%; 
	position: absolute;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.7) 100%);
}
/*
	Main Backgorund - The Canvas Element
*/
#main_background
{
	position: absolute;
	width: 100%;
	height: 100%;
}
/*
	Main Header
*/
#main_header
{
	position: absolute;
	color: #cbd;
}
#main_header h1,
#main_header h1 span
{
	
	margin: 0 0 0 1rem;
	line-height: 5rem;
	font-size: 3rem;
	font-weight: bold;
	position: absolute;
}
#main_header h1 span
{
	padding: 0;
	margin: 0;
	top: 0;
	bottom: 0;
	will-change: transition, transition-timing-function, left, top;
}
/*
	Generic Form Styles
*/
label
{
	font-weight: bold;
	font-size: 1.2em;
	margin: 0.5em 0 0.2em;
}
label[for]
{
	color: var(--link-color);
}
label[for]:hover,
label[for]:focus
{
	color: var(--link-color-focus);
}
input,
textarea,
button
{
	font-family: var(--font-default);
}
input[type=text],
input[type=email]
{
	margin: 0.2em 0 1em;
	width: 20em;
}
button,
input[type=button]
{
	padding: 0.4em 1.6em;
	margin: 0.5em 0 0.2em;
	background-color: var(--link-color);
	color: var(--color-dk-grey);
	font-size: 1.2em;
	font-weight: bold;
	border: none;
	border-radius: 0.8em 0.2em;
	cursor: pointer;
}
button:hover,
button:focus,
input[type=button]:hover,
input[type=button]:focus
{
	background-color: var(--link-color-focus);
}
button:disabled
{
    color: #aaa;
    background-color: #333;
    cursor: not-allowed;
}
/*	Checkbox styles	*/
.checkbox_label
{
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	user-select: none;
}
.checkbox_label input[type=checkbox]
{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkbox_marker
{
	position: absolute;
	top: 0;
	left: 0;
	height: 1.3em;
	width: 1.3em;
	border: solid 0.2em var(--link-color);
	border-radius: 0.4em 0.1em;
	background-color: var(--color-whiteish);
	box-sizing: border-box;
}
.checkbox_label:hover
{
	color: var(--link-color-focus);
}
.checkbox_label:hover .checkbox_marker
{
	border-color: var(--link-color-focus);
}
.checkbox_label input:checked ~ .checkbox_marker
{
	background-color: var(--link-color);
}
.checkbox_label:hover input:checked ~ .checkbox_marker
{
	background-color: var(--link-color-focus);
}
.checkbox_marker:after
{	
	content: "";
	position: absolute;
	display: none;
}
.checkbox_label input:checked ~ .checkbox_marker:after
{
	display: block;
}
.checkbox_label .checkbox_marker:after 
{
	color: var(--color-dk-grey);
	left: -0.1em;
	top: -0.2em;
	font-family: dhicons;
	font-weight: bold;
	font-size: 1.2em;
	content: var(--icon-check);
}
/*
    Main Nav
*/
#main_nav
{
    position: absolute;
}
#main_nav ul
{
	position: absolute;
    display: inline-block;
    width: 14rem;
    padding: 0;
    margin: 0;
	border-radius: 4rem 1rem;
    box-shadow: inset 0.8em 0.8em 1em rgba(200, 200, 200, 0.5);
	overflow: hidden;
	margin: 5rem 1rem 1rem;
}
#main_nav ul li
{
    list-style: none;
}
#main_nav ul li a
{
    display: block;	
	color: #fff;
    background-color: rgba(70, 70, 255, 0.8);    
	font-size: 1.6em;
	padding: 0.9rem;
	line-height: 1.8rem;
	font-weight: bold;
	font-style: normal;
	text-decoration: none;
	transition: padding 0.8s ease-out, background 0.8s ease-in;
}
#main_nav ul li:first-child a
{
	padding-top: 2rem;
}
#main_nav ul li a:hover,
#main_nav ul li a:active
{
    background-color: rgba(255, 255, 255, 0.9);  
	padding: 1.5rem;
	color: #00f;
}
#main_nav ul li:first-child a:hover,
#main_nav ul li:first-child a:active
{
	padding-top: 2rem;
}
#main_nav ul li a:visited
{
/*	color: #33a;	*/
}
#main_nav ul li[aria-selected=true] a:after
{
	margin-left: 0.2em;
	color: #9f9;
	font-weight: 900;
	content: "$";
	speak: none;
	font-display: block;
}
#main_nav ul li[aria-selected=true] a:hover:after
{
	color: #f66;
}
#nav_toggle
{
	display: none;
}
/*
    Main Content
*/
#main_content
{
	font-size: 1.2em;
	padding: 1.4rem;
	height: auto;    
	margin: auto;
	overflow: auto;
	position: absolute;
	top: 5rem;
	bottom: 2rem;
	left: 16rem;
	right: 2rem;
	border-radius: 4rem 1rem;
	color: var(--color-whiteish);
	background-color: rgba(20, 20, 20, 0.95);
	box-shadow: inset 0.5em 0.5em 1em rgba(0, 0, 0, 0.5);
}
#main_content a
{
	color: var(--link-color);
	text-decoration: none;
}
#main_content a:hover,
#main_content a:focus
{
	color: var(--link-color-focus);
}
#main_content h2
{
	color: #99f;
	font-size: 2em;
	margin: 0.6em 0;
}
#main_content h3
{
	color: #99f;
	font-size: 1.4em;
	margin: 0.4em 0;
}
#main_content h2:first-child
{
	margin-top: 0;
}
#main_content img,
#main_content obj,
#main_content iframe
{
	max-width: 100%;
}
#main_content .iso_box
{
	background-color: rgba(0, 0, 70, 0.4); 
	padding: 0.4em 1em; 
	margin: 1em 0;
	border-left: dotted #f97;
}
#main_content .iso_box h3:first-child
{
	text-align: center;
	margin-top: 0;
}
/*
		EXPAND COLLAPSE MENU
*/
.exp_col_wrap
{

}
.exp_col_head,
#main_content * .exp_col_head
{
	background-color: rgba(70, 70, 70, 0.4);
	margin: 0.4em 0 0 0;
	cursor: pointer;
	color: #9f9;
	transition: background 0.6s;
}
.exp_col_head:hover,
.exp_col_head:focus,
#main_content * .exp_col_head:hover,
#main_content * .exp_col_head:focus
{
	color: #f96;
	background-color: rgba(70, 70, 70, 1);
}
.exp_col_head:before
{
	font-family: dhicons;
	color: #9f9;
	margin: 0 0.2em;
	content: "+";
	speak: none;
	font-display: block;
}
.exp_col_head[aria-expanded=true]:before
{
	content: "-";
	speak: none;
	font-display: block;
}
.exp_col_head:hover:before
{
	color: #f96;
}
.exp_col_content,
#main_content * .exp_col_content
{
	background-color: rgba(0, 0, 120, 0.3); 
	padding: 0.4em 1em; 
	margin: 0 0 1em 0;
	padding: 0.8em;
	border-left: dotted #f97;
}
.exp_col_content h4,
#main_content * .exp_col_content h4
{
	margin: 0.5em auto;
}
.exp_col_content .page_menu_tab, 
#main_content .exp_col_content .page_menu_tab
{
	background: none;
}
/*
		Contact Form
*/
.contact_form
{
	
}
.contact_form form
{
	
}
.contact_form label
{
	display: block;
}
.contact_form input
{
	display: block;
	margin-bottom: 1em;
	padding: 0.5em;
	border-radius: 1.2em 0.3em;
	font-size: 1em;
}
.contact_form input[type=checkbox]
{
	display: inline;
}
.contact_form textarea
{
	display: block;
	padding: 0.5em;
	border-radius: 2em 0.5em;
	height: 8em;
	width: 60%;
	font-size: 1em;
}
/*
		Messages success, warning, error, etc...
*/
.sysmsg_warn
{
	font-style: italic;
	color: rgb(255, 200, 100);
}
.sysmsg_warn:before
{
	display: inline-block;
	margin-right: 0.5em;
	vertical-align: middle;
	font-style: normal;
	font-family: dhicons;
	content: var(--icon-yeild);
	speak: none;
	font-display: block;
}
.sysmsg_error
{
	font-style: italic;
	color: rgb(255, 100, 100);
}
.sysmsg_error:before
{
	display: inline-block;
	margin-right: 0.5em;
	vertical-align: middle;
	font-style: normal;
	font-family: dhicons;
	content: var(--icon-yeild);
	speak: none;
	font-display: block;
}
/****************************************
		CLASS ONLY SYTLES
****************************************/
.page_menu
{
	width: 100%;
	text-align: center;
}
.page_menu_tab,
#main_content .page_menu_tab
{
	display: inline-block;
    background-color: rgba(0, 0, 120, 0.3);
	padding: 0.9rem;
	font-weight: bold;
	font-style: normal;
	text-decoration: none;
	border-bottom: solid 0.1em #9f9;
	transition: background 0.8s ease-in;
}
.page_menu_tab:hover,
.page_menu_tab:focus,
#main_content .page_menu_tab:hover,
#main_content .page_menu_tab:focus
{
	color: #f96;
	border-bottom: solid 0.1em #f96;
}


.ltl_link
{
	font-size: 11pt;
	font-style: italic;
	font-weight: 100;
}
.snipt-embed
{
	/* width: 60%;
		Snipt is DEAD :(
	 */
}
.icon
{
	font-family: dhicons;
}
.img_left
{
	float: left;
	margin: 0.5em 0.5em 0.5em 0; 
}
.float_left
{
	float: left;
	position: relative;
	margin: 0.5em 0.5em 0.5em 0;
}
.float_right
{
	float: right;
	position: relative;
	margin: 0.5em 0em 0.5em 0.5;
}
.log_post
{
	margin-bottom: 2em;
}
.image_thumbnail img,
.art_btn img
{
	margin: 0.3em;
	border: solid #9f9;
	cursor: pointer;
	width: 4em;
	height: 4em;
}
.image_thumbnail img:hover,
.art_btn img:hover
{
	border: solid #f99;
}
.collapsed
{
	display: none;
}
.dev_preview_description
{
	margin: 1em 0;
}
.hide_gt_small /*	Hide if greater than 991px	*/
{
	display: none !important;
	visibility: hidden !important;
	speak: none !important;
}
.hide_gt_xsmall /*	Hide if greater than 479px	*/
{
	display: none !important;
	visibility: hidden !important;
	speak: none !important;
}
/*
	Modal Styles
*/
.modal_screen
{
	z-index: 1020;
	background-color: #000000;
	width: 100%;
	height: 100%;
	opacity: 0.8;
	top: 0;
	left: 0;
	position: fixed;
}
.modal_wrapper
{
	z-index: 1030;
	width: 100%;
	top: 0;
	text-align: center;
	position: fixed;
	display: block;
}
.modal_content
{
	z-index: 1040;
	text-align: left;
	background-color: #069;
	display: inline-block;
	position: relative;
	overflow: hidden;
	max-width: 100%;
	max-height: 100%;
	background-color: rgba(70, 70, 255, 0.8);
	border-radius: 2rem 0.5rem;
    box-shadow: inset 0.8em 0.8em 1em rgba(200, 200, 200, 0.5);
}
.modal_content img, 
.modal_content object{}
{
	float: left;
	padding: 5px;
	display: inline-block;
	overflow: hidden;
}
.modal_header
{

}
.modal_footer
{
	height: 1em;
}
.modal_body
{
	text-align: center;
	margin: auto 1em;
	max-width: 100%;
	max-height: 100%;
}
.modal_body img
{
	max-width: 100%;
}
.modal_title
{
	color: rgb(255, 255, 255);
	display: inline-block;
	line-height: 2em;
	font-size: 1.5em;
	margin: 0.2em 2.5em 0.2em 1em;
}
.modal_title a
{
	color: #fc9;
}
.modal_ttl a:hover, 
.modal_ttl a:active
{
	color: #ccf;
}
.modal_btn
{
	cursor: pointer; 
	margin: 5px 0px;
	height: 20px;
	width: 20px;
	display: block;
	font-size: 2em;
	color: var(--link-color);
	
	border: none;
	background: transparent;
	
	position: absolute;
	right: 1em;
	top: 0.2em;
}
.modal_btn:hover, 
.modal_btn:active
{
	color: var(--link-color-focus);
}
.modal_btn.close:after
{
	font-family: dhicons;
	content: var(--icon-close);
}

.modal_btn.next:after
{
	color: #99f;
	font-family: dhicons;
	content: var(--icon-arrow-forward);
}
.modal_btn.next:after:hover, 
.modal_btn.next:after:active
{
	color: #33f;
}
.modal_btn.prev:after
{
	color: #99f;
	font-family: dhicons;
	content: var(--icon-arrow_backward);
}
.modal_btn.prev:after:hover, 
.modal_btn.prev:after:active
{
	color: #33f;
}
.modal_fade_in
{
	opacity: 1;
	visibility: visible;
	speak: normal;
}
.modal_fade_out
{
	opacity: 0;
	visibility: hidden;
	speak: none;
}
/*

*/
.noselect
{
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}
/*
    ADA Helper Style Rules
*/
.sr-only
{

}
.sr-hide
{

}
/*
	Tablet Specific Styles - small
	480px - 991px
*/
@media screen and (max-width: 991px) 
{
	#main_header
	{
		width: auto;
		height: auto;
		min-width: 100%;
		min-height: 100%;
	}
	#nav_toggle
	{
		position: relative;
		display: inline-block;
		top: 0.5em;
		left: 0;
		width: 3em;
		height: 3em;
		cursor: pointer;
		color: #fff;
		background-color: rgba(70, 70, 255, 0.7);
		border-radius: 1rem;
		box-shadow: inset 0.8em 0.8em 1em rgba(200, 200, 200, 0.3);
		transition: padding 0.4s ease-out, background 0.4s ease-in;
	}
	#nav_toggle:hover,
	#nav_toggle:active
	{
		color: #00f;
		background-color: rgba(255, 255, 255, 0.7); 
	}
	#nav_toggle:after
	{
		position: absolute;
		font-family: dhicons;	
		font-size: 2.4em;
		padding: 0.07em 0.12em 0 0.12em;
		content: var(--icon-menu-open);
		speak: none;
		font-display: block;
	}
	#nav_toggle.open:after
	{
		content: var(--icon-menu-close);
		speak: none;
		font-display: block;
	}
	#main_nav
	{
		position: absolute;
		display: inline-block;
		margin: 0;
		top: 0.5rem;
		left: auto;
		bottom: auto;
		right: 1rem;
	}
	#main_nav ul
	{
		max-height: 0;
		overflow: hidden;
		right: 0;
		top: 4rem;
		margin: auto;
		z-index: 100;
		opacity: 0;
		transition: max-height 0.4s ease-out, opacity 0.4s ease-in;
	}
	#main_nav ul.show
	{
		max-height: initial;
		max-height: 30rem;
		opacity: 1;
	}
	
	#main_content
	{
		font-size: 1.1em;
		left: 1rem;
		right: 1rem;
	}
	.hide_lt_normal /*	Hide if less than 992px	*/
	{
		display: none !important;
		visibility: hidden !important;
		speak: none !important;
	}
	.hide_gt_xsmall /*	Hide if greater than 991px	*/
	{
		display: none  !important;
		visibility: hidden  !important;
		speak: none  !important;
	}
	.hide_gt_small /*	Hide if greater than 991px	*/
	{
		display: initial  !important;
		visibility: visible  !important;
		speak: inherit  !important;
	}
	.contact_form textarea
	{
		width: 90%;
	}
/*
	Phone Specific Styles - xsmall
	480px - 479px
*/
@media screen and (max-width: 479px)
{
	#main_header h1,
	#main_header h1 span
	{
		margin: 0 0 0 0.5rem;
		line-height: 5rem;
		font-size: 2rem;
	}
	#main_nav
	{
		right: 0.5rem;
	}
	#main_content
	{
		font-size: 1em;
		bottom: 2rem;
		left: 0.5rem;
		right: 0.5rem;
	}
	.hide_lt_small /*	Hide if less than 992px	*/
	{
		display: none !important;
		visibility: hidden !important;
		speak: none !important;
	}
	.hide_gt_xsmall /*	Hide if greater than 991px	*/
	{
		display: initial !important;
		visibility: visible !important;
		speak: inherit !important;
	}
	input[type=text],
	input[type=email]
	{
		width: 90%;	
	}
}
/*
	This is as small as the width should go
*/
@media screen and (max-width: 320px)
{
	#main_header h1,
	#main_header h1 span
	{
		margin: 0 0 0 0.3rem;
	}
	#main_nav
	{
		left: 16rem;
	}
}
/*
	For phone landscape view
*/
@media screen and (max-height: 8px)
{
	#main_nav
	{
		background-color: #f00;
	}
	#main_nav ul li a
	{
		font-size: 1.4em;
		line-height: 1.6em;
	}
}
