/**
 * Copyright Virtuosi Media, Inc. 2014
 */ 
 
 /*
 * Reset styles using Eric Meyer's CSS reset as inspiration (http://meyerweb.com/eric/tools/css/reset/) 
 */
a,
abbr,
address,
article,
aside,
audio,
b,
bdi,
bdo,
blockquote,
body,
br,
button,
canvas,
caption,
cite,
code,
col,
colgroup,
command,
datalist,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
i,
iframe,
img,
ins,
keygen,
kbd,
label,
legend,
li,
map,
mark,
menu,
meter,
nav,
object,
ol,
optgroup,
option,
output,
p,
param,
pre,
progress,
q,
rp,
rt,
ruby,
s,
samp,
section,
select,
small,
source,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
textarea,
tfoot,
th,
thead,
time,
tr,
track,
u,
ul,
var,
video,
wbr {
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
 
 /**
 * Typography CSS for Junction Gate. 
 */
@font-face {
	font-family: 'Open Sans';
	src: url('../fonts/Open_Sans/OpenSans-Regular.ttf');
}
@font-face {
	font-family: 'Orbitron';
	src: url('../fonts/Orbitron/Orbitron-Regular.ttf');
}
 
 /*Background*/
 html, body {
   background-size: 100%;
   color: #dddddd;
   font-family: 'Open Sans', sans-serif;
   font-size: 14px;
   overflow-y: overlay;
 }

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Orbitron', sans-serif;
	margin-bottom: 20px;
 }
h1 {
	font-size: 20px;
	margin-bottom: 20px;
}
h2 {
	font-size: 20px;
	margin-bottom: 20px;
}

/* TODO: Delete this*/
#content {
	display: none;
}

/* Hide the preloaded assets */
#preloadedAssets {
	display: none;
}

/* Splash Screen*/
#gameMenus {
	background: #000000;
	display: block;
	height: 100vh;
	left: 0;
	position: absolute;
	top: 0;
	width: 100vw;
	z-index: 100;
}
#gameMenus.fadeOut {
	animation: gameMenuOut 1000ms ease-in-out 6000ms 1 normal forwards;
	opacity: 1;
}
#gameMenus.fadeOut.quick {
	animation: gameMenuOut 500ms ease-in-out 100ms 1 normal forwards;
	opacity: 1;
}
@keyframes gameMenuOut {
	from {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
	to {
		opacity: 0;
		transform:  scale3d(0, 0, 0)
	}
}

/* Game Title */
#gameMenuHeader {
	box-sizing: border-box; 
	display: block;
	height: 240px;
	padding-top: 170px;
	text-align: center;
	width: 100%;
}
.fadeOut #gameMenuHeader {
	animation: fadeOut 2000ms ease-in 0s 1 normal forwards;
	opacity: 1;
}
#gameTitle {
	animation: fadeIn 4000ms ease-in 0s 1 normal forwards;
	color: #ffffff;
	display: none;
	font-size: 36px;
	margin-bottom: 0;
	opacity: 0;
}
#gameTitle span {
	color: #00cccc;
}

/* Game Loader */
#gameLoader {
	background: #00cccc;
	box-sizing: border-box;
	display: block;
	min-height: 2px;
	margin: 0 auto;
	transition: all linear 200ms;
	width: 0%;
}
#gameLoader.expand {
	animation: loaderExpand 250ms ease-in 0ms 1 normal forwards;
}
#gameLoader.static {
	animation: none;
	height: 2px;
}
#gameLoader.contract {
	animation: loaderContract 250ms ease-in 250ms 1 normal forwards;
	height: 70px;
}
.fadeOut #gameLoader {
	animation: fadeOut 2000ms ease-in 3000ms 1 normal forwards;
	opacity: 1;
}
@keyframes loaderExpand {
	from {
		height: 2px;
	}
	to {
		height: 70px;
	}
}
@keyframes loaderContract {
	from {
		height: 70px;
	}
	to {
		height: 2px;
	}
}

/* Game Main Menu */
#gameMainMenuWrapper {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 100%;
}
#gameMenus {
	height: 100vh;
}
#splashLogo {
	animation: fadeIn 1000ms ease-in 0s 1 normal forwards;
	background: url('../images/splash-logo.png') no-repeat;
	display: block;
	height: 147px;
	margin: 40px auto;
	opacity: 0;
	width: 293px;
}
#mainMenu {
	display: none;
	margin: 0 auto;
	overflow: hidden;
}

/* Loader Content */
.loaderContent {
	animation: loaderIn 500ms ease-in 0s 1 normal forwards;
	display: block;
	margin: 0 auto;
	opacity: 0;
	padding: 10px 0px;
	transform: scale3d(1, 0, 1);
	width: 80%;
}
.fadeOut .loaderContent {
	animation: loaderOut 500ms ease-in 0s 1 normal forwards;
	opacity: 1;
	transform: scale3d(1, 1, 1);
}
.backButton {
    background: none;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-sizing: border-box;
    color: #ffffff;
    display: inline-block;
    font-size: 30px;
    height: 50px;
    line-height: 14px;
    text-align: center;
    width: 50px;
}
.backButton:hover,
.backButton:focus {
	border: 4px solid #000000;
	color: #000000;
	cursor: pointer;
	outline: none;
}
.loaderContent h1 {
	color: #000000;
	display: inline;
	font-size: 30px;
	line-height: 50px;
	margin-left: 20px;
}
@keyframes loaderIn {
	from {
		opacity: 0;
		transform: scale3d(1, 0, 1);
	}
	50% {
		opacity: 0;
		transform:  scale3d(1, 1, 1)
	}
	to {
		opacity: 1;
		transform:  scale3d(1, 1, 1)
	}
}
@keyframes loaderOut {
	from {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
	50% {
		opacity: 0;
		transform:  scale3d(1, 1, 1)
	}	
	to {
		opacity: 0;
		transform:  scale3d(1, 0, 1)
	}
}


/* Game Menus */
.gameMenu {
	display: block;
	width: 300px;
}
.gameMenu button {
	animation: fadeIn 1000ms ease-in 0s 1 normal forwards;
	background: #000000;
	border: #000000 1px solid;
	border-radius: 4px;
	box-sizing: border-box;
	color: #777777;
	display: block;
	font-size: 16px;
	height: 40px;
	line-height: 40px;
	margin-bottom: 8px;
	opacity: 0;
	text-align: center;
	transition: 200ms all ease-in-out;
	width: 300px;
}
.gameMenu button:focus,
.gameMenu button:hover {
	border: 1px solid #00cccc;
	color: #00cccc;
	cursor: pointer;
	outline: none;
}
.gameMenu button:nth-child(1) {
	animation-delay: 300ms;
}
.gameMenu button:nth-child(2) {
	animation-delay: 350ms;
}
.gameMenu button:nth-child(3) {
	animation-delay: 400ms;
}
.gameMenu button:nth-child(4) {
	animation-delay: 450ms;
}
.gameMenu button:nth-child(5) {
	animation-delay: 500ms;
}
.gameMenu button:nth-child(6) {
	animation-delay: 550ms;
}

/* Game Settings Screens */
#gameSettingsScreen {
	background: #000000;
	display: none;
	height: calc(100vh - 310px);
	position: absolute;
	width: 100%;
}
#gameSettingsScreen.active {
	animation: fadeIn 250ms ease-in 0s 1 normal forwards;
	display: block;
	opacity: 0;
}
#gameSettingsScreen.fadeOut {
	animation: fadeOut 500ms ease-in 250ms 1 normal forwards;
	display: block;
	opacity: 1;
}
#gameSettingsScreenWrapper {
	margin: 0 auto;
	padding-top: 40px;
	width: 80%;
}
#gameSettingsMenu {
	float: left;
	margin-right: 4%;
	width: 25%;
}
#gameSettingsContent {
	float: left;
	height: calc(100vh - 350px);
	overflow-y: auto;
	width: 70%;
}

/* Game Settings Menus */
#gameSettingsMenu button {
	animation: fadeIn 1000ms ease-in 0s 1 normal forwards;
	background: #000000;
	border: #000000 1px solid;
	border-radius: 4px;
	box-sizing: border-box;
	color: #777777;
	display: block;
	font-size: 16px;
	height: 40px;
	line-height: 40px;
	margin-bottom: 8px;
	opacity: 0;
	text-align: center;
	transition: 200ms all ease-in-out;
	width: 100%;
}
#gameSettingsMenu button.active,
#gameSettingsMenu button:focus,
#gameSettingsMenu button:hover {
	border: 1px solid #00cccc;
	color: #00cccc;
	cursor: pointer;
	outline: none;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Animations */
@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

/* Game Panels */
#gamePanelTarget {
	background: #000000;
	height: 100%;
	left: -100%;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
#gamePanelTarget.active {
	animation: fadeIn 500ms ease-in 0s 1 normal forwards;	
	left: 0;
}
#gamePanelTarget > div:first-child {
	margin-top: 40px;
}
.menuContent table {
	margin-bottom: 20px;
}
#gameSettingsScreen #gameSettingsContent .menuContent tbody tr:hover td{
	background: #00cccc;
	color: #000000;
}
.menuContent p,
.menuContent ul {
	color: #999999;
	margin-bottom: 16px;
}
.menuContent li {
	margin-bottom: 4px;
}
.menuContent a {
	color: #00cccc;
	text-decoration: none;
}
.menuContent a:hover {
	color: #006666;
	text-decoration: underline;
}

/* Start Type */
#startType h1 {
	animation: fadeIn 250ms ease-in 500ms 1 normal forwards;
	margin-bottom: 40px;
	opacity: 0;
	text-align: center;
}
#startType.fadeOut h1 {
	animation: fadeOut 250ms ease-in 0ms 1 normal forwards;
	opacity: 1;
}
#startContainer {
	box-sizing: border-box;
	margin: 0 auto;
	width: 1280px;
}
#startContainer>div {
	animation: fadeIn 250ms ease-in 500ms 1 normal forwards;	
	box-sizing: border-box;
	display: inline-block;
	margin: 0;
	margin-right: 35px;
	opacity: 0;
	text-align: center;
	width: 400px;
}
.fadeOut #startContainer>div {
	animation: fadeOut 250ms ease-in 750ms 1 normal forwards;
	opacity: 1;
}
#startContainer>div:nth-child(2) {
	animation-delay: 750ms;
}
.fadeOut #startContainer>div:nth-child(2) {
	animation-delay: 500ms;	
	opacity: 1;
}
#startContainer>div:last-child {
	animation-delay: 1000ms;
	margin-right: 0;
}
.fadeOut #startContainer>div:last-child {
	animation-delay: 250ms;	
	opacity: 1;
}
.startImage {
	background: url('../images/startup.png') no-repeat;
	border-radius: 4px;
	cursor: pointer;
	display: inline-block;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	margin-bottom: 20px;
	height: 240px;
	width: 400px;
}
#economyImage {
	background-position:-400px 0px;
}
#commonwealthImage {
	background-position:-800px 0px;
}
#startContainer>div:hover .startImage,
.activeStart .startImage {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
#startContainer button {
	background: #000000;
	border: 1px solid #000000;
	border-radius: 4px;
	color: #777777;
	cursor: pointer;
	height: 40px;
	outline: none;
	width: 400px;
}
#startContainer>div:hover button,
#startContainer .activeStart button,
#startContainer button:focus {
	border-color: #00cccc;
	color: #00cccc;
}

/* Start Rules */
#startRules
#startRules h1 {
	text-align: center;
}
#rulesContainer {
	display: block;
	margin: 0 auto;
	width: 1280px;
}
.rulesContainer {
	display: inline-block;
	width: 600px;
}
.rulesContainer:first-child {
	margin-right: 76px;
	text-align: right;
}
#startRules h1 {
	animation: fadeIn 250ms ease-in 0ms 1 normal forwards;
	opacity: 0;
	text-align: center;
}
#startRules.fadeOut h1 {
	animation: fadeOut 100ms ease-in 0ms 1 normal forwards;
	opacity: 1;
}
#beginGameButton {
	animation: fadeIn 1000ms ease-in 0ms 1 normal forwards;
	background: #000000;
	border: 1px solid #777777;
	border-radius: 4px;
	box-sizing: border-box;
	color: #777777;
	cursor: pointer;
	display: block;
	height: 40px;
	line-height: 40px;
	margin: 40px auto;
	opacity: 0;
	padding: 0 40px;
	position: relative;
	transition: all 150ms ease-in-out;
}
#beginGameButton:hover {
	border-color: #00cccc;
	color: #00cccc;
}
#beginGameButton:focus {
	border-color: #00cccc;
	color: #00cccc;
	outline: none;
}
.fadeOut #beginGameButton {
	animation: fadeOut 450ms ease-in 400ms 1 normal forwards;
	opacity: 1;
}
.rulesContainer .toggle {
	opacity: 0;
}
.rulesContainer:first-child .toggle:nth-child(1),
.rulesContainer:last-child .toggle:nth-child(4) {
	animation: fadeIn 450ms ease-in-out 250ms 1 normal forwards;
}
.rulesContainer:first-child .toggle:nth-child(2),
.rulesContainer:last-child .toggle:nth-child(3)
 {
	animation: fadeIn 450ms ease-in-out 300ms 1 normal forwards;
}
.rulesContainer:first-child .toggle:nth-child(3),
.rulesContainer:last-child .toggle:nth-child(2) {
	animation: fadeIn 450ms ease-in-out 350ms 1 normal forwards;
}
.rulesContainer:first-child .toggle:nth-child(4),
.rulesContainer:last-child .toggle:nth-child(1) {
	animation: fadeIn 450ms ease-in-out 400ms 1 normal forwards;
}
.fadeOut .rulesContainer:first-child .toggle:nth-child(1),
.fadeOut .rulesContainer:last-child .toggle:nth-child(4) {
	animation: fadeOut 450ms ease-in-out 400ms 1 normal forwards;
	opacity: 1;
}
.fadeOut .rulesContainer:first-child .toggle:nth-child(2),
.fadeOut .rulesContainer:last-child .toggle:nth-child(3)
 {
	animation: fadeOut 450ms ease-in-out 300ms 1 normal forwards;
	opacity: 1;
}
.fadeOut .rulesContainer:first-child .toggle:nth-child(3),
.fadeOut .rulesContainer:last-child .toggle:nth-child(2) {
	animation: fadeOut 450ms ease-in-out 200ms 1 normal forwards;
	opacity: 1;
}
.fadeOut .rulesContainer:first-child .toggle:nth-child(4),
.fadeOut .rulesContainer:last-child .toggle:nth-child(1) {
	animation: fadeOut 450ms ease-in-out 100ms 1 normal forwards;
	opacity: 1;
}

/* Story Panel */
#storyText {
	margin: 0 auto;
	overflow: hidden;
	width: 880px;
}
#storyText p {
	margin-bottom: 16px;
	opacity: 0;
}
#storyText h1 {
	animation: fadeIn 450ms ease-in-out 100ms 1 normal forwards;
	opacity: 0;
}
#storyText p:nth-child(2) {
	animation: fadeIn 450ms ease-in-out 200ms 1 normal forwards;
}
#storyText p:nth-child(3) {
	animation: fadeIn 450ms ease-in-out 300ms 1 normal forwards;
}
#storyText p:nth-child(4) {
	animation: fadeIn 450ms ease-in-out 400ms 1 normal forwards;
}
#storyText p:nth-child(5) {
	animation: fadeIn 450ms ease-in-out 500ms 1 normal forwards;
}
#storyText p:nth-child(6) {
	animation: fadeIn 450ms ease-in-out 600ms 1 normal forwards;
}
#storyText p:nth-child(7) {
	animation: fadeIn 450ms ease-in-out 700ms 1 normal forwards;
}
#storyButton {
	animation: fadeIn 450ms ease-in-out 800ms 1 normal forwards;
	opacity: 0;
}
.fadeOut #storyText h1 {
	animation: fadeOut 450ms ease-in-out 800ms 1 normal forwards;
	opacity: 1;
}
.fadeOut #storyText p:nth-child(2) {
	animation: fadeOut 450ms ease-in-out 700ms 1 normal forwards;
	opacity: 1;
}
.fadeOut #storyText p:nth-child(3) {
	animation: fadeOut 450ms ease-in-out 600ms 1 normal forwards;
	opacity: 1;
}
.fadeOut #storyText p:nth-child(4) {
	animation: fadeOut 450ms ease-in-out 500ms 1 normal forwards;
	opacity: 1;
}
.fadeOut #storyText p:nth-child(5) {
	animation: fadeOut 450ms ease-in-out 400ms 1 normal forwards;
	opacity: 1;
}
.fadeOut #storyText p:nth-child(6) {
	animation: fadeOut 450ms ease-in-out 300ms 1 normal forwards;
	opacity: 1;
}
.fadeOut #storyText p:nth-child(7) {
	animation: fadeOut 450ms ease-in-out 200ms 1 normal forwards;
	opacity: 1;
}
.fadeOut #storyButton {
	animation: fadeOut 450ms ease-in-out 100ms 1 normal forwards;
	opacity: 1;
}
#activateGameButton {
	animation: pulse 2000ms ease-in-out 0s infinite normal forwards;
	background: #000000;
	border: 1px solid #777777;
	border-radius: 4px;
	box-sizing: border-box;
	color: #777777;
	cursor: pointer;
	display: block;
	height: 40px;
	line-height: 40px;
	margin: 40px auto;
	padding: 0 40px;
	position: relative;
}
#activateGameButton:hover,
#activateGameButton:focus {
	animation: none;
	background: #660000;
	border-color: #660000;
	color: #ffffff;
	outline: none;
}

@keyframes pulse {
	from {
		background: #000000;
		border-color: #777777;
		color: #777777;
	}
	50% {
		background: #660000;
		border-color: #660000;
		color: #ffffff;
	}	
	to {
		background: #000000;
		border-color: #777777;
		color: #777777;
	}
}

/* Admin Login */
#startLogin {
	position: relative;
	width: 100%;
}
.loginMessages {
	left: 50%;
	margin-left: -200px;
	position: absolute;
	width: 400px;
}
.loginMessages div {
	display: none;
	text-align: center;
}
.loginMessages #adminLogin1 {
	animation: fadeInOut 4000ms ease-in-out 0s 1 normal forwards;
	display: block;
}
#characterSelection {
	box-sizing: border-box;
	display: block;
	margin: 0 auto;
	width: 1270px;
}
.characterStartPortrait {
	background: url('../images/characters/male/male-01.png');
	background-size: cover;
	border-radius: 4px;
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	height: 200px;
	margin-right: 10px;
	opacity: 0;
	transition: all 150ms ease-in-out;
	width: 200px;
}
.characterStartPortrait:last-child {
	margin: 0px;
}
.characterStartPortrait.active,
.characterStartPortrait:hover {
	border: 1px solid #00cccc;
}
.characterStartPortrait:nth-child(1),
.characterStartPortrait:nth-child(6) {
	animation: fadeIn 450ms ease-in-out 4000ms 1 normal forwards;
}
.characterStartPortrait:nth-child(2),
.characterStartPortrait:nth-child(5) {
	animation: fadeIn 450ms ease-in-out 4250ms 1 normal forwards;
}
.characterStartPortrait:nth-child(3),
.characterStartPortrait:nth-child(4) {
	animation: fadeIn 450ms ease-in-out 4500ms 1 normal forwards;
}
.fadeOut .characterStartPortrait:nth-child(1),
.fadeOut .characterStartPortrait:nth-child(6) {
	animation: fadeOut 450ms ease-in-out 0ms 1 normal forwards;
	opacity: 1;
}
.fadeOut .characterStartPortrait:nth-child(2),
.fadeOut .characterStartPortrait:nth-child(5) {
	animation: fadeOut 450ms ease-in-out 250ms 1 normal forwards;
	opacity: 1;
}
.fadeOut .characterStartPortrait:nth-child(3),
.fadeOut .characterStartPortrait:nth-child(4) {
	animation: fadeOut 450ms ease-in-out 500ms 1 normal forwards;
	opacity: 1;
}
#characterForm {
	display: block;
	margin: 40px auto 0px;
	width: 400px;
}
#characterForm h1 {
	opacity: 0;
}
#characterForm input, 
#characterForm label, 
#characterForm button {
	display: block;
	opacity: 0;
	width: 100%;
}
#characterForm label {
	margin: 16px 0 8px;
}

#characterForm h1:nth-child(1) {
	animation: fadeIn 450ms ease-in-out 4750ms 1 normal forwards;
}
#characterForm label:nth-child(2) {
	animation: fadeIn 450ms ease-in-out 5000ms 1 normal forwards;
}
#characterForm input:nth-child(3) {
	animation: fadeIn 450ms ease-in-out 5250ms 1 normal forwards;
}
#characterForm label:nth-child(4) {
	animation: fadeIn 450ms ease-in-out 5500ms 1 normal forwards;
}
#characterForm input:nth-child(5) {
	animation: fadeIn 450ms ease-in-out 5750ms 1 normal forwards;
}
#characterForm button:nth-child(6) {
	animation: fadeIn 450ms ease-in-out 6000ms 1 normal forwards;
}

.fadeOut #characterForm h1:nth-child(1) {
	animation: fadeOut 450ms ease-in-out 500ms 1 normal forwards;
	opacity: 1;
}
.fadeOut #characterForm label:nth-child(2) {
	animation: fadeOut 450ms ease-in-out 400ms 1 normal forwards;
	opacity: 1;
}
.fadeOut #characterForm input:nth-child(3) {
	animation: fadeOut 450ms ease-in-out 300ms 1 normal forwards;
	opacity: 1;
}
.fadeOut #characterForm label:nth-child(4) {
	animation: fadeOut 450ms ease-in-out 200ms 1 normal forwards;
	opacity: 1;
}
.fadeOut #characterForm input:nth-child(5) {
	animation: fadeOut 450ms ease-in-out 100ms 1 normal forwards;
	opacity: 1;
}
.fadeOut #characterForm button:nth-child(6) {
	animation: fadeOut 450ms ease-in-out 0ms 1 normal forwards;
	opacity: 1;
}

.fadeOut #adminLoginMessages #adminLogin2 {
	animation: fadeInOut 2000ms ease-in-out 500ms 1 normal forwards;
	display: block;
	opacity: 0;
}
.fadeOut.survival #adminLoginMessages #adminLogin3 {
	animation: fadeInOut 2000ms ease-in-out 4000ms 1 normal forwards;
	display: block;
	opacity: 0;
}
.fadeOut.survival #adminLoginMessages #adminLogin4 {
	animation: fadeInOut 2000ms ease-in-out 12500ms 1 normal forwards;
	display: block;
	opacity: 0;
}
.fadeOut.survival #adminLoginMessages #adminLogin5 {
	animation: fadeInOut 2000ms ease-in-out 15000ms 1 normal forwards;
	display: block;
	opacity: 0;
}
.fadeOut.survival #adminLoginMessages #adminLogin6 {
	animation: fadeInOut 5000ms ease-in-out 16500ms 1 normal forwards;
	display: block;
	opacity: 0;
}
.fadeOut.economy #economyLoginMessages #economyLogin3 {
	animation: fadeInOut 3000ms ease-in-out 4000ms 1 normal forwards;
	display: block;
	opacity: 0;
}
.fadeOut.economy #economyLoginMessages #economyLogin4 {
	animation: fadeInOut 3000ms ease-in-out 7000ms 1 normal forwards;
	display: block;
	opacity: 0;
}
.fadeOut.economy #economyLoginMessages #economyLogin5 {
	animation: fadeInOut 4000ms ease-in-out 9000ms 1 normal forwards;
	display: block;
	opacity: 0;
}
.fadeOut.economy #economyLoginMessages #economyLogin6 {
	animation: fadeInOut 5000ms ease-in-out 14000ms 1 normal forwards;
	display: block;
	opacity: 0;
}
.fadeOut.commonwealth #commonwealthLoginMessages #commonwealthLogin3 {
	animation: fadeInOut 2000ms ease-in-out 4000ms 1 normal forwards;
	display: block;
	opacity: 0;
}
.fadeOut.commonwealth #commonwealthLoginMessages #commonwealthLogin4 {
	animation: fadeInOut 2000ms ease-in-out 6000ms 1 normal forwards;
	display: block;
	opacity: 0;
}
.fadeOut.commonwealth #commonwealthLoginMessages #commonwealthLogin5 {
	animation: fadeInOut 2000ms ease-in-out 9000ms 1 normal forwards;
	display: block;
	opacity: 0;
}
.fadeOut.commonwealth #commonwealthLoginMessages #commonwealthLogin6 {
	animation: fadeInOut 5000ms ease-in-out 16000ms 1 normal forwards;
	display: block;
	opacity: 0;
}
@keyframes fadeInOut {
	from {
		display: block;
		opacity: 0;
	}
	50% {
		display: block;
		opacity: 1;
	}
	99% {
		display: block;
		opacity: 0;
	}	
	to {
		display: none;
		opacity: 0;
	}
}

/* Social Links */
#socialLinks a {
	background: url("../images/social.png") no-repeat;
	border: 1px solid #111111;
	border-radius: 4px;
	display: inline-block;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	height: 100px;
	margin: 0 20px 20px 0;
	opacity: 0.5;
	transition: all 100ms ease-in-out;
	width: 200px;
}
#socialLinks a:hover {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
	opacity: 1;
}
#socialLinks #discord {
	background-position: 0px 0px;
}
#socialLinks #reddit {
	background-position: -200px 0px;
}
#socialLinks #blog {
	background-position: -400px 0px;
}
#socialLinks #twitter {
	background-position: -200px -100px;
}
#socialLinks #facebook {
	background-position: 0px -100px;
}
#socialLinks #website {
	background-position: -400px -100px;
}
#socialLinks #issues {
	background-position: 0px -200px;
}
#socialLinks #roadmap {
	background-position: -200px -200px;
}

/* Help */
#tutorialContents {
	float: left;
	margin-right: 4%;
	width: 60%;
}
#tutorialMenu {
	float: left;
	width: 35%;
}
.menuContent ul ul {
	margin: 4px 0px 0px 20px;
}