
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;
}

body {
    font-family: 'lucida grande', tahoma, verdana, arial, sans-serif;
    color: #666;
    line-height: 1.5em;
    background-color: rgb(230, 230, 195);
}

img{
    max-width: 800px;
    padding-bottom: 20px;
}

 
#container{
    max-width: 1000px;
    margin: auto;
    background-color: beige;
}
.wrapper {
    max-width: 800px;
    margin: auto;
    padding: 80px 20px 30px;
}

h1 {
    text-align: center;
    font-size: 40px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.5em;
}

h2 {
    font-size: 30px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.5em;
    padding-top: 7px;
    border-top: gray 2px solid;
}

p {
    font-size: 20px;
    margin-bottom: 20px;
    padding: 2px;
}

ul li {
  list-style-type: square;
}

a{
    text-decoration:  none;
}
/* unvisited link */
a:link {
    color: #dc9090;;
}
  
/* visited link */
a:visited {
    color: #9C9D62;
}
  
/* mouse over link */
a:hover {
    color: #D7C386;
}
  

.menu-button {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    background: url(Images/menu.gif) no-repeat;
    overflow: hidden;
    width: 34px;
    height: 31px;
    text-indent: -9999px;
    /* Add this to make the menu visible as you scroll */
    position: sticky;
    margin-left: 20px;
}

.menu-button.right {
    right: 20px;
    left: auto;
}

.menu-button.bottom {
    top: 100px;
}

.menu-button.fixed {
    position: fixed;
}

#overlay {
    position: absolute;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 999998;
    display: none;
}

.sidr-open #overlay {
    display: block;
}