/* global */
body {
  margin:0;
  padding:0;
  background: #060606;
  width: 100%;
  height: 100vh;
  font-family: "Helvetica", sans-serif;
  color: #999999;
}

p {
  margin: 0px
}

/* Header */
header {
  position: fixed; top: 0; left: 0;
  background-color: #222222;
  width: 100%;
  height: 52px;
  border-bottom: 1px solid #383838;
  z-index: 2;
}

.logo {
  position: absolute; top: 10px; left: 10px;
}

.site {
  position: absolute; top: 15px; left: 46px;
  text-decoration: none;
  font-size: 18px;
  color: #FFF;
}

/* Login in header */
.login {
  position: absolute; right: 10px;
  display: inline-block;
  visibility: hidden;

}

.login input {
  height: 30px;
  width: 85px;
  margin: 10px 0px;
  background-color: #060606;
  border: none;
  outline: 1px solid #282828
}

.login input[type=text], input[type=password] {
  font-size: 17px;
  color: #FFFFFF;
}

.login button {
  vertical-align: top;
  margin: 10px 0px;
  border: none;
  height: 32px;
  width: 60px;
  background-color: #216f94;
  cursor: pointer;
  color: #FFFFFF
}

.login button:hover {
  background-color: #2A9FD6
}


/* menu */
nav {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
}

nav > ul, .submenu {
  list-style: none;
  padding: 0;
}

nav > ul > li {
  display: inline-block;
  position: relative;

}

nav > ul > li > a {
  padding: 14px 16px;
  text-align: center;
  text-decoration: none;
  color: #999999;
}

nav > ul > li > a:hover {
  color: #FFF;
  cursor: pointer;
}

nav > ul > li:hover .submenu {
  display: block;
}

nav > ul > li > a > span {
  font-weight: bold; font-size: 16px;
}

.active {
  color: #FFF;
}

/* submenu */
.submenu {
  position: absolute; top: 30px; left: 18px;
  display: none;
  background-color: #333333;
  border: 3px solid #333333;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.6);
}

.submenu li {
  text-align: center;
  font-size: 13px;
  padding: 2px 0px;
  width: 160px;
}

.submenu a {
  text-decoration: none;
  color: #FFF;
  padding: 6px 0px;
  margin: 0;
  display: block;
}

.submenu li:hover {
  background-color: #2A9FD6;
}

.submenu-active {
  background-color: #216f94;
}

main {
  display: -ms-flex; display: -webkit-flex; display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  position: relative;
  margin-top: 52px;
  width: 100%;
  min-height: 100%;
  z-index: 1;

}

/* sidebar */
.sidebar-area {
  order: 0;
  background-image: url(/pictures/bg.webp);
  background-repeat: repeat;
  min-height: 100%;
  width: 20%;
  border-right: 2px solid #333333;
  clear:both;
}


.sidebar {
  margin: 8px;
  background-color: #222222;
  border-top: none;
  border: 1px solid #383838;
  border-radius: 3px;
  width: 18.9%;
  position: fixed;
}

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

.sidebar li {
  padding: 10px 0px 10px 10px;
  margin: 0;
  font-size: 20px;
  border-bottom: 1px solid #383838;
  color: #2a9fd6;
  font-weight: normal;
}

.sidebar a {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
}

.sidebar-active {
  padding-left: 6px !important;
  font-weight: bold !important;
}

/* content */
.content {
  min-height: 100%;
  order: 1;
  width: 50%;
}

.section {
  flex-basis: auto;
  margin-top: 5px;
  margin-right: 3px;
  padding: 10px;
  min-height: 300px;
  padding-bottom: 40px;
}

.section h1 {
  font-weight: normal;
  color: White;
  font-size: 40px;
  color: #FFFFFF;
  padding-bottom: 10px;
  border-bottom: 1px solid #585858;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 12px;
  font-weight: normal;
  color: White;
}

.section h3 {
  font-size: 20px;
  margin-bottom: 2px;
  font-weight: normal;
  color: White;
}

.section h5 {
  color: White;
  margin: 2px;

}

.section p {
  color: #999999;
  font-size: 20px;
  text-align: left;
  display: inline-block;
}

.section a {
  color: #2a9fd6;
}

.section a:visited {
  color: #854a96;
}

.anchor {
  display: block;
  min-height: 52px; /*same height as header*/
  margin-top: -52px; /*same height as header*/
  visibility: hidden;
}

.content img {
  border: 3px solid #282828;
  border-radius: 5px;
}

.line {
  border-bottom: 1px solid #282828;
  margin-bottom: 10px;
  margin-top: 10px;
}

.content summary {
  padding-bottom: 10px;
}

.content details:hover {
  color: #FFFFFF;
}

.content #note {
  margin: 10px 0px;
  background-color: #9933CC;
  padding-left: 15px;
  border: 2px #9933CC;
  border-radius: 3px;
}

.content #note p {
  color: #FFFFFF;
  padding: 10px;
  margin: 0px;
}

.content #note a {
  color: #2A9FD6;
}

.content #note a:visited {
  color: green;
}

.content #seed {
  margin-bottom: 10px;
  border-left: 5px solid #282828;
  border-radius: 3px;
}

.content #seed p {
  font-size: 16px;
  color: #FFFFFF;
  padding: 10px 10px;
  margin: 0;
}

/* left colum */
.left-colum {
  order: 2;
  width: 29%;
  min-height: 100%;
}

.left-colum h1 {
  text-align: center;
  font-weight: normal;
  color: White;
  font-size: 40px;
  color: #FFFFFF;
  margin: 0;
  padding: 5px;
}

.left-colum img {
  margin: 0;
  padding: 0;
  border: 3px solid #333333;
  border-radius: 3px;
}

/* Slideshow container */
.slideshow-container {
  margin: 8px 8px 0px 0px;
  position: relative;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 5s;
  animation-name: fade;
  animation-duration: 3s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* server status */
.server-status {
  background-color: #222222;
  padding: 8px;
  border:
  border: 3px solid #383838;
  border-radius: 3px;
  margin-top: 8px;
}

.server-status h3 {
  color: #FFFFFF;
  text-align: center;
  margin-top: 2px;
  border-bottom: 1px solid #585858;
}

.server-status p {
  padding-bottom: 5px;
  color: #FFFFFF;
}


/* footer */
footer {
  position: fixed; bottom: 0px;
  width: 100%;
  border-top: 2px solid #383838;
  max-height: 50px;
  z-index: 2;
}

footer > p {
  padding: 15px;
  background-color: #060606;
  text-align: right
}
