@charset "utf-8";
/* CSS Document */


@font-face {
    font-family: 'short_stackregular';
    src: url(../fonts/shortstack-regular-webfont.woff2) format('woff2'),
         url(../fonts/shortstack-regular-webfont.woff) format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'architects_daughterregular';
    src: url(../fonts/architectsdaughter-webfont.woff2) format('woff2'),
         url(../fonts/architectsdaughter-webfont.woff) format('woff');
    font-weight: normal;
    font-style: normal;

}


.aboutbk {
  background: url(../images/aboutbk.png);
  
  background-repeat: repeat;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  -webkit-animation-name: fade-in;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;  
}

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }





blockquote {

    font-family: architects_daughterregular, serif;
    font-size: 20px;
    text-align: left;
    position: relative;
    margin: 1em;
    padding: 0.5em 2em 0.5em 3em;
}

/* Thanks: http://callmenick.com/post/styling-blockquotes-with-css-pseudo-classes */
blockquote:before {

    font-family: Georgia, serif;
    position: absolute;
    font-size: 9em;
	color: rgba(160, 207, 235, 0.5);
    line-height: 0.5;
    top: 0;
    left: 0;
    content: "\201C";
}

blockquote:after {
    font-family: Georgia, serif;
	color: rgba(160, 207, 235, 0.5);
    position: absolute;
   /* display: block; don't use this, it raised the quote too high from the bottom - defeated line-height? */
    float:right;
    font-size:6em;
    line-height: 1;
    right:0;
    bottom:-0.5em;
    content: "\201D";
}

blockquote footer {
    padding: 0 2em 0 0;
    text-align:right;
}

blockquote cite:before {
    content: "\2013";
}





#abt-2 {
    animation-delay: 0s;
    animation: fadein 3s;
    -moz-animation: fadein 3s; /* Firefox */
    -webkit-animation: fadein 3s; /* Safari and Chrome */
    -o-animation: fadein 3s; /* Opera */
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}




#abt-1 {

  animation-name: slideDown;
  -webkit-animation-name: slideDown;  

  animation-duration: 2s; 
  -webkit-animation-duration: 2s;

  animation-timing-function: ease;  
  -webkit-animation-timing-function: ease;  

  visibility: visible !important;   
 }



@keyframes slideDown {

  0%   { opacity: 0; }
  100% { opacity: 1; }

@-webkit-keyframes slideDown {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes slideDown {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes slideDown {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes slideDown {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}


  0% {
    transform: translateY(-50%);
  }
 
   100% {
    transform: translateY(0%);
  }   
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-50%);
  }
   
  100% {
    -webkit-transform: translateY(0%);
  } 
}

@-moz-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-50%);
  }
   
  100% {
    -webkit-transform: translateY(0%);
  } 
}

@-o-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-50%);
  }
   
  100% {
    -webkit-transform: translateY(0%);
  } 
}