/*RESET*/
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, font, 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 {margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent;} body {line-height: 1;}ol, ul{list-style:none;} blockquote, q{quotes:none;} blockquote:before, blockquote:after, q:before, q:after{content:'';content:none;} :focus{outline:0;} ins{text-decoration:none;} del{text-decoration:line-through;} table{border-collapse:collapse; border-spacing:0;}

/*MAIN*/
body {
  font-size: 1.05em;
  line-height: 1.25em;
  font-family: Noto, Helvetica Neue, Helvetica, Arial;
  background-color:white;
  color: #000;
}

a {
  color: #225555;
  text-decoration: none;
}
a:link {color:#225555;}
a:hover {background-color:#eee;}
a:visited {color:#225555;}

img {
  width: 20%;
}

.full {width: 100%;}

.half {width: 50%;}

header {
  background-color:#eee;
  width: 100%;
  height: 76px;
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 2px solid #225555;
  z-index: 100;
}

nav {
  float: right;
  padding: 20px;
}

#menu-icon {
  display: hidden;
  width: 40px;
  height: 40px;
  background: #225555 url(menu.png) center;
}

a:hover#menu-icon {
  background-color: #444;
  border-radius: 4px 4px 0 0;
}

ul{list-style: none;}

li {
  display: inline-block;
  float: left;
  padding: 10px;
  font-weight: bold;
}

.current {
  color: #225555;
}

section {
  margin: 80px auto 40px;
  max-width: 980px;
  position: relative;
  padding: 20px
}

h1 {
  font-size: 1.5em;
  color: #225555;
  line-height: 1.15em;
  margin: 20px 0 ;
}

h2 {
  font-size: 1.2em;
  color: #225555;
  line-height: 1.15em;
  margin: 20px 0 ;
  margin-bottom: 20px;
}

p {
  line-height: 1.45em;
  margin-bottom: 20px;
}

.small{font-size: 0.8em;
    border-top: 1px solid #225555;
    margin-top: 20px;
    width: 33%;}

.small-badge {width: 108px;}

.tight{margin-bottom: 5px;}

blockquote {
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
}

blockquote p {
  display: inline;
}

/*MEDIA QUERY*/
@media only screen and (max-width : 640px) {

  header {position: absolute;}

  #menu-icon {display:inline-block;}

  nav ul, nav:active ul {
    display: none;
    position: absolute;
    padding: 20px;
    background: #fff;
    border: 5px solid #225555;
    right: 20px;
    top: 60px;
    width: 50%;
    border-radius: 4px 0 4px 4px;
  }

  nav li {
    text-align: center;
    width: 100%;
    padding: 10px 0;
    margin: 0;
  }

  nav:hover ul {display: block;}
