* {
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	font-family: arial, sans-serif;
}

::-webkit-input-placeholder {
   color: #404040;
}

:-moz-placeholder { /* Firefox 18- */
   color: #404040;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #404040;  
}

:-ms-input-placeholder {  
   color: #404040;  
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

html {
	display: block;
	background: #FFF;
}

body {
	display: block;
	background: #FFF url(../images/bg.png) no-repeat center top;
	animation: leftright 12s;
	animation-iteration-count: infinite;
	-moz-animation: leftright 12s;
	-moz-animation-iteration-count:infinite;
	-webkit-animation: leftright 12s;
	-webkit-animation-iteration-count:infinite;
	border-bottom: 10px solid #202020;
}

#header {
	display: block;
	max-width: 100%;
	height: 600px;
	background: transparent url(../images/logo.png) no-repeat center 40%;
	animation: rightleft 12s;
	animation-iteration-count: infinite;
	-moz-animation: rightleft 12s;
	-moz-animation-iteration-count:infinite;
	-webkit-animation: rightleft 12s;
	-webkit-animation-iteration-count:infinite;
}
	#header h1 {
		display: none;
	}

@keyframes rightleft {
	0% {background-position: 52% 40%;}
	50% {background-position: 48% 40%;}
	100% {background-position: 52% 40%;}
}

@-moz-keyframes rightleft {
	0% {background-position: 52% 40%;}
	50% {background-position: 48% 40%;}
	100% {background-position: 52% 40%;}
}

@-webkit-keyframes rightleft {
	0% {background-position: 52% 40%;}
	50% {background-position: 48% 40%;}
	100% {background-position: 52% 40%;}
}

@keyframes leftright {
	0% {background-position: 48% 0%;}
	50% {background-position: 52% 0%;}
	100% {background-position: 48% 0%;}
}

@-moz-keyframes leftright {
	0% {background-position: 48% 0%;}
	50% {background-position: 52% 0%;}
	100% {background-position: 48% 0%;}
}

@-webkit-keyframes leftright {
	0% {background-position: 48% 0%;}
	50% {background-position: 52% 0%;}
	100% {background-position: 48% 0%;}
}

.main {
	display: block;
	max-width: 100%;
	width: 960px;
	margin: 0 auto;
}
.main#first {
	margin-top: 100px;
}
.main#last {
	padding-bottom: 40px;
}

.white {
	background:#FFF;
}
	.white .main {
		padding: 60px 0;
		box-sizing: border-box;
	}

	.white h2 {
		font-size: 24px;
		line-height: 34px;
		color: #404040;
		margin-bottom: 10px;
		font-family: 'Roboto Condensed', sans-serif;
	}

#gl {
	display:block;
	margin: 0 auto 20px auto;
	width:100%;
	max-width: 960px;
	cursor: pointer;
	-webkit-transition: all .1s linear;
	-moz-transition: all .1s linear;
	transition: all .1s linear;
}
	#gl:hover {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		transform: scale(1.1);
	}
	#gl img {
		width:100%;
		height: auto;
		margin: 0;
		padding: 0;
	}

#gamemodes {
	position: relative;
	padding: 20px 0;
}
	#gamemodes h2 {
		font-size: 24px;
		line-height: 34px;
		color: #404040;
		margin-bottom: 20px;
		font-family: 'Roboto Condensed', sans-serif;
	}
	
	#gamemodes .gamemode {
		float:left;
		width:49%;
		box-sizing: border-box;
	}
		#gamemodes .gamemode h2 {
			font-size: 24px;
			line-height: 34px;
			color: #ca1e28;
			margin-bottom: 10px;
			font-family: 'Roboto Condensed', sans-serif;
		}
		#gamemodes .gamemode p {
			font-size: 16px;
			line-height: 26px;
			font-family: 'Roboto Condensed', sans-serif;
			color: #404040;
		}
	#worlds {
		position: relative;
	}
	#worlds h2 {
		font-size: 24px;
		line-height: 34px;
		color: #404040;
		margin-bottom: 20px;
		font-family: 'Roboto Condensed', sans-serif;
	}
	#worlds div.world {
		float:left;
		width:30%;
		margin: 0 5% 0 0;
		box-sizing: border-box;
	}
		#worlds div.world h2 {
			font-size: 24px;
			line-height: 34px;
			color: #ca1e28;
			margin-bottom: 10px;
			font-family: 'Roboto Condensed', sans-serif;
		}
		#worlds div.world p {
			font-size: 16px;
			line-height: 26px;
			font-family: 'Roboto Condensed', sans-serif;
			color: #404040;
		}

h2.header {
	font-size: 24px;
	line-height: 24px;
	color: #404040;
	margin-bottom: 40px;
	font-family: 'Roboto Condensed', sans-serif;
}

#nav {
	position: fixed;
	top:0;
	left:0;
	right:0;
	display:block;
	width:100%;
	height:100px;
	line-height:30px;
	padding:15px 0 55px 0;
	overflow:hidden;
	text-align:center;
	z-index: 100;
	box-sizing:border-box;
	font-family: 'Roboto Condensed', sans-serif;
}
	#nav a {
		display:inline-block;
		height:30px;
		line-height:30px;
		padding:0 15px;
		margin:0 0 0 10px;
		font-size:16px;
		color:#fff;
		background:#202020;
		text-decoration:none;
		font-family: 'Roboto Condensed', sans-serif;
		-webkit-transition:all .1s linear;
		-moz-transition:all .1s linear;
		transition:all .1s linear;
		-webkit-transform:scale(1);
		-moz-transform:scale(1);
		transform:scale(1);
		-webkit-border-radius:3px;
		-moz-border-radius:3px;
		border-radius:3px;
		z-index:1;
	}
		#nav a:hover {
			background:#cd2323;
			color:#FFF;
			-webkit-transform:scale(1.1);
			-moz-transform:scale(1.1);
			transform:scale(1.1);
		}
#nav::before {
	position:absolute;
	top: -50px;
	left:0;
	bottom: 40px;
	right:0;
	display:block;
	width: 100%;
	margin:0;
	padding:0;
	background-color: #FFF;
	-webkit-transform: skewY(1deg);
	-moz-transform: skewY(1deg);
	transform: skewY(1deg);
	content:" ";
	z-index: -1;
}

.skewedcontainer {
    position:relative;
	margin:0 0 60px 0;
	z-index: 2;
}
.skewedcontainer .skewcontent {
    max-width:960px;
    width:100%;
    padding:0;
    margin:0 auto;
    color:#FFF;
    z-index:2;
}
.skewcontent.grey {
	margin-top:90px !important;
}
.skewedcontainer .skewcontent::before {
    position:absolute;
	top:-50px;
	left:0;
	bottom:-50px;
	right:0;
	display:block;
    width: 100%;
	margin:0;
    padding:0;
    background-color: #202020;
    border-bottom: #404040 20px solid;
    -webkit-box-shadow: #606060 0px 10px 0px;
    -moz-box-shadow: #606060 0px 10px 0px;
    box-shadow: #606060 0px 10px 0px;
    -webkit-transform: skewY(4deg);
    -moz-transform: skewY(4deg);
    transform: skewY(4deg);
    content:" ";
    z-index:0;
}
	.skewedcontainer .skewcontent.grey::before {
    	background-color: #EDEDED !important;
		border-bottom: none !important;
	    -webkit-box-shadow: none !important;
	    -moz-box-shadow: none !important;
	    box-shadow: none !important;
	}


/* NEW ========== */

.video {
	display:block;
	width:100%;
	max-width:960px;
	margin: 0 auto;
	border: #FFF 3px solid;
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 0px;
	-moz-box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 0px;
	box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 0px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-sizing: border-box;
}
	.embed-container {
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		max-width: 100%;
	}
	
		.embed-container iframe,
		.embed-container object,
		.embed-container embed {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: 1;
		}

.info_box {
	position: relative;
	display: block;
	max-width: 100%;
	width: 960px;
	min-height: 200px;
	margin: 0 auto 0 auto;
	padding: 39px 0 39px 220px;
	box-sizing: border-box;
	z-index: 2;
}
	.white .info_box {
		padding: 52px 0 52px 220px !important;
		margin-bottom:20px;
	}
	.info_box img.info_image {
		position:absolute;
		top:0;
		left:0;
		display: block;
		z-index: 2;
	}
	/* .info_box .info_content::before {
		position:absolute;
		top:3px;
		left:3px;
		display: block;
		width: 208px;
		height: 120px;
		content: " ";
		background: #F0F0F0;
		-webkit-box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 0px;
		-moz-box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 0px;
		box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 0px;
		-webkit-transform: rotate(5deg);
		-moz-transform: rotate(5deg);
		transform: rotate(5deg);
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		z-index: 1;
	} */
	
	.info_box .info_content {
		max-width: 100%;
	}
	
	.info_box .info_content h2 {
		font-size: 22px;
		line-height: 24px;
		color: #ca1e28;
		padding: 10px 0;
		margin: 0;
		font-family: 'Roboto Condensed', sans-serif;
	}
	.info_box .info_content p {
		font-size: 16px;
		line-height: 26px;
		color: #FFF;
		font-family: 'Roboto Condensed', sans-serif;
	}
		.white .info_box .info_content p {
			color:#202020 !important;
		}
	
	.screenshot {
		float:left;
		display: block;
		width: 32%;
		height:auto;
		margin: 20px 2% 0 0;
		overflow: hidden;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		box-sizing: border-box;
		cursor: pointer;
	}
		.screenshot img {
			display: block;
			width:100%;
			height: auto;
			margin: 0;
			padding: 0;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border-radius: 5px;
		}
	.screenshot.half {
		width:48%;
		margin-right: 4%;
	}
	/* .screenshot:nth-child(3n+2) { */
	.screenshot:nth-child(3n) {
		margin-right: 0;
	}
	
#mc_embed_signup {
	width:100%;
	max-width:600px;
	margin: 0 auto;
}

#mce-EMAIL {
	float:left;
	display: block;
	width: 74%;
	height: 50px;
	margin: 0;
	padding: 0 10px;
	background: #E0E0E0;
	color: #202020;
	font-size: 20px;
	font-family: 'Roboto Condensed', sans-serif;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-sizing: border-box;
}
#mc-embedded-subscribe {
	float:right !important;
	width: 24% !important;
	margin: 0 !important;
	padding: 0 10px !important;
	/* display: block;
	height: 50px;
	line-height: 50px;
	border: none;
	background: #ca1e28;
	font-size: 20px;
	color: #FFF;
	text-align: center;
	font-weight: bold;
	font-family: 'Roboto Condensed', sans-serif;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	overflow: hidden;
	-webkit-transition: all .1s linear;
	-moz-transition: all .1s linear;
	transition: all .1s linear;
	box-sizing: border-box;
	cursor:pointer; */
}
/* #mc-embedded-subscribe:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
} */

#subscribe_success {
	display: none;
	width: 100%;
	max-width: 600px;
	min-height: 50px;
	margin: 0 auto;
	line-height: 25px;
	font-size: 16px;
	color: #404040;
}

.button {
	position:relative;
	float:left;
	display: block;
	height:50px;
	line-height: 50px;
	margin: 0 20px 0 0;
	padding: 0 20px;
	background: #ca1e28;
	font-size: 20px;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	font-family: 'Roboto Condensed', sans-serif;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-transition: all .1s linear;
	-moz-transition: all .1s linear;
	transition: all .1s linear;
	box-sizing: border-box;
	cursor:pointer;
	z-index: 0;
}
.button:hover {
	overflow: hidden;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}
	.button.smaller {
		height:40px;
		line-height: 40px;
		padding: 0 16px;
		font-size:16px;
		margin:0 16px 0 0;
	}

.button::before {
	content: ' ';
	position: absolute;
	top: -5%;
	left: -140%;
	width: 120%;
	height: 110%;
	background: #202020;
	z-index: -1;
	-webkit-transform: skewX(-20deg);
	-moz-transform: skewX(-20deg);
	transform: skewX(-20deg);
	-webkit-transition: left 0.1s linear;
	-moz-transition: left 0.1s linear;
	transition: left 0.1s linear;
}

.button:hover::before {
	left:-10%;
}

#socialz {
	display: block;
	padding: 40px 0;
	margin: 0 auto;
	line-height: 20px;
	text-align: center;
	background:#ca1e28;
}
	#socialz > img {
		height: 100px;
		margin:0 20px 40px 20px;
	}
	#socialz > div {
		display: block;
		width:100%;
		max-width:400px;
		height:20px;
		margin: 0 auto;
		line-height: 20px;
	}
	.twitter-share-button,
	.fb-like {
		margin-right: 20px !important;
	}

#footer {
	display: block;
	width:100%;
	max-width: 800px;
	height:100px;
	line-height: 100px;
	text-align: center;
	padding: 50px 0;
	margin: 0 auto;
}

#footer > div {
	float:left;
	max-width:200px;
	width:25%;
	height:100px;
	line-height: 100px;
	text-align: center;
}

#footer > div > img,
#footer > div > a,
#footer > div > a img {
	max-width: 100%;
	height: auto;
}

#subfooter {
	text-align: center;
	font-family: 'Roboto Condensed', sans-serif;
	color:#404040;
	font-weight: bold;
	font-size:12px;
	padding-bottom:20px;
	letter-spacing:1px;
}
	#subfooter a {
		color:#ca1e28;
		font-family: 'Roboto Condensed', sans-serif;
	}

/* NEW ========== */

.small_container {
	position: relative;
	width: 500px;
	min-height: 120px;
	padding: 10px 10px 10px 260px;
	border: #48753a 2px solid;
	margin: 0 auto 50px auto;
	background: #5a9249;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
	.small_container.right {
		padding: 10px 260px 10px 10px;
	}

.small_container h2 {
	color: #FFF;
	margin-bottom: 5px;
	font-family: 'Roboto Condensed', sans-serif;
}

#preordercontainer,
#steamcontainer,
#humblecontainer,
#itchiocontainer {
	position: fixed;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	background:rgba(32, 32, 32, 0.5);
	z-index: 5;
	cursor: pointer;
}
#steamwidget,
#itchiowidget,
#preorderwidget,
#humblewidget {
	position: fixed;
	top:50%;
	left: 50%;
	display: block;
	width:100%;
	max-width:600px;
	background:#FFF;
	padding:40px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 5px;
	-moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 5px;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 5px;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index: 6;
	cursor: default;
}
	#steamwidget iframe,
	#itchiowidget iframe {
		width:100%;
		max-width:600px;
		margin:0 auto;
	}
	#humblewidget iframe {
		width:100%;
		max-width:600px;
		height:259px;
		margin:0 auto;
	}
	#preorderwidget {
		width:100%;
		max-width:600px;
		box-sizing: border-box;
	}
		#preorderwidget form {
			text-align: right;
			padding: 20px 20px 20px 160px;
			background-position: 20px center;
			background-repeat: no-repeat;
			background-color: #EDEDED;
			-webkit-border-radius: 3px;
			-moz-border-radius: 3px;
			border-radius: 3px;
		}
	#preorderwidget h2 {
		font-size: 24px;
		line-height: 24px;
		color: #404040;
		margin-bottom: 0;
		font-family: 'Roboto Condensed', sans-serif;
	}
	#preorderwidget h3 {
		font-size: 16px;
		line-height: 26px;
		color: #404040;
		margin-bottom: 0;
		font-family: 'Roboto Condensed', sans-serif;
	}
	#preorderwidget p {
		margin:0;
		padding:0 0 20px 0;
		font-size: 14px;
		line-height: 24px;
		font-family: 'Roboto Condensed', sans-serif;
	}
		#preorderwidget p a {
			color:#cd2323;
			font-weight: bold;
			text-decoration: underline;
			font-size: 14px;
			line-height: 24px;
			font-family: 'Roboto Condensed', sans-serif;
			cursor: pointer;
		}

.small_container p {
	color: #FFF;
	font-size: 14px;
	line-height: 20px;
	font-family: arial, sans-serif;
}
	.small_container p a {
		color: #962c30;
		text-decoration: none;
		font-weight: bold;
	}

.small_container img {
	position: absolute;
	top:0;
	left: -10px;
	right: auto;
	display: block;
	height: 140px;
	border: #FFF 3px solid;
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 0px;
	-moz-box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 0px;
	box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 0px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	transform: rotate(2deg);
	-moz-transform: rotate(2deg);
	-webkit-transform: rotate(2deg);
	z-index: 1;
}
.small_container img.second {
	transform: rotate(-2deg);
	-moz-transform: rotate(-2deg);
	-webkit-transform: rotate(-2deg);
	z-index: 2;
}
.small_container.right img {
	left: auto;
	right: -10px;
	transform: rotate(-2deg);
	-moz-transform: rotate(-2deg);
	-webkit-transform: rotate(-2deg);
}
.small_container.right img.second {
	transform: rotate(2deg) !important;
	-moz-transform: rotate(2deg) !important;
	-webkit-transform: rotate(2deg) !important;
	z-index: 2;
}

#ad {
	width: 728px;
	height: 90px;
	overflow: hidden;
	padding: 5px;
	margin: 50px auto;
	background-color: #97a940;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#97a940), to(#617c35));
	background-image: -webkit-linear-gradient(top, #97a940, #617c35);
	background-image: -moz-linear-gradient(top, #97a940, #617c35);
	background-image: -o-linear-gradient(top, #97a940, #617c35);
	background-image: -ms-linear-gradient(top, #97a940, #617c35);
	background-image: linear-gradient(top, #97a940, #617c35);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#97a940', EndColorStr='#617c35');
	border: 2px solid #2d3a17;
	-webkit-box-shadow: inset #cad84f 0px 2px 0px;
	-moz-box-shadow: inset #cad84f 0px 2px 0px;
	box-shadow: inset #cad84f 0px 2px 0px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#buttons {
	display: block;
	width: 428px;
	height: 44px;
	margin: 0 auto 50px auto;
}

#button {
	float: right;
	display: block;
	width: 200px;
	height: 40px;
	background-color: #962c30;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(150, 44, 48)), to(rgb(107, 31, 33)));
	background-image: -webkit-linear-gradient(top, rgb(150, 44, 48), rgb(107, 31, 33));
	background-image: -moz-linear-gradient(top, rgb(150, 44, 48), rgb(107, 31, 33));
	background-image: -o-linear-gradient(top, rgb(150, 44, 48), rgb(107, 31, 33));
	background-image: -ms-linear-gradient(top, rgb(150, 44, 48), rgb(107, 31, 33));
	background-image: linear-gradient(top, rgb(150, 44, 48), rgb(107, 31, 33));
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#962c30', EndColorStr='#6b1f21');
	border: 2px solid #5b0f11;
	-webkit-box-shadow: inset #a63c40 0px 2px 0px;
	-moz-box-shadow: inset #a63c40 0px 2px 0px;
	box-shadow: inset #a63c40 0px 2px 0px;
	text-align: center;
	line-height: 42px;
	color: #fffefe;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 1px;
	font-family: arial, sans-serif;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
}

#fbbutton {
	float: left;
	display: block;
	width: 200px;
	height: 40px;
	background-color: #4e69a2;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(78, 105, 162)), to(rgb(59, 89, 152)));
	background-image: -webkit-linear-gradient(top, rgb(78, 105, 162), rgb(59, 89, 152));
	background-image: -moz-linear-gradient(top, rgb(78, 105, 162), rgb(59, 89, 152));
	background-image: -o-linear-gradient(top, rgb(78, 105, 162), rgb(59, 89, 152));
	background-image: -ms-linear-gradient(top, rgb(78, 105, 162), rgb(59, 89, 152));
	background-image: linear-gradient(top, rgb(78, 105, 162), rgb(59, 89, 152));
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#4e69a2', EndColorStr='#3b5998');
	border: 2px solid #3d4e7e;
	-webkit-box-shadow: inset #7a8cb2 0px 2px 0px;
	-moz-box-shadow: inset #7a8cb2 0px 2px 0px;
	box-shadow: inset #7a8cb2 0px 2px 0px;
	text-align: center;
	line-height: 42px;
	color: #fefeff;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 1px;
	font-family: arial, sans-serif;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
}

#button:hover {
	color: #FFFEFE;
}

#posh {
	position: fixed;
	top:50%;
	left: 50%;
	display: none;
	width: 800px;
	height: 317px;
	margin: -158px 0 0 -400px;
	background: transparent url(../images/posh.png) no-repeat center center;
	z-index: 20;
}

#poshbutton {
	display: block;
	width: 200px;
	height: 40px;
	margin: 245px 0 0 420px;
	background-color: #962c30;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(150, 44, 48)), to(rgb(107, 31, 33)));
	background-image: -webkit-linear-gradient(top, rgb(150, 44, 48), rgb(107, 31, 33));
	background-image: -moz-linear-gradient(top, rgb(150, 44, 48), rgb(107, 31, 33));
	background-image: -o-linear-gradient(top, rgb(150, 44, 48), rgb(107, 31, 33));
	background-image: -ms-linear-gradient(top, rgb(150, 44, 48), rgb(107, 31, 33));
	background-image: linear-gradient(top, rgb(150, 44, 48), rgb(107, 31, 33));
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#962c30', EndColorStr='#6b1f21');
	border: 2px solid #5b0f11;
	-webkit-box-shadow: inset #a63c40 0px 2px 0px;
	-moz-box-shadow: inset #a63c40 0px 2px 0px;
	box-shadow: inset #a63c40 0px 2px 0px;
	text-align: center;
	line-height: 42px;
	color: #fffefe;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 1px;
	font-family: arial, sans-serif;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
}

#comingsoon {
	position: absolute;
	top:10px;
	right: 10px;
	display: block;
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
	background: rgba(0, 0, 0, 0.25);
	font-size: 10px;
	letter-spacing: 1px;
	font-weight: bold;
	text-transform: uppercase;
	color: #FFF;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#social {
	position: absolute;
	top:10px;
	left: 50%;
	margin: 0 0 0 -175px;
	display: block;
	width: 350px;
	height: 24px;
}

	#social iframe {
		margin-bottom:4px !important;
	}
	
	.fb_iframe_widget iframe {
		vertical-align: top !important;
	}
	
	.fb-like {
		top:  -5px !important;
	}

#logos {
	display: block;
	width: 171px;
	height: 75px;
	margin: 50px auto;
}

#logos a {
	display: block;
	height: 75px;
}


.banner {
	position: relative;
	overflow: auto;
	width: 800px !important;
	height: 450px !important;
	padding: 0;
	margin: 0 auto 50px auto;
	border: #FFF 3px solid;
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 0px;
	-moz-box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 0px;
	box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 0px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
    .banner li { list-style: none; }
        .banner ul li { float: left; }
        .banner img {
        	width: 800px !important;
	        height: 450px !important;
	        padding: 0;
	        margin: 0;
        }
        .banner .dots {
	        position: absolute;
			left: 0;
			right: 0;
			bottom: 0;
			text-align: center;
        }
        .banner .dots li {
	        display: inline-block;
			width: 6px;
			height: 6px;
			margin: 0 4px;
			text-indent: -999em;
			border: 2px solid #fff;
			border-radius: 6px;
			cursor: pointer;
			opacity: .4;
			-webkit-transition: background .5s, opacity .5s;
			-moz-transition: background .5s, opacity .5s;
			transition: background .5s, opacity .5s;
			-webkit-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
			-moz-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
			-ms-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
			-o-filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
			filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
        }
        .banner .dots li.active {
	        background: #fff;
			opacity: 1;
        }
#madjestic_logo.withText {
	color: #FFF !important;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.kickstarter {
	position: relative;
	display:block;
	text-decoration:none;
	background: #FFF;
	height: 130px;
	margin: 0 auto 40px auto;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10ox;
	border-radius: 10px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.1) 4px 4px;
	-moz-box-shadow: rgba(0, 0, 0, 0.1) 4px 4px;
	box-shadow: rgba(0, 0, 0, 0.1) 4px 4px;
	border: #EDF0ED 4px solid;
	box-sizing: border-box;
	color:#13df6d;
	padding: 34px 0 34px 260px;
	font-family:'Roboto Condensed', sans-serif;
}
	.kickstarter h1 {
		font-family: inherit;
		line-height: 30px;
		font-size: 30px;
		margin-bottom: 10px;
	}
	.kickstarter p {
		font-family: inherit;
		line-height:14px;
		font-size: 14px;
	}
	.kickstarter img {
		position: absolute;
		bottom: 0;
		left: 0;
	}
@media screen and (max-width: 960px) {
	.kickstarter {
		max-width: 90%;
	}
}
@media screen and (max-width: 700px) {
	#header {
		height:350px;
		background-size: contain;
	}
	.main#first {
		margin-top:50px;
	}
	.white .info_box,
	.info_box {
		padding:0 !important;
	}
		.info_box img.info_image {
			position:static;
			top:0;
			left:0;
			display:block;
			width:96%;
			margin:0 2%;
			box-sizing: border-box;
			-webkit-box-shadow: none !important;
			-moz-box-shadow: none !important;
			box-shadow: none !important;
		}
		.info_box .info_content {
			padding:20px 20px;
		}
			.info_box .info_content p,
			.info_box .info_content h2 {
				text-align:center !important;
			}
	#gamemodes {
		max-width:100%;
		box-sizing:border-box;
	}
	#gamemodes .main {
		max-width:100%;
		box-sizing:border-box;
		padding:40px 20px 20px 20px !important;
	}
		#gamemodes .main h2,
		#gamemodes .main p {
			max-width:100%;
			text-align:center;
		}
	
		#gamemodes .gamemode {
			float:none;
			width:100%;
			box-sizing: border-box;
			margin: 0 !important;
			text-align: center !important;
		}
	#worlds {
		position: relative;
		text-align: center !important;
	}
	#worlds div.world {
		float:none;
		width:100%;
		margin: 0 !important;
		box-sizing: border-box;
		text-align: center !important;
	}
	
	#video img {
		display:none;
		visibility:hidden;
	}

	.main > h2 {
		max-width:100%;
		padding:0 20px !important;
		text-align:center;
		box-sizing:border-box;
	}
		
	.white .main {
		padding-left:20px;
		padding-right:20px;
		background:none !important;
	}

	.button {
		float:none;
		display:block;
		margin:20px 0 0 0;
	}
	#mc_embed_signup {
		height:50px;
	}
	
	#mce-EMAIL {
		height:50px;
		font-size: 16px;
		border-width: 3px;
	}

	#mc-embedded-subscribe {
		height:50px;
		line-height: 44px;
		font-size: 12px;
		padding: 0 !important;
		border-width: 3px;
	}

	.kickstarter {
		width:90%;
		margin: 0 5% 120px 5%;
		padding:25px 20px;
	}
	.kickstarter h1 {
		text-align:center;
		line-height: 40px;
	}
	.kickstarter img,
	.kickstarter p {
		display:none;
		visibility:hidden;
	}
	
	.pulse {
	  -webkit-animation-name: none;
	  animation-name: none;
	  -webkit-animation-duration: 0s;
	  animation-duration: 0s;
	}
}

.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}


@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}