@font-face {
	font-family: "Data Latin";
	src: url('../Fonts/data-latin.ttf');
}

@font-face {
	font-family: 'Data Unifon';
	src: url('../Fonts/data-unifon.ttf');
}

@font-face {
	font-family: 'Plasmati';
	src: url('../Fonts/plasmati.ttf');
}

body {
	font-family: 'Data Latin';
	background-color: #b2b28e;
	background-image: url('../images/grunge_texture_overlay.png');
	background-size: cover;
	background-repeat: no-repeat;
}

::selection {
	background: #91A892;
}

::-moz-selection {
	background: #91A892;
}

.wrapper {
	width: 840px;
	margin: 2em auto;
}

.content {
	cursor: url('../images/mouse-mixborder.ico'), default;

	width: 840px;
	height: 640px;
	padding: 29px;
	border: 1px solid #131313;
	background: #131313;
	position: relative;
	color: greenyellow;
	-webkit-border-radius: 11px;
	-moz-border-radius: 11px;
	border-radius: 11px;
}

.content:after {
    content: "";
    display: block;
    background-image: url('../images/scanline_arrows.png');
    background-position-y: -16px;
    background-position-x: 1px;
    background-size: 836px 653px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-opacity: 0.4;
    -moz-opacity: 0.4;
    opacity: 0.4;
    pointer-events: none;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background-image: url('../images/scanline_layer.png');
	-webkit-opacity: 0.4;
	-moz-opacity: 0.4;
	opacity: 0.4;
	z-index:1000;
}

#altwindow {
    position: absolute;
    color: #131313;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url('../images/rebootScreen.png');
    /*opacity: 0;*/
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    border-radius: 11px;
    background-size: 863px 675px;
    background-repeat: no-repeat;
    background-position-x: -7px;
    background-position-y: -29px;
}
#windowtextbuff {
	position: absolute;
	word-wrap: break-word;
	margin-left: 20%;
	margin-right: 20%;
	margin-top: 20%;
	width: 60%;
	height: 50%;
	border: 1px dashed;
}

b {

}

.banner {
	text-align: center;
}

p {
	margin: 1em 0;
}

section {
	margin: 15px;
	width: 360px;
	height: 250px;
	padding: 10px;
	border: 1px dashed;
	float: left;
	overflow: auto;
}

section.control-panel {
	background: greenyellow;
	color: #131313;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul li {
	margin: 0 0 0 1em;
	padding: 0;
}

/*ul li.dead {
	color: red;
}*/

ul li.dead span[id*="report"] {
	text-decoration: line-through;
}

span.room_action {
	cursor: crosshair;
	margin-right: 1em;
}

span.room_action:last-of-type {
	margin-right: 0;
}

.text-prompt-button, #result {
	cursor: crosshair;
}

span.room_action.selected,
span.room_action:hover,
.control-panel-header,
.text-prompt-button,
#result {
	color: greenyellow;
	background: #131313;
}

.control-panel-header {
	display: inline-block;
	padding: 0 0.25em;
	margin: -0.5em 0 0.5em 0;
}

.View.room {
	margin: 1em 0;
	height: 130px;
}

.View.room .sign {
	margin-bottom: 0.5em;
}

.centered {
	text-align: center;
}

.hidden {
	display: none;
}

.invisible {
	visibility: none;
}

.text-prompt-button {
	text-align: center;
}

#text-prompt {
    margin-top: 1em;
    text-align: center;
}

#target-string {
    letter-spacing: .3em;
    font-family: monospace;
    font-size: 1.5em;
    width: 13.9em;
    margin: 0.5em auto;
    padding: 2px;
    font-weight: bold;
    word-wrap: break-word;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select:none;
    user-select:none;
    -o-user-select:none;
}

#text-area {
  font-family: monospace;
  margin: 0.5em auto;
  display: block;
  width: 13.9em;
  font-size: 1.5em;
  letter-spacing: 0.3em;
  height: 3em;
  padding: 2px;
  border: 1px solid #131313;
  line-height: 1.3em;
  background-color: #131313;
  color: greenyellow;
  font-weight: bold;
  word-wrap: break-word;
}

#time, #result {
	margin-top: 1em;
}

.blink-me {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: step-start;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: step-start;
    -moz-animation-iteration-count: infinite;

    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: step-start;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}


/*.scroller {
	overflow-x: hidden;
	margin-right: -28px;
	overflow-y: auto;
}*/
::-webkit-scrollbar { display: none; }
