body {
  margin: 0;
  padding: 0;
	background: #F2F2F2; /*for old browser which do not understand next line*/
	background: linear-gradient(to top left, #777, #F2F2F2);
}

#h1-pic {
  display: none;
	position: absolute;
}

#h1-text {
  display: block;
	position: relative;
	top: 0;
	color: f5f2a3;
	line-height: 50px;
	width: 100%;
	text-align: center;

	background: #5b1314;
	background: linear-gradient(to bottom left, #333, #5b1314);
}

#header  {
	position: relative;
  margin: 0;
  padding: 0;
  height: 0;

	background: initial;
}

#decontent {
	position: relative;
	top: 0px;

	text-align:center;
	width: 100%;
	padding-top: 4%;
	padding-left: 1%;
	padding-right: 1%;
}

#encontent {
	position: relative;
	top: 2px;

	text-align:center;
	width: 100%;
	padding-left: 1%;
	padding-right: 1%;
	padding-top: 1%;
}

#fullpagecontent {
	position: relative;
	top: 0px;
	width: 100%;

	padding-top: 4%;
	padding-left: 1%;
	padding-right: 1%;
}

#metacontent  {
  position: relative;
  top: 50px;
	float: left;
  height: auto;
	width: 100%;

  text-align: center;
}

/*****************************/
/*
 * orginal menu by:
 * Erik Terwan
 * 24th of November 2015
 * MIT License
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */

#tabheader
{
  position: relative;
  height: 20px;
  top: 0px;
  left: 0px;
  margin: 0;

  z-index: 1;

  background: #5b1314;
  background: linear-gradient(to top left, #333, #5b1314);
}

#tabheader a
{
  text-decoration: none;
  color: #ccc;

  background: initial;

  transition: color 0.3s ease;
}

#tabheader a :hover
{
  color: #fff;
}

#tabheader input
{
  display: block;
  width: 24px;
  height: 18px;
  position: absolute;
  top: -3px;
  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
 */
#tabheader span
{
  display: block;

  width: 22px;
  height: 3px;
  top: 0px;
  left: -3px;

  margin-bottom: 3px;
  position: relative;

  background: #eee;
  border-radius: 2px;

  z-index: 1;

  transform-origin: 0px 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;
}

#tabheader span:first-child
{
  transform-origin: 0% 0%;
}

#tabheader span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#tabheader input:checked ~ span
{
  opacity: 1;
  transform: rotate(43deg) translate(-2px, -1px);
  background: #fff;
}

/*
 * But let's hide the middle one.
 */
#tabheader 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
 */
#tabheader input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-43deg) translate(0px, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#tabheader ul
{
  position: absolute;
  width: 150px;
  height: 300px;
  margin: -12px 0px 0px -20px;
  padding: 30px 0px 0px 30px;

  background: #5b1314;
  background: linear-gradient(to top left, #333, #5b1314);

  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s ;
}

#tabheader li
{
  padding: 0px 0;
  font-size: 1em;
  border: 0px solid #bbb;
  border-radius: 0;
}

/*
 * And let's slide it in from the left
 */
#tabheader input:checked ~ ul
{
  transform: none;
}
