
a {
	background: 0 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

article {
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
}

article h2 {
	font-weight: 400;
	margin-bottom: .75rem;
}

aside {
	float: right;
	width: 30%;
}


/*
aside>div {
	margin: .625rem auto;
	min-height: 12.5rem;
}
*/


b {
	font-weight: 700;
}

body {
	background-color: #1e1e1e;
	color: #e2e2e2;
	font-family: helvetica, arial, sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	min-height: 100vh
}


/*
body>section {
	margin: auto;
	padding: 1.875rem 0px;
	color: #333;
}
*/


em {
	color: #6c8279;
}

footer {
	font-size: .875rem;
	padding: .625rem 0;
	text-align: center;
}

h1 {
	font-size: 150%;
}

h2 {
	color: #6c8279;
	font-size: 1.375rem;
	font-weight: 700;
}

h3 {
	font-size: 112.5%;
	font-weight: 500;
}

h4 {
	color: #ffcb9a;
	font-size: 100%;
}

header {
	clear: both;
	margin: auto;
	padding: 1.25rem 1.875rem;
	text-align: center;
}

header img {
	display: inline-block;
}

img {
	border: 0;
	border-radius: 20px;
	display: block;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

main {
	float: left;
	width: 60%;
}

p span {
	color: #ffcb9a;
}

pre {
	font-size: 1rem;
	font-weight: 300;
}

pre span {
	color: #ffcb9a;
}

table  {
	border: none;
	margin-left: auto;
	margin-right: auto;
}

td, 
th {
    border: .1em solid #313c3f;
	border-radius: 12px;
	padding: .5em;
}

td {
	vertical-align: middle;
	text-align: left;
}


/* <-- Button Links --> */

.btn:link,
.btn:visited {
	border-radius: 1rem;
	display: inline-block;
	font-size: 1.25rem;
	padding: 1rem 1.5rem;
	position: absolute;
	text-align: center;
	text-decoration: none;
	transition: all .7s;
}

.btn:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	transform: translateY(-3px);
}

.btn:active {
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	transform: translateY(-1px);
}

.btn-white {
	background-color: #6c8279;
	color: #e1e1e1;
}

.btn::after {
	border-radius: 1rem;
	content: "";
	display: inline-block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: all .4s;
	width: 100%;
	z-index: -1;
}

.btn-white::after {
	background-color: #6c8279;
}

.btn:hover::after {
	opacity: 0;
	transform: scaleX(1.4) scaleY(1.6);
}

.btn-animated {
	animation: moveInBottom 2s ease-out;
	animation-fill-mode: backwards;
}

@keyframes moveInBottom {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* <-- End Button Links --> */


/* <-- Classes --> */

.calc {
	background-color: #313c3f;
	color: #e2e2e2;
	font-size: .9375rem;
	font-weight: 300;
}

.center {
	text-align: center;
}

.container {
	margin-left: auto;
	margin-right: auto;
	max-width: 75%;
	padding-left: 1rem;
	padding-right: 1rem;
}

.displayed {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.group {
	color: #6c8279;
	font-size: 180%;
	font-weight: 400;
	padding: 1.875rem 0;
}

.pad {
	padding: 1.875rem 0;
}

.pad1 {
	padding: .625rem 0;
}

.purple {
	color: #3560b7;
	font-size: .9375rem;
	font-weight: 700;
}

.small {
	font-size: .625rem;
	font-weight: 300;
}

/* <-- End Classes --> */


/* <-- Divider --> */

.divider {
	display: table;
	font-size: 24px;
	margin: 40px auto;
	text-align: center;
	width: 75%;
}

.divider span {
	display: table-cell;
	position: relative;
}

.divider span:first-child,
.divider span:last-child {
	background-position: 0 0, 0 100%;
	background-repeat: no-repeat;
	-moz-background-size: 100% 2px;
	background-size: 100% 2px;
	top: 13px;
	width: 50%;
}

.divider span:first-child {
	background-image: -moz-linear-gradient(180deg, transparent, #d4e6e5);
	background-image: -o-linear-gradient(180deg, transparent, #d4e6e5);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), to(#d4e6e5));
	background-image: -webkit-linear-gradient(180deg, transparent, #d4e6e5);
	background-image: linear-gradient(90deg, transparent, #d4e6e5);
}

.divider span:nth-child(2) {
	color: #d4e6e5;
	padding: 0 5px;
	white-space: nowrap;
	width: auto;
}

.divider span:last-child {
	background-image: -moz-linear-gradient(180deg, #d4e6e5, transparent);
	background-image: -o-linear-gradient(180deg, #d4e6e5, transparent);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#d4e6e5), to(transparent));
	background-image: -webkit-linear-gradient(180deg, #d4e6e5, transparent);
	background-image: linear-gradient(90deg, #d4e6e5, transparent);
}

/*<-- End Divider -->*/


/*<--  FCC -->*/

.fcc a:link {
	text-decoration: none;
	color: #ffcb9a;
}

.fcc a:visited {
	text-decoration: none;
	color: #117476;
}

.fcc a:hover {
	text-decoration: none;
	color: #117476;
}

/*<-- End FCC -->*/


/*<-- ID's -->*/

#linkarea {
	border: none;
	margin: auto;
	max-width: 70%;
}

#pageContent {
	border: none;
	margin: auto;
	max-width: 70%;
}

#A {
	border: none;
	margin: auto;
	max-width: 70%;
}

#B {
	border: none;
	margin: auto;
	max-width: 70%;
}

/*<-- End ID's -->*/


/*<-- Left Right Sides -->*/

.content {
	overflow: auto;
	border: none;
	margin: auto;
	max-width: 70%;
}

.l7 {
	float: left;
	width: 70%;
}

.r2 {
	float: right;
	width: 20%;
}

.l7,
.r2 {
	display: inline-block;
}

.l5 {
	float: left;
	width: 50%;
}

.r4 {
	float: right;
	width: 40%;
}

.l5,
.r4 {
	display: inline-block;
}

.l35 {
	float: left;
	width: 35%;
}

.r55 {
	float: right;
	width: 55%;
}

.l35,
.r55 {
	display: inline-block;
}

/* <-- End Left Right Sides --> */


/* <-- Logo --> */

#logo {
	color: #e2e2e2;
	display: inline-block;
	font-size: 187.5%;
	margin-right: 4.6875rem;
	vertical-align: middle;
}

#logo img {
	margin-right: .625rem;
	vertical-align: middle;
	width: 3.125rem;
}

/* <-- End Logo --> */


/* <-- Navigation --> */

nav {
	display: inline-block;
}

nav ul {
	list-style: none
}

nav ul li {
	display: inline-block;
	margin: .625rem;
}

nav ul li a {
	background: #475a5b;
	border-radius: .625rem;
	color: #c9c9c9;
	font-size: 120%;
	font-weight: 500;
	padding: .225rem .625rem;
	text-decoration: none;
}

nav ul li a:hover {
	background: #6c8279;
}

/* <-- End Navigation --> */


/* <-- For The Mobile --> */

@media screen and (max-width: 62.5rem) {
	body>section {
		padding: 1.875rem 1.25rem;
	}
}

@media screen and (max-width: 37.5rem) {
	main {
		float: none;
		width: 100%;
	}
	aside {
		float: none;
		width: 100%;
	}
}
