/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
    border-spacing: 0;
  
}

/*
=================================================================
'General'
=================================================================
*/
html, body  {
    background: white;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    min-width: 290px;
}

#navbar {
  background: #f6f6f6;
  box-shadow: 0 0 6px rgba(3,3,3,0.6 );
  position: fixed;
  left: 0px;
  top: 0px;
  min-width: 290px;
  height: 100%;
  

  }
  
header {
  font-weight: 700;
  font-size: 24px;
  padding: 30px 15px 15px 15px;
  margin: 10px;
  text-align: center;
  border-bottom: 0.5px solid silver;
}

#main-doc header {
  text-align: left;
  margin: 0px;
  border-bottom: none;
}

#navbar ul {
  height: 88%;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
}

#navbar li {
  
 
  background: #EDEDED;
  border: 0.5px solid silver;
  position: relative;
  list-style: none;
  width: 100%;
  
}

#navbar a {
  text-decoration: none;
  display: block;
  padding: 10px 30px;
  color: #f37e7e;
  cursor: pointer;
}


#navbar li:hover {
  background: #f37e7e;
  transition: all 0.1s ease-out;
}

#navbarv a:hover {
  color: #EDEDED;
  transition: all 0.1s ease-out;

}

#main-doc {
  position: absolute;
  margin-left: 310px;
  padding: 20px;
  margin-bottom: 110px;
}


  
section article {
  margin: 15px;
}



section li {
  margin-left: 20px;
  list-style: circle;

}

ul li ul li {
  margin-left: 30px;
  list-style: square;
}

code {
  display: block;
  text-align: left;
  white-space: pre;
  position: relative;
  word-break: normal;
  word-wrap: normal;
  line-height: 2;
  background-color: #facdc78c;
  color: rgb(110, 113, 114);
  padding: 15px;
  margin: 15px 0;
  border-radius: 5px;
  font-family: monospace;
}

  
@media only screen  and (max-width: 815px) {
  /*For mobile phones:*/

  #navbar ul {
    border: 1px solid;
    min-height: 200px;
  
  }
  
  #navbar a {
    padding: 5px;
  }

  #navbar {
    position: absolute;
    top: 0;
    padding-bottom: 5px;
    margin: 0;
    width: 100%;
    min-height: 275px;
    height: auto;
    border: none;
    z-index: 1;
    border-bottom: 2px solid;
    font-size: 13px;
    line-height: 1em;

  }



#main-doc {
  position: relative;
  margin-left: 0px;
  margin-top: 270px;

}
}

@media only screen and (max-width: 400px){
  #main-doc {
    margin-left: -10px;
  }
  code {
    
    width: 100%;
    padding: 15px;
    padding-left: 45px;
    min-width: 233px;
  }
}