body {
	margin: 0;
	font-family: 'Oxygen', sans-serif;
	background-color: #222;
	color: #777;
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0px, rgba(0, 0, 0, 0) 300px);
	background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 1) 0px, rgba(0, 0, 0, 0) 300px);
	background-repeat: no-repeat;
}

a:link, a:visited
{
	color:#7feeff;
	text-decoration: none;
	-webkit-transition: color 0.15s linear;
	-moz-transition: color 0.15s linear;
	transition: color 0.15s linear;
}
a:hover
{

	color:#fff;
	text-decoration: underline;
}

::selection {
	background-color: rgba(0,0,0,0.5);
	color: #fff;
}

#main {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}
#footer {
	text-align: center;
	margin: 40px;
}
#headBitbof {
	text-align: center;
	color: #fff;
	font-size: 25px;
	margin-top: 10px;
	text-decoration: none;
	display: block;
}
#headBitbof:hover {
	text-decoration: underline;
}
#headTitle {
	text-align: center;
	color: #aaa;
	font-size: 30px;
}
#appContainer {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	background: rgba(128,128,128,0.3);
	height: 502px;
}
#appTools {
	height: 462px;
	width: 258px;
	float:right;
	padding: 20px;
}
#appToolsTop {
	height: 422px;
	text-align: justify;
}
canvas {
	border: 1px solid rgba(255,255,255,0.2);
	cursor: crosshair;
}
@-webkit-keyframes fadein {
  from {
	height:0;
	width: 99px;
	margin-bottom: 99px;
	opacity: 0;
  }
  
  to {
	height: 99px;
	width: 99px;
	margin-bottom: 0px;
	opacity: 0.9;
  }
}
@-moz-keyframes fadein {
  from {
	height:0;
	width: 99px;
	margin-bottom: 99px;
	opacity: 0;
  }
  
  to {
	height: 99px;
	width: 99px;
	margin-bottom: 0px;
	opacity: 0.9;
  }
}
#snapshotContainer {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	border-bottom: 1px solid rgba(255,255,255, 0.2);
	padding-bottom: 20px;
	overflow: hidden;
}
#snapshotContainer img {
	-moz-animation-duration: 0.2s;
    -webkit-animation-duration: 0.2s;
    -moz-animation-name: fadein;
    -webkit-animation-name: fadein;
	width: 99px;
	height: 99px;
	margin-right: 1px;
	margin-bottom: 1px;
	display: inline-block;
	opacity: 0.9;
	float:left;
	-webkit-transition: opacity 0.2s linear;
	-moz-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}
#snapshotContainer img:hover {
	opacity: 1;
}
.actionButton {
	background-color: #999;
	padding: 10px;
	text-align: center;
	font-weight: bold;
	color: #444;
	cursor: pointer;
	-webkit-transition: background-color 0.1s linear;
	-moz-transition: background-color 0.1s linear;
	transition: background-color 0.1s linear;
}
.actionButton:hover  {
	background-color: #ccc;
}
.spacer {
	height: 20px;
}

.experiment-links {
	margin-bottom: 10px;
}

.experiment-links > * {
	border-right: 1px solid #999;
	padding-right: 8px;
	margin-right: 5px;
	padding-left: 0;
	margin-left: 0;
	display: inline-block;
}
.experiment-links > *:last-child {
	border-right: none;
}

.flex-center {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.footer-glyph-bitbof {
	width: 1.2em;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(/bb-assets/glyph-bitbof.svg);
}