html {
	overflow-x: auto;
	overflow-y: auto;
}

html, body {
	margin: 0;
	padding: 0;
	border: none;
}

body {
	font-family: 'BenchNine', sans-serif;
	font-size: 1em;
	background-color: #FFF;
	line-height: 1.3em;
	background: #f4f4f4 url("/images/content-bg.png");
}

#topbar {
	height: 4px;
	background-color: #dd4814;
}

#container {
	height: 100px;
	width: 300px;
	position: absolute;
	margin: -10px 0 0 -150px;
	left: 50%;
	top: 50%;
	text-align: center;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#content-container {
	margin-top: 50px;
	padding: 10px;
	font-family: sans-serif;
	letter-spacing: 0em;
	font-weight: normal;
}

h1 {
	font-weight: 700;
	color: #dd4814;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
}

.title {
	font-size: 1.5em;
	font-weight: 700;
	clear: both;
	color: #dd4814;
	letter-spacing: 0.1em;
}

.title404 {
	font-size: 2.5em;
	font-weight: 700;
	clear: both;
	color: #dd4814;
	letter-spacing: 0.1em;
}

#container a {
	text-decoration: none;
	color: #F93;
	letter-spacing: .4em;
	font-weight: 700;
}

#container a:hover {
	border-bottom: 1px solid;
}

.bracket {
	font-size: 3.5em;
	font-weight: 200;
	color: #F93;
	top: 12px;
	position: relative;
	display: block;
}

.left {
	text-align: left;
	float: left;
}

.right {
	text-align: right;
	float: right;
}

/* 
		ANIMATION STUFF
*/
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

#container {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
