@charset "UTF-8";
@import "normalize.css";
/*********************
Clearfix
*********************/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*********************
Tools
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.left {
  float: left;
}
.right {
  float: right;
}
/*********************
Colours
*********************/
/*********************
Typography
*********************/
@font-face {
  font-family: 'AvenirBook';
  src: url('../fonts/AvenirLTStd-Book.eot?');
  src: local('☺'), url('../fonts/AvenirLTStd-Book.woff') format('woff'), url('../fonts/AvenirLTStd-Book.ttf') format('truetype'), url('../fonts/AvenirLTStd-Book.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ArcherSemibold';
  src: url('../fonts/Archer-Semibold.eot?');
  src: local('☺'), url('../fonts/Archer-Semibold.woff') format('woff'), url('../fonts/Archer-Semibold.ttf') format('truetype'), url('../fonts/Archer-Semibold.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Entypo';
  src: url('../fonts/entypo.eot?');
  src: local('☺'), url('../fonts/entypo.woff') format('woff'), url('../fonts/entypo.ttf') format('truetype'), url('../fonts/entypo.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
/*********************
Border Radius
*********************/
/* USAGE: .border-radius(4px); */
/*********************
Transition
*********************/
/* USAGE: .transition(all,2s); */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
/*********************
General
*********************/
body {
  -webkit-backface-visibility: hidden;
  background-color: #FCF9F3;
  font: normal 18px/120% "AvenirBook", sans-serif;
  color: #565656;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
/*********************
Layout & Grid
*********************/
.wrap {
  width: 1140px;
  margin: 0 auto;
  padding: 0 11.5px;
}
nav,
#content,
footer {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
nav.fade,
#content.fade,
footer.fade {
  -webkit-transition: 0.75s 0.2s ease-in-out;
  -moz-transition: 0.75s 0.2s ease-in-out;
  -ms-transition: 0.75s 0.2s ease-in-out;
  -o-transition: 0.75s 0.2s ease-in-out;
  transition: 0.75s 0.2s ease-in-out;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#timeline,
#location-info,
#people-involved,
#rsvp {
  clear: both;
}
/*********************
Links
*********************/
a,
a:visited {
  text-decoration: underline;
  color: #555555;
  border: none;
  border-width: 0;
  /* Mobile Tap Colour */
}
a:hover,
a:visited:hover,
a:focus,
a:visited:focus {
  color: #7eb383;
}
a:link,
a:visited:link {
  -webkit-tap-highlight-color: rgba(206, 226, 208, 0.3);
}
/******************************************************************
Typography
******************************************************************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-family: "AvenirBook", sans-serif;
  text-rendering: optimizelegibility;
  font-weight: 500;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
}
h1,
.h1 {
  font-size: 2.5em;
  line-height: 1.333em;
}
h2,
.h2 {
  font-family: "ArcherSemibold", serif;
  color: #FFA8AE;
  text-align: center;
  margin: 0 0 0 0;
  font-size: 40px;
}
h2 span.icon,
.h2 span.icon {
  font-family: "Entypo";
  font-size: 40px;
  display: inline-block;
  line-height: 30%;
}
h3,
.h3 {
  font-size: 40px;
  margin: 37px 0 18px 0;
  color: #FFA8AE;
}
p {
  margin: 29px 0 0 0;
  padding: 0 0 0 0;
  line-height: 25px;
}
span.icon {
  font-family: "Entypo";
}
/*********************
Header
*********************/
.header {
  padding: 0 0 69px 0;
}
.header img.bunting {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  display: block;
  margin: 0 auto;
}
.header #logo img {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  display: block;
  margin: 66px auto 38px;
  border: none;
}
/*********************
Navigation
*********************/
nav {
  display: block;
  margin: 0 auto !important;
  float: none !important;
}
nav .nav {
  display: table;
  width: 100%;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
nav .nav li {
  display: table-cell;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style-type: none;
  text-align: center;
}
nav .nav li.active a {
  color: #FFA8AE;
}
nav .nav li.active span.icon {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
nav .nav li.active span {
  border-color: #FFA8AE;
}
nav .nav li a {
  font-family: "ArcherSemibold", serif;
  font-size: 29px;
  text-decoration: none;
  display: block;
  color: #8C9487;
}
nav .nav li a span.icon {
  display: inline-block;
  margin-top: 5px;
  border-bottom: none;
  font-size: 55px;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  vertical-align: -4px;
}
nav .nav li a span {
  border-bottom: dashed 2px #8C9487;
}
nav .nav li a:hover {
  color: #FFA8AE;
}
nav .nav li a:hover span.icon {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
nav .nav li a:hover span {
  border-color: #FFA8AE;
}
nav .nav li a:focus {
  outline: none;
}
/*********************
Footer
*********************/
.footer {
  margin-bottom: 50px;
  clear: both;
  font-family: "ArcherSemibold", serif;
  text-align: center;
}
.footer p {
  line-height: 35px;
}
.footer a {
  text-decoration: none;
}
.footer span.icon {
  color: #FFA8AE;
  font-size: 48px;
  display: inline-block;
  line-height: 30%;
  vertical-align: -6px;
}
/*********************
Page Specific Styles
*********************/
#timeline {
  padding: 0 0 108px 72px;
}
#timeline .wrap.elevencol {
  background-image: url('../images/timeline-bg.png');
  background-repeat: repeat-y;
  background-position: 1% top;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
  #timeline .wrap.elevencol {
    background-image: url('../images/timeline-bg@2x.png');
    background-size: 321px 12px;
  }
}
#timeline .event {
  padding-bottom: 33px;
}
#timeline .event:last-child {
  padding-bottom: 0;
}
#timeline .event .event-images {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  float: left;
  background-image: url('../images/image-bg.png');
  background-repeat: no-repeat;
  padding: 32px 30px 29px 31px;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
  #timeline .event .event-images {
    background-image: url('../images/image-bg@2x.png');
    background-size: 321px 266px;
  }
}
#timeline .event .event-images img {
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  border: none;
  max-width: 262px;
  height: 200px;
}
#timeline .event .event-images:hover {
  transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  /* IE 9 */
  -webkit-transform: rotate(-5deg);
  /* Opera, Chrome, and Safari */
}
#timeline .event .event-text {
  float: left;
  width: 550px;
  padding: 0 0 0 32px;
}
#timeline .event .event-text span {
  color: #8C9487;
}
#timeline .event .event-text img {
  position: absolute;
  left: 4px;
  bottom: -55px;
}
#location-info {
  padding: 0 0 138px 0;
}
#location-info #emj-map {
  margin: 50px 0 70px;
}
#location-info .row {
  margin-bottom: 50px;
}
#location-info .row .info-box h3 {
  font-size: 27px;
  margin: 0 0 0 0;
}
#location-info .row .info-box h3 span.icon {
  display: inline-block;
  margin-top: -5px;
  font-size: 28px;
}
#people-involved {
  padding: 0 0 133px 0;
}
#people-involved h2 span.icon {
  font-family: "Entypo";
  line-height: 40%;
}
#people-involved .row {
  padding-top: 50px;
}
#people-involved .row .person {
  text-align: center;
  width: 170px;
}
#people-involved .row .person img {
  margin: 0 0 0 0;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  padding: 5px;
  border: dashed 2px;
}
#people-involved .row .person h3 {
  font-size: 27px;
  margin: 23px 0 6px 0;
}
#people-involved .row .person.female img {
  border-color: #FFA8AE;
}
#people-involved .row .person.female span {
  color: #FFA8AE;
}
#people-involved .row .person.male img {
  border-color: #8C9487;
}
#people-involved .row .person.male h3,
#people-involved .row .person.male span {
  color: #8C9487;
}
#rsvp {
  padding: 0 0 121px 0;
}
#rsvp .row {
  margin-top: 50px;
}
#rsvp #date {
  margin-top: 90px;
}
#rsvp #form {
  float: left;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: dashed 2px #CEE2D0;
  padding: 41px 45px;
}
#rsvp #form ul {
  list-style-type: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  zoom: 1;
}
#rsvp #form ul:before,
#rsvp #form ul:after {
  content: "";
  display: table;
}
#rsvp #form ul:after {
  clear: both;
}
#rsvp #form ul li.gfield {
  list-style-type: none;
  margin: 0 0 33px 0;
  padding: 0 0 0 0;
  width: 47%;
}
#rsvp #form ul li.gfield.sixcol.first {
  clear: left;
}
#rsvp #form ul li.gfield.sixcol.last {
  clear: right;
}
#rsvp #form ul li.gfield.gform_validation_container {
  display: none;
}
#rsvp #form ul li.gfield label {
  padding-left: 2px;
  cursor: pointer;
}
#rsvp #form ul li.gfield label span.gfield_required {
  color: #FFA8AE;
  padding-left: 5px;
}
#rsvp #form ul li.gfield input {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #FEFDFD;
  border: 1px solid #e5e5e4;
  -moz-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
  width: 100%;
  margin: 5px 0;
  padding: 9px 5px 8px;
  font-size: 18px;
  color: #555555;
}
#rsvp #form ul li.gfield input:focus {
  outline: none;
}
#rsvp #form ul li.gfield .gfield_checkbox {
  margin-top: 5px;
}
#rsvp #form ul li.gfield input[type=checkbox].css-checkbox {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
#rsvp #form ul li.gfield input[type=checkbox].css-checkbox:checked + label.css-label {
  background-position: 0 -40px;
}
#rsvp #form ul li.gfield input[type=checkbox].css-checkbox + label.css-label {
  padding-top: 11px;
  padding-left: 60px;
  height: 40px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 0;
  vertical-align: middle;
  cursor: pointer;
}
#rsvp #form ul li.gfield .css-label {
  background-image: url('../images/checkbox.png');
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
  #rsvp #form ul li.gfield .css-label {
    background-image: url('../images/checkbox@2x.png');
    background-size: 40px auto;
  }
}
#rsvp #form ul li.gfield.gfield_html {
  color: #8C9487;
  line-height: 25px;
}
#rsvp #form ul li.gfield.gfield_html strong {
  font-weight: normal;
  color: #555;
}
#rsvp #form input[type=submit] {
  display: block;
  margin: 25px auto 0;
  background: #CEE2D0;
  border: solid 1px #A6C8A9;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
  color: #6D736A;
  font-family: "AvenirBook", sans-serif;
  font-size: 18px;
  padding: 9px 48px;
}
#rsvp #form input[type=submit]:hover {
  background: #bed9c1;
}
#rsvp #form input[type=submit]:focus {
  outline: none;
}
#rsvp #form input[type=submit]:active {
  -moz-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
  background: #b4d3b7;
}
#rsvp #form .validation_error {
  color: #FFA8AE;
  padding-bottom: 25px;
}
#rsvp #form .validation_message {
  color: #FFA8AE;
  padding-left: 3px;
  font-size: 16px;
}
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}
.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}
.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.fancybox-opened {
  z-index: 8030;
}
.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.fancybox-outer,
.fancybox-inner {
  position: relative;
}
.fancybox-inner {
  overflow: hidden;
}
.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}
.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}
.fancybox-image,
.fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}
#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url('../images/fancybox_sprite.png');
}
#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}
#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url('../images/fancybox_loading.gif') center center no-repeat;
}
.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}
.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url('../images/blank.gif');
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}
.fancybox-prev {
  left: 0;
}
.fancybox-next {
  right: 0;
}
.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}
.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}
.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}
.fancybox-nav:hover span {
  visibility: visible;
}
.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}
/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}
.fancybox-lock body {
  overflow: hidden !important;
}
.fancybox-lock-test {
  overflow-y: hidden !important;
}
.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url('../images/fancybox_overlay.png');
}
.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}
.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}
/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}
.fancybox-opened .fancybox-title {
  visibility: visible;
}
.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}
.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}
.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}
.fancybox-title-inside-wrap {
  padding-top: 10px;
}
.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}
/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading,
  .fancybox-close,
  .fancybox-prev span,
  .fancybox-next span {
    background-image: url('../images/fancybox_sprite@2x.png');
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
  #fancybox-loading div {
    background-image: url('../images/fancybox_loading@2x.gif');
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
.onecol {
  width: 72px;
}
.twocol {
  width: 167px;
}
.threecol {
  width: 262px;
}
.fourcol {
  width: 357px;
}
.fivecol {
  width: 452px;
}
.sixcol {
  width: 547px;
}
.sevencol {
  width: 642px;
}
.eightcol {
  width: 737px;
}
.ninecol {
  width: 832px;
}
.tencol {
  width: 927px;
}
.elevencol {
  width: 1022px;
}
.twelvecol {
  width: 1117px;
}
/* layout & column defaults */
.onecol,
.twocol,
.threecol,
.fourcol,
.fivecol,
.sixcol,
.sevencol,
.eightcol,
.ninecol,
.tencol,
.elevencol,
.twelvecol {
  position: relative;
  float: left;
  margin-left: 23px;
}
.first {
  margin-left: 0;
}
.last {
  float: right;
}
