@font-face {
	font-family: 'eOrbit';
	src: url('/font/earthorbiter.ttf') format('truetype');
}
@font-face {
	font-family: 'eOrbitBold';
	src: url('/font/earthorbiterbold.ttf') format('truetype');
}
@font-face {
	font-family: 'eOrbitCond';
	src: url('/font/earthorbitercond.ttf') format('truetype');
}

/* FOUNDATION */
html, body, a, article, aside, div, footer, h1, h2, h3, h4, 
header, i, li, nav, p, section, span, ul {
	display: block;
	padding: 0;
	margin: 0;
	font-style: normal;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html, body {
	width: 100%;
	background: #fff;
}
#almighty_wrapper {
	min-width: 1220px;
}
a,
a:visited,
a:active {
	display: inline-block;
	color: #9141fa;
	transition: opacity 0.25s ease-in-out;
	text-decoration: none;
}
a:hover {
	opacity: 0.5;
}
a:-webkit-any-link {
    text-decoration: none;
}

/* BANNER */
#banner_wrapper {
	position: relative;
	margin: 70px 0 0 0;
	width: 100%;
}
@media screen and (min-width: 1220px) {
	#banner_wrapper {
		height: 28%;
		min-height: 220px;
	}
	#banner_screen {
		font-size: 145px;
		padding: 50px 50px 0 50px;
	}
	#banner_screen i {
		font-size: 45px;
	}
	#banner_screen span {
		display: inline;
	}
}
@media screen and (min-width: 800px) and (max-width: 1219px) {
	#banner_wrapper {
		height: 28%;
		min-height: 220px;
	}
	#banner_screen {
		font-size: 100px;
		padding: 0 50px;
	}
	#banner_screen i {
		font-size: 32px;
	}
	#banner_screen span {
		display: block;
		text-align: right;
	}
}
@media screen and (max-width: 799px) {
	#banner_wrapper {
		height: 25%;
		min-height: 135px;
	}
	#banner_screen {
		font-size: 56px;
		padding: 50px 20px 0 20px;
	}
	#banner_screen i {
		font-size: 32px;
	}
	#banner_screen span {
		display: block;
		text-align: right;
	}
}
#banner_screen {
	display: inline-block;
	cursor: default;
	width: 100%;
	height: 100%;
	letter-spacing: 1px;
	text-align: right;
	font-family: 'eOrbitBold';
	background: -moz-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, #28989c), color-stop(53%, #3568a6), color-stop(100%, #9141fa));
	background: -webkit-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -o-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -ms-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: linear-gradient(to right, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#banner_screen i {
	display: inline;
	letter-spacing: 0;
}

/* NAV */
#nav_wrapper {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	background: #28989c;
	background: -moz-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, #28989c), color-stop(53%, #3568a6), color-stop(100%, #9141fa));
	background: -webkit-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -o-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -ms-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: linear-gradient(to right, #28989c 0%, #3568a6 53%, #9141fa 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#28989c', endColorstr='#9141fa', GradientType=1 );
}
#nav_screen {
	width: 100%;
	height: 100%;
}
#nav_screen ul {
	display: table;
	width: auto;
	height: 100%;
	text-align: center;
	margin: 0 auto;
}
#nav_screen ul li {
	float: left;
	position: relative;
	display: table;
	height: 100%;
	font-family: 'Raleway', sans-serif;
	text-transform: lowercase;
	transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}
#nav_screen ul li .nav_link,
#nav_screen ul li .nav_link:visited,
#nav_screen ul li .nav_link:active  {
	display: table-cell;
	vertical-align: middle;
	padding: 0 30px;
	color: #fff;
	transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}
.nav_dropdown {
	position: absolute;
	display: table;
	left: 0;
	top: 70px;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
#nav_screen ul li:hover .nav_link {
	color: #3568a6;
	background-color: #fff;
	opacity: 1;
	cursor: pointer;
}
#nav_screen ul li:hover .nav_dropdown {
	opacity: 1;
	visibility: visible;
}
.nav_dropdown .nav_dropdown_item,
.nav_dropdown .nav_dropdown_item:visited,
.nav_dropdown .nav_dropdown_item:active {
	border-right: 1px solid #ddd;
	border-left: 1px solid #ddd;
	padding: 15px;
	width: 100%;
	background-color: #fff;
	font-size: 13px;
	color: #676767;
	transition: background-color 0.25s ease-in-out;
}
.nav_dropdown .nav_dropdown_item:last-child {
	border-bottom: 1px solid #ddd;
}
.nav_dropdown .nav_dropdown_item:hover {
	background-color: #fafafa;
	opacity: 1;
}

/* HOMEPAGE */
#home_wrapper {
	height: auto;
	margin: 70px auto 50px;
}
@media screen and (min-width: 1025px) {
	#home_wrapper {
		min-width: 875px;
	}
	#home_wrapper.home_wide {
		width: 50%;
	}
	#home_wrapper.article_wide {
		width: 100%;
	}
}
@media screen and (min-width: 800px) and (max-width: 1024px) {
	#home_wrapper {
		min-width: 660px;
	}
	#home_wrapper.home_wide {
		width: 50%;
	}
	#home_wrapper.article_wide {
		width: 100%;
	}
}
@media screen and (max-width: 799px) {
	#home_wrapper.home_wide {
		width: 100%;
	}
	#home_wrapper.article_wide {
		width: 100%;
	}
}
#home_wrapper.home_sans_banner {
	margin-top: 220px;
}
#home_feature_banner {
	width: 75%;
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	line-height: 26px;
	letter-spacing: 1px;
	font-style: italic;
	color: #bbb;
	margin: 0 auto 75px auto;
}
.home_title_corner {
	width: 200px;
	height: 45px;
	display: table;
}
.home_title_deco {
	position: absolute;
	width: 180px;
	height: 180px;
	bottom: -185px;
	right: -10px;
	opacity: 0.5;
}
.home_title_corner label {
	font-family: 'Raleway', sans-serif;
	font-weight: 100;
	color: #aeaeae;
	text-transform: lowercase;
}
.home_title_img_link,
.home_title_img_link:active,
.home_title_img_link:visited {
	display: block;
}
.home_title_img {
	position: relative;
	width: 100%;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-background-repeat: no-repeat;
	-moz-background-repeat: no-repeat;
	-o-background-repeat: no-repeat;
	background-repeat: no-repeat;
	background-position: center center;
}
@media screen and (min-width: 800px) {
	.home_title_corner {
		position: relative;
		margin: 0 0 20px -50px;
		font-size: 28px;
	}
	.home_title_deco {
		border-left: 1px solid #9141fa;
		border-top: 1px solid #9141fa;
	}
	.home_title_img.home_hi {
		height: 200px;
	}
	.home_title_img.article_hi {
		height: 74%;
		min-height: 635px;
	}
}
@media screen and (max-width: 799px) {
	.home_title_corner {
		position: relative;
		margin: 0 auto 50px auto;
		width: 80%;
		font-size: 21px;
		text-align: center;
		border-bottom: 1px solid #9141fa;
	}
	.home_title_deco {
		display: none;
	}
	.home_title_img.home_hi {
		height: 150px;
	}
	.home_title_img.article_hi {
		height: 74%;
		min-height: 635px;
	}
}
.home_title_img .home_title_pin {
	position: absolute;
	top: 15px;
	right: 15px;
	color: #fff;
	font-size: 21px;
	padding: 8px 10px;
	z-index: 900;
}
.home_title_review_wrapper {
	position: relative;
	display: table;
	height: 100%;
	width: 100%;
	overflow: hidden;
}
.home_title_review {
	position: absolute;
	text-align: center;
	transform: rotate(-45deg);
	width: 130px;
	height: auto;
	padding: 7px 0;
	top: 20px;
	left: -30px;
}
.home_title_review.review_tag {
	background-color: #9141fa;
}
.home_title_review.feature_tag {
	background-color: #28989c;
}
.home_title_review.guide_tag {
	background-color: #3568a6;
}
.home_title_review label {
	font-size: 13px;
	font-family: 'Raleway', sans-serif;
	color: #fff;
	text-transform: lowercase;
	text-align: center;
	letter-spacing: 1px;
}
.home_title_img_credit {
	position: absolute;
	bottom: -20px;
	right: 0;
	width: 100%;
	font-family: 'Raleway', sans-serif;
	color: #bbb;
	font-size: 11px;
	text-transform: lowercase;
	text-align: right;
	letter-spacing: 1px;
	padding: 5px 5px 0 0;
}
.home_titlebar {
	position: relative;
	display: table;
	width: 100%;
}
.home_titlebar.homepage_titlebar {
	margin-bottom: 100px;
	padding: 8px;
}
@media screen and (min-width: 1025px) {
	.home_titlebar {
		margin: -20px 0 0 0;
	}
	.home_titlebar.article_titlebar {
		padding: 8px 50px;
	}
}
@media screen and (min-width: 800px) and (max-width: 1024px) {
	.home_titlebar {
		margin: -20px 0 0 0;
	}
	.home_titlebar.article_titlebar {
		padding: 8px 50px;
	}
}
@media screen and (max-width: 799px) {
	.home_titlebar {
		margin: 0;
	}
	.home_titlebar.article_titlebar {
		padding: 8px 0;
	}
}
.home_title_square {
	position: absolute;
	display: table;
	width: 32px;
	height: 32px;
	padding: 3px;
	bottom: 14px;
	background: #28989c;
	background: -moz-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, #28989c), color-stop(53%, #3568a6), color-stop(100%, #9141fa));
	background: -webkit-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -o-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -ms-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: linear-gradient(to right, #28989c 0%, #3568a6 53%, #9141fa 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#28989c', endColorstr='#9141fa', GradientType=1 );
	transform: rotate(45deg);
}
.home_title_insquare {
	display: table-cell;
	vertical-align: middle;
	border: 1px solid #fff;
	background-color: #fff;
}
@media screen and (max-width: 799px) {
	.home_title_square {
		display: none;
	}
}
.home_title_wrapper {
	display: table-cell;
	height: 100%;
	width: 95%;
	text-align: left;
}
@media screen and (min-width: 1025px) {
	.home_title_wrapper {
		padding: 0 5px;
	}
}
@media screen and (max-width: 1024px) {
	.home_title_wrapper {
		padding: 0 20px;
	}
}
.home_title_tags_wrapper {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 0 0 -40px;
	z-index: 990;
}
.home_title_tags_wrapper ul li {
	display: inline-block;
	text-transform: lowercase;
	margin: 0 5px 5px 0;
	background-color: #3568a6;
	color: #fff;
	font-family: 'Raleway', sans-serif;
	font-size: 12px;
	border-radius: 3px;
	transition: background-color 0.25s ease-in-out;
}
.home_title_tags_wrapper ul li a,
.home_title_tags_wrapper ul li a:visited,
.home_title_tags_wrapper ul li a:active {
	padding: 7px 10px;
	color: #fff;
	height: 100%;
	width: 100%;
}
.home_title_tags_wrapper ul li:hover {
	cursor: pointer;
	background-color: #28989c;
}
.home_title_tags_wrapper ul li a:hover {
	opacity: 1;
}
.home_title_wrapper h1 {
	font-family: 'Raleway', sans-serif;
	font-weight: 100;
	letter-spacing: 1px;
	color: #333;
	width: 100%;
	padding: 15px 0 8px 0;
}
@media screen and (min-width: 1025px) {
	.home_title_tags_wrapper {
		width: 100%;
		padding: 0 0 15px 0;
	}
	.home_title_wrapper h1  {
		font-size: 48px;
	}
	.home_title_wrapper h2 {
		font-size: 16px;
	}
}
@media screen and (min-width: 800px) and (max-width: 1024px) {
	.home_title_tags_wrapper {
		width: 65%;
		padding: 0;
	}
	.home_title_wrapper h1  {
		font-size: 32px;
	}
	.home_title_wrapper h2 {
		font-size: 14px;
	}
}
@media screen and (max-width: 799px) {
	.home_title_tags_wrapper {
		display: none;
	}
	.home_title_wrapper h1  {
		margin: 25px 0 0 0;
		font-size: 32px;
	}
	.home_title_wrapper h2 {
		font-size: 12px;
	}
}
.home_title_wrapper h1 a {
	color: #333;
}
.home_title_wrapper h2 {
	width: 100%;
	font-family: 'Raleway', sans-serif;
	font-weight: 100;
	font-style: italic;
	letter-spacing: 0.5px;
	color: #8c8c8c;
}
.home_title_credits_wrapper {
	width: 100%;
	height: auto;
	padding: 8px 0 0 0;
}
.home_title_author {
	width: auto;
	height: auto;
	text-transform: uppercase;
	font-size: 12px;
	font-family: 'Raleway', sans-serif;
	color: #bbb;
}
.home_title_twitter {
	width: auto;
	height: auto;
	text-transform: uppercase;
	font-size: 12px;
	font-family: 'Raleway', sans-serif;
	color: #bbb;
}
.home_title_date {
	width: auto;
	height: auto;
	text-transform: uppercase;
	font-size: 12px;
	font-family: 'Raleway', sans-serif;
	color: #bbb;
}
.home_title_comment_count {
	display: inline-block;
	width: auto;
	height: auto;
	text-transform: uppercase;
	font-size: 12px;
	font-family: 'Raleway', sans-serif;
	color: #bbb;
}
.home_title_comments {
	display: inline-block;
	width: auto;
	height: auto;
	text-transform: uppercase;
	font-size: 12px;
	font-family: 'Raleway', sans-serif;
	color: #bbb;
}
.home_title_comments i {
	padding: 0 3px;
}
@media screen and (min-width: 800px) {
	.home_title_author {
		display: inline-block;
		border-right: 1px solid #ddd;
		padding: 4px 10px 1px 0;
	}
	.home_title_twitter {
		display: inline-block;
		border-right: 1px solid #ddd;
		padding: 4px 10px 1px 10px;
	}
	.home_title_date {
		display: inline-block;
		border-right: 1px solid #ddd;
		padding: 4px 10px 1px 10px;
	}
	.home_title_comment_count {
		padding: 4px 0 1px 7px;
	}
	.home_title_comments {
		padding: 4px 0 1px 0;
	}
}
@media screen and (max-width: 799px) {
	.home_title_author {
		display: inline-block;
		border-right: 1px solid #ddd;
		padding: 4px 10px 1px 0;
	}
	.home_title_twitter {
		display: inline-block;
		padding: 4px 10px 1px 10px;
	}
	.home_title_date {
		padding: 4px 0;
	}
	.home_title_comment_count {
		padding: 4px 0;
	}
	.home_title_comments {
		padding: 4px 0;
	}
}
.home_body_wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
	height: auto;
	margin: 0 auto 100px auto;
}
.home_body_block {
	display: inline-block;
	height: auto;
}
.home_body_block span {
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	line-height: 24px;
	letter-spacing: 0;
	color: #222;
	background-color: #fff;
}
.home_body_block span h1 {
	display: inline-block;
	padding: 0 7px 0 0;
	font-size: 26px;
	line-height: 32px;
	font-weight: 100;
	letter-spacing: 1px;
	font-style: italic;
	background: -moz-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, #28989c), color-stop(53%, #3568a6), color-stop(100%, #9141fa));
	background: -webkit-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -o-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -ms-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: linear-gradient(to right, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.home_body_related_block {
	margin: 0 0 100px 0;
}
.home_body_related_block h1 {
	text-transform: lowercase;
	font-size: 18px;
	letter-spacing: 1px;
	width: 250px;
	margin: 0 auto;
	padding: 0 0 15px 0;
	font-weight: 100;
	font-family: 'Raleway', sans-serif;
	text-align: center;
	color: #ccc;
	border-bottom: 1px solid #ddd;
}
.home_body_related_square {
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	height: 22px;
	width: 22px;
	background-color: #fff;
	transform: rotate(45deg);
	margin: -11px auto 0 auto;
}
.home_body_related_links a {
	display: table;
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	margin: 25px 0 0 0;
}
.home_body_related_links a:first-of-type {
	margin: 0;
}
@media screen and (min-width: 1200px) {
	.home_body_wrapper {
		padding: 10px 65px;
	}
	.home_body_block {
		width: 100%;
		border-left: 1px solid #ddd;
	}
	.home_body_block span {
		float: left;
		width: 70%;
		padding: 10px 70px 10px 35px;
	}
	#home_body_related_wrapper {
		float: right;
		display: inline-block;
		height: 100%;
		width: 300px;
	}
	.home_body_related_links {
		margin: 30px 0 0 0;
		width: 100%;
	}
}
@media screen and (min-width: 800px) and (max-width: 1199px) {
	.home_body_wrapper {
		padding: 10px 65px;
	}
	.home_body_block {
		width: 100%;
		border-left: 1px solid #ddd;
	}
	.home_body_block span {
		width: 100%;
		padding: 10px 35px;
	}
	#home_body_related_wrapper {
		width: 100%;
		height: auto;
		display: table;
		padding: 70px 35px 0 35px;
	}
	.home_body_related_links {
		display: table;
		margin: 30px auto 0 auto;
	}
}
@media screen and (max-width: 799px) {
	.home_body_wrapper {
		padding: 10px;
	}
	.home_body_block {
		width: 100%;
	}
	.home_body_block span {
		width: 100%;
		padding: 10px;
	}
	#home_body_related_wrapper {
		width: 100%;
		height: auto;
		display: table;
		padding: 70px 35px 0 35px;
	}
	.home_body_related_links {
		display: table;
		margin: 30px auto 0 auto;
	}
}

/* ABOUT */
#about_wrapper {
	height: auto;
}
@media screen and (min-width: 800px) {
	#about_wrapper {
		width: 50%;
		min-width: 760px;
		margin: 225px auto 0 auto;
	}
}
@media screen and (max-width: 799px) {
	#about_wrapper {
		width: 100%;
		padding: 0 18px;
		margin: 125px auto 0 auto;
	}
}
.about_block {
	display: table;
	width: 100%;
	padding: 25px 0;
}
#about_img_wrapper {
	height: 270px;
	width: 270px;
	margin: 0 auto;
	padding: 3px;
	border-radius: 50%;
	background: #28989c;
	background: -moz-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, #28989c), color-stop(53%, #3568a6), color-stop(100%, #9141fa));
	background: -webkit-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -o-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -ms-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: linear-gradient(to right, #28989c 0%, #3568a6 53%, #9141fa 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#28989c', endColorstr='#9141fa', GradientType=1 );
}
#about_img {
	opacity: 0.97;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	border-radius: 50%;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-background-repeat: no-repeat;
	-moz-background-repeat: no-repeat;
	-o-background-repeat: no-repeat;
	background-repeat: no-repeat;
	background-position: center top;
}
#about_connect {
	display: table;
	margin: 10px auto 0 auto;
	width: auto;
	height: auto;
}
#about_connect a {
	padding: 7px;
}
#about_connect a:first-child {
	margin-right: 5px;
}
.about_block_title {
	display: table;
	width: auto;
}
.about_block_title_screen {
	padding: 25px 0;
	width: 100%;
	background-color: #fff;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	background: -moz-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, #28989c), color-stop(53%, #3568a6), color-stop(100%, #9141fa));
	background: -webkit-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -o-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: -ms-linear-gradient(left, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background: linear-gradient(to right, #28989c 0%, #3568a6 53%, #9141fa 100%);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
@media screen and (min-width: 800px) {
	.about_block_title_screen {
		font-size: 45px;
	}
}
@media screen and (max-width: 799px) {
	.about_block_title_screen {
		font-size: 28px;
		padding: 15px 0;
	}
}
.about_block p {
	padding: 25px;
	text-align: justify;
	color: #888;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.5px;
	line-height: 28px;
}
@media screen and (min-width: 800px) {
	.about_block p {
		font-size: 15px;
	}
}
@media screen and (max-width: 799px) {
	.about_block p {
		font-size: 14px;
	}
}

/* SCORING */
.review_scores_table {
	display: table;
	width: 100%;
}
.review_scores_table h1 {
	font-family: 'Raleway', sans-serif;
	color: #ccc;
	font-weight: 100;
	font-size: 24px;
	letter-spacing: 0.5px;
	margin: 35px 0 25px 0;
}
.review_scores_table table {
	border-collapse: collapse;
	margin: 0 auto;
}
.review_scores_table table th {
	font-family: 'Raleway', sans-serif;
	vertical-align: middle;
	font-size: 14px;
	padding: 8px 10px;
	text-align: center;
	color: #3568a6;
	letter-spacing: 0.5px;
	text-transform: lowercase;
}
.review_scores_table table td {
	font-family: 'Raleway', sans-serif;
	vertical-align: middle;
	font-size: 12px;
	padding: 12px 8px;
	text-align: center;
	letter-spacing: 0.5px;
	text-transform: lowercase;
	color: #888;
}
.review_scores_table table .review_table_identifier {
	text-align: right;
}
@media screen and (min-width: 800px) {
	.review_scores_table table {
		width: 65%;
	}
	.review_scores_table table th {
		font-size: 14px;
	}
}
@media screen and (max-width: 799px) {
	.review_scores_table table {
		width: 100%;
	}
	.review_scores_table table th {
		font-size: 10px;
	}
}

/* CONTACT */
.form-container label {
	display: table;
	color: #cecece;
	font-family: 'Raleway', sans-serif;
	font-size: 24px;
	font-weight: 100;
	text-transform: lowercase;
	padding: 7px 0;
}
.form-container input,
.form-container textarea {
	display: table;
	margin: 0 0 20px 0;
	font-size: 26px;
	width: 100%;
	padding: 10px;
	color: #9141fa;
	font-family: 'Raleway', sans-serif;
	font-weight: 100;
	letter-spacing: 0.5px;
	border: 1px solid #ddd;
}
.form-container textarea {
	resize: none;
}
.form-container input:focus,
.form-container textarea:focus {
	outline: none;
}
.g-recaptcha {
	display: table;
	margin: 50px auto;
}
.button-primary {
	width: 100%;
	font-family: 'Raleway', sans-serif;
	font-weight: 100;
	font-size: 21px;
	text-transform: lowercase;
	color: #fff;
	background-color: #3568a6;
	border: none;
	border-radius: 3px;
	padding: 15px;
	transition: background-color 0.25s ease-in-out;
}
.button-primary:hover {
	background-color: #28989c;
	cursor: pointer;
}
.button-primary:focus,
.button-primary:active {
	outline: none;
}

/* THANK YOU MESSAGE */
.thankyou_block_title {
	margin: 0 auto;
}

/* DISQUS COMMENTS */
#disqus_thread {
	width: 100%;
	padding: 65px 65px 0 65px;
}

/* FOOTER */
#footer_wrapper {
	position: relative;
	width: 100%;
	height: auto;
	display: table;
	margin: 200px 0 0 0;
}
#footer_wrapper_screen {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #28989c;
}
#footer_wrapper_block {
	position: relative;
	display: table;
	z-index: 50;
	width: auto;
	height: auto;
	padding: 100px 0;
	margin: 0 auto;
	color: #fff;
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
}
#footer_wrapper_block ul li a {
	color: #fff;
	text-transform: lowercase;
}
#footer_wrapper_block span {
	display: table;
	font-size: 11px;
	margin: 50px auto 0 auto;
	letter-spacing: 0.5px;
	min-width: 200px;
	text-align: center;
}
@media screen and (min-width: 800px) {
	#footer_wrapper_block ul li {
		display: inline-block;
	}
	#footer_wrapper_block ul li:after {
		content: '•';
		padding: 10px;
	}
	#footer_wrapper_block ul li:last-child:after {
		content: none;
		padding: 0;
	}
	#footer_wrapper_block ul li a {
		font-size: 14px;
	}
}
@media screen and (max-width: 799px) {
	#footer_wrapper_block ul li {
		text-align: center;
		padding: 0 0 10px 0;
	}
	#footer_wrapper_block ul li:last-child {
		padding: 0;
	}
}
