/*
Description: Glex Graph Theme
Author: Bjarte Sebastian Hansen
Author URL: https://goontech.no
Tags: Glex styling
*/
@charset "utf-8";

/* * { border: 1px solid black; } */


/* Webfont: Lato-Regular */@font-face {
    font-family: 'LatoWeb';
    src: url('../fonts/Lato-Regular.eot'); /* IE9 Compat Modes */
    src: url('../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/Lato-Regular.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/Lato-Regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Lato-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}
@font-face {
	font-family: "TitilliumWeb-Light";
	src: url("../fonts/TitilliumWeb-Light.eot"); /* IE9 Compat Modes */
	src: url("../fonts/TitilliumWeb-Light.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
	  url("../fonts/TitilliumWeb-Light.otf") format("opentype"), /* Open Type Font */
	  url("../fonts/TitilliumWeb-Light.svg") format("svg"), /* Legacy iOS */
	  url("../fonts/TitilliumWeb-Light.ttf") format("truetype"), /* Safari, Android, iOS */
	  url("../fonts/TitilliumWeb-Light.woff") format("woff"), /* Modern Browsers */
	  url("../fonts/TitilliumWeb-Light.woff2") format("woff2"); /* Modern Browsers */
	font-weight: normal;
	font-style: normal;
  }

/* Unity classes */

.webgl-content {
	margin-top: 1em;
}

.webgl-content * {border: 0; margin: 0; padding: 0}

.webgl-content .logo, .progress {position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
.webgl-content .logo {background: url('progressLogo.Light.png') no-repeat center / contain; width: 154px; height: 130px;}
.webgl-content .progress {height: 18px; width: 141px; margin-top: 90px;}
.webgl-content .progress .empty {background: url('../../TemplateData/progressEmpty.Light.png') no-repeat right / cover; float: right; width: 100%; height: 100%; display: inline-block;}
.webgl-content .progress .full {background: url('../../TemplateData/progressFull.Light.png') no-repeat left / cover; float: left; width: 0%; height: 100%; display: inline-block;}

.webgl-content .logo.Dark {background-image: url('../../TemplateData/progressLogo.Dark.png');}
.webgl-content .progress.Dark .empty {background-image: url('../../TemplateData/progressEmpty.Dark.png');}
.webgl-content .progress.Dark .full {background-image: url('../../TemplateData/progressFull.Dark.png');}

.webgl-content .footer {margin-top: 5px; margin-bottom: 1em; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;}
.webgl-content .footer .webgl-logo, .title, .fullscreen {height: 100%; display: inline-block; background: transparent center no-repeat;}
.webgl-content .footer .webgl-logo {background-image: url('../../TemplateData/webgl-logo.png'); width: 204px; float: left;}
.webgl-content .footer .title {margin-right: 10px; float: right;}
.webgl-content .footer .fullscreen {background-image: url('../../TemplateData/fullscreen.png'); width: 38px; float: right;}


#unityContainer {


}


  html {
	overflow-x: hidden;
	width: 100%;
}

body {
	font-family: Lato-Regular, sans-serif;
	font-size: 15px;
	font-style: normal;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	color: rgba(33,33,33,1);
	overflow-x: hidden;
	width: 100%;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}

body::-webkit-scrollbar {
	display: none;
  }


/* HAMBURGER MENU */

.mobilemenu {
  display: none;
  height: 100%;
  position: absolute;
  top: 15px;
  right: 0px;
  
}

#menuToggle
{
  display: block;
  z-index: 1;
  right: 1em;
  -webkit-user-select: none;
  user-select: none;
  position: absolute;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: black;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: white;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#mobilemenu
{
  position: absolute;
  left: -150px;
  height: 120vh;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 20px;
  padding-top: 115px;
  
  background: rgba(128, 128, 128, 0.9);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(150%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#mobilemenu li
{
  padding: 10px 0;
  font-size: 22px;
}

#mobilemenu li a
{
	color: white;
}

#mobilemenu li a.active
{
	border-bottom: 1px solid white;
}





/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}

/*MOBILE MENU MEDIA QUERY */
@media screen and (max-width: 1000px) {

  .menu {
    height: auto;
    display: none;
}

.mobilemenu {
  display: block;
}

}
/* Mains CCS */

/* Links
-------------------------------------------------- */
a {

	text-decoration: none;
	font-weight: normal;
	transition: color .3s, background .3s, border .3s;
	overflow-wrap: break-word;
	word-wrap: break-word;
  }
  a:hover {
	color: #FF2761;
	cursor: pointer;
  }
  
  
  a h1, a h2, a h3, a h4 {
	color: black;
  }
  a:hover h1, a:hover h2, a:hover h3, a:hover h4 {
	color: #FF2761;
	cursor: pointer;
  }

 




/* MENU AND NAVIGATION */


.menu {
	height: 100%;
	margin-top: 3%;
	float: right;
	
  }
  .menu ul {
	height: inherit;
	margin: 0;
	padding: 0;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	list-style: none;
	
  }
  .menu ul li a {
	width: auto;
	height: inherit;
	display: inline-block;
	margin: 0 0 0 1em;
	font-family: 'TitilliumWeb-Light', sans-serif;
	color:black;
  }
  



  .menu ul li a:visited {
	color: black;
  }

  .menu ul li a:hover {
	color: #FF2761;
  }

  .active {
	border-bottom: 1px solid black;
  }





.logo {
	display: inline;
    max-width: 150px;
    padding: 8px 4px 8px 12px;
    vertical-align: middle;
}



.langURL {
    color: rgba(33,33,33,1);
    text-decoration: none;
}

.langURL:hover 
{
     color: rgba(33,33,33,1);
     text-decoration:none; 
     cursor:pointer;  
}

.wrapper {
	margin-left: 25%;
	margin-right: 25%;
	margin-top: 1em;
	overflow: hidden;
	
}
.formlangwrapper
{
	margin-left: 15%;
	margin-right: 15%;
	margin-top: 1em;
	overflow: hidden;
		
}

.singlearticlewrapper {
	margin-left: 15%;
	margin-right: 25%;
	margin-top: 1em;
	overflow: hidden;
}

#scrollingmenu {
	height: 50px;
	position: relative;
	margin-left: 15%;
	margin-right: 15%;
	z-index: 90;
  }


form {
	display: inline-block;
}

h1 {
	color: #FF2761;
}

h2 {
	font-size: large;
}

h3 {
	color: #FF2761;
	font-size: large;
	margin-bottom: 1em;
}

.headerurl {
		color: #FF2761;
		font-size: large;
		margin-bottom: 1em;
}

.headerurl:hover {
	color: #e9114b;
	font-size: large;
	margin-bottom: 1em;
}

h4 {
	color: #FF2761;
	
}



img {
	width: 100%;
}

img.hidden {
	display:none;
}


p {
	overflow-wrap: break-word;
	word-wrap: break-word;
}


blockquote {
	background: #f9f9f9;
	border-left: 10px solid #ccc;
	margin: 1.5em 0px;
	padding: 0.5em 10px;
	quotes: "\201C""\201D""\2018""\2019";
	width: 70%;
  }
  blockquote:before {
	color: #ccc;
	content: open-quote;
	font-size: 4em;
	line-height: 0.1em;
	margin-right: 0.25em;
	vertical-align: -0.4em;
  }
  blockquote p {
	display: inline;
  }

ul {
padding-inline-start: 18px;
}
/*
#container2 {
	
	width: 500px;
	float: right;
}
*/

iframe {
	border: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100vh;
  }
  

video {
	width:100%;
	height: 100%;
  }
  
  .videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 100px;
	background-color: rgba(13, 33, 48, 1);
  }
  .videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(13, 33, 48, 1);
  }

  .tutorialbutton {
    background-color: #3498DB;
    color: white;
    padding: 14px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    width: 20%;
	display: block;
	margin: 1em 0em 1em 0em;
}

.sectionvertical {
	display: grid;
	grid-gap: 1rem;
  }



@media screen and (max-width: 1000px) {

	.projectimage {
		width: 100%;
	}
}

table {
	margin: 0 0 0 0;
	box-sizing: content-box;
}


td.tdheader {
	padding:  0  0;
	border: 0;
	list-style: none;
	text-align: left;
	/* font-size: 0; */
}

td.tdheader p {
	margin: 0;
}

td.tdtext {
	padding:  0  0;
	border: 0;
	list-style: none;
	text-align: left;
	font-weight: bold;
	/* font-size: 0; */
}

/* Styles for the table with input data */
td.label{
	color: white;
	font-weight: bolder;
	font-size: 14px;
	text-align: left;
	background-color: #20C793;
	width: 300px;
	padding: 5px 10px 5px 10px;
}

th {
	text-align: center;
	width: 80px;
}

th.empty {
	background-color:white;
}

th.footprint{
	background-color: #20C793;
	font-weight: normal;
	text-align: center;
	padding: 5px 0 5px 0;
	color: white;
	font-weight: bolder;
	font-size: 14px;
}

tr.footprint:nth-child(odd) {
	background-color: #77ECC7;
	text-align: center;
	font-size: 14px;
  }

tr.footprint:nth-child(even) {
  background-color: #ADF7D4;
  text-align: center;
  font-size: 14px;
}


td.tdheader {
	
	 /* font-size: large; */
	padding: 0 0 10px 0;
}

td.tdtext {
	/* font-size: medium; */
}


/* LANGUAGE BUTTONS */

#formlang {
	float:right;
	margin-top: 10px;
}

.languageicon {
	height: 20px;
	width: 20px;
	vertical-align: bottom;
}

.languageselect {

}

/* HOME */

.homecontent {
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 50%;
}

.projectimage {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#sources a {
	word-break: break-all;
}

/* WEIGHTING BUTTONS */

.weight-buttons {
	margin: 1em 0 1em 0;
}

.weight-buttons label {
  display: inline-block;
  width: 35px;
  padding: 9px;
  border: solid 2px rgba(255,255,255,0.0);
  transition: all 0.3s;
  font-weight: bold;
  vertical-align: middle;
  /* font-size: medium; */
}

/* Removes radio buttons */
.weight-buttons input[type="radio"] {
  display: none;
}
.weight-buttons input[type="radio"]:checked + label {
   border: solid 2px black; 
   color: #FFFFFF;
}

td.series0 {
	display: inline-block;
	/* background: #FF1F5D;*/
	background: linear-gradient(to right, rgba(255,31,93,0.2), rgba(255,31,93,1));
}

td.series1 {
	display: inline-block;
	/* background: #313648;*/
	background: linear-gradient(to right, rgba(49,54,72,0.2), rgba(49,54,72,1));
}
td.series2 {
	display: inline-block;
	/* background: #69F788;*/
	background: linear-gradient(to right, rgba(105,247,136,0.2), rgba(105,247,136,1));
	
	
}
td.series3 {
	display: inline-block;
	/* background: #3BC2FF;*/
	background: linear-gradient(to right, rgba(59,194,255,0.2), rgba(59,194,255,1));
	
}
td.series4 {
	display: inline-block;
	/* background: #FFF124;*/
	background: linear-gradient(to right, rgba(255,241,36,0.2), rgba(255,241,36,1));
	
}
td.series5 {
	display: inline-block;
	/* background: #FF8200;*/
	background: linear-gradient(to right, rgba(255,130,0,0.2), rgba(255,130,0,1));
}
td.series6 {
	display: inline-block;
	/* background: #3D62F5;*/
	background: linear-gradient(to right, rgba(61,98,245,0.2), rgba(61,98,245,1));
}
td.series7 {
	display: inline-block;
	/* background: '#8b4513'*/
	background: linear-gradient(to right, rgba(139,69,19,0.2), rgba(139,69,19,1));
}

/*Buttons*/
/*
.button00 {
	opacity: 60%;
}
.button25 {
	opacity: 70%;
}
.button50 {
	opacity: 80%;
}
.button75 {
	opacity: 90%;
}
.button100 {
	opacity: 100%;
}

*/
/* Hovers*/
.button00:hover {
	color: #FFFFFF;
}
.button25:hover {
	color: #FFFFFF;
}
.button50:hover {
	color: #FFFFFF;
}
.button75:hover {
	color: #FFFFFF;
}
.button100:hover {
	color: #FFFFFF;
}

figcaption {
	font-size: small;
	font-style: italic;
}

/* Dropdown Button */

/* The container <div> - needed to position the dropdown content */
.dropdown {
 /* position: relative; */
  display: inline-block;
  vertical-align: top;
  margin: 63px 0 0 10px;
}


.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 14px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  width: 100%;
  display: block;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}


/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  word-wrap: break-word;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content p {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

/*Close dropwdown button */
button.closedropdown
{
	border: none;
	float: right;
	margin: 5px 5px 0 0;
	
}

.closedropdown img
{
	border: none;
	width: 25;
	height: 25;
}
/* MODAL BOX */

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(13, 33, 48, 1);
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: rgba(13, 33, 48, 1);
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}


/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

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

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


/* Responsive CSS */
@media all and (max-width: 1491px) {

.dropdown {
	margin: 0 0 10px 0;
  }
}

@media all and (max-width: 1024px) {
.weight-buttons {
	margin: 5px 0 0 0;
}

.weight-buttons label {
  display: inline-block;
  width: 30px;
  padding: 3px 10px 3px 10px;
  border: solid 2px rgba(255,255,255,0.0);
  transition: all 0.3s;
  font-weight: bold;
  vertical-align: middle;
  /* font-size: medium; */
}
}

@media all and (max-width: 932px) {

nav {
	margin-left: 0;
	margin-right: 0;
	padding-left: 0px;
	padding-right: 0px;
}

.wrapper {
	margin-left: 1em;
	margin-right: 1em;
	padding: 0 2% 0 2%;
	
}

.formlangwrapper
{
	margin-left: 0%;
	margin-right: 1em;
	margin-top: 1em;
	overflow: hidden;
		
}

.homecontent {
	margin-left: 1em;
	margin-right: 1em;
	text-align: left;
	width: 100%;
}


.singlearticlewrapper {
	margin-left: 0%;
	margin-right: 0%;
	padding: 0 2% 0 2%;
}

#scrollingmenu {
	margin-left: 0%;
	margin-right: 0%;
	padding: 0 2% 0 2%;
  }

body {
	height: 100%;
	overflow-x: hidden;
    width: 100%;
}


.dropdown-content {
  word-wrap: break-word;
  position: initial;
}



td {
	display: block;
}
/*
img {
	width: 100%;
}
*/

/* Styles for the table with input data */

/* Force table to not be like tables anymore */
table, thead, tbody, th, td, tr { 
	display: block; 
}

/* Hide table headers (but not display: none;, for accessibility) */
thead tr.footprint { 
	position: absolute;
	top: -9999px;
	left: -9999px;
}

tr.footprint:nth-child(even) {
  background-color: #77ECC7;
}
tr.footprint:nth-child(odd) {
  background-color:  #ADF7D4;
}

td.footprint:nth-child(even) {
  background-color: #77ECC7;
}
td.footprint:nth-child(odd) {
  background-color:#ADF7D4;
}

td.label { 
	/* Behave  like a "row" */
	border: none;
	border-bottom: 1px solid #eee; 
	position: relative;
	width: 97.6%;
}

td.footprint{
	text-align: left;
	width: 50%;
	padding: 5px 0 5px 0;
	/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
}
td.footprint:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}

/* Label the data NO */
	td.no:nth-of-type(1):before { content: ""; }
	td.no:nth-of-type(2):before { content: "Vann"; }
	td.no:nth-of-type(3):before { content: "Vind"; }
	td.no:nth-of-type(4):before { content: "Sol"; }
	td.no:nth-of-type(5):before { content: "Biomasse"; }
	td.no:nth-of-type(6):before { content: "Kjernekraft"; }
	td.no:nth-of-type(7):before { content: "Kull"; }
	td.no:nth-of-type(8):before { content: "Olje"; }
	td.no:nth-of-type(9):before { content: "Gass"; }
	
/* Label the data EN */
	td.en:nth-of-type(1):before { content: ""; }
	td.en:nth-of-type(2):before { content: "Water"; }
	td.en:nth-of-type(3):before { content: "Wind"; }
	td.en:nth-of-type(4):before { content: "Solar"; }
	td.en:nth-of-type(5):before { content: "Biomass"; }
	td.en:nth-of-type(6):before { content: "Nuclear"; }
	td.en:nth-of-type(7):before { content: "Coal"; }
	td.en:nth-of-type(8):before { content: "Oil"; }
	td.en:nth-of-type(9):before { content: "Gas"; }

}



@media all and (max-width: 635px) {
.dropdown {
  vertical-align: bottom;
  display: inline-block;
  margin-top: 10px;
  margin-left: 0;
}
}

/* ARTICLES PAGE */

.articleswrapper {
	/* display: flex;
	flex-direction: row-reverse; */
	margin-bottom: 2em;
}

.articlelist {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	column-gap: 10%;
}

.article-content {
	margin-bottom: 1em;
	flex: 45%;
	max-width: 45%;
}

.articlelist > a {
	display: flex;
    align-items: baseline;
	position: relative;

}



.articlelist > a:hover {

	color: #FF2761;
}



.articlelist a p {
	flex: 0 1 auto;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.articlelist hr {
	margin-top: 0;
    margin-bottom: 0;
    margin-right: .5rem;
    margin-left: .5rem;
    height: 1px;
    border: none;
    border-bottom: 1px dotted;
    flex: 1 0 1rem;
    opacity: .25;
}



time {
	flex: 0 1 auto;
}

.sortbycategory {
	width: 25%;
	margin-left: auto;
	text-align: right;
	margin-bottom: 3em;
}

.pagination {
	margin-left: 25%;
	margin-bottom: 6em;
  }
  
  .pagination ul {
	padding-left: 0;
  }
  .pagination ul li {
	display: inline;
  }
  
  .pagination ul li a{
	color: black;
	float: left;
	padding: 8px 16px;
	text-decoration: none;
	transition: background-color .3s;
	border: 1px solid #ddd;
	margin: 0 4px;
  }
  
  .pagination ul li span {
	color: black;
	float: left;
	padding: 8px 16px;
	text-decoration: none;
	transition: background-color .3s;
	border: 1px solid #ddd;
	margin: 0 4px;
  }
  
  .pagination ul li a.active{
	background-color: #20C793;
  }
  
  .pagination ul li a:hover:not(.active) {
	background-color: Silver;
  }

@media all and (max-width: 1000px) {
	.articleswrapper {
		display: block;
	
	}
	.articlelist {
		width: 100%;
	}
	.sortbycategory {
		margin-left: 0;
		width: 100%;
		text-align: left;
	}
	}


/* ARTICLE SPECIFIC STYLES */

.author-name {
	font-weight: bold;
}

.factbox {
	background-color: #77ECC7;
	padding: 1em;
	border: solid 1px black;
}

.author {
	margin-top: 1em;
	margin-bottom: 2em;
}

.articlemeta {
	font-size: 12px;
	margin-bottom: 4em;
	
}

.leadparagraph {
	
	font-size: 25px;
	margin-bottom: 3em;
}

hr {
	margin-top: 0;
    margin-bottom: 0;
    margin-right: .5rem;
    margin-left: .5rem;
    height: 1px;
    opacity: .10;
}

#subheadline {
	font-weight: bold;
}

.articleimage {
	width: 100%;
}

.articlefigure {
	margin: 40px 0px 40px 0px;
	margin-block-start: 2em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.footprintlink {
	font-weight: bold;
}

figcaption {
	font-size: small;
	font-style: italic;
}

.figcaption {
		font-size: small;
		font-style: italic;
}

figure {
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}

/* Footer */

footer {
	margin-top: 2em;
	height: 4em;
	background-color:rgba(0,0,0,0.2);;
	display: flex;
  justify-content: center;
	
  }
  
  .copyright {


  }
  
  #copyrighttext {

	
  }


