#docker {
	font: normal 15px 'Anonymous Pro'; 
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	width: 120px;
	min-height: 19px;
	background-color: #222;
	border: 4px ridge  #746f75;
}

.dock-names {
	background-color: #424242;
	width: 100%;
	min-height: 19px;
	margin: 3px auto 3px auto;
}

.dock-names:hover {
	background-color: #a2a2a2;
}


.window {
	display: inline-block;
	position: relative;
	background-color: #424242;
	width: 50%;
	height: 60%;
	z-index: 10;
	border: 5px ridge #070707;
}

.win-bar{
	text-align:left;
	width: calc(100% - 2px);
	height: 26px;
	background-color: #746f75;
	color: black;
}

.win-close, 
.win-full,
.win-min{
	background-position:center;
	background-size: cover;
	width:18px;
	height:18px;
	float:left;
	margin: 4px 2px 4px 2px;
	cursor: help;
}

.win-close { background-image: url("../images/oc-img/closeicon.png"); }
.win-full { background-image: url("../images/oc-img/fullviewicon.png"); }
.win-min { background-image: url("../images/oc-img/minimizeicon.png"); }

.win-text{
	background-color: #7a6573; color: white;
	width: calc( 100% - 72px );
	margin: auto;
	height: 22px;
	box-sizing: border-box;
	border: 3px ridge #746f75;
	margin: 2px;
	float: right;
	
	font: normal 15px 'Kosugi'; 
	text-align: left;
	padding-left: 4px;
	vertical-align: middle;
	line-height: 18px;  
	text-shadow: 1px 1px black;
}

.win-content {
	height: calc(100% - 29px);
	width: calc(100% - 1px);
	background-color: #111111;
}

.win-frame {
	background-color: #111111;
	overflow: hidden;
	overflow-x: hidden;
	overflow-Y: hidden;
	height: 100%;
	width: 100%;
	border: none;
}

.resizer {
	width: 10px;
	height: 10px;
	position: absolute;
	right: -5px;
	bottom: -5px;
	cursor: nw-resize;
}

#story {
	width: 100%;
	text-align: center;
	position: fixed;
	bottom: 2%;
	z-index: 1;
	text-shadow: 1px 1px black;
	text-decoration: underline;
}

#story a{
	color: white;
}

#backneko {
	position:absolute;
	right:0;
	bottom:0;
	opacity: 0.5;
	z-index:-1;
}

:target {
	display:inline;
}

#scanlines {
  	background-image: url("../images/scanlines.png");
	background-repeat: repeat;
	position:absolute; top: 0px; left: 0px;
	width: 100%; height: 100%; z-index:100;
	animation: scanAnim 0.7s infinite;
  	animation-timing-function: linear;
	pointer-events: none;
}

@keyframes scanAnim {
	0% {
		background-position: 0px 0px;
	}
	100% {
		background-position: 0px 8px;
	}
}