* {
	position: relative;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	border: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
}

html {
	min-width: 240px;
	font-family: Arial, Helvetica, sans-serif;
	color: #464646;			/*TEXT_COLOR*/
	background: #111;	/*BACKGROUND_COLOR*/
	min-height: 100%;
}

a {
	color: #009688;
}
a:visited {
	color: #673ab7;
}

#header {
	height: 60px;
	background: #3cc;
}
.logo {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	font-size: 32px;
	cursor: auto;
	user-select: none;
}
.logo * {  }
.logo span.coura { font-weight: 900; font-family: Arial, Helvetica, sans-serif; }
.logo span.js { font-weight: normal; font-family: Arial, Helvetica, sans-serif; }
.logo a { text-decoration: none; color: currentColor; }


.text-row {
	line-height: normal;
}

.margin-m {
	margin: 40px;
}

.text-row h1 {
	margin-bottom: 12px;
}
.text-row h3 {
	margin-bottom: 8px;
}
.text-row p {
	margin-bottom: 12px;
}


.row {
	margin: 40px 25px;
	margin-bottom: 0;
}
.col2 {
	float: left;
	width: 50%;
	padding: 0 15px;
	margin-bottom: 40px;
}
.clr::after {
	content: " "; display: table; clear: both;
}

#content li {
	margin-left: 24px;
	margin-bottom: 8px;
}

@media(max-width: 800px)
{
	.col2 {
		width: 100%;
	}
}



/* Menu Button */
#header .menu-btn {
	position: absolute;
	width: 52px;
	height: 100%;
	cursor: pointer;
	visibility: hidden;
}
#header .menu-btn svg {
	width: 26px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	stroke: #fff;
	stroke-linecap: square;
}

#main {
	background: #fafafa;
	min-height: 740px;
	line-height: 0;
}

#left {
	width: 220px;
	display: inline-block;
	float: left;
}

#right {
	width: 300px;
	display: inline-block;
	float: right;
	height: 200px;
}

#content {
	width: calc(100% - 220px - 300px);
	margin: auto;
	display: inline-block;
	padding: 12px;
	min-height: 740px;

	border-left: solid 1px #ddd;
	border-right: solid 1px #ddd;
}


@media (max-width: 1420px)
{
	#right { display: none; }
	#content {
		width: calc(100% - 220px);
		border-right: none;
	}
}

@media (max-width: 1024px)
{
	#left { display: none; }
	#content {
		width: calc(100%);
		border-left: none;
	}
	#header .menu-btn { visibility: visible; }
}


#footer {
	min-height: 120px;
	background: #333;
	color:#fff;
}

#copyright {
	color: #fff;
	background: #222;
	text-align: center;
	padding: 20px 0;
	font-size: 12px;
}




#menu {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 800;

	visibility: hidden;
	
}
#menu .dimmer {
	height: 100%;
	background: rgba(0,0,0, 0.7);
	cursor: pointer;

	pointer-events: none;
	opacity: 0;
	transition: opacity ease-out;
}
#menu .drawer {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	max-width: 360px;
	min-width: 240px;
	width: calc(100% - 60px);

	pointer-events: none;
	transform: translateX(-100%);						/* IE */
	transform: translateX(calc(-100% - 20px));
	transition: transform cubic-bezier(.07,.5,.4,1.1);
}
#menu .drawer::before {
	content: "";
	position: absolute;
	top: 0;
	left: -20px;
	width: calc(100% + 20px);
	height: 100%;
	background: #FAFAFA;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.7);
}
/* #menu, #menu .dimmer, #menu .drawer { transition-duration: 0.25s; } */


#menu .header { height: 52px; }
#menu .header .logo { color: #3cc; }


#menu .close-btn {
	width: 52px;
	height: 100%;
	cursor: pointer;
	border-right: solid 0.5px #ddd;
}
#menu .close-btn:hover {
	color: #e91e63;
}
#menu .close-btn svg {
	top: 50%;
	left: 50%;
	width: 20px;
	fill: currentColor;
	stroke: currentColor;
	transform: translate(-50%,-50%);
}


nav.vert-nav {
	user-select: none;
	border-top: solid 0.5px #ddd;
	height: calc(100% - 53px);
	overflow: auto;
	overscroll-behavior: contain;
	line-height: 1.5;
}
#main nav.vert-nav
{
	border-top: none;
}
nav.vert-nav > div {
	background: #f1f1f1;
	padding: 4px 0px 4px 12px;
	font-weight: bold;
	cursor: default;
}
nav.vert-nav ul {
	padding-left: 8px;
	margin-left: 8px;
	list-style: none;
	margin-bottom: 8px;
	margin-top: 4px;
}
nav.vert-nav > ul {
	margin-left: 6px;
	padding-left: 6px;
}

nav.vert-nav li:hover {
	list-style-type: circle;
}
nav.vert-nav > ul > li {
	list-style: none !important;
}



nav.vert-nav a {
	color: #464646;
	text-decoration: underline;
	cursor: pointer;
}
nav.vert-nav a:visited {
	color: #464646;
}
nav.vert-nav a:hover { color: #FF9800; }






html.menu-open { overflow-y: scroll; height: 100vh; }
html.menu-open body { height: 100%; overflow-y: hidden; }
#menu.open { visibility: visible; }
#menu.open .dimmer { opacity: 1; pointer-events: all; }
#menu.open .drawer { transform: translateX(0); pointer-events: all; }