/* (c) 2016 by Fred Stojentin (Coding), Carl Hatebur (Content) */

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, caption, canvas, center, cite, code,
dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, form, footer, 
header, hgroup, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,
object, ol, output, p, pre, q, ruby, s, samp, section, main, small, span, strike, strong, sub, summary, sup, 
tt, table, tbody, textarea, tfoot, thead, time, tr, th, td, u, ul, var, video { 
	font-family: inherit; 
	font-weight: inherit; 
	font-style: inherit; 
	vertical-align: baseline; 
	white-space: normal;
	text-align: left; 
	margin: 0; 
	padding: 0; 
	border: 0; 
	outline: 0;
	background: transparent; 
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main { 
	display: block; 
}
								  
ol, ul { 
	list-style: none; 
}

blockquote, q {
	quotes: none; 
}

table { 
	border-collapse: collapse; 
	border-spacing: 0; 
}

body {
    width: 100%;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    width: 100%;
    display: block;
}

/* media rules */

@media only screen and (min-width: 1024px) {
    body {
		width: 1024px;
		max-width: 1024px;
		margin: auto;
		text-align: center;
        font-size: 130%;
    }
	.top,.bottom {
		width: 1024px;
	}
}

@media only screen and (min-width: 900px) and (max-width: 1023px) {
    body {
        font-size: 120%;
    }
	.top,.bottom {
		width: 100%;
	}
}

@media only screen and (min-width: 800px) and (max-width: 899px) {
    body {
        font-size: 110%;
    }
	.top,.bottom {
		width: 100%;
	}
}

@media only screen and (min-width: 720px) and (max-width: 799px) {
    body {
        font-size: 100%;
    }
	.top,.bottom {
		width: 100%;
	}
}

@media only screen and (min-width: 640px) and (max-width: 719px) {
    body {
        font-size: 95%;
    }
	.top,.bottom {
		width: 100%;
	}
}

@media only screen and (min-width: 480px) and (max-width: 639px) {
    body {
        font-size: 90%;
    }
	.top,.bottom {
		width: 100%;
	}
}

@media only screen and (max-width: 479px) {
    body {
        font-size: 85%;
    }
	.top,.bottom {
		width: 100%;
	}
}


/* font awesome icons */

i.fa {
    font-size: 1.2em;
}

/* defaults */

body {
    line-height: 1.2em;
    font-family: sans-serif;
    background-color: #ffffff;
    color: black;
}

a:link {
    color: black;
}

a:visited {
    color: black;
}

a:hover {
    color: black;
}

h1 {
    margin: 1.4em 0 0.4em 0;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 1.4em;
}

h2 {
    margin: 0.9em 0 0.3em 0;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.2em;
}

h3 {
    margin: 0.6em 0 0.2em 0;
    font-size: 1em;
    font-weight: bold;
    line-height: 1em;
}

.text {
    margin: 0.2em 0 0.5em 0;
}

p {
    margin-bottom: 0.5em;
}

img {
    width: 100%;
	max-width: 100%;
}

/* global page setup */

.wrapper {
    position: relative;
}

@media only screen {
    .top {
        position: fixed;
        z-index: 1;
        top: 0;
    }
}

.top {
    height: 2.5em;
    border-bottom: 0.1em solid black;
}

.content {
    margin: 4em 0 4em 0;
}

@media only screen {
    .bottom {
        position: fixed;
        z-index: 1;
        bottom: 0;
    }
}

.bottom {
    height: 2.7em;
    border-top: 0.1em solid black;
}

/* highlighted navigation */

.navi {
    background-color: silver;
}

/* floating... */

.clear {
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

.logo {
    width: 100%;
    margin: 0.5em 0 0 0;
	font-size: 1.3em;
	text-align: center;
}

.copyright {
	float: left;
    width: 67.25%;
    margin: 0.7em 0 0 2.75%;
	font-size: 1em;
	text-align: left;
}

/* default icons: 10% width with image and centered underline text */

.default-icon {
    width: 10%;
    max-width: 10%;
    overflow: hidden;
    float: left;
    margin: 0.2em 0 0.2em 0;
    padding: 0.1em 0 0 0;
    text-align: center;
}

.default-icon i {
    font-size: 1.2em;
}

.default-icon div {
    font-size: 0.6em; 
    text-align: center;
}

/* lists */

li {
    clear: both;
    margin: 0.2em 0 0.4em 0;
    line-height: 1.2em;
    border-bottom: 0.1em solid #444444;
    cursor: pointer;
    color: #444444;
}

li:hover {
    color: black;
    border-bottom: 0.1em solid black;
}

a.link:hover {
    color: black !important;
}

a.link:link {
    color: #444444;
}

a.link:visited {
    color: #444444;
}

li i.fa {
    font-size: 1.1em;
}

ul {
	margin-bottom: 0.2em;
}

ul ul {
    margin-left: 2em;
}

.center {
   text-align: center; 
}

.bold {
    font-weight: bold;
}

.normal {
    font-weight: normal;
}

.bigger {
    font-size: 140%;
}

.smaller {
    font-size: 80%;
}

.spacer {
	width: 100%;
	font-size: 0;
	margin-top: 1em;
}

@media only screen {
    div#info {
        position: fixed;
        z-index: 3;
        top: 30%;
        left: 10%;
        display: none;
    }
}

@media only print {
    div#info {
        display: none !important;
    }
}

div#info {
    width: 70%;
    border: 1px solid black;
    padding: 5%;
    text-align: center;
    background-color: silver;
    color: black;
}

.portrait {
	 float: right;
	 width: 25%;
	 margin-left: 2em;
	 margin-bottom: 0.5em;
}

input, button, select {
	margin-left: 4%;
	margin-bottom: 0.8em;
	width: 45%;
	height: 1.4em;
	line-height: 1.2em;
	font-size: 1.2em;
	background-color: #EEEEEE;
}

select#file {
	font-size: 1em;
	line-height: 1.2em;
}

input.inp-title {
	margin-left: 0;
	width: 78%;
}

input.inp-file {
	margin-left: 4%;
	margin-right: 3%;
	width: 26%;
}

input.inp-name {
	margin-left: 2%;
	width: 55%;
}

.bg-fix, .bg-fix:hover, .bg-fix:link, .bg-fix:visited {
	background-color: silver;
	cursor: pointer;
}

textarea#update {
	 width: 100%;
	 font-size: 0.9em;
	 font-family: monospace;
	 background-color: #EEEEEE;
}

textarea.galery-content {
	margin-left: 4%;
	margin-bottom: 1em;
	width: 95%;
	font-size: 1em;
	background-color: #EEEEEE;
}

.galery {
	width: 70%;
	margin-left: 15%;
}

div#slider_text {
	margin-top: 0.3em;
	color: #444444;
	font-size: 0.8em;
}

div#slider_text i {
	margin-left: 0.3em; 
}

i.edit-icon {
	font-size: 1.8em;
	line-height: 2em;
	margin-right: 0.2em;
}

.hide-arrow {
	color: #EEEEEE;
}
