html {
  box-sizing: border-box; }

*, *::after, *::before {
  box-sizing: inherit; }

/* !!! CSS RESET !!! */
/* 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 {
  margin: 0;
  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; }

#site .gradient {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: -100;
  background: white;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(#fff, #d2d2d2);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#fff, #d2d2d2);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#fff, #d2d2d2);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(#fff, #d2d2d2);
  /* Standard syntax */ }

@-moz-keyframes marquee {
  0% {
    -moz-transform: translateX(0%); }
  100% {
    -moz-transform: translateX(-100%); } }
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0%); }
  100% {
    -webkit-transform: translateX(-100%); } }
@keyframes marquee {
  0% {
    -moz-transform: translateX(0%);
    /* Firefox bug fix */
    -webkit-transform: translateX(0%);
    /* Firefox bug fix */
    transform: translateX(0%); }
  100% {
    -moz-transform: translateX(-100%);
    /* Firefox bug fix */
    -webkit-transform: translateX(-100%);
    /* Firefox bug fix */
    transform: translateX(-100%); } }
@-moz-keyframes marquee2 {
  0% {
    -moz-transform: translateX(100%); }
  100% {
    -moz-transform: translateX(0%); } }
@-webkit-keyframes marquee2 {
  0% {
    -webkit-transform: translateX(100%); }
  100% {
    -webkit-transform: translateX(0%); } }
@keyframes marquee2 {
  0% {
    -moz-transform: translateX(100%);
    /* Firefox bug fix */
    -webkit-transform: translateX(100%);
    /* Firefox bug fix */
    transform: translateX(100%); }
  100% {
    -moz-transform: translateX(0%);
    /* Firefox bug fix */
    -webkit-transform: translateX(0%);
    /* Firefox bug fix */
    transform: translateX(0%); } }
@media screen and (min-width: 2000px){
  html{
    font-size: 35px;
  }
}
@media screen and (min-width: 1700px) and (max-width: 1999px){
  html{
    font-size: 32px;
  }
}
@media screen and (min-width: 1500px) and (max-width: 1699px){
  html{
    font-size: 28px;
  }
}
@media screen and (min-width: 1300px) and (max-width: 1499px){
  html{
    font-size: 25px;
  }
}
#site {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: white; }
  @media screen and (max-width: 740px) {
    #site.homepage {
      padding-bottom: 90vh; } }
  #site #background {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 2rem;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1; }
  #site header {
    background: white;
    /* For browsers that do not support gradients */
    position: fixed;
    top: 2rem;
    left: -2rem;
    width: 17rem;
    height: 2.5rem;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    z-index: 199;
    transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg); }
    @media screen and (max-width: 740px) {
      #site header {
        top: auto;
        bottom: 0;
        width: 100%;
        left: 0;
        height: 2rem;
        border-bottom: 0;
        transform: rotate(0);
        -webkit-transform: rotate(0); } }
    #site header #marquee_container {
      position: relative;
      height: 100%;
      width: 100%;
      overflow: hidden; }
      #site header #marquee_container span {
        font-size: 1.2rem;
        letter-spacing: 0.3em;
        position: absolute;
        color: #000;
        width: 22rem;
        height: 100%;
        margin: 0;
        line-height: 2.7rem;
        font-family: 'Sacramento', cursive;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none; }
        @media screen and (max-width: 740px) {
          #site header #marquee_container span {
            line-height: 2.2rem;
            width: 22rem;
            font-size: 1.2rem; } }
        #site header #marquee_container span:nth-child(1) {
          /* Starting position */
          -moz-transform: translateX(100%);
          -webkit-transform: translateX(100%);
          transform: translateX(100%);
          /* Apply animation to this element */
          -moz-animation: marquee 16s linear infinite;
          -webkit-animation: marquee 16s linear infinite;
          animation: marquee 16s linear infinite; }
        #site header #marquee_container span:nth-child(2) {
          /* Starting position */
          -moz-transform: translateX(200%);
          -webkit-transform: translateX(200%);
          transform: translateX(200%);
          /* Apply animation to this element */
          -moz-animation: marquee2 16s linear infinite;
          -webkit-animation: marquee2 16s linear infinite;
          animation: marquee2 16s linear infinite; }
  #site #writing_close_container,
  #site #info_close_container {
    display: none;
    position: fixed;
    top: 0;
    bottom: 17rem;
    width: 100%;
    z-index: 10000; }
  #site #info_close_container{
    bottom: 0;
  }
    #site #writing_close_container.show,
    #site #info_close_container.show {
      display: block; }
      @media screen and (max-width: 740px) {
        #site #writing_close_container.show,
        #site #info_close_container.show {
          display: none; } }
    #site #writing_close_container:hover,
    #site #info_close_container:hover {
      cursor: url(../images/close.png) 35 35, pointer; }
  #site nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    /* For browsers that do not support gradients */
    z-index: 20;
    max-height: 2.7rem;
    border-top: 1px solid #000;
    transition: max-height ease 0.5s; }
    @media screen and (max-width: 740px) {
      #site nav {
        top: 0;
        bottom: auto;
        overflow: hidden;
        border-bottom: 1px solid #000;
        border-top: 0;
        z-index: 100;
        max-height: 2.2rem; } }
    #site nav.show {
      max-height: 18rem; }
      @media screen and (max-width: 740px) {
        #site nav.show {
          max-height: 100vh; } }
      #site nav.show #writing_link {
        background-color: #ff0; }
        #site nav.show #writing_link:hover {
          cursor: url(../images/close.png) 35 35, pointer; }
        @media screen and (max-width: 740px) {
          #site nav.show #writing_link:hover {
            cursor: pointer; } }
  #site li {
    margin: 0.84rem 3.4rem;
    padding: 0 0 0.1rem 0;
    letter-spacing: 0.3em;
    font-size: 1.2rem;
    display: inline-block;
    font-family: 'Sacramento', cursive;
    color: #000;
    /*border-bottom: 1px solid;*/ }
    @media screen and (max-width: 740px) {
      #site li {
        margin: 0.5rem 1rem;
        font-size: 1.2rem; } }
  #site #writing_container {
    clear: both;
    display: block;
    margin: 4rem auto 3rem auto;
    width: 21rem;
    transform: rotate(-2deg);
    height: 10rem;
    border: 1px solid #000;
    box-shadow: 5px 5px 5px #969696;
    overflow: scroll; }
    @media screen and (max-width: 740px) {
      #site #writing_container {
        margin-top: 3rem;
        margin-bottom: 2rem;
        width: 90%;
        transform: rotate(0);
        -webkit-transform: rotate(0);
        overflow-y: scroll;
        /* has to be scroll, not auto */
        -webkit-overflow-scrolling: touch; } }
    #site #writing_container a {
      position: relative;
      display: block;
      color: #000;
      text-decoration: none;
      padding: 0 0.3rem 0.15rem 0.3rem;
      /*border-bottom: 2px solid #fff;*/
      width: 100%;
      margin-bottom: 1rem; }
      @media screen and (max-width: 740px) {
        #site #writing_container a {
          padding: 0 1rem;
          margin-top: 1rem;
          margin-bottom: 1rem; } }
      #site #writing_container a:hover {
        cursor: url(../images/link.png) 35 35, pointer;
        background-color: #ff0; }
        @media screen and (max-width: 740px) {
          #site #writing_container a:hover {
            cursor: pointer; } }
      #site #writing_container a p {
        font-family: 'Titillium Web';
        font-size: 0.7rem;
        display: inline-block; }
        #site #writing_container a p.title {
          width: 80%; }
          @media screen and (max-width: 740px) {
            #site #writing_container a p.title {
              width: 100%; } }
        #site #writing_container a p.date {
          position: absolute;
          right: 0.3rem;
          top: 0.25rem; }
          @media screen and (max-width: 740px) {
            #site #writing_container a p.date {
              display: none; } }
  #site #info_link {
    float: right; }
    #site #info_link.selected{
      background-color: #ff0;
    }
    #site #info_link{
      text-decoration: none; }
    #site #info_link:hover {
      cursor: url(../images/question.png) 35 35, pointer; }
      @media screen and (max-width: 740px) {
        #site #info_link a:hover {
          cursor: pointer; } }
  #site #writing_link {
    float: left; }
    #site #writing_link:hover {
      cursor: url(../images/expand.png) 35 35, pointer; }
      @media screen and (max-width: 740px) {
        #site #writing_link:hover {
          cursor: pointer; } }
  #site .homepage_image_container {
    position: relative;
    display: block;
    width: 35%;
    margin-bottom: 6rem;
    z-index: 15;
    transition: width ease 0.3s, left ease 0.3s; }
    @media screen and (max-width: 740px) {
      #site .homepage_image_container {
        width: 90%;
        margin-bottom: 1.5rem; } }
    #site .homepage_image_container.huge {
      width: 80%; }
      @media screen and (max-width: 740px) {
        #site .homepage_image_container.huge {
          width: 90%; } }
      #site .homepage_image_container.huge .homepage_image_caption {
        display: block; }
      #site .homepage_image_container.huge:nth-child(odd) {
        left: 10%; }
        @media screen and (max-width: 740px) {
          #site .homepage_image_container.huge:nth-child(odd) {
            left: 5%; } }
      #site .homepage_image_container.huge:hover {
        cursor: url(../images/close.png) 35 35, pointer; }
        @media screen and (max-width: 740px) {
          #site .homepage_image_container.huge:hover {
            cursor: pointer; } }
    #site .homepage_image_container:nth-child(odd) {
      left: 55%; }
      @media screen and (max-width: 740px) {
        #site .homepage_image_container:nth-child(odd) {
          left: 5%; } }
    #site .homepage_image_container:nth-child(even) {
      left: 10%; }
      @media screen and (max-width: 740px) {
        #site .homepage_image_container:nth-child(even) {
          left: 5%; } }
    #site .homepage_image_container img {
      width: 100%;
      display: block; }
    #site .homepage_image_container:hover {
      cursor: url(../images/zoom.png) 35 35, pointer; }
      @media screen and (max-width: 740px) {
        #site .homepage_image_container:hover {
          cursor: pointer; } }
    #site .homepage_image_container .homepage_image_caption {
      text-align: center;
      display: none;
      font-size: 0.8rem;
      padding: 0.2rem 0;
      font-family: 'Titillium Web', sans-serif;
      background-color: #ff0; }
      @media screen and (max-width: 740px) {
        #site .homepage_image_container .homepage_image_caption {
          display: block; } }
  #site .homepage_link {
    position: fixed;
    width: 5rem;
    z-index: 5; }
    #site .homepage_link#bb {
      top: 4rem;
      left: 8rem; }
      @media screen and (max-width: 740px) {
        #site .homepage_link#bb {
          left: 5%; } }
    #site .homepage_link#ghost {
      right: 8rem;
      bottom: 9.2rem; }
      @media screen and (max-width: 740px) {
        #site .homepage_link#ghost {
          right: 5%; } }
    #site .homepage_link img {
      position: absolute;
      width: 100%;
      height: auto; }
    #site .homepage_link .show {
      opacity: 1; }
    #site .homepage_link .hover {
      opacity: 0; }
    #site .homepage_link:hover {
      cursor: url(../images/link.png) 35 35, pointer; }
      @media screen and (max-width: 740px) {
        #site .homepage_link:hover {
          cursor: pointer; } }
      #site .homepage_link:hover .show {
        opacity: 1; }
      #site .homepage_link:hover .hover {
        opacity: 1; }
  #site #archive_link {
    width: 7.5rem;
    font-family: 'Sacramento', cursive;
    position: fixed;
    right: 2rem;
    top: 5rem;
    padding: 1rem 2.5rem;
    background: white;
    /* For browsers that do not support gradients */
    max-height: 3rem;
    overflow: hidden;
    border: 1px solid;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
    z-index: 500;
    transition: max-height ease 0.5s;
    -webkit-transition: max-height ease 0.5s; }
    @media screen and (max-width: 740px) {
      #site #archive_link {
        width: 100%;
        top: auto;
        bottom: 1.8rem;
        right: 0;
        left: 0;
        border: 0;
        max-height: 2.2rem;
        padding: 0.5rem 0;
        z-index: 50;
        overflow: hidden;
        border-top: 1px solid #000; } }
    #site #archive_link:hover {
      cursor: url(../images/expand.png) 35 35, pointer; }
      @media screen and (max-width: 740px) {
        #site #archive_link:hover {
          cursor: pointer; } }
    #site #archive_link.show {
      max-height: 15rem; }
      @media screen and (max-width: 740px) {
        #site #archive_link.show {
          z-index: 50; } }
      #site #archive_link.show:hover {
        cursor: url(../images/close.png) 35 35, pointer; }
        @media screen and (max-width: 740px) {
          #site #archive_link.show:hover {
            cursor: pointer; } }
    #site #archive_link p {
      font-size: 1.2rem;
      padding-bottom: 1rem; }
      @media screen and (max-width: 740px) {
        #site #archive_link p {
          text-align: center;
          font-size: 1.2rem;
          letter-spacing: 0.3em; } }
    #site #archive_link a {
      text-align: left;
      font-family: 'Titillium Web', sans-serif;
      font-size: 0.8rem;
      margin-bottom: 0.3rem;
      display: block;
      color: #00f; }
      @media screen and (max-width: 740px) {
        #site #archive_link a {
          text-align: center;
          line-height: 1.3em;
          margin-bottom: 0.5rem; } }
      #site #archive_link a:hover {
        cursor: url(../images/link.png) 35 35, pointer; }
        @media screen and (max-width: 740px) {
          #site #archive_link a:hover {
            cursor: pointer; } }
  #site #info_container {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    width: 20rem;
    padding: 4rem;
    margin: auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    border-radius: 50%;
    background: #ff0;
    box-shadow: 0 0 15px #ff0;
    opacity: 0;
    transition: opacity ease 0.3s; }
    #site #info_container.show {
      opacity: 1;
      z-index: 10000000; }
    #site #info_container p,
    #site #info_container a:link,
    #site #info_container a:visited {
      font-family: 'Titillium Web', sans-serif;
      display: block;
      font-size: 0.8rem;
      line-height: 1.2em;
      margin-bottom: 1.2em; }
    #site #info_container a:link,
    #site #info_container a:visited{
      color: #00f;
    }

  @media screen and (max-width: 740px) {
    #site #info_container {
      width: 80%;
    }
  }

#site #archive_title {
  display: inline-block;
  margin-left: 1rem;
  font-family: 'Sacramento', cursive;
  background-color: #ff0;
  letter-spacing: 0.3em;
  font-size: 1.2rem;
  line-height: 1.1em; }
  @media screen and (max-width: 740px) {
    #site #archive_title {
      position: static;
      top: 0;
      left: 0;
      padding-top: 0.4rem;
      padding-bottom: 0.2rem;
      width: 100%;
      text-align: center; } }
#site #home_link {
  margin-left: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.7rem; }
  @media screen and (max-width: 740px) {
    #site #home_link {
      position: static;
      margin-top: 0.7rem;
      width: 100%;
      text-align: center; } }
  #site #home_link a {
    color: #00f;
    text-decoration: underline; }
    #site #home_link a:hover {
      cursor: url(../image/link.png) 35 35, pointer; }
      @media screen and (max-width: 740px) {
        #site #home_link a:hover {
          cursor: pointer; } }
#site .archive_image_container {
  display: block;
  width: 60%;
  margin: 0rem auto 5rem auto; }
  @media screen and (max-width: 740px) {
    #site .archive_image_container {
      width: 90%;
      margin: 2rem auto 0 auto; } }
  #site .archive_image_container img {
    display: block;
    width: 100%; }
  #site .archive_image_container p {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    /*background-color: #ff0;*/
    width: 100%;
    text-align: center;
    font-family: 'Titillium Web', sans-serif;
    font-size: 0.7rem; }

@media screen and (max-width: 740px) {
  #site.writing {
    padding-top: 0; } }
#site #writing_heading {
  display: inline-block;
  margin-left: 1rem;
  font-family: 'Sacramento', cursive;
  background-color: #ff0;
  letter-spacing: 0.3em;
  font-size: 1.2rem;
  line-height: 1.1em; }
  @media screen and (max-width: 740px) {
    #site #writing_heading {
      width: 100%;
      margin-left: 0;
      padding-top: 0.3rem;
      text-align: center; } }
#site #back_to_home {
  margin-left: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.7rem; }
  @media screen and (max-width: 740px) {
    #site #back_to_home {
      margin-top: 0.7rem;
      width: 100%;
      text-align: center;
      margin-left: 0; } }
  #site #back_to_home a {
    color: #00f;
    text-decoration: underline; }
    #site #back_to_home a:hover {
      cursor: url(../image/link.png) 35 35, pointer; }
      @media screen and (max-width: 740px) {
        #site #back_to_home a:hover {
          cursor: pointer; } }
#site.writing .text {
  display: block;
  width: auto;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.7rem;
  line-height: 1.2em; }
  @media screen and (max-width: 740px) {
    #site.writing .text {
      width: 90%;
      margin: 1rem 0;
      margin-left: 5%; } }
  #site.writing .text p {
    margin: 1rem 0 1rem 1rem;
    width: 22rem; }
    @media screen and (max-width: 740px) {
      #site.writing .text p {
        width: 100%;
        margin-left: 0; } }
  #site.writing .text figure {
    margin-left: 10%;
    width: 35%;
    transition: width ease 0.3s; }
    @media screen and (max-width: 740px) {
      #site.writing .text figure {
        width: 100%;
        margin-left: 0; } }
    #site.writing .text figure:hover {
      cursor: url(../images/zoom.png) 35 35, pointer; }
      @media screen and (max-width: 740px) {
        #site.writing .text figure:hover {
          cursor: pointer; } }
    #site.writing .text figure.huge {
      width: 80%; }
      @media screen and (max-width: 740px) {
        #site.writing .text figure.huge {
          width: 100%; } }
      #site.writing .text figure.huge:hover {
        cursor: url(../images/close.png) 35 35, pointer; }
        @media screen and (max-width: 740px) {
          #site.writing .text figure.huge:hover {
            cursor: pointer; } }
    #site.writing .text figure img {
      width: 100%; }
#site .writing_text_block {
  display: block;
  margin: 2rem 0 2rem 1rem;
  width: 22rem;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.7rem;
  line-height: 1.2em; }
  @media screen and (max-width: 740px) {
    #site .writing_text_block {
      width: 90%;
      margin: 1rem 0;
      margin-left: 5%; } }
#site .writing_image_wrap {
  margin-left: 10%;
  width: 35%;
  transition: width ease 0.3s; }
  @media screen and (max-width: 740px) {
    #site .writing_image_wrap {
      width: 90%;
      margin-left: 5%; } }
  #site .writing_image_wrap:hover {
    cursor: url(../image/zoom.png) 35 35, pointer; }
    @media screen and (max-width: 740px) {
      #site .writing_image_wrap:hover {
        cursor: pointer; } }
  #site .writing_image_wrap.huge {
    width: 90%; }
    #site .writing_image_wrap.huge:hover {
      cursor: url(../image/close.png) 35 35, pointer; }
      @media screen and (max-width: 740px) {
        #site .writing_image_wrap.huge:hover {
          cursor: pointer; } }
  #site .writing_image_wrap img {
    width: 100%; }

/*# sourceMappingURL=main.css.map */
