* {
	box-sizing: border-box
}

html {
  height: 100%;
  width: 100%;  
}

body {
  margin: 0;
  padding: 0;
  color: SlateGrey;
  font: normal 1.2rem arial;
  height: 100%;
  width: 100%;
}

h1 {
	font: normal 1.8rem arial; 
	padding: 10px;
	margin: 0;
}

h2 {
	font: Normal 1.5rem arial; 
	padding: 10px;
	margin: 0;
}

p {
  font: normal 1rem/1.5 arial; 
  color: SlateGrey;  
}

.visible {
	border: 1px solid blue;
}

.container {
	width: 100%;
	height: 100vh;
}

.left {
	position: fixed;
	top: 0;
	left: 0;
	width: 60%;
	height: 100vh;
	background: url(../img/Bruno.jpg) no-repeat top right;
	background-size: cover;
	margin: 0;
	padding: 0;
}
  
.right {
	position: fixed;
	top: 0;
	left: 60%;
	width: 40%;
	height: 100vh;
}

@media screen and (max-width: 768px) {
	  
	.left {
		top: 0;
		width: 100%;
		height: 50vh;
	}
	  
	.right {
		top: 50%;
		left: 0;
		width: 100%;
		height: 50vh;
	}

	.right footer {
		width: 100% !important;
		left: 0 !important;
		bottom: 0;
		background: red
	}

	#pooh {
		top: 30% !important;
	}

	#sideBar {
		width: 300px !important;

	}
}

.center {
	text-align: center;
}

div.side-tabs {
	position: fixed;
	writing-mode: vertical-lr;
	background: SteelBlue;
	color: LightGrey;
	border: 1px solid CadetBlue;
	border-left: none;
	border-radius: 0 10px 10px 0;
	padding: 5px;
	cursor: pointer;
	z-index: 99;
}

div.side-tabs:hover {
	color: White;
}


#home {
	top: 100px;
}

#world {
	top: 300px;
}

#sideBar {
    position: fixed;                
	top: 0;
	left: -400px;
	background: White;
    width: 400px;
	height: 100%;
	padding: 0 0 10px 0;
	margin: 0;
	z-index: 999;
}

#sideOpen {
	position: absolute;
	top: -5px;
	left: 5px;
	cursor: pointer;
	color: SlateGrey;
	font: bold 2rem arial;
	transition:all 2s;
}

#sideClose {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 0;
	right: 10px;
	cursor: pointer;
	/* color: White; */
	font-size: 3rem;
}

#pooh {
	position: fixed;
	top: 60%;
	left: 40px;
	width: 50%;
	font-size: 4vmin;
	color: White;
	z-index: 9;
}

#title {
	position: absolute;
	top: 0;
	left: 0;
	background: White;
	width: 100%;
}

.right footer {
	position: fixed;
	background: White;
	width: 40%;
	left: 60%;
	bottom: 0;
	height: 30px;
	text-align: center;
	color: LightSlateGray;
	border-top: 1px solid LightGray
}

#prev {
	position: absolute;
	top: 0;
	left: 30px;
	margin: 0;
	cursor: pointer;
}

#next {
	position: absolute;
	top: 0;
	right:50px;
	/* font: normal 1.3rem arial;    */
	margin: 0;
	cursor: pointer;
}

#back-to-top {
	position: absolute;
	bottom: 0;
	right: 0px;
	text-decoration: none;
	font: normal 1.8rem arial; 
	/* color: White; */
	cursor: pointer;
}

#title {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
}

#content {
	position: relative;
	top: 50px;
	left: 0;
	margin: 0 auto;
	padding: 0 40px 40px 40px;
	width: 100%;
	height: calc(100% - 80px);
	overflow: auto;
}

textarea, input[type="text"] {
    outline:none;
    width: 80%;
	height: 100px;
	border: 1px solid LightGrey;
    background: CornSilk;
    color: DarkSlateGrey;
	margin: 10px 10%;
    font: normal 1rem/1 arial;
  }

input[type="text"] {
	height: 30px;
}
  
#submit {
	cursor: pointer;
	border: none;
	outline: none;
	padding: 10px;
	background: SteelBlue;
	color: white;
	margin: 10px 10% 0 10%;
	text-align: center;
	width: 80%;
}

::placeholder {
    color: LightGrey;
    opacity: 0.8;
  }


  /* News */

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.small {
	font: normal 0.6rem/1 arial;
	padding: 10px 0;
	color: LightSlateGrey;
}

#news-container {
	height: 90%;
	width: 80%;
	margin: 10px auto;
	padding-top: 20px;
  }
  
#news-header {
	width: 100%;
	font: normal 1.5rem/1.5 arial;
	text-align: center;
	padding: 10px;
	margin: 0 auto;
}

#news-header a {
	color: White;
	text-decoration: none;				
	color: DarkSlateGrey;
 	max-height: 100px;
}

.news-body {
	margin: 0;
	padding: 0;
	height: calc(100% - 50px);
	width: 100%;
  	margin: 0 auto;
}


#news-textarea {
	width: 100%;
	height: calc(100% - 30px);
	overflow-y: scroll;
}

::-webkit-scrollbar {
	display: none;
  }
  
.news-item {
	border-bottom: 1px dotted LightGray;
	padding:5px 0;
}

.news-item a {
	color: DarkSlateGrey;
	font: bold 1rem/1.2 arial;
	text-decoration: none;
}

.news-item a:hover {
	color: fireBrick
}

.news-item p {
	font: normal .8rem/1 arial;
	padding: 0;
	margin: 0;
}

#date {
  text-align: center;
  font: normal 0.6rem/1 arial;
  padding: 10px 0;
  color: LightSlateGrey;
  margin-top: -10px;
}

