/*
Copyright (C) 2015 Ben Ritter
All code licensed under CC-BY-SA.
http://creativecommons.org/licenses/by-sa/2.5/
*/
/*
	# is ID
	. is class
	else is tag
*/
body{
	width: 1024px;
	height: 800px;
	margin-left: auto;
	margin-right: auto;
	
	background-color: #000600;
	color: green;
	font-family: Courier New;
	padding-top: 10px;
}
#wrapper{
	clear:both;
	display: none;
}
#title{
	margin-left: auto;
	margin-right: auto;
	overflow-y:hidden;
}
#content{
	display: none;
	width: 494px;
	float: left;
	height: 10px;
	padding: 10px;
	overflow-y: auto;
	overflow-x: hidden;
	position: relative;
}
#leftcontent{
	float: left;
	width: 250px;
	display: none;
}
#rightcontent{
	float: left;
	width: 250px;
	height: 10px;
	display: none;
	overflow-y: hidden;
	overflow-x: hidden;
}
#actions{
	position: relative;
	height: 40px;
}

#actionText{
	margin-right: -8px;
}

#sidemenu{
	position: relative;
	display: none;
	height: 20px;
	padding-top: 5px;
}

#footer{
	position: relative;
	display: none;
	text-align: center;
	vertical-align:middle;
	clear: both;
}

.box{
	border-width: 1px;
	border-style: solid;
	border-color: green;
	padding: 1px;
}

.button{
	border-width:2px;
    border-style:outset;
	height: 24px;
	width: 100px;
	text-align: center;
	cursor:pointer;
	display: inline-block;
}
.buttonDown{
	border-width:2px;
    border-style:inset;
	height: 24px;
	width: 100px;
	text-align: center;
	cursor:pointer;
	display: inline-block;
}

.menuitem{
	margin-left: 20px;
	cursor: pointer;
}
.menuitem:hover .menuitemdetail{
	display: inline-block;
}
.submenuitem{
	margin-left: 40px;
	cursor: pointer;
}
.submenuitem:hover .menuitemdetail{
	display: inline-block;
}
.menuitemdetail{
	display: none;
}

.cursor{
	background-color: green;
	-webkit-animation: cursorBlink 0.5s steps(2, start) infinite; /* Chrome, Safari, Opera */
    animation: cursorBlink 0.5s steps(2, start) infinite;
	animation-direction: alternate;
}

#newsold{
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding: 12px;
	font-size: 25px;
}
#newsnew{
	position: absolute;
	bottom: 0px;
	right: 0px;
	padding: 12px;
	font-size: 25px;
}

.link{
	cursor: pointer;
	text-decoration: underline;
}
.disabled{
	color: #304030;
}

#bit{
	cursor: pointer;
	background-image: url(img/bits.png);
	width: 32px;
	height: 32px;
	position: absolute;
}

.particle{
	height: 16px;
	width: 16px;
	position: absolute;
}

.lifeCell{
	border: 0px solid;
	padding: 0px;
}

/*
ANIMATIONS
*/

/* Chrome, Safari, Opera */
@-webkit-keyframes cursorBlink{
	to{visibility: hidden; }
}
/* Standard syntax */
@keyframes cursorBlink {
	to{visibility: hidden; }
}