.html, body {
    margin: 0;
    margin-top:40px;
    margin-bottom:35px;
    /*overflow-y: hidden;*/
    overflow-y: scroll;
    /*max-height:100vh;}*/
    max-width:100vh;
    background-color:black;
    background:url(_images/body_bg2.png);
    background-repeat: repeat;
    }

.wrapper{
    display:flex;
    -webkit-overflow-scrolling:touch

}

.wrapper img.row_image {
    width: 40%;
    max-width: 200px;
}

.center_column {
    padding:10px 10px 10px 10px;
    height:100%;
    width:100%;
    position:relative;
    z-index: 100;
    overflow: visible;
}

h3 {
   color:#e1e1e1; 
}

p {
    color:#e1e1e1;
    font-family:Verdana, Geneva, sans-serif;
    font-size:0.8em;
    font-weight:500;
    line-height:150%;
    text-align:left;
    letter-spacing:0em;
    }



.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  /*background-color: #ddd;*/
  background: linear-gradient(black, #213056);
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: #aaa;
  color: white;
  z-index: 200;
}
/* 
.fixed-nav ul, .fixed-nav li {
  display:inline;
}*/

.title {
  display:inline;
  color: red;
}
/*
.fixed-nav ul {
  padding:0;
}*/

.fixed-nav a {
  text-decoration: none;
  text-transform: uppercase;
  color: #ddd;
  padding: 5px;
  font-family: arial;
  transition: color 0.3s ease;
}
 
.fixed-nav a:hover {
  color: #3ea8d8;
}

.fixed-nav img {
padding-left: 3px;
padding-top: 3px;
  vertical-align:middle;
}


.horiztonal_scroll {
    margin: 0;
    /*overflow-y: hidden;*/
    /*max-height:100vh;}*/
    position: relative;
    width: 200px;
    overflow-x: scroll;
    display: flex;

}

.navbar_anchor {
    height: 40px;
    display: block;
    background-color: black;
}

/*
.pagination {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 35px;
    background-color: #ccc;
    text-align: center;
    vertical-align: middle;
}

.pagination a {
    color: white;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
}
*/

/* Style the active/current link */
/*
.pagination a.active {
    background-color: dodgerblue;
    color: white;
}
*/
/* Add a grey background color on mouse-over */
/*
.pagination a:hover:not(.active) {background-color: #ddd;}
*/

.fixed_bottom_container {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 35px;
    background-color: #ccc;
    text-align: center;
    vertical-align: middle;
}

.pagination {
    clear:both;
    position:relative;
    text-align:center;

}

.pagination span, .pagination a {
    display:inline-block;
    margin: 0px 0px 0px 0;
    padding: 8px 16px;
    text-decoration:none;
    color: black;
    transition: background-color .3s;
}

.pagination a.active{
    padding: 8px 16px;
    font-weight: bold;
    background-color: dodgerblue;
    color: white;
}



/*
 * Made by Erik Terwan
 * 24th of November 2015
 * All rights reserved
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */


/*body
{
  margin: 0;
  padding: 0;
  background: #232323;
  color: #cdcdcd;
  font-family: "Avenir Next", "Avenir", sans-serif;
}*/

/*a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

a:hover
{
  color: tomato;
}*/

#menuToggle
{
  display: block;
  position: relative;
  padding-left: 10px;
  padding-top: 10px;
  /*top: 50px;
  left: 50px;
  */
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 50px;
  height: 45px;
  position: absolute;
  /*top: -7px;
  left: -5px;*/
  margin-top: -7px;
  margin-left: -5px;
  padding-top: 0px;
  padding-left: 0px;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0); 
}
/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #ddd;
  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: #5af;
}

/*
 * 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
 */
#menu
{
  position: absolute;
/*  width: 100%;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;*/
  width: 80%;
  /*margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;*/
  margin: 4px 0 0 -10px;
  padding: 10px;

  background: linear-gradient(#213056, #111);
  border-style: solid;
  border-width: 0px 1px 1px 0px;
  border-color: #444;

  
  /*background: #ededed;*/
  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 cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 1px;
  font-size: 20px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}