/****************************************************************************
 (c) 2021  by ing. kurt weiss, a-6425 haiming, http://www.kwnet.at
 jeglicher quelltext bleibt eigentum von ing. kurt weiss, keine unerlaubte verwendung/aenderung/kopie.
 all rights reserved by ing. kurt weiss, a-6425 haiming. no unallowed using/change/copy
 auch bei aenderungen muss dieses kommentar im quelltext verbleiben.
 
 History:
 28.06.2021 tw: creation file
 ****************************************************************************/
:root{
	/*colors*/
	--kw-main-color:#e8e7e7;
	--kw-header-color: #e8e7e7;
	--kw-secondary-color:#013f66;
	
	/*dimensions*/
	--kw-header-height:0px;
	--kw-outer-padding:100px;
	--kw-major-width:auto;
	--kw-minor-width:384px;
}

@font-face {
	font-family: "Ubuntu";
	src: url(/ubuntu/Ubuntu-Regular.ttf)
}

@font-face {
	font-family: "Ubuntu-Bold";
	src: url(/ubuntu/Ubuntu-Bold.ttf)
}

@font-face {
	font-family: "Ubuntu-Light";
	src: url(/ubuntu/Ubuntu-Light.ttf)
}

@font-face {
	font-family: "Ubuntu-Medium";
	src: url(/ubuntu/Ubuntu-Medium.ttf)
}

/***************************************************************************
Tags
***************************************************************************/

*{
	box-sizing: border-box;
	font-family: "Ubuntu";
}

BODY{
	margin: 0px;
	padding: 0px;
}

HEADER{
	position: fixed;
	top:0px;
	left:0px;
	height: var(--kw-header-height);
	width: 100%;
	background-color: var(--kw-header-color);
	z-index:100;
	padding-top: 35px;
}

ASIDE{
	width: var(--kw-minor-width);
	position: absolute;
	top: var(--kw-header-height);
	bottom:0px;
	left: 0px;
	padding:30px 40px 50px 40px;
	background-color: var(--kw-secondary-color);
	z-index: 99;
	text-align: center;
}

h1{
	font-family: "Ubuntu";
	font-size: 25pt;
	margin:0px;
}

p{
	color: white;
	font-family: Ubuntu;
}

a{
	color:white;
	font-family: Ubuntu;
	white-space: nowrap;
}

/***************************************************************************
specific IDs and classes
***************************************************************************/


#mainframe{
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: var(--kw-main-color);
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
}

nav#topnav{
	position: relative;
	height: 50px;
	width: auto;
	display: inline-block;
	margin-left: 200px;
}

nav#topnav a{
	font-family:"Ubuntu-Bold";
	padding: 5px 15px 5px 15px;
	display: inline-block;
	text-decoration:none;
	color:#eeeeee;
}

div.logo_container{
	position: absolute;
	top: 0px;
	left: 0px;
	text-align: center;
	width: 100%;
	background-color: white;
	padding: 30px 40px 50px 40px;
	text-align: center;
}

img.logo{
	position: relative;
}

div.aside_info{
	position: relative;
	height: 200px;
	text-align: center;
	line-height: 2;
	width: 80%;
	display: inline-block;
}

p.aside_info_text{
	position: relative;
	text-align: justify;
	text-align-last: justify;
	font-size: 16pt;
	margin:0px;
}

p.impress_info_text{
	position: relative;
	text-align: justify;
	text-align-last: justify;
	font-size: 16pt;
	color: black !important;
}

div.aside_info_text{
	position: relative;
    color: white;
    font-family: Ubuntu;
	font-size: 16pt;
	margin:0px;
}

div.impress_info_text{
	position: relative;
    color: white;
    font-family: Ubuntu;
	font-size: 16pt;
	color: black !important;
}

div.footnote{
	position:absolute;
	bottom: 20px;
	left: 50%;
	height: 60px;
	transform: translateX(-50%);
	text-align: center;
}

p.impress{
	position: relative;
	font-family: Ubuntu;
	font-size: 9pt;
	text-align:justify;
	text-align-last: justify;
	width: 100%;
	margin: 0px;
}

p.col_4{
	column-count: 4;
	text-align: justify;
}

p.col_w400{
	column-width: 400px;
	text-align: justify;
}

/***************************************************************************
standard IDs and classes
***************************************************************************/

.inline_block{
	display: inline-block;	
}

.center{
	text-align: center;
	vertical-align: middle;
}

.pad_5{
	padding:5px;
}

.error{
	background-color:#dd2222;
	border:solid 1pt #940e15;
}

.infobox{
	background-color:#ffffff;
	border:solid 1pt #333333;
	padding:5px;
}

.overlay {
	position:fixed;
	top:0px;
	left:0px;
	background-color:rgba(0,0,0,0.5);
	width:100%;
	height:100%;
	z-index:999;
	padding:auto;
	margin:0px;
	vertical-align:center;
	text-align:center;
}
.overlay_box {
	position:relative!important;
	margin:auto!important;
	top:50%!important;
	transform:translateY(-50%)!important;
	display:inline-block!important;
}

