/* =============================================================================
   HTML5 element display
   ========================================================================== */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block; }

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Force vertical scrollbar in non-IE
 * 3. Remove Android and iOS tap highlight color to prevent entire container being highlighted
 *    www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
 * 4. Prevent iOS text size adjust on device orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  margin: 0;
  font-size: 13px;
  line-height: 1.231; }

body, button, input, select, textarea {
  font-family: sans-serif;
  color: #222; }

/*
 * These selection declarations have to be separate
 * No text-shadow: twitter.com/miketaylr/status/12228805301
 * Also: hot pink!
 */
::-moz-selection {
  background: #50759B;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #50759B;
  color: #fff;
  text-shadow: none; }

/* =============================================================================
   Links
   ========================================================================== */
a {
  color: #00e; }

a:focus {
  outline: thin dotted; }

/* Improve readability when focused and hovered in all browsers: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
  outline: 0; }

/* =============================================================================
   Typography
   ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: bold; }

blockquote {
  margin: 1em 40px; }

dfn {
  font-style: italic; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

ins {
  background: #ff9;
  color: #000;
  text-decoration: none; }

mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold; }

/* Redeclare monospace font family: en.wikipedia.org/wiki/User:Davidgothberg/Test59 */
pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em; }

/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: none; }

q:before, q:after {
  content: "";
  content: none; }

small {
  font-size: 85%; }

/* Position subscript and superscript content without affecting line-height: gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* =============================================================================
   Lists
   ========================================================================== */
ul, ol {
  margin: 1em 0;
  padding: 0 0 0 40px; }

dd {
  margin: 0 0 0 40px; }

nav ul, nav ol {
  list-style: none;
  margin: 0;
  padding: 0; }

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * Improve image quality when scaled in IE7
 * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0;
  -ms-interpolation-mode: bicubic; }

/*
 * Correct overflow displayed oddly in IE9
 */
svg:not(:root) {
  overflow: hidden; }

/* =============================================================================
   Figures
   ========================================================================== */
figure {
  margin: 0; }

/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0; }

fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * 1. Correct color not inheriting in IE6/7/8/9
 * 2. Correct alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0; }

/* Indicate that 'label' will shift focus to the associated form element */
label {
  cursor: pointer; }

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */
button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle; }

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */
button, input {
  line-height: normal;
  *overflow: visible; }

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */
button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button; }

/*
 * Consistent box sizing and appearance
 */
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box; }

input[type="search"] {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

/*
 * Remove inner padding and border in FF3/4
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/* Remove default vertical scrollbar in IE6/7/8/9 */
textarea {
  overflow: auto;
  vertical-align: top; }

/* Colors for form validity */
input:invalid, textarea:invalid {
  background-color: #f0dddd; }

/* =============================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* =============================================================================
   Primary styles
   Author:
   ========================================================================== */
/* =============================================================================
   Non-semantic helper classes
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr; }

.ir br {
  display: none; }

/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
  display: none;
  visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden; }

/* Contain floats: nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1; }

/* =============================================================================
   PLACEHOLDER Media Queries for Responsive Design.
   These override the primary ('mobile first') styles
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 480px) {
  /* Style adjustments for viewports 480px and over go here */ }
@media only screen and (min-width: 768px) {
  /* Style adjustments for viewports 768px and over go here */ }
/* =============================================================================
   Print styles.
   Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }

  /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited {
    color: #444444 !important;
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: ""; }

  /* Don't show links for images, or javascript/internal links */
  pre, blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }

  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  h2, h3 {
    page-break-after: avoid; } }
body {
  font-family: "jubilat", "Helvetica Neue", Arial, Helvetica, sans-serif;
  color: #49616C;
  padding-top: 36px;
  -webkit-text-size-adjust: none;
  background: url("../images/bg.jpg") fixed center 0px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }

#nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  background: url("../images/white-trans.png");
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1); }
  #nav ul {
    list-style: none; }
    #nav ul li {
      display: inline-block;
      padding: 0 10px; }
      #nav ul li a i.caret {
        content: '';
        border: 4px solid transparent;
        border-bottom-color: #50759B;
        position: relative;
        top: 3px;
        margin-left: 5px; }

h1 {
  font-family: "pauline", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 3em;
  color: #698c9a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  margin-top: 50px; }
  h1 strong {
    display: block;
    font-size: 1.7em; }

a {
  color: #50759b;
  text-decoration: none; }
  a:hover {
    color: #7198c1; }

p {
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
  margin: 1em 0; }

.container {
  padding-bottom: 200px; }

#countdown {
  width: 889px;
  height: 333px;
  margin: -68px auto 30px;
  text-align: center;
  background: url("../images/countdown-scroll.png") no-repeat center top;
  font-family: "jubilat", "Helvetica Neue", Arial, Helvetica, sans-serif;
  position: relative; }
  #countdown h3 {
    padding: 120px 0 25px;
    font-family: "corner-store", "swingdancer", "Helvetica Neue", Arial, Helvetica, sans-serif;
    color: #fff;
    font-size: 6em;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 255, 255, 0.5); }
  #countdown p {
    font-size: 1.5em;
    font-weight: 600;
    color: #698c9a;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }
  #countdown #save-the-date {
    position: absolute;
    right: -20px;
    bottom: 0px;
    display: block;
    width: 141px;
    height: 142px;
    background: url("../images/save-the-date.png") no-repeat;
    text-indent: -100000em; }

#main-photo {
  width: 912px;
  height: 428px;
  background: url("../images/main-photo-scroll.png") no-repeat center top;
  margin: 0 auto;
  position: relative; }
  #main-photo .big-photo {
    margin: 50px 0 0;
    padding: 10px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); }
  #main-photo #need-a-hotel {
    display: block;
    position: absolute;
    top: 20px;
    left: 11px;
    width: 142px;
    height: 142px;
    background: url("../images/hotel-button.png") no-repeat;
    text-indent: -10000em; }

.section h2 {
  font-size: 6em;
  font-weight: 100;
  color: #fff;
  font-family: "pauline", "Helvetica Neue", Arial, Helvetica, sans-serif;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  margin: 70px 40px auto;
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.05) inset;
  padding: 10px 0 20px; }
.section p, .section ul {
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
  margin: 1em 50px;
  color: #49616C; }
  .section p .note, .section ul .note {
    color: #698c9a;
    font-weight: 300;
    font-size: 0.9em; }
    .section p .note em, .section ul .note em {
      font-style: normal; }
.section blockquote {
  font-family: "corner-store", "swingdancer", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 5em;
  border: 0;
  color: #364951;
  padding: 0;
  line-height: 1em;
  margin: 0 50px;
  text-shadow: 0 0 5px white; }

#the-engagement {
  padding-top: 95px;
  background: url("../images/engagement-bg.png") no-repeat top center; }
  #the-engagement h2 {
    margin-top: auto; }

#the-wedding-party .pull-left, #the-wedding-party .pull-right {
  padding: 0 40px;
  margin-top: 35px; }
  #the-wedding-party .pull-left ul, #the-wedding-party .pull-right ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    #the-wedding-party .pull-left ul li, #the-wedding-party .pull-right ul li {
      margin: 0 0 5px;
      padding: 0;
      width: 120px; }
      #the-wedding-party .pull-left ul li.best-man, #the-wedding-party .pull-left ul li.moh, #the-wedding-party .pull-right ul li.best-man, #the-wedding-party .pull-right ul li.moh {
        background: url("../images/star.png") no-repeat left center; }
      #the-wedding-party .pull-left ul li.best-man, #the-wedding-party .pull-right ul li.best-man {
        background-position: right center; }
#the-wedding-party .pull-left {
  width: 389px; }
  #the-wedding-party .pull-left ul {
    text-align: right; }
    #the-wedding-party .pull-left ul li {
      float: right;
      clear: both; }
#the-wedding-party .pull-right {
  text-align: left;
  width: 390px;
  border-left: 1px solid white;
  box-shadow: -1px 0 0 rgba(0, 0, 0, 0.05); }
#the-wedding-party p {
  margin-top: 25px;
  font-size: 14px;
  text-align: center;
  color: #749AAD; }
  #the-wedding-party p .star {
    position: relative;
    top: -2px; }

#ceremony-and-reception .part {
  padding: 25px;
  margin: 0 80px; }
  #ceremony-and-reception .part address {
    text-align: left;
    font-size: 1.3em; }
    #ceremony-and-reception .part address h5 {
      font-size: 1.1em; }
  #ceremony-and-reception .part .map {
    margin-left: 110px;
    margin-right: 25px;
    float: left;
    padding: 5px;
    background: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    display: inline-block; }
  #ceremony-and-reception .part .directions {
    font-size: 14px; }
#ceremony-and-reception .ceremony {
  border-bottom: 1px solid white;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05) inset; }

#gift-registries ul {
  list-style: none;
  text-align: center; }
  #gift-registries ul li {
    display: inline-block;
    text-align: left;
    padding: 0 5px; }
    #gift-registries ul li a {
      display: block;
      width: 96px;
      height: 96px;
      text-indent: -10000em;
      background-repeat: no-repeat;
      background-position: center center;
      padding: 5px;
      background-color: #fff;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); }
    #gift-registries ul li.bed-bath-and-beyond a {
      background-image: url(../images/bedbathandbeyond.jpg); }
    #gift-registries ul li.macys a {
      background-image: url(../images/macys.jpg); }
    #gift-registries ul li.sears a {
      background-image: url(../images/sears.jpg); }
    #gift-registries ul li.honeymoon a {
      background-image: url(../images/contribute-to-honeymoon.png); }

#hotel-information p a {
  text-decoration: underline; }
#hotel-information img.hotel {
  padding: 5px;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  display: inline-block;
  float: right;
  margin: 25px 0 15px 10px; }

.wf-cornerstore-n4-active #the-engagement blockquote {
  margin: 0; }

.clear {
  clear: both; }
