* {
	margin: 0;
	outline: 0;
}

html {
	font-family: Helvetica, Arial, Verdana, sans-serif;
	color: rgb(200,200,200);
	background: none center center fixed no-repeat #000;

	/*
	Change background below.
	The path to the image is relative to the css, so keep that in mind.
	If you want a picture that is in a file form, use the url() sytanx,
	where the path to the picture is inside the brackets.
	*/

	/*background-image: url(../images/background3.png);*/

	/*
	Change background above
	*/

	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	text-align: center;
	height: 100%;
}

body {
	min-height: 100%;
	width: 100%;
}

#topnav
{
	width: 100%;
}

#chat
{
	font-size: 9px;
}

#container {
	width: 1200px;
	height: 100%;
	margin: 0 auto;
	box-shadow: 0 0 50px 50px rgba(0,0,0,.5);
	background: rgba(0,0,0,.5);
}

#banner {
	margin: 0 auto;
	position: static;
	display: table;
	margin-bottom: 10px;
	padding-top: 20px;
}

#banner > img {
	width: 800px;
	height: 130px;
}

#buttons {
	margin-bottom: 15px;
}

section + div #swap img, .pressed img {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

#main {
	display: none;
	-webkit-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-o-transition-duration: 1s;
	transition-duration: 1s;
	-webkit-transition-timing-function: cubic-bezier(1,0,0,1);
	-moz-transition-timing-function: cubic-bezier(1,0,0,1);
	-o-transition-timing-function: cubic-bezier(1,0,0,1);
	transition-timing-function: cubic-bezier(1,0,0,1);
}

.streamButton {
	text-decoration: none;
	width: 140px;
	height: 40px;
	position: relative;
	text-align: center;
}

.streamButtonLabel {
	position: absolute;
	top: 50%;
	left: 50%;
	font-weight: bold;
	font-size: 16px;
	color: #D6D6D6;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

div.streamButtonContainer > div.statusContainer {
	font-weight: bold;
	font-size: 14px;
	opacity: 0;
}

div.streamButtonContainer.main > div.statusContainer {
	opacity: 1;
}

div.streamButtonContainer#mixer > a > div.streamButtonLabel {
	color: orangered;
}

div.streamButtonContainer#shamecast > a > div.streamButtonLabel {
	color: aqua;
}

div.streamButtonContainer#twitch > a > div.streamButtonLabel {
	color: blueviolet;
}

div.streamButtonContainer#angelthump > a > div.streamButtonLabel {
	color: yellow;
}

div.streamButtonContainer#okru > a > div.streamButtonLabel {
	color: green;
}

.squareButton {
	text-decoration: none;
	width: 40px;
	height: 40px;
}

.statusContainer {
	margin-top: 4px;
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mainLabel {
	padding: 4px;
	background-color: rgb(20,20,20);
	border-radius: 4px;
}

.selectedLabel {
	padding: 4px;
	background-color: rgb(20,20,20);
	border-radius: 4px;
}

.left {
	margin-top: 10px;
	display: table;
}

.left > div {
	display: table-cell;
	vertical-align: middle;
}

section + .left > div {
	vertical-align: bottom;
}

table {
	border: none;
	width: 100%;
	margin: 0 auto;
}

section {
	padding-top: 20px;
	padding-bottom: 20px;
}
