/*
Global Styles
======================================
*/

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
 }

body {
}



/*
Layout
======================================
*/

.wrap {
  position: relative;
}

/*
Typography
======================================
*/


ul,
li {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}



/*
code
-----------------------------------
*/

pre {
  background-color: #ECF0F1;
  padding: 1em;
  font-size: .875em;
}

/*
table
-------------------------------------
*/

table {
  text-align: left;
  border: 1px solid #95A5A6;
  margin-top: 1em;
  max-width: 100%;
}

td,
th {
  padding: .5em 1em;
}

th {
  background: #2C3E50;
  color: #fff;
}

td {
  border: 1px solid #BDC3C7;
}

tr:nth-of-type(2n) {
  background: #ECF0F1;
}

/*
Masthead
======================================
*/

.masthead {
  background: #34495D;
  color: #fff;
  position: relative;
}

.menu-link {
  position: absolute;
  font-size: 1.5em;
}

.menu-link:link,
.menu-link:visited {
  color: #fff;
  background: rgba(0, 0, 0, .4);
  border-radius: 4px;
  padding: 0.1em .4em .2em .4em;
}

.menu-link:hover,
.menu-link:active {
  color: #25B89A;
  background: rgba(0, 0, 0, .6);
	text-decoration: none;
}

.subtitle {
  text-align: center;
  font-size: 1.125em;
  margin: .5em 0;
}


/*
Nav Panel
======================================
*/

.panel {
  background: #4F4F4F;
  z-index: 9999;
  position: fixed;
  left: -15.625em; /*or width of your navigation panel*/
  width: 15.625em; /*should match the above value*/
}

.panel ul {
  /*border-top: 2px solid #0b5b2f;*/
}

.panel a {
  display: block;
  border-bottom: 1px solid #686868;
  padding: 1em;
}

.panel a:link,
.panel a:visited {
  color: #fff;
}

.panel a:hover,
.panel a:active {
  background: #666666;
}

.nav-icon {
  margin-right: 6px;
}

/*
code
-----------------------------------
*/

pre {
  background-color: #ECF0F1;
  padding: 1em;
  font-size: .875em;
}

/*
footer
-------------------------------------
*/

footer {
  margin-top: 4em;
  padding: 2em 0;
  font-size: .75em;
  border-top: 1px solid #BDC3C7;
}

footer p {
  line-height: 1.1;
}

.credits {
  width: 65%;
  float: left;
}

.footer-links {
  width: 30%;
  float: right;
  text-align: right;
  font-size: 3em;
}

.footer-links a:link,
.footer-links a:visited {
  color: #BDC3C7;
}

.footer-links a:hover,
.footer-links a:active {
  color: #95A5A6;
}

/*
Helper Classes
-----------------------------------
*/

.hide {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}


/*
Small Screens
-----------------------------------
*/

@media only screen and (max-width: 31.25em) {
    body {
      font-size: .875em;
    }

    h1 {
      margin-top: 1em;
    }

    code,
    pre {
      overflow-y: scroll;
    }


    table {
      font-size: .75em;
    }

}