/*
GENERAL
*/

@import url("font/dotrice.css");

* {
	border: none;
	margin: 0;
	padding: 0;
	color: white;
	font-family: 'DotriceRegular', monospace;
	font-weight: normal;
	font-style: normal;
	font-size: 12px;
}

body, html {
	height: 100%;
	background: black;
}

body {
	background-image: url(img/bg.png);
	background-position: 1676px 50%;
	word-wrap: normal;
	-moz-hyphens: none;
	-webkit-hyphens: none;
	-ms-hyphens: none;
	scrollbar-face-color: white;
	scrollbar-shadow-color: black;
	scrollbar-highlight-color: black;
	scrollbar-3dlight-color: black;
	scrollbar-darkshadow-color: black;
	scrollbar-track-color: black;
	scrollbar-arrow-color: black;
}

::-webkit-scrollbar {
	background: black;
	width: 14px;
}

::-webkit-scrollbar-thumb {
	background: white;
}

/*
POSITIONING
*/
div#centered {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 800px;
	height: 600px;
	margin-left: -400px;
	margin-top: -300px;
	box-sizing: border-box;
	text-align: center;
	vertical-align: middle;
}

div#outline {
	border: 1px solid white;
	border-radius: 25px;
	background: black;
	background: rgba(0,0,0,.75);
	/*
	background: black;
	background-image: url(js/nicescroll2.png);
	opacity: 0.75;
	-moz-opacity: 0.75;
	*/
	width: 790px;
	height: 590px;
}

div#inline {
	margin: 50px;
	width: 690px;
	height: 490px;
	display: table;
}

/*
NAVIGATION
*/
.navigation {
    position: relative;
    height: 490px;
    width: 210px;
    padding-left: 10px;
	white-space: nowrap;
    overflow: hidden;
	display: table-cell;
	text-align: left;
	vertical-align: top;
}

/*
CONTENT
*/
.headline {
	float: left;
	font-size: 18px;
	height: 100px;
	width: 480px;
	padding: 1.3em 0 0 0.6em;
	display: table-cell;
	text-align: left;
	vertical-align: top;
}
.content {
    position: absolute;
    top: 150px;
	height: 390px;
    width: 480px;
    white-space: nowrap;
    overflow: hidden;
	display: table-cell;
	text-align: left;
	vertical-align: top;
}

.scrollable {
	background: none;
}

.content>div {
    position: relative;
	display: inline-block;
    height: 100%;
	width: 100%;
    white-space: normal;
    vertical-align: top;
    overflow-x: hidden;
	overflow-y: scroll;
	padding-right: 5px;
}

.content>div>div {
    padding: 0.5em 3.5em 0 1em;
    padding-bottom: 1px; 
    margin-bottom: -1px;
}

/*
TEXT FORMATING
*/
h1,h2,a,p {
	opacity: none;
}
h1 {
	font-size: 32px;
	margin-top: 10px;
	margin-bottom: 14px;
}

h2,
h2 a {
	font-size: 18px;
	margin-bottom: 12px;
	text-decoration: none;
}

h3,
h3 a {
	font-size: 14px;
	margin-bottom: 24px;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

p {
	margin: 0;
	/* text-indent: 0.75em; */
}

p+p {
	margin-top: 1em;
}

hr {
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.75), rgba(255,255,255,0));
	margin: 35px 70px;
}
.headline hr {
	margin: 25px 0;
}

table {
	margin: 0 10px;
	border-collapse: collapse;
}

td {
	padding: 7px;
}

small {
	font-size: 9px;
}

small.nav {
	font-family: sans-serif;
	position: absolute;
    bottom: 5px;
    left: 10px;
}

img {
	border: 1px solid #f0f0f0;
}

img.left {
	text-align: left;
	float: left;
	margin: 0 20px 10px 5px;
}

img.right {
	text-align: right;
	float: right;
	margin: 0 5px 10px 20px;
}