@charset "UTF-8";
/*------------------------------------*\
    $ COLORS
\*------------------------------------*/
/*------------------------------------*\
    $ TEMPATE COLORS
\*------------------------------------*/
/*------------------------------------*\
    $ TEMPLATE SETTINGS
\*------------------------------------*/
/*------------------------------------*\
    $ FONTS
\*------------------------------------*/
/*------------------------------------*\
    $ CSS WIZARDY-GRIDS
\*------------------------------------*/
/*------------------------------------*\
    $CSSWIZARDRY-GRIDS
\*------------------------------------*/
/**
 * CONTENTS
 * INTRODUCTION.........How the grid system works.
 * VARIABLES............Your settings.
 * MIXINS...............Library mixins.
 * GRID SETUP...........Build the grid structure.
 * WIDTHS...............Build our responsive widths around our breakpoints.
 * PUSH.................Push classes.
 * PULL.................Pull classes.
 */
/*------------------------------------*\
    $INTRODUCTION
\*------------------------------------*/
/**
 * csswizardry grids provides you with widths to suit a number of breakpoints
 * designed around devices of a size you specify. Out of the box, csswizardry
 * grids caters to the following types of device:
 *
 * palm     --  palm-based devices, like phones and small tablets
 * lap      --  lap-based devices, like iPads or laptops
 * portable --  all of the above
 * desk     --  stationary devices, like desktop computers
 * regular  --  any/all types of device
 *
 * These namespaces are then used in the library to give you the ability to
 * manipulate your layouts based around them, for example:
 *
   <div class="grid__item  one-whole  lap--one-half  desk--one-third">
 *
 * This would give you a grid item which is 100% width unless it is on a lap
 * device, at which point it become 50% wide, or it is on a desktop device, at
 * which point it becomes 33.333% width.
 *
 * csswizardry grids also has push and pull classes which allow you to nudge
 * grid items left and right by a defined amount. These follow the same naming
 * convention as above, but are prepended by either `push--` or `pull--`, for
 * example:
 *
   `class="grid__item  one-half  push--one-half"`
 *
 * This would give you a grid item which is 50% width and pushed over to the
 * right by 50%.
 *
 * All classes in csswizardry grids follow this patten, so you should fairly
 * quickly be able to piece together any combinations you can imagine, for
 * example:
 *
   `class="grid__item  one-whole  lap--one-half  desk--one-third  push--desk--one-third"`
 *
   `class="grid__item  one-quarter  palm--one-half  push--palm--one-half"`
 *
   `class="grid__item  palm--one-third  desk--five-twelfths"`
 */
/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/**
 * If you are building a non-responsive site but would still like to use
 * csswizardry-grids, set this to ‘false’:
 */
/**
 * If you want to use print as mediaquery
 */
/**
 * If you want to be able to use the grid to hide elements
 */
/**
 * Is this build mobile first? Setting to ‘true’ means that all grids will be
 * 100% width if you do not apply a more specific class to them.
 */
/**
 * Set the spacing between your grid items.
 */
/**
 * Would you like Sass’ silent classes, or regular CSS classes?
 */
/**
 * Would you like push and pull classes enabled?
 */
/**
 * Using `inline-block` means that the grid items need their whitespace removing
 * in order for them to work correctly. Set the following to true if you are
 * going to achieve this by manually removing/commenting out any whitespace in
 * your HTML yourself.
 *
 * Setting this to false invokes a hack which cannot always be guaranteed,
 * please see the following for more detail:
 *
 * github.com/csswizardry/csswizardry-grids/commit/744d4b23c9d2b77d605b5991e54a397df72e0688
 * github.com/csswizardry/inuit.css/issues/170#issuecomment-14859371
 */
/**
 * Define your breakpoints. The first value is the prefix that shall be used for
 * your classes (e.g. `.palm--one-half`), the second value is the media query
 * that the breakpoint fires at.
 */
/**
 * Define which namespaced breakpoints you would like to generate for each of
 * widths, push and pull. This is handy if you only need pull on, say, desk, or
 * you only need a new width breakpoint at mobile sizes. It allows you to only
 * compile as much CSS as you need. All are turned on by default, but you can
 * add and remove breakpoints at will.
 *
 * Push and pull shall only be used if `$push` and/or `$pull` and `$responsive`
 * have been set to ‘true’.
 */
/**
 * You do not need to edit anything from this line onward; csswizardry-grids is
 * good to go. Happy griddin’!
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/**
 * These mixins are for the library to use only, you should not need to modify
 * them at all.
 *
 * Enclose a block of code with a media query as named in `$breakpoints`.
 */
/**
 * Drop relative positioning into silent classes which can’t take advantage of
 * the `[class*="push--"]` and `[class*="pull--"]` selectors.
 */
/*------------------------------------*\
    $GRID SETUP
\*------------------------------------*/
/**
 * 1. Allow the grid system to be used on lists.
 * 2. Remove any margins and paddings that might affect the grid system.
 * 3. Apply a negative `margin-left` to negate the columns’ gutters.
 */
.grid {
  list-style: none;
  margin: 0;
  /* [1] */
  padding: 0;
  /* [2] */
  margin-left: -24px;
  /* [2] */
}
/**
     * 1. Cause columns to stack side-by-side.
     * 2. Space columns apart.
     * 3. Align columns to the tops of each other.
     * 4. Full-width unless told to behave otherwise.
     * 5. Required to combine fluid widths and fixed gutters.
     */
.grid__item {
  display: inline-block;
  padding-left: 24px;
  /* [1] */
  vertical-align: top;
  /* [2] */
  /* [3] */
  width: 100%;
  /* [4] */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* [5] */
  box-sizing: border-box;
  /* [5] */
}
/**
 * Reversed grids allow you to structure your source in the opposite order to
 * how your rendered layout will appear. Extends `.grid`.
 */
.grid--rev {
  direction: rtl;
  text-align: left;
}
.grid--rev > .grid__item {
  direction: ltr;
  text-align: left;
}
/**
 * Gutterless grids have all the properties of regular grids, minus any spacing.
 * Extends `.grid`.
 */
.grid--full {
  margin-left: 0;
}
.grid--full > .grid__item {
  padding-left: 0;
}
/**
 * Align the entire grid to the right. Extends `.grid`.
 */
.grid--right {
  text-align: right;
}
.grid--right > .grid__item {
  text-align: left;
}
/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */
.grid--center {
  text-align: center;
}
.grid--center > .grid__item {
  text-align: left;
}
/**
 * Align grid cells vertically (`.grid--middle` or `.grid--bottom`). Extends
 * `.grid`.
 */
.grid--middle > .grid__item {
  vertical-align: middle;
}
.grid--bottom > .grid__item {
  vertical-align: bottom;
}
/**
 * Create grids with narrower gutters. Extends `.grid`.
 */
.grid--narrow {
  margin-left: -12px;
}
.grid--narrow > .grid__item {
  padding-left: 12px;
}
/**
 * Create grids with wider gutters. Extends `.grid`.
 */
.grid--wide {
  margin-left: -48px;
}
.grid--wide > .grid__item {
  padding-left: 48px;
}
/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Create our width classes, prefixed by the specified namespace.
 */
/**
 * Our regular, non-responsive width classes.
 */
/**
     * Hide
     */
.hide {
  display: none !important;
}
/**
     * Whole
     */
.one-whole {
  width: 100%;
}
/**
     * Halves
     */
.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50%;
}
/**
     * Thirds
     */
.one-third, .two-sixths, .four-twelfths {
  width: 33.333%;
}
.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666%;
}
/**
     * Quarters
     */
.one-quarter, .two-eighths, .three-twelfths {
  width: 25%;
}
.three-quarters, .six-eighths, .nine-twelfths {
  width: 75%;
}
/**
     * Fifths
     */
.one-fifth, .two-tenths {
  width: 20%;
}
.two-fifths, .four-tenths {
  width: 40%;
}
.three-fifths, .six-tenths {
  width: 60%;
}
.four-fifths, .eight-tenths {
  width: 80%;
}
/**
     * Sixths
     */
.one-sixth, .two-twelfths {
  width: 16.666%;
}
.five-sixths, .ten-twelfths {
  width: 83.333%;
}
/**
     * Eighths
     */
.one-eighth {
  width: 12.5%;
}
.three-eighths {
  width: 37.5%;
}
.five-eighths {
  width: 62.5%;
}
.seven-eighths {
  width: 87.5%;
}
/**
     * Tenths
     */
.one-tenth {
  width: 10%;
}
.three-tenths {
  width: 30%;
}
.seven-tenths {
  width: 70%;
}
.nine-tenths {
  width: 90%;
}
/**
     * Twelfths
     */
.one-twelfth {
  width: 8.333%;
}
.five-twelfths {
  width: 41.666%;
}
.seven-twelfths {
  width: 58.333%;
}
.eleven-twelfths {
  width: 91.666%;
}
/**
 * Our responsive classes, if we have enabled them.
 */
@media only screen and (max-width: 29.9375em) {
  /**
     * Hide
     */
  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
  .less-mobile--hide {
    display: none !important;
  }
  .less-mobile--one-whole {
    width: 100%;
  }
  .less-mobile--one-half, .less-mobile--two-quarters, .less-mobile--three-sixths, .less-mobile--four-eighths, .less-mobile--five-tenths, .less-mobile--six-twelfths {
    width: 50%;
  }
  .less-mobile--one-third, .less-mobile--two-sixths, .less-mobile--four-twelfths {
    width: 33.333%;
  }
  .less-mobile--two-thirds, .less-mobile--four-sixths, .less-mobile--eight-twelfths {
    width: 66.666%;
  }
  .less-mobile--one-quarter, .less-mobile--two-eighths, .less-mobile--three-twelfths {
    width: 25%;
  }
  .less-mobile--three-quarters, .less-mobile--six-eighths, .less-mobile--nine-twelfths {
    width: 75%;
  }
  .less-mobile--one-fifth, .less-mobile--two-tenths {
    width: 20%;
  }
  .less-mobile--two-fifths, .less-mobile--four-tenths {
    width: 40%;
  }
  .less-mobile--three-fifths, .less-mobile--six-tenths {
    width: 60%;
  }
  .less-mobile--four-fifths, .less-mobile--eight-tenths {
    width: 80%;
  }
  .less-mobile--one-sixth, .less-mobile--two-twelfths {
    width: 16.666%;
  }
  .less-mobile--five-sixths, .less-mobile--ten-twelfths {
    width: 83.333%;
  }
  .less-mobile--one-eighth {
    width: 12.5%;
  }
  .less-mobile--three-eighths {
    width: 37.5%;
  }
  .less-mobile--five-eighths {
    width: 62.5%;
  }
  .less-mobile--seven-eighths {
    width: 87.5%;
  }
  .less-mobile--one-tenth {
    width: 10%;
  }
  .less-mobile--three-tenths {
    width: 30%;
  }
  .less-mobile--seven-tenths {
    width: 70%;
  }
  .less-mobile--nine-tenths {
    width: 90%;
  }
  .less-mobile--one-twelfth {
    width: 8.333%;
  }
  .less-mobile--five-twelfths {
    width: 41.666%;
  }
  .less-mobile--seven-twelfths {
    width: 58.333%;
  }
  .less-mobile--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (max-width: 47.9375em) {
  /**
     * Hide
     */
  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
  .less-tablet--hide {
    display: none !important;
  }
  .less-tablet--one-whole {
    width: 100%;
  }
  .less-tablet--one-half, .less-tablet--two-quarters, .less-tablet--three-sixths, .less-tablet--four-eighths, .less-tablet--five-tenths, .less-tablet--six-twelfths {
    width: 50%;
  }
  .less-tablet--one-third, .less-tablet--two-sixths, .less-tablet--four-twelfths {
    width: 33.333%;
  }
  .less-tablet--two-thirds, .less-tablet--four-sixths, .less-tablet--eight-twelfths {
    width: 66.666%;
  }
  .less-tablet--one-quarter, .less-tablet--two-eighths, .less-tablet--three-twelfths {
    width: 25%;
  }
  .less-tablet--three-quarters, .less-tablet--six-eighths, .less-tablet--nine-twelfths {
    width: 75%;
  }
  .less-tablet--one-fifth, .less-tablet--two-tenths {
    width: 20%;
  }
  .less-tablet--two-fifths, .less-tablet--four-tenths {
    width: 40%;
  }
  .less-tablet--three-fifths, .less-tablet--six-tenths {
    width: 60%;
  }
  .less-tablet--four-fifths, .less-tablet--eight-tenths {
    width: 80%;
  }
  .less-tablet--one-sixth, .less-tablet--two-twelfths {
    width: 16.666%;
  }
  .less-tablet--five-sixths, .less-tablet--ten-twelfths {
    width: 83.333%;
  }
  .less-tablet--one-eighth {
    width: 12.5%;
  }
  .less-tablet--three-eighths {
    width: 37.5%;
  }
  .less-tablet--five-eighths {
    width: 62.5%;
  }
  .less-tablet--seven-eighths {
    width: 87.5%;
  }
  .less-tablet--one-tenth {
    width: 10%;
  }
  .less-tablet--three-tenths {
    width: 30%;
  }
  .less-tablet--seven-tenths {
    width: 70%;
  }
  .less-tablet--nine-tenths {
    width: 90%;
  }
  .less-tablet--one-twelfth {
    width: 8.333%;
  }
  .less-tablet--five-twelfths {
    width: 41.666%;
  }
  .less-tablet--seven-twelfths {
    width: 58.333%;
  }
  .less-tablet--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 30em) {
  /**
     * Hide
     */
  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
  .mobile--hide {
    display: none !important;
  }
  .mobile--one-whole {
    width: 100%;
  }
  .mobile--one-half, .mobile--two-quarters, .mobile--three-sixths, .mobile--four-eighths, .mobile--five-tenths, .mobile--six-twelfths {
    width: 50%;
  }
  .mobile--one-third, .mobile--two-sixths, .mobile--four-twelfths {
    width: 33.333%;
  }
  .mobile--two-thirds, .mobile--four-sixths, .mobile--eight-twelfths {
    width: 66.666%;
  }
  .mobile--one-quarter, .mobile--two-eighths, .mobile--three-twelfths {
    width: 25%;
  }
  .mobile--three-quarters, .mobile--six-eighths, .mobile--nine-twelfths {
    width: 75%;
  }
  .mobile--one-fifth, .mobile--two-tenths {
    width: 20%;
  }
  .mobile--two-fifths, .mobile--four-tenths {
    width: 40%;
  }
  .mobile--three-fifths, .mobile--six-tenths {
    width: 60%;
  }
  .mobile--four-fifths, .mobile--eight-tenths {
    width: 80%;
  }
  .mobile--one-sixth, .mobile--two-twelfths {
    width: 16.666%;
  }
  .mobile--five-sixths, .mobile--ten-twelfths {
    width: 83.333%;
  }
  .mobile--one-eighth {
    width: 12.5%;
  }
  .mobile--three-eighths {
    width: 37.5%;
  }
  .mobile--five-eighths {
    width: 62.5%;
  }
  .mobile--seven-eighths {
    width: 87.5%;
  }
  .mobile--one-tenth {
    width: 10%;
  }
  .mobile--three-tenths {
    width: 30%;
  }
  .mobile--seven-tenths {
    width: 70%;
  }
  .mobile--nine-tenths {
    width: 90%;
  }
  .mobile--one-twelfth {
    width: 8.333%;
  }
  .mobile--five-twelfths {
    width: 41.666%;
  }
  .mobile--seven-twelfths {
    width: 58.333%;
  }
  .mobile--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 48em) {
  /**
     * Hide
     */
  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
  .tablet--hide {
    display: none !important;
  }
  .tablet--one-whole {
    width: 100%;
  }
  .tablet--one-half, .tablet--two-quarters, .tablet--three-sixths, .tablet--four-eighths, .tablet--five-tenths, .tablet--six-twelfths {
    width: 50%;
  }
  .tablet--one-third, .tablet--two-sixths, .tablet--four-twelfths {
    width: 33.333%;
  }
  .tablet--two-thirds, .tablet--four-sixths, .tablet--eight-twelfths {
    width: 66.666%;
  }
  .tablet--one-quarter, .tablet--two-eighths, .tablet--three-twelfths {
    width: 25%;
  }
  .tablet--three-quarters, .tablet--six-eighths, .tablet--nine-twelfths {
    width: 75%;
  }
  .tablet--one-fifth, .tablet--two-tenths {
    width: 20%;
  }
  .tablet--two-fifths, .tablet--four-tenths {
    width: 40%;
  }
  .tablet--three-fifths, .tablet--six-tenths {
    width: 60%;
  }
  .tablet--four-fifths, .tablet--eight-tenths {
    width: 80%;
  }
  .tablet--one-sixth, .tablet--two-twelfths {
    width: 16.666%;
  }
  .tablet--five-sixths, .tablet--ten-twelfths {
    width: 83.333%;
  }
  .tablet--one-eighth {
    width: 12.5%;
  }
  .tablet--three-eighths {
    width: 37.5%;
  }
  .tablet--five-eighths {
    width: 62.5%;
  }
  .tablet--seven-eighths {
    width: 87.5%;
  }
  .tablet--one-tenth {
    width: 10%;
  }
  .tablet--three-tenths {
    width: 30%;
  }
  .tablet--seven-tenths {
    width: 70%;
  }
  .tablet--nine-tenths {
    width: 90%;
  }
  .tablet--one-twelfth {
    width: 8.333%;
  }
  .tablet--five-twelfths {
    width: 41.666%;
  }
  .tablet--seven-twelfths {
    width: 58.333%;
  }
  .tablet--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (max-width: 53.0625em) {
  /**
     * Hide
     */
  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
  .less-desktop--hide {
    display: none !important;
  }
  .less-desktop--one-whole {
    width: 100%;
  }
  .less-desktop--one-half, .less-desktop--two-quarters, .less-desktop--three-sixths, .less-desktop--four-eighths, .less-desktop--five-tenths, .less-desktop--six-twelfths {
    width: 50%;
  }
  .less-desktop--one-third, .less-desktop--two-sixths, .less-desktop--four-twelfths {
    width: 33.333%;
  }
  .less-desktop--two-thirds, .less-desktop--four-sixths, .less-desktop--eight-twelfths {
    width: 66.666%;
  }
  .less-desktop--one-quarter, .less-desktop--two-eighths, .less-desktop--three-twelfths {
    width: 25%;
  }
  .less-desktop--three-quarters, .less-desktop--six-eighths, .less-desktop--nine-twelfths {
    width: 75%;
  }
  .less-desktop--one-fifth, .less-desktop--two-tenths {
    width: 20%;
  }
  .less-desktop--two-fifths, .less-desktop--four-tenths {
    width: 40%;
  }
  .less-desktop--three-fifths, .less-desktop--six-tenths {
    width: 60%;
  }
  .less-desktop--four-fifths, .less-desktop--eight-tenths {
    width: 80%;
  }
  .less-desktop--one-sixth, .less-desktop--two-twelfths {
    width: 16.666%;
  }
  .less-desktop--five-sixths, .less-desktop--ten-twelfths {
    width: 83.333%;
  }
  .less-desktop--one-eighth {
    width: 12.5%;
  }
  .less-desktop--three-eighths {
    width: 37.5%;
  }
  .less-desktop--five-eighths {
    width: 62.5%;
  }
  .less-desktop--seven-eighths {
    width: 87.5%;
  }
  .less-desktop--one-tenth {
    width: 10%;
  }
  .less-desktop--three-tenths {
    width: 30%;
  }
  .less-desktop--seven-tenths {
    width: 70%;
  }
  .less-desktop--nine-tenths {
    width: 90%;
  }
  .less-desktop--one-twelfth {
    width: 8.333%;
  }
  .less-desktop--five-twelfths {
    width: 41.666%;
  }
  .less-desktop--seven-twelfths {
    width: 58.333%;
  }
  .less-desktop--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 53.125em) {
  /**
     * Hide
     */
  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
  .desktop--hide {
    display: none !important;
  }
  .desktop--one-whole {
    width: 100%;
  }
  .desktop--one-half, .desktop--two-quarters, .desktop--three-sixths, .desktop--four-eighths, .desktop--five-tenths, .desktop--six-twelfths {
    width: 50%;
  }
  .desktop--one-third, .desktop--two-sixths, .desktop--four-twelfths {
    width: 33.333%;
  }
  .desktop--two-thirds, .desktop--four-sixths, .desktop--eight-twelfths {
    width: 66.666%;
  }
  .desktop--one-quarter, .desktop--two-eighths, .desktop--three-twelfths {
    width: 25%;
  }
  .desktop--three-quarters, .desktop--six-eighths, .desktop--nine-twelfths {
    width: 75%;
  }
  .desktop--one-fifth, .desktop--two-tenths {
    width: 20%;
  }
  .desktop--two-fifths, .desktop--four-tenths {
    width: 40%;
  }
  .desktop--three-fifths, .desktop--six-tenths {
    width: 60%;
  }
  .desktop--four-fifths, .desktop--eight-tenths {
    width: 80%;
  }
  .desktop--one-sixth, .desktop--two-twelfths {
    width: 16.666%;
  }
  .desktop--five-sixths, .desktop--ten-twelfths {
    width: 83.333%;
  }
  .desktop--one-eighth {
    width: 12.5%;
  }
  .desktop--three-eighths {
    width: 37.5%;
  }
  .desktop--five-eighths {
    width: 62.5%;
  }
  .desktop--seven-eighths {
    width: 87.5%;
  }
  .desktop--one-tenth {
    width: 10%;
  }
  .desktop--three-tenths {
    width: 30%;
  }
  .desktop--seven-tenths {
    width: 70%;
  }
  .desktop--nine-tenths {
    width: 90%;
  }
  .desktop--one-twelfth {
    width: 8.333%;
  }
  .desktop--five-twelfths {
    width: 41.666%;
  }
  .desktop--seven-twelfths {
    width: 58.333%;
  }
  .desktop--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (max-width: 71.8125em) {
  /**
     * Hide
     */
  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
  .less-wide--hide {
    display: none !important;
  }
  .less-wide--one-whole {
    width: 100%;
  }
  .less-wide--one-half, .less-wide--two-quarters, .less-wide--three-sixths, .less-wide--four-eighths, .less-wide--five-tenths, .less-wide--six-twelfths {
    width: 50%;
  }
  .less-wide--one-third, .less-wide--two-sixths, .less-wide--four-twelfths {
    width: 33.333%;
  }
  .less-wide--two-thirds, .less-wide--four-sixths, .less-wide--eight-twelfths {
    width: 66.666%;
  }
  .less-wide--one-quarter, .less-wide--two-eighths, .less-wide--three-twelfths {
    width: 25%;
  }
  .less-wide--three-quarters, .less-wide--six-eighths, .less-wide--nine-twelfths {
    width: 75%;
  }
  .less-wide--one-fifth, .less-wide--two-tenths {
    width: 20%;
  }
  .less-wide--two-fifths, .less-wide--four-tenths {
    width: 40%;
  }
  .less-wide--three-fifths, .less-wide--six-tenths {
    width: 60%;
  }
  .less-wide--four-fifths, .less-wide--eight-tenths {
    width: 80%;
  }
  .less-wide--one-sixth, .less-wide--two-twelfths {
    width: 16.666%;
  }
  .less-wide--five-sixths, .less-wide--ten-twelfths {
    width: 83.333%;
  }
  .less-wide--one-eighth {
    width: 12.5%;
  }
  .less-wide--three-eighths {
    width: 37.5%;
  }
  .less-wide--five-eighths {
    width: 62.5%;
  }
  .less-wide--seven-eighths {
    width: 87.5%;
  }
  .less-wide--one-tenth {
    width: 10%;
  }
  .less-wide--three-tenths {
    width: 30%;
  }
  .less-wide--seven-tenths {
    width: 70%;
  }
  .less-wide--nine-tenths {
    width: 90%;
  }
  .less-wide--one-twelfth {
    width: 8.333%;
  }
  .less-wide--five-twelfths {
    width: 41.666%;
  }
  .less-wide--seven-twelfths {
    width: 58.333%;
  }
  .less-wide--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 71.875em) {
  /**
     * Hide
     */
  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
  .wide--hide {
    display: none !important;
  }
  .wide--one-whole {
    width: 100%;
  }
  .wide--one-half, .wide--two-quarters, .wide--three-sixths, .wide--four-eighths, .wide--five-tenths, .wide--six-twelfths {
    width: 50%;
  }
  .wide--one-third, .wide--two-sixths, .wide--four-twelfths {
    width: 33.333%;
  }
  .wide--two-thirds, .wide--four-sixths, .wide--eight-twelfths {
    width: 66.666%;
  }
  .wide--one-quarter, .wide--two-eighths, .wide--three-twelfths {
    width: 25%;
  }
  .wide--three-quarters, .wide--six-eighths, .wide--nine-twelfths {
    width: 75%;
  }
  .wide--one-fifth, .wide--two-tenths {
    width: 20%;
  }
  .wide--two-fifths, .wide--four-tenths {
    width: 40%;
  }
  .wide--three-fifths, .wide--six-tenths {
    width: 60%;
  }
  .wide--four-fifths, .wide--eight-tenths {
    width: 80%;
  }
  .wide--one-sixth, .wide--two-twelfths {
    width: 16.666%;
  }
  .wide--five-sixths, .wide--ten-twelfths {
    width: 83.333%;
  }
  .wide--one-eighth {
    width: 12.5%;
  }
  .wide--three-eighths {
    width: 37.5%;
  }
  .wide--five-eighths {
    width: 62.5%;
  }
  .wide--seven-eighths {
    width: 87.5%;
  }
  .wide--one-tenth {
    width: 10%;
  }
  .wide--three-tenths {
    width: 30%;
  }
  .wide--seven-tenths {
    width: 70%;
  }
  .wide--nine-tenths {
    width: 90%;
  }
  .wide--one-twelfth {
    width: 8.333%;
  }
  .wide--five-twelfths {
    width: 41.666%;
  }
  .wide--seven-twelfths {
    width: 58.333%;
  }
  .wide--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 100em) {
  /**
     * Hide
     */
  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
  .full--hide {
    display: none !important;
  }
  .full--one-whole {
    width: 100%;
  }
  .full--one-half, .full--two-quarters, .full--three-sixths, .full--four-eighths, .full--five-tenths, .full--six-twelfths {
    width: 50%;
  }
  .full--one-third, .full--two-sixths, .full--four-twelfths {
    width: 33.333%;
  }
  .full--two-thirds, .full--four-sixths, .full--eight-twelfths {
    width: 66.666%;
  }
  .full--one-quarter, .full--two-eighths, .full--three-twelfths {
    width: 25%;
  }
  .full--three-quarters, .full--six-eighths, .full--nine-twelfths {
    width: 75%;
  }
  .full--one-fifth, .full--two-tenths {
    width: 20%;
  }
  .full--two-fifths, .full--four-tenths {
    width: 40%;
  }
  .full--three-fifths, .full--six-tenths {
    width: 60%;
  }
  .full--four-fifths, .full--eight-tenths {
    width: 80%;
  }
  .full--one-sixth, .full--two-twelfths {
    width: 16.666%;
  }
  .full--five-sixths, .full--ten-twelfths {
    width: 83.333%;
  }
  .full--one-eighth {
    width: 12.5%;
  }
  .full--three-eighths {
    width: 37.5%;
  }
  .full--five-eighths {
    width: 62.5%;
  }
  .full--seven-eighths {
    width: 87.5%;
  }
  .full--one-tenth {
    width: 10%;
  }
  .full--three-tenths {
    width: 30%;
  }
  .full--seven-tenths {
    width: 70%;
  }
  .full--nine-tenths {
    width: 90%;
  }
  .full--one-twelfth {
    width: 8.333%;
  }
  .full--five-twelfths {
    width: 41.666%;
  }
  .full--seven-twelfths {
    width: 58.333%;
  }
  .full--eleven-twelfths {
    width: 91.666%;
  }
}
/**
 * Our grid for print, if we have enabled it
 */
@media print {
  /**
     * Hide
     */
  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
  .print--hide {
    display: none !important;
  }
  .print--one-whole {
    width: 100%;
  }
  .print--one-half, .print--two-quarters, .print--three-sixths, .print--four-eighths, .print--five-tenths, .print--six-twelfths {
    width: 50%;
  }
  .print--one-third, .print--two-sixths, .print--four-twelfths {
    width: 33.333%;
  }
  .print--two-thirds, .print--four-sixths, .print--eight-twelfths {
    width: 66.666%;
  }
  .print--one-quarter, .print--two-eighths, .print--three-twelfths {
    width: 25%;
  }
  .print--three-quarters, .print--six-eighths, .print--nine-twelfths {
    width: 75%;
  }
  .print--one-fifth, .print--two-tenths {
    width: 20%;
  }
  .print--two-fifths, .print--four-tenths {
    width: 40%;
  }
  .print--three-fifths, .print--six-tenths {
    width: 60%;
  }
  .print--four-fifths, .print--eight-tenths {
    width: 80%;
  }
  .print--one-sixth, .print--two-twelfths {
    width: 16.666%;
  }
  .print--five-sixths, .print--ten-twelfths {
    width: 83.333%;
  }
  .print--one-eighth {
    width: 12.5%;
  }
  .print--three-eighths {
    width: 37.5%;
  }
  .print--five-eighths {
    width: 62.5%;
  }
  .print--seven-eighths {
    width: 87.5%;
  }
  .print--one-tenth {
    width: 10%;
  }
  .print--three-tenths {
    width: 30%;
  }
  .print--seven-tenths {
    width: 70%;
  }
  .print--nine-tenths {
    width: 90%;
  }
  .print--one-twelfth {
    width: 8.333%;
  }
  .print--five-twelfths {
    width: 41.666%;
  }
  .print--seven-twelfths {
    width: 58.333%;
  }
  .print--eleven-twelfths {
    width: 91.666%;
  }
}
/*------------------------------------*\
    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items back to the left by certain amounts.
 */
@font-face {
  font-family: "fontello";
  src: url("/_resources/themes/tangible/fonts/fontello.eot?51852280");
  src: url("/_resources/themes/tangible/fonts/fontello.eot?51852280#iefix") format("embedded-opentype"), url("/_resources/themes/tangible/fonts/fontello.woff2?51852280") format("woff2"), url("/_resources/themes/tangible/fonts/fontello.woff?51852280") format("woff"), url("/_resources/themes/tangible/fonts/fontello.ttf?51852280") format("truetype"), url("/_resources/themes/tangible/fonts/fontello.svg?51852280#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('/_resources/themes/tangible/font/fontello.svg?75636456#fontello') format('svg');
  }
}
*/
.class-starts-with-icon--before, .message--info:before, [class^="icon-"]:before, [class*=" icon-"]:before {
  /* for extension purposes */
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-info--before, .message--info:before, .icon-info:before {
  /* this one is for extension purposes */
  content: "";
}
/* '' */
.icon-user:before {
  content: "";
}
/* '' */
.icon-basket:before {
  content: "";
}
/* '' */
.icon-menu:before {
  content: "";
}
/* '' */
.icon-layout:before {
  content: "";
}
/* '' */
.icon-cancel:before {
  content: "";
}
/* '' */
.icon-help-circled:before {
  content: "";
}
/* '' */
.icon-home:before {
  content: "";
}
/* '' */
.icon-mail:before {
  content: "";
}
/* '' */
.icon-globe:before {
  content: "";
}
/* '' */
.icon-youtube-play:before {
  content: "";
}
/* '' */
.icon-instagram-1:before {
  content: "";
}
/* '' */
.icon-facebook-squared:before {
  content: "";
}
/* '' */
.icon-pinterest:before {
  content: "";
}
/* '' */
.icon-arrow-down:before {
  content: "";
  border: 5px solid transparent;
  border-top-color: #231f20;
  width: 0px;
  height: 0px;
  vertical-align: bottom;
}
/*
 *  webui popover plugin  - v1.1.3
 *  A lightWeight popover plugin with jquery ,enchance the  popover plugin of bootstrap with some awesome new features. It works well with bootstrap ,but bootstrap is not necessary!
 *  https://github.com/sandywalker/webui-popover
 *
 *  Made by Sandy Duan
 *  Under MIT License
 */
/*  webui popover  */
.webui-popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  width: 276px;
  min-height: 32px;
  padding: 1px;
  text-align: left;
  white-space: normal;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.webui-popover.top, .webui-popover.top-left, .webui-popover.top-right {
  margin-top: -10px;
}
.webui-popover.right, .webui-popover.right-top, .webui-popover.right-bottom {
  margin-left: 10px;
}
.webui-popover.bottom, .webui-popover.bottom-left, .webui-popover.bottom-right {
  margin-top: 10px;
}
.webui-popover.left, .webui-popover.left-top, .webui-popover.left-bottom {
  margin-left: -10px;
}
.webui-popover.pop {
  -webkit-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  transition: transform 0.15s cubic-bezier(0.3, 0, 0, 1.5);
}
.webui-popover.fade {
  transition: opacity 0.15s linear;
}
.webui-popover.in {
  -webkit-transform: none;
  -o-transform: none;
  transform: none;
  opacity: 1;
}
.webui-popover-inner .close {
  font-family: arial;
  margin: 5px 10px 0 0;
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  color: #000000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
  text-decoration: none;
}
.webui-popover-inner .close:hover, .webui-popover-inner .close:focus {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.webui-popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  background-color: #ffffff;
  border-bottom: 1px solid #f2f2f2;
  border-radius: 5px 5px 0 0;
}
.webui-popover-content {
  padding: 9px 14px;
  overflow: auto;
}
.webui-popover-inverse {
  background-color: #333333;
  color: #eeeeee;
}
.webui-popover-inverse .webui-popover-title {
  background: #333333;
  border-bottom: 1px solid #3b3b3b;
  color: #eeeeee;
}
.webui-no-padding .webui-popover-content {
  padding: 0;
}
.webui-no-padding .list-group-item {
  border-right: none;
  border-left: none;
}
.webui-no-padding .list-group-item:first-child {
  border-top: 0;
}
.webui-no-padding .list-group-item:last-child {
  border-bottom: 0;
}
.webui-popover > .arrow, .webui-popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.webui-popover > .arrow {
  border-width: 11px;
}
.webui-popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.webui-popover.top > .arrow, .webui-popover.top-right > .arrow, .webui-popover.top-left > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.webui-popover.top > .arrow:after, .webui-popover.top-right > .arrow:after, .webui-popover.top-left > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-top-color: #ffffff;
  border-bottom-width: 0;
}
.webui-popover.right > .arrow, .webui-popover.right-top > .arrow, .webui-popover.right-bottom > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.webui-popover.right > .arrow:after, .webui-popover.right-top > .arrow:after, .webui-popover.right-bottom > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff;
}
.webui-popover.bottom > .arrow, .webui-popover.bottom-right > .arrow, .webui-popover.bottom-left > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-top-width: 0;
}
.webui-popover.bottom > .arrow:after, .webui-popover.bottom-right > .arrow:after, .webui-popover.bottom-left > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-bottom-color: #ffffff;
  border-top-width: 0;
}
.webui-popover.left > .arrow, .webui-popover.left-top > .arrow, .webui-popover.left-bottom > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.webui-popover.left > .arrow:after, .webui-popover.left-top > .arrow:after, .webui-popover.left-bottom > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px;
}
.webui-popover-inverse.top > .arrow, .webui-popover-inverse.top-left > .arrow, .webui-popover-inverse.top-right > .arrow, .webui-popover-inverse.top > .arrow:after, .webui-popover-inverse.top-left > .arrow:after, .webui-popover-inverse.top-right > .arrow:after {
  border-top-color: #333333;
}
.webui-popover-inverse.right > .arrow, .webui-popover-inverse.right-top > .arrow, .webui-popover-inverse.right-bottom > .arrow, .webui-popover-inverse.right > .arrow:after, .webui-popover-inverse.right-top > .arrow:after, .webui-popover-inverse.right-bottom > .arrow:after {
  border-right-color: #333333;
}
.webui-popover-inverse.bottom > .arrow, .webui-popover-inverse.bottom-left > .arrow, .webui-popover-inverse.bottom-right > .arrow, .webui-popover-inverse.bottom > .arrow:after, .webui-popover-inverse.bottom-left > .arrow:after, .webui-popover-inverse.bottom-right > .arrow:after {
  border-bottom-color: #333333;
}
.webui-popover-inverse.left > .arrow, .webui-popover-inverse.left-top > .arrow, .webui-popover-inverse.left-bottom > .arrow, .webui-popover-inverse.left > .arrow:after, .webui-popover-inverse.left-top > .arrow:after, .webui-popover-inverse.left-bottom > .arrow:after {
  border-left-color: #333333;
}
.webui-popover i.icon-refresh:before {
  content: "";
}
.webui-popover i.icon-refresh {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 20px;
  top: 50%;
  left: 50%;
  position: absolute;
  margin-left: -15px;
  margin-right: -15px;
  background: url(../img/loading.gif) no-repeat;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.webui-popover-backdrop {
  background-color: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}
/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
  border-radius: 5px;
  border: 2px solid #000;
  background: #4c4c4c;
  color: #fff;
}
/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding: 8px 10px;
  overflow: hidden;
}
/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
  /* border-color: ... !important; */
}
/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
  cursor: help;
  margin-left: 4px;
}
/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
  padding: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999999;
  pointer-events: none;
  width: auto;
  overflow: visible;
}
.tooltipster-base .tooltipster-content {
  overflow: hidden;
}
/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-top: 8px solid;
  bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-top: 9px solid;
  bottom: -7px;
}
.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-bottom: 8px solid;
  top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-bottom: 9px solid;
  top: -7px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
  left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  left: 5px;
}
.tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span {
  right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
  right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 8px solid;
  top: 50%;
  margin-top: -7px;
  right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-left: 9px solid;
  margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 8px solid;
  top: 50%;
  margin-top: -7px;
  left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-right: 9px solid;
  margin-top: -8px;
}
/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */
.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}
.tooltipster-fade-show {
  opacity: 1;
}
.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
}
.tooltipster-swing-show {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  -moz-transform: rotateZ(0deg);
  -o-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}
.tooltipster-fall {
  top: 0;
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0px !important;
  opacity: 0;
}
.tooltipster-slide {
  left: -40px;
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0px !important;
  opacity: 0;
}
/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
  opacity: 0.5;
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #cccccc;
}
.mfp-preloader a:hover {
  color: white;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333333;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}
.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}
.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}
.mfp-ie7 .mfp-container {
  padding: 0;
}
.mfp-ie7 .mfp-content {
  padding-top: 44px;
}
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}
@media only screen and (max-width: 29.9375em) {
  .less-mobile--hide {
    display: none;
  }
}
@media only screen and (min-width: 30em) {
  .mobile--hide {
    display: none;
  }
}
@media only screen and (max-width: 47.9375em) {
  .less-tablet--hide {
    display: none;
  }
}
@media only screen and (min-width: 48em) {
  .tablet--hide {
    display: none;
  }
}
@media only screen and (max-width: 53.0625em) {
  .less-desktop--hide {
    display: none;
  }
}
@media only screen and (min-width: 53.125em) {
  .desktop--hide {
    display: none;
  }
}
@media only screen and (max-width: 71.8125em) {
  .less-wide--hide {
    display: none;
  }
}
@media only screen and (min-width: 71.875em) {
  .wide--hide {
    display: none;
  }
}
@media only screen and (min-width: 100em) {
  .full--hide {
    display: none;
  }
}
@-webkit-keyframes appearsScaling {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes appearsScaling {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes appearsScaling {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes appearsScaling {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.appearsScaling {
  -webkit-animation: appearsScaling 1s none;
  -moz-animation: appearsScaling 1s none;
  animation: appearsScaling 1s none;
  -webkit-animation-fill-mode: backwards;
  -moz-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}
/*
@mixin animated {
    @include transform(translate3d(0, 0, 0));
    @include animation-fill-mode(both);
    @include animation-duration(0.5s);
}

%animated {
    @include animated;
}

// make an element to appears from bottom
// Ex <div class="appearsFromBottom"></div>
@include keyframes(appearsFromBottom) {
    0% {
        opacity: 0;
        @include transform(translateY(150px));
    }
    100% {
        opacity: 1;
        @include transform(translate(none));
    }
}

.appearsFromBottom {
    @include animation(appearsFromBottom 1s none);
    @include animation-fill-mode(backwards);
}

// make an element fade in
@include keyframes(fadeIn) {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

%fadeIn {
    @include animation-name(fadeIn);
}

// Rotate
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio, canvas, progress, video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden], template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b, strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button, input, optgroup, select, textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button, select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled], html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td, th {
  padding: 0;
}
@media print {
  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  *, *:before, *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after, a[href^="javascript:"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
@font-face {
  font-family: "Axiforma";
  src: url("/_resources/themes/tangible/fonts/Axiforma-Regular.eot");
  src: url("/_resources/themes/tangible/fonts/Axiforma-Regular.eot?#iefix") format("embedded-opentype"), url("/_resources/themes/tangible/fonts/Axiforma-Regular.woff") format("woff"), url("/_resources/themes/tangible/fonts/Axiforma-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Axiforma";
  src: url("/_resources/themes/tangible/fonts/Axiforma-Bold.eot");
  src: url("/_resources/themes/tangible/fonts/Axiforma-Bold.eot?#iefix") format("embedded-opentype"), url("/_resources/themes/tangible/fonts/Axiforma-Bold.woff") format("woff"), url("/_resources/themes/tangible/fonts/Axiforma-Bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Axiforma";
  src: url("/_resources/themes/tangible/fonts/Axiforma-SemiBold.eot");
  src: url("/_resources/themes/tangible/fonts/Axiforma-SemiBold.eot?#iefix") format("embedded-opentype"), url("/_resources/themes/tangible/fonts/Axiforma-SemiBold.woff") format("woff"), url("/_resources/themes/tangible/fonts/Axiforma-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Axiforma";
  src: url("/_resources/themes/tangible/fonts/Axiforma-Medium.eot");
  src: url("/_resources/themes/tangible/fonts/Axiforma-Medium.eot?#iefix") format("embedded-opentype"), url("/_resources/themes/tangible/fonts/Axiforma-Medium.woff") format("woff"), url("/_resources/themes/tangible/fonts/Axiforma-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "SuperiorTitle";
  src: url("/_resources/themes/tangible/fonts/SuperiorTitle-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SuperiorTitle";
  src: url("/_resources/themes/tangible/fonts/SuperiorTitle-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
body, .header li, .logo .h4, .button, body.Security input[type="submit"], .page-foot__nav a, .get-in-touch__phone, .get-in-touch__email, .checkout-signup a.save-desc, body.Security form a.save-desc, ::-webkit-input-placeholder, :-moz-placeholder, ::-moz-placeholder, :-ms-input-placeholder, .casestudy-page h2.subtitle, .casestudy-page h2.subtitle--landingpage, .casestudy-page .header-block--link a, h3, .h3, .secondary-tile__short-description, .nav a {
  font-family: "Axiforma", Helvetica, Arial, Verdana, "Trebuchet MS";
  font-style: normal;
  font-weight: normal;
}
h1, .h1, h2, .h2, .h4--alt, h5, .h5, .product-tile .product-detail .discount, .block-title2 strong, .block-last .billed-now.highlight, .subscription h4 {
  font-family: "Axiforma", Helvetica, Arial, Verdana, "Trebuchet MS";
  font-style: normal;
  font-weight: 800;
}
h6, .h6, .block-content .highlight, .block-content.right, .modal-container h3, .secondary-tile__button, .manage-account a, .checkout .subscription h6.deliver, .offer-page .form-container .title-block, h4, .h4, .product-tile .product-detail .title, .block-title, .secondary-tile__title, .casestudy-page .casestudy-hero-banner .casestudy-hero-content p {
  font-family: "Axiforma", Helvetica, Arial, Verdana, "Trebuchet MS";
  font-style: normal;
  font-weight: 600;
}
.block-container .h1, .radio-group .h2 {
  font-family: "Axiforma", Helvetica, Arial, Verdana, "Trebuchet MS";
  font-style: normal;
  font-weight: 500;
}
.offer-page.Dish h1, .offer-page.Dish h2 {
  font-family: "SuperiorTitle", Helvetica, Arial, Verdana, "Trebuchet MS";
}
.offer-page.Dish * {
  font-family: "SuperiorTitle", Helvetica, Arial, Verdana, "Trebuchet MS";
  font-weight: 300;
}
.hidden {
  display: none !important;
  visibility: hidden;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.clearfix:after, .clearfix:before {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.media-block {
  overflow: hidden;
}
.media-block .media__img {
  margin-right: 1em;
  float: left;
}
.media-block .media__text {
  padding-top: 20px;
  overflow: hidden;
  _overflow: visible;
  zoom: 1;
}
.vertical-align:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.vertical-align__element {
  display: inline-block;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.uppercase {
  text-transform: uppercase;
}
.nowrap {
  white-space: nowrap;
}
.left {
  float: left;
}
.right {
  float: right;
}
.pink {
  color: #feca0a;
}
* {
  box-sizing: border-box;
}
html {
  color: #000;
  font-size: 1em;
  line-height: 1.4;
  overflow-y: scroll;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #595959;
  margin: 1em 0;
  padding: 0;
}
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}
img {
  max-width: 100%;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
body {
  font-size: 16px;
  line-height: 1.4;
  color: #231f20;
  margin: 0;
  max-width: none;
  padding: 0;
}
a {
  color: #2A98BD;
}
h1, .h1 {
  font-size: 28px;
  line-height: 1.25;
  color: #231f20;
  margin-bottom: 0.25em;
  text-transform: uppercase;
  letter-spacing: 2px;
}
h2, .h2 {
  font-size: 24px;
  color: #231f20;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0.83em 0px;
}
h2.beta, .h2.beta {
  padding-top: 15px;
  border-bottom: solid 1px #E4E4E4;
}
h3, .h3 {
  font-size: 20px;
  color: #231f20;
}
h4, .h4 {
  font-size: 18px;
  color: #231f20;
}
.h4--alt {
  font-size: 16px;
  margin: 0 0 0.5em;
}
h5, .h5 {
  font-size: 14px;
}
h6, .h6 {
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 6px;
}
nav ul, nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
label {
  cursor: pointer;
}
/*
.top-recipes {
    text-align: left;
    // .media__text {
        h2 {
            font-size: 1.3rem;
            margin: 0;
        }
        a {
            @extend %font-secondary;
        }
    // }
}
*/
.ui-autocomplete-loading {
  background-image: url(/_resources/themes/tangible/img/loading.gif);
  background-repeat: no-repeat;
  background-position: right center;
}
.row {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 12px;
}
@media only screen and (min-width: 48em) {
  .row {
    padding: 0 24px;
  }
}
/**
 * Create grids with wider gutters. Extends `.grid`.
 */
.grid--tapered {
  margin-left: -4px;
}
.grid--tapered > .grid__item {
  padding-left: 4px;
}
/**
 * Add the possibility to add margin bottom
 */
.grid--marginbottom {
  margin-bottom: -24px;
}
.grid--marginbottom > .grid__item {
  padding-bottom: 24px;
}
.grid--marginbottom.grid--narrow {
  margin-bottom: -12px;
}
.grid--marginbottom.grid--narrow > .grid__item {
  padding-bottom: 12px;
}
.grid--marginbottom.grid--wide {
  margin-bottom: -48px;
}
.grid--marginbottom.grid--wide > .grid__item {
  padding-bottom: 48px;
}
.grid--marginbottom.grid--tapered {
  margin-bottom: -4px;
}
.grid--marginbottom.grid--tapered > .grid__item {
  padding-bottom: 4px;
}
.grid--double-marginbottom {
  margin-bottom: -24px;
}
.grid--double-marginbottom > .grid__item {
  padding-bottom: 48px;
}
.grid__item--middle {
  vertical-align: middle;
}
.grid--stretch {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
body {
  padding-top: 60px;
}
@media only screen and (min-width: 30em) {
  body {
    padding-top: 80px;
  }
}
.header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
@media only screen and (max-width: 29.9375em) {
  .header-container {
    padding: 0 6px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1;
  }
}
.header {
  background: #FFF;
  color: #231f20;
  height: 60px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
@media only screen and (min-width: 30em) {
  .header {
    height: 80px;
  }
}
@media only screen and (max-width: 570px) {
  .header .support-button {
    display: none;
  }
}
.header .icon-basket:before, .header .icon-user:before {
  display: none;
}
@media only screen and (max-width: 29.9375em) {
  .header .icon-basket:before, .header .icon-user:before {
    display: inline-block;
  }
}
.header .navigation {
  flex-grow: 1;
  margin: 0 24px;
}
@media only screen and (max-width: 58em) {
  .header .navigation {
    display: none;
  }
}
@media only screen and (max-width: 1000px) {
  .header .navigation {
    margin: 0px 10px;
  }
}
.header nav {
  height: 100%;
  align-items: end;
  display: flex;
  -webkit-align-items: flex-end;
}
.header ul {
  float: left;
  margin-bottom: 0px;
}
.header li {
  display: inline;
  list-style-type: none;
  margin-right: 15px;
  font-size: 14px;
  display: inline-block;
  padding-bottom: 5px;
}
.header li a {
  color: #231f20;
  text-decoration: none;
}
.header li.selected {
  border-bottom: 8px solid #feca0a;
}
@media only screen and (max-width: 1000px) {
  .header li {
    margin-right: 5px;
  }
}
.header .btn-group {
  position: relative;
  margin-top: 11px;
  float: right;
}
@media only screen and (min-width: 30em) {
  .header .btn-group {
    margin-top: 18px;
  }
}
.header .btn-group > .button, .header body.Security .btn-group > input[type="submit"], body.Security .header .btn-group > input[type="submit"] {
  margin-left: 0.5em;
  padding: 0.8em 2em;
  font-size: 14px;
}
@media only screen and (max-width: 750px) {
  .header .btn-group > .button, .header body.Security .btn-group > input[type="submit"], body.Security .header .btn-group > input[type="submit"] {
    padding: 0.7em 1em;
  }
}
.header #mobile-menu {
  float: left;
  height: 60px;
  width: 35px;
  line-height: 60px;
  font-size: 25px;
  cursor: pointer;
}
@media only screen and (min-width: 58em) {
  .header #mobile-menu {
    display: none;
  }
}
.header #mobile-menu:before {
  margin: 0;
}
.logo {
  display: flex;
  flex-direction: row;
  position: relative;
  top: 13px;
}
@media only screen and (max-width: 58em) {
  .logo {
    flex-grow: 1;
  }
}
@media only screen and (min-width: 30em) {
  .logo {
    top: 18px;
  }
}
.logo img {
  max-height: 32px;
  width: 190px;
}
@media only screen and (min-width: 30em) {
  .logo img {
    max-height: 50px;
  }
}
.logo img, .logo .h4 {
  display: inline-block;
  vertical-align: bottom;
}
.logo .h4 {
  color: white;
  padding-left: 5px;
  margin-top: 19px;
  font-size: 14px;
  font-weight: normal !important;
}
@media only screen and (max-width: 71.8125em) {
  .logo .h4 {
    display: none;
  }
}
.nav ul {
  list-style: none;
  background-color: #feca0a;
  text-align: center;
  padding: 0 0 10px 0;
  margin: 0;
}
@media only screen and (min-width: 30em) {
  .nav ul {
    padding: 0;
  }
}
.nav li {
  line-height: 40px;
  height: 40px;
  padding: 0px;
}
@media only screen and (min-width: 30em) {
  .nav li {
    border-bottom: none;
    height: 50px;
    line-height: 50px;
    margin-right: -4px;
  }
}
.nav a {
  letter-spacing: 1.3px;
  padding: 0 25px;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  display: block;
  -webkit-transition: background 0.3s linear, opacity 0.4s ease-out;
  -moz-transition: background 0.3s linear, opacity 0.4s ease-out;
  transition: background 0.3s linear, opacity 0.4s ease-out;
  text-align: left;
  font-size: 15px;
}
.nav a:hover {
  opacity: 0.8;
}
#main-nav {
  display: none;
  position: fixed;
  left: 0px;
  right: 0px;
  margin-top: -5px;
  z-index: 999;
}
#main-nav .support-item {
  display: none;
}
@media only screen and (max-width: 570px) {
  #main-nav .support-item {
    display: block;
  }
}
#main-nav .arrow-up {
  margin-left: 36px;
  visibility: hidden;
}
#main-nav.is-open .arrow-up {
  margin-left: 13px;
  visibility: visible;
}
#main-nav.is-open ul {
  border-radius: 0px 0px 3px 3px;
}
#header-sticky-wrapper {
  height: 49px !important;
  background: #14171E;
}
@media only screen and (min-width: 30em) {
  #header-sticky-wrapper {
    height: 69px !important;
  }
}
.popover {
  display: none;
  position: fixed;
  top: 60px;
  bottom: 0;
  right: 0;
  left: 0;
  color: #000;
  padding: 15px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background: #E4E4E4;
  box-shadow: 0px 0px 10px #545353;
  z-index: 999;
  text-align: left;
}
@media only screen and (min-width: 30em) {
  .popover {
    position: absolute;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    top: 50px;
    bottom: auto;
    left: auto;
    width: 320px;
  }
}
.popover .arrow-up {
  margin-top: -23px;
  float: right;
  border-bottom: 5px solid #E4E4E4;
}
.popover .btn {
  margin-left: 0px !important;
}
.popover label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25em;
}
.popover label span {
  color: #feca0a;
}
.popover .input-wrap {
  width: calc(100% - 20px);
  margin-left: 20px;
  margin: 0 0 7px 19px;
}
.popover .input-wrap .save-desc {
  margin-top: 0.5em;
  display: inline-block;
}
.popover input[type=text], .popover input[type=password] {
  border-color: #CBCBCB;
  padding: 8px 8px 5px;
  width: 100%;
}
.popover .radio-group {
  margin-top: 0;
}
.popover hr {
  border-color: #CFCFCF;
  margin: 15px -15px;
}
.popover-container {
  height: 100%;
  overflow-x: auto;
}
.popover-container .empty-message {
  background-color: white;
  margin-top: 0.5em;
  padding: 1em;
  margin-bottom: 0;
}
@media only screen and (min-width: 30em) {
  #login-popover {
    right: 94px;
    padding-bottom: 15px;
  }
}
#login-popover:before {
  content: "";
  display: block;
  border: 5px solid rgba(0, 0, 0, 0);
  border-bottom: 5px solid #E4E4E4;
  width: 0px;
  height: 0px;
  position: absolute;
  right: 92px;
  top: -9px;
}
@media only screen and (min-width: 30em) {
  #login-popover:before {
    right: 37px;
  }
}
#login-popover .loginform {
  overflow: hidden;
}
#login-popover .arrow-up {
  margin-right: 80px;
}
@media only screen and (min-width: 30em) {
  #login-popover .arrow-up {
    margin-right: 34px;
  }
}
#login-popover #email-popover {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.05;
  width: 100%;
  margin-left: 0px;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 20px;
}
#login-popover .radio {
  border: 0px;
  padding: 20px 0 10px;
  margin: 0;
  border-top: 1px solid #CFCFCF;
}
#login-popover .radio:first-child {
  border-top: 0px;
  padding-top: 0;
}
#login-popover .radio.selected {
  background: none;
}
#login-popover .radio a.save-desc {
  color: #1A1A1A;
}
#account-popover {
  width: auto;
  right: 60px;
  bottom: auto;
  left: auto;
  padding: 10px;
}
@media only screen and (min-width: 30em) {
  #account-popover {
    right: 105px;
  }
}
#account-popover ul {
  display: block;
  float: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
#account-popover li {
  display: block;
  margin: 0;
  padding: 0;
}
#account-popover a {
  display: block;
  padding: 8px;
  white-space: nowrap;
  color: black;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: background 0.4s ease-out;
  -moz-transition: background 0.4s ease-out;
  transition: background 0.4s ease-out;
}
#account-popover a:hover {
  background: #cbcbcb;
}
#account-popover:before {
  content: "";
  display: block;
  border: 5px solid rgba(0, 0, 0, 0);
  border-bottom: 5px solid #E4E4E4;
  width: 0px;
  height: 0px;
  position: absolute;
  right: 31px;
  top: -10px;
}
@media only screen and (min-width: 30em) {
  #account-popover:before {
    right: 53px;
  }
}
#basket-popover:before {
  content: "";
  display: block;
  border: 5px solid rgba(0, 0, 0, 0);
  border-bottom: 5px solid #E4E4E4;
  width: 0px;
  height: 0px;
  position: absolute;
  right: 25px;
  top: -10px;
}
@media only screen and (min-width: 30em) {
  #basket-popover:before {
    right: 40px;
  }
}
#basket-popover .list-container {
  max-height: 50vh;
  overflow-y: auto;
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  #basket-popover .list-container {
    max-height: 70vh;
  }
}
#basket-popover .arrow-up {
  margin-right: 18px;
}
@media only screen and (min-width: 30em) {
  #basket-popover .arrow-up {
    margin-right: 35px;
  }
}
#basket-popover .block-container {
  margin: 6px 0 12px 0;
  border: 0px;
  background: none;
  padding: 0;
  overflow: hidden;
  max-height: 200px;
}
#basket-popover .free-delivery {
  padding: 10px;
  border-top: 1px solid #A9A9A9;
  text-align: center;
  font-weight: bold;
}
#basket-popover .button-container {
  border-top: 1px solid #A9A9A9;
  padding-top: 20px;
}
.popover .button-container .button, .popover .button-container body.Security input[type="submit"], body.Security .popover .button-container input[type="submit"] {
  padding: 0.7em 0.9em;
  margin-bottom: 8px;
}
.button, body.Security input[type="submit"] {
  border-radius: 0;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: 0.7em 1em;
  text-decoration: none;
  border: 0;
  outline: none;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.0266666667;
  text-transform: uppercase;
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
.button--primary {
  color: white;
  background-color: #3299BB;
  border: 1px solid #3299BB;
}
.button--primary:hover {
  background-color: #2d8aa8;
}
.button--default {
  color: #fff;
  background-color: #595959;
  border: 1px solid #595959;
}
.button--default.underline {
  position: relative;
}
.button--default.underline:after {
  position: absolute;
  content: "";
  left: -0.5px;
  bottom: -1px;
  height: 1px;
  width: calc(100% + 1px);
  border-bottom: 2px solid #feca0a;
}
.button--default.underline:hover:after {
  border-bottom: 2px solid #595959;
}
.button--default i:before {
  border-top-color: #fff;
}
.button--default:hover {
  background-color: #feca0a;
  color: #231f20;
  border-color: #feca0a;
}
.button--default:hover i:before {
  border-top-color: #231f20;
}
.button--default.outline:hover {
  color: #fff;
  background-color: #231f20;
  border-color: #feca0a;
}
.button--default.outline:hover i:before {
  border-top-color: #fff;
}
.button--secondary, body.Security input[type="submit"] {
  color: #231f20;
  background-color: #feca0a;
  border: 1px solid #feca0a;
}
.button--secondary:hover, body.Security input[type="submit"]:hover {
  background-color: #231f20;
  color: #fff !important;
  border-color: #231f20;
}
.button--secondary.outline:hover, body.Security input.outline[type="submit"]:hover {
  color: #fff;
  background-color: #231f20;
  border-color: #feca0a;
}
.button--secondary.outline:hover i:before, body.Security input.outline[type="submit"]:hover i:before {
  border-top-color: #fff;
}
.button--quaternary {
  color: #fff;
  background-color: #231f20;
  border: 1px solid #231f20;
}
.button--quaternary i:before {
  border-top-color: #fff;
}
.button--quaternary:hover {
  color: #231f20;
  background-color: #feca0a;
  border-color: #feca0a;
}
.button--quaternary.outline:hover {
  color: #231f20;
  background-color: #feca0a;
  border-color: #231f20;
}
.button--quaternary.outline:hover i:before {
  border-top-color: #231f20;
}
.button--wide {
  max-width: 300px;
  width: 100%;
}
.button--full {
  display: block;
}
@media only screen and (max-width: 29.9375em) {
  .button--mini {
    padding-left: 0.75em;
    padding-right: 0.75em;
  }
}
.button--big {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.05;
}
.button--tiny {
  padding: 0.3em 0.5em;
}
.button[class^="icon-"]:before, body.Security input[type="submit"][class^="icon-"]:before, .button[class*=" icon-"]:before, body.Security input[type="submit"][class*=" icon-"]:before {
  margin-left: 0;
}
.button i:before, body.Security input[type="submit"] i:before {
  margin-right: 0;
}
.button-container {
  text-align: center;
}
.button-container .button, .button-container body.Security input[type="submit"], body.Security .button-container input[type="submit"] {
  margin-left: 3px;
  margin-right: 3px;
}
.page-foot {
  background: #000;
  padding: 25px 0px;
  padding-top: 45px;
  overflow: hidden;
}
.page-foot .logo {
  top: 0;
}
.page-foot .logo span {
  color: #FFF;
  display: inline-block;
  vertical-align: bottom;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.7;
}
@media only screen and (min-width: 48em) {
  .page-foot__nav {
    float: right;
  }
}
.page-foot__nav ul {
  list-style: none;
  display: block;
  padding: 0 0 5px 0;
  margin: 0;
}
@media only screen and (min-width: 48em) {
  .page-foot__nav ul {
    text-align: right;
    padding: 0;
    text-align: center;
  }
}
.page-foot__nav li {
  line-height: 40px;
  height: 40px;
  padding: 0px;
}
@media only screen and (min-width: 48em) {
  .page-foot__nav li {
    border-bottom: none;
    display: inline-block;
  }
}
.page-foot__nav a {
  color: #FFF;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media only screen and (min-width: 48em) {
  .page-foot__nav a {
    padding-left: 30px;
  }
}
.page-foot__nav a:hover {
  opacity: 0.8;
}
.before-footer {
  background: #808285;
  color: white;
  padding: 25px 0px 40px;
  font-weight: 100;
  margin-top: 40px;
}
.before-footer .grid__item {
  padding-right: 0px;
}
@media only screen and (min-width: 48em) {
  .before-footer .grid__item {
    padding-right: 55px;
  }
}
.before-footer p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
}
.before-footer .h2 {
  color: white;
  margin: 10px 0px 6px;
}
.before-footer a {
  color: white;
}
.before-footer .icon-help-circled:before {
  font-size: 1.2em;
}
.js .product-tile {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
.product-tile .product-image-container {
  background: #f0f0f0;
  padding: 12px;
  text-align: center;
}
.product-tile .product-image-container img {
  max-height: 240px;
}
@media only screen and (min-width: 30em) {
  .product-tile .product-image-container img {
    max-height: 338px;
  }
}
@media only screen and (min-width: 48em) {
  .product-tile .product-image-container img {
    max-height: 340px;
  }
}
@media only screen and (min-width: 53.125em) {
  .product-tile .product-image-container img {
    max-height: 390px;
  }
}
@media only screen and (min-width: 71.875em) {
  .product-tile .product-image-container img {
    max-height: 379px;
  }
}
.product-tile .product-detail {
  background-color: #f0f0f0;
  padding: 12px;
  word-wrap: break-word;
  min-height: auto;
}
.product-tile .product-detail .title {
  margin: 0;
}
.product-tile .product-detail .discount {
  color: #DC0451;
}
.product-punchline {
  background-color: #231f20;
  color: #feca0a;
  text-align: center;
  border-radius: 0;
  padding: 0.7em 1em 1.05em;
  margin-bottom: -0.35em;
  display: block;
}
.grid--stretch .product-tile {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.grid--stretch .product-tile .product-detail {
  flex-grow: 1;
}
.block-container__wrap {
  margin-top: 24px;
  margin-bottom: 24px;
}
.block-container {
  margin: 20px 0;
  border: 5px solid #F3F3F3;
  overflow: hidden;
  background: #f0f0f0;
  padding: 12px;
}
.block-container .h1 {
  font-size: 26px;
  display: block;
}
.block-container--short {
  margin: 0;
}
.block-thumb {
  float: left;
  width: 100%;
  margin-right: 1em;
}
@media only screen and (min-width: 30em) {
  .block-thumb {
    width: auto;
  }
}
.block-thumb img {
  display: block;
}
.block-content {
  color: #231f20;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  float: left;
  margin-left: 0px;
}
.block-content h2 {
  margin: 0px;
  margin-bottom: 0.2em;
}
.block-content .highlight {
  font-size: 16px;
}
.block-content.right {
  font-size: 14px;
  /*
   		font-size:0.8em;
   		font-weight: 600;*/
}
.block-content.text-right {
  text-align: left;
}
@media only screen and (min-width: 30em) {
  .block-content.text-right {
    text-align: right;
  }
}
@media only screen and (min-width: 30em) {
  .block-content {
    float: none;
    margin-left: 180px;
  }
}
.block-title {
  color: #feca0a;
  font-size: 24px;
}
.block-title2 strong {
  font-size: 18px;
}
.block-group {
  float: left;
}
@media only screen and (max-width: 47.9375em) {
  .block-group {
    clear: both;
  }
}
.block-last .billed-now {
  float: none;
  text-align: left;
  line-height: 13px;
  margin-bottom: 10px;
  /*
		span {
			@extend %font-Jubilat__normal__normal;
    		@include font-size(25px, 1.4);
		}
		*/
}
@media only screen and (min-width: 48em) {
  .block-last .billed-now {
    float: right;
  }
}
.block-last .billed-now.highlight {
  font-size: 14px;
  /*font-size: 0.8em;*/
}
@media only screen and (min-width: 30em) {
  .block-last .billed-now {
    text-align: right;
    margin-bottom: 0px;
  }
}
.block-last a {
  color: #2A98BD;
  font-size: 14px;
  margin-right: 12px;
}
.btn-shop .btn {
  display: block;
}
@media only screen and (min-width: 30em) {
  .btn-shop .btn {
    display: inline;
  }
}
@media only screen and (max-width: 29.9375em) {
  .btn-shop .btn.left, .btn-shop .btn.right {
    float: none;
    margin-bottom: 10px;
  }
}
.total-price.h1 {
  margin: 0.25em 0;
  color: #feca0a;
}
.tabs {
  float: none;
  list-style: none;
  padding: 0;
  border: 1px solid #DFDFDF;
  display: none;
}
.tabs > li {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
.tabs > li.labels > div {
  display: table-row;
}
.tabs .clearfix .btn.right {
  margin-top: 18px;
}
.tabs .clearfix.bar {
  margin: 0 -15px;
  padding-right: 15px;
  padding-bottom: 22px;
  border-bottom: 10px solid #E6E7E9;
  margin-top: 20px;
}
.tabs.selected {
  display: block;
}
.labels:after {
  content: "";
  display: table;
  clear: both;
}
.tabs label[for^="tab"] {
  display: table-cell;
  padding: 10px 0px;
  color: #424242;
  background: #f0f0f0;
  cursor: pointer;
  text-align: center;
  border-left: 1px solid #DFDFDF;
  border-bottom: 1px solid #DFDFDF;
  text-transform: uppercase;
}
.tabs label.selected {
  background: #FFF;
  border-bottom: 1px solid #FFF;
}
.tab-content {
  display: none;
  padding: 15px;
  border-top: 0px;
  background-color: #ffffff;
}
.tab-content ul {
  list-style: disc;
  font-size: 16px;
  padding-left: 26px;
}
.tabs input[type=radio][name="tabs"] {
  display: none;
}
[id^=tab]:checked ~ div[id^=tab-content] {
  display: block;
}
[id^=tab]:checked ~ [id^=label] {
  background: #08C;
  color: white;
}
#label1 {
  border-left: 0;
}
input[type=text], input[type=password] {
  border: 1px solid #E4E4E4;
}
input[type=radio], input[type=checkbox] {
  /* Hide original inputs */
  visibility: hidden;
  position: absolute;
}
input[type=radio] + label:before, input[type=checkbox] + label:before {
  height: 11px;
  width: 11px;
  margin-right: 7px;
  content: " ";
  display: inline-block;
  vertical-align: baseline;
  border: 1px solid #777;
}
input[type=radio]:checked + label:before, input[type=checkbox]:checked + label:before {
  background: #feca0a;
  box-shadow: inset 0 0 0 2px #FFF;
}
/* CUSTOM RADIO AND CHECKBOX STYLES */
input[type=radio] + label:before {
  border-radius: 50%;
}
input[type=checkbox] + label:before {
  border-radius: 2px;
}
.radio-group > .radio:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.radio {
  margin: 0 -15px;
  padding: 15px;
  border-top: 1px solid #f0f0f0;
  cursor: pointer;
}
.radio.selected {
  background: #f0f0f0;
}
.radio-label {
  margin-left: 20px;
}
.radio-label label:before {
  margin-left: -20px;
}
.radio-group {
  margin-top: 20px;
}
.radio-group .h2 {
  line-height: 1.2;
}
.radio-group .right {
  text-align: right;
}
select {
  display: inline-block;
  height: 28px;
  line-height: 28px;
  border: 1px solid #aaa;
  padding: 4px;
  color: #555;
  background: #fff;
  margin-top: 10px;
}
textarea {
  border-color: #DCDAE3;
}
label {
  line-height: 1.2;
}
.errorlist {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  background-color: #feca0a;
  color: white;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
  clear: left;
  display: block;
}
.errorlist li {
  padding: 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.field__help {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  color: #231f20;
}
.field__detail {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.05;
  color: #231f20;
  display: block;
}
input + .field__detail {
  margin-top: 0.5em;
}
.radio-private-offer {
  padding: 15px;
  cursor: pointer;
}
.radio-private-offer.selected {
  background: #f0f0f0;
}
.grey-divider {
  border-top: 1px solid #DFDFDF;
}
.arrow_box {
  position: relative;
  background: #f0f0f0;
  width: 50%;
  display: inline-block;
  padding: 0px;
  text-transform: uppercase;
  cursor: pointer;
}
.arrow_box.selected {
  background: #feca0a;
}
.arrow_box.selected:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #feca0a;
  border-width: 8px;
  margin-left: -8px;
}
.arrow_box > div {
  text-align: center;
  padding: 10px;
}
.arrow-up {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #3299BB;
}
.basket--mini {
  position: relative;
}
.basket--mini h4 {
  margin: 0;
}
.basket--mini p, .basket--mini .basket_remove {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.2;
}
.basket--mini .basket_remove {
  position: absolute;
  top: 0px;
  right: 0px;
  text-decoration: none;
  color: red;
}
.basket--mini .block-title2 {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
}
.basket--mini .block-title2 strong {
  font-size: 14px;
}
.modal-container {
  position: relative;
  background: white;
  padding: 24px;
  width: auto;
  max-width: 500px;
  margin: 24px auto;
}
.modal-container .form {
  margin-top: 24px;
}
.modal-container .form label div {
  font-size: 14px;
  color: #7D7D7D;
}
.modal-container .form label span {
  color: #feca0a;
}
.modal-container h3 {
  margin-top: 0;
  margin-bottom: 0.3em;
}
.modal-container p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  margin-top: 0;
}
.modal-container .group {
  background: #DEDFE2;
  padding: 20px;
}
.modal-container .button--submit {
  margin-top: 20px;
}
.modal-container label {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
@media only screen and (min-width: 30em) {
  .modal-container label {
    width: 30%;
    padding-right: 5%;
  }
}
.modal-container input[type="email"], .modal-container input[type="number"], .modal-container input[type="password"], .modal-container input[type="search"], .modal-container input[type="tel"], .modal-container input[type="text"], .modal-container input[type="url"], .modal-container input[type="color"], .modal-container input[type="date"], .modal-container input[type="datetime"], .modal-container input[type="datetime-local"], .modal-container input[type="month"], .modal-container input[type="time"], .modal-container input[type="week"] {
  width: 100%;
  display: inline-block;
  padding: 9px;
  margin-bottom: 14px;
  margin-top: 0;
}
@media only screen and (min-width: 30em) {
  .modal-container input[type="email"], .modal-container input[type="number"], .modal-container input[type="password"], .modal-container input[type="search"], .modal-container input[type="tel"], .modal-container input[type="text"], .modal-container input[type="url"], .modal-container input[type="color"], .modal-container input[type="date"], .modal-container input[type="datetime"], .modal-container input[type="datetime-local"], .modal-container input[type="month"], .modal-container input[type="time"], .modal-container input[type="week"] {
    width: 70%;
  }
}
.modal-container select {
  width: 100%;
  display: inline-block;
  height: 40px;
  margin-bottom: 14px;
  margin-top: 0;
}
@media only screen and (min-width: 30em) {
  .modal-container select {
    width: 70%;
  }
}
.modal-container #UserAddressForm_UserAddressForm_phone {
  width: calc(100% - 100px);
}
@media only screen and (min-width: 30em) {
  .modal-container #UserAddressForm_UserAddressForm_phone {
    width: calc(70% - 100px);
  }
}
.modal-container .block-box {
  margin-top: 15px;
  border: 1px solid #C4C4C4;
  padding: 12px 15px;
}
.modal-container .block-box .small {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.05;
}
.modal-container .block-box > div {
  display: inline-block;
  width: 74.6%;
}
.modal-container .block-box > div input, .modal-container .block-box > div textarea {
  width: 100%;
  margin-bottom: 0px;
}
.modal-container .block-box > div p {
  margin-top: 8px;
}
.modal-container .block-box > div p.small {
  font-size: 12px;
}
@media screen and (max-width: 1264px) {
  .modal-container .block-box > div {
    width: 100%;
  }
}
.mfp-close-btn-in .mfp-close {
  color: white;
  background-color: #3299BB;
  border: 12px solid white;
  line-height: 20px;
  font-size: 20px;
}
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}
/* overlay at start */
.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-bg.mfp-removing {
  opacity: 0;
}
/* content at start */
.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
.messages {
  background: #feca0a;
  padding: 24px 0;
}
.messages > div {
  overflow: hidden;
}
.messages .icon-info {
  background-color: white;
  color: #feca0a;
  border-radius: 50%;
  height: 2em;
  width: 2em;
  line-height: 2em;
  font-size: 82%;
  text-align: center;
  margin-right: 1em;
  float: left;
}
.messages ul {
  list-style: none;
  margin: 0.1em 0;
  padding: 0;
  overflow: hidden;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
}
.messages span, .messages li {
  color: #FFF;
}
.loading-overlay {
  opacity: 0;
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  pointer-events: none;
  text-align: center;
  -webkit-transition: top 0.8s ease-in, opacity 0.3s linear;
  -moz-transition: top 0.8s ease-in, opacity 0.3s linear;
  transition: top 0.8s ease-in, opacity 0.3s linear;
}
.loading-overlay.visible {
  opacity: 1;
  top: 0;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.loading-overlay .tangible-loader {
  width: 82.3333333333px;
  height: 126.6666666667px;
  position: absolute;
  display: inline-block;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.loading-overlay .tangible-loader .dot {
  position: absolute;
  background: #feca0a;
  border-radius: 1000px;
  width: 38px;
  height: 38px;
  -webkit-animation: scale-a 1.7s infinite ease-out;
  -moz-animation: scale-a 1.7s infinite ease-out;
  animation: scale-a 1.7s infinite ease-out;
}
.loading-overlay .tangible-loader .one {
  top: 44.3333333333px;
  left: 88.6666666667px;
}
.loading-overlay .tangible-loader .two {
  top: 44.3333333333px;
  left: 0;
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.loading-overlay .tangible-loader .three {
  top: 44.3333333333px;
  left: 44.3333333333px;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.loading-overlay .tangible-loader .four {
  top: 88.6666666667px;
  left: 0;
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
@-webkit-keyframes scale-a {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  25% {
    opacity: 0.5;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes scale-a {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  25% {
    opacity: 0.5;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes scale-a {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  25% {
    opacity: 0.5;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-a {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  25% {
    opacity: 0.5;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.alert-box {
  max-width: 100%;
  width: 1100px;
  margin: 30px auto;
  padding: 16px;
  border: silver 1px solid;
  border-radius: 8px;
}
.alert-box.success {
  background-color: lightgreen;
}
.tooltip {
  cursor: pointer;
}
.tooltipster-tangible {
  border-radius: 5px;
  border: 1px solid #595959;
  background: #FFF;
  max-width: 320px;
  box-shadow: 0 0 5px -1px #595959;
}
.tooltipster-tangible .tooltipster-content {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  padding: 8px 10px;
  overflow: hidden;
}
.ckeditor-template.full-width-img {
  margin: 0;
}
.ckeditor-template.full-width-img img {
  width: 100%;
}
.ckeditor-template.right-aligned-img {
  margin: 0;
  float: right;
}
.ckeditor-template.left-aligned-img {
  margin: 0;
  float: left;
}
.ckeditor-template.grid-template {
  margin: 0 48px;
}
.ckeditor-template.grid-template img {
  height: inherit !important;
}
.secondary-tile {
  height: 100%;
  padding-bottom: 24px;
}
.secondary-tile figure {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.secondary-tile--limited {
  max-width: 400px;
}
.secondary-tile__img {
  width: 100%;
}
.secondary-tile__figcaption {
  background-color: #f0f0f0;
  padding: 20px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  flex-grow: 1;
}
.secondary-tile__titles-container {
  width: 100%;
  vertical-align: top;
}
.secondary-tile__button-container {
  text-align: left;
  vertical-align: top;
  width: 100%;
  margin-top: 15px;
  padding-left: 0px;
}
.secondary-tile__title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.0111111111;
  margin-bottom: 10px;
}
.secondary-tile--big .secondary-tile__title {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.0181818182;
}
.secondary-tile__short-description {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.0769230769;
  line-height: 22px;
}
.secondary-tile--big .secondary-tile__short-description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.05;
  line-height: 22px;
}
.secondary-tile__button {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.0769230769;
  color: #FFF;
  background-color: #3A3A3A;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 6px;
}
.secondary-tile__button:hover {
  background-color: #6D6D6D;
}
.get-in-touch {
  background-color: #595959;
  padding-top: 48px;
  padding-bottom: 48px;
  color: #fff;
  margin-bottom: 72px;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.3;
}
.get-in-touch__content {
  max-width: 700px;
  margin: auto;
}
.get-in-touch span {
  display: inline;
  margin: 0 24px;
}
.get-in-touch__phone {
  display: inline;
  color: #fff;
  text-decoration: none;
  margin-bottom: 6px;
}
.get-in-touch__email {
  display: inline;
  text-decoration: none;
  color: inherit;
}
.auto_addr_inputs label {
  width: auto;
}
.lookup_wrapper {
  position: relative;
}
.lookup_wrapper .autocomplete {
  width: 100% !important;
}
.lookup_wrapper .addr_ac_cancel {
  height: 40px;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
}
.text-banner {
  text-align: center;
  padding: 48px 0px;
}
.text-banner.primary {
  background: #feca0a;
  color: #231f20;
}
.text-banner.secondary {
  background: #231f20;
  color: #fff;
}
.text-banner.secondary h2 {
  color: #fff;
}
.text-banner.grey-dark {
  background: #595959;
  color: #fff;
}
.text-banner.grey-dark h1 {
  color: #fff;
  text-transform: none;
  font-weight: normal;
}
.text-banner .text-banner__content {
  padding: 0px 48px;
}
.text-banner .button, .text-banner body.Security input[type="submit"], body.Security .text-banner input[type="submit"] {
  max-width: 300px;
  width: 100%;
  margin-top: 48px;
}
.image-banner {
  background: #f0f0f0;
  align-items: center;
  position: relative;
  margin-bottom: 48px;
}
.image-banner.no-media {
  min-height: 300px;
}
.image-banner .black {
  color: #231f20;
}
.image-banner .yellow {
  color: #feca0a;
}
.image-banner .white {
  color: #fff;
}
.image-banner .image-banner__media {
  width: 100%;
  height: 100%;
}
.image-banner .image-banner__media img, .image-banner .image-banner__media video {
  width: 100%;
}
.image-banner .image-banner__content {
  position: absolute;
  top: 50%;
  /* position the top  edge of the element at the middle of the parent */
  left: 50%;
  /* position the left edge of the element at the middle of the parent */
  transform: translate(-50%, -50%);
}
.image-banner .image-banner__content .container {
  width: 100%;
}
.image-banner .image-banner__desktop-img {
  display: none;
}
@media only screen and (min-width: 30em) {
  .image-banner .image-banner__mobile-img {
    display: none;
  }
  .image-banner .image-banner__desktop-img {
    display: block;
  }
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 48px;
}
.homepage-page .products-block {
  padding-top: 24px;
  padding-bottom: 48px;
}
@media only screen and (max-width: 47.9375em) {
  .homepage-page .grid--products {
    margin-left: -12px;
  }
  .homepage-page .grid--products > .grid__item {
    padding-left: 12px;
  }
}
.homepage-page .section {
  margin-bottom: 48px;
}
.homepage-page .homepage-content p {
  font-size: 20px;
}
.sort-by-block strong {
  margin-right: 12px;
}
.sort-by-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  margin-left: -12px;
}
.sort-by-block li {
  display: inline-block;
}
.sort-by-block a {
  padding-left: 12px;
  text-decoration: none;
  color: #231f20;
}
.sort-by-block a:hover {
  text-decoration: underline;
}
.sort-by-block a.isActive {
  text-decoration: underline;
}
.tabs .button-group {
  margin-top: 12px;
}
.tabs .button-group:not(:last-child) {
  margin: 0 -15px;
  padding-right: 15px;
  padding-bottom: 22px;
  border-bottom: 10px solid #E6E7E9;
  margin-top: 20px;
}
.side-panel > div:not(:first-child) {
  padding-top: 12px;
  margin: 24px 0;
}
.side-panel a {
  text-decoration: none;
  color: #14171E;
}
.side-panel a.button {
  color: white;
}
.side-panel span[class^="icon-"] {
  font-size: 18px;
}
.side-panel p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  margin-top: 0;
}
.side-panel a[class^="icon-"] {
  -webkit-transition: background 0.4s ease-out;
  -moz-transition: background 0.4s ease-out;
  transition: background 0.4s ease-out;
  text-decoration: none;
  padding: 10px;
  background: #838383;
  color: #FFF;
  border-radius: 5px;
  margin-right: 5px;
  line-height: 41px;
}
.side-panel a[class^="icon-"]:before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  -webkit-transform-origin: middle center;
  -moz-transform-origin: middle center;
  -ms-transform-origin: middle center;
  -o-transform-origin: middle center;
  transform-origin: middle center;
}
.side-panel a[class^="icon-"]:hover {
  background: #6a6a6a;
}
.side-panel a[class^="icon-"]:hover:before {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.side-panel a .h5 {
  border-bottom: 1px solid #E4E4E4;
}
.side-panel img.left {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}
.side-panel h4 {
  margin-top: 0;
  margin-bottom: 0.15em;
}
.side-panel .product_social-links a:not(:last-child) {
  padding-right: 12px;
}
@media only screen and (min-width: 30em) {
  .subscription .block-content {
    float: left;
    margin-left: 20px;
  }
}
.subscription h4 {
  margin-bottom: -7px;
}
.subscription h6 {
  margin-top: 35px;
  margin-bottom: 0px;
}
.subscription .block-container {
  border: 0;
  padding: 0px 15px 20px;
}
.subscription .block-container:first-child {
  margin-top: 0px;
}
.subscription .block-container .block-panel {
  color: #FFF;
  background: #636363;
  margin: 0 -15px 15px;
  padding: 9px 10px 10px;
}
.subscription .block-container .block-panel .h5 {
  font-size: 16px;
  margin-top: 2px;
}
.subscription .block-container .block-panel .h5 .span {
  font-weight: normal;
}
.subscription .block-container .block-panel.pink {
  background: #feca0a;
}
.manage-account a {
  font-size: 13px;
}
.manage-account a sup {
  color: #515151;
}
.account {
  background: #F1F1F2;
  padding: 20px;
  font-size: 16px;
  /*
	a {
		text-decoration: none;
		color:#14171E;
	}
	span{
		&[class^="icon-"] {
			font-size:18px;
		}

	}

	a[class^="icon-"] {
		text-decoration: none;
		padding: 10px;
		background:#838383;
		color:#FFF;
		border-radius: 5px;
		margin-right: 5px;
	}

	a {
		.h5{
			border-bottom: 1px solid $grey-light;
		}
	}
	img.left {
		float:left;
		margin-right: 15px;
		margin-bottom:15px;
	}

	h4 {
		margin-top:0;
		margin-bottom: 10px;
	}
	*/
}
.account > div {
  border-top: 1px solid #E4E4E4;
  margin-top: 15px;
  /*padding:13px 0px 35px;*/
}
.account h1 {
  margin-top: 0;
  margin-bottom: 13px;
}
.page-checkout {
  padding-top: 0;
}
.page-checkout .loading-overlay {
  display: none;
}
.header-container {
  text-align: center;
}
.header-checkout {
  position: static;
}
.header-checkout ul {
  padding-left: 0px;
}
.header-checkout .logo {
  margin-bottom: 24px;
}
.checkout-page #main {
  margin-bottom: 48px;
}
.checkout {
  margin-top: 30px;
  margin-bottom: 30px;
}
.checkout .title-block {
  margin-bottom: 0.25em;
}
.checkout .title-block span {
  width: calc(100% - 120px);
  margin-right: 20px;
  display: inline-block;
  vertical-align: bottom;
}
.checkout .tangible-login-logo {
  width: 100px;
}
.checkout .h4 {
  color: #7D7D7D;
  font-size: 16px;
}
.checkout h1 {
  margin-top: 0;
}
.checkout label.is-required:after {
  content: "*";
  color: #F0005B;
}
.checkout.checkout-account .h5 {
  color: #7C7C7C;
  font-weight: normal;
}
.checkout input.full {
  display: block;
  width: 100%;
  padding: 10px;
}
.checkout input[readonly="True"] {
  background: rgba(255, 255, 255, 0.7);
  color: #999;
}
.checkout .group {
  background: #DEDFE2;
  padding: 20px;
}
.checkout .button.narrow, .checkout body.Security input.narrow[type="submit"], body.Security .checkout input.narrow[type="submit"] {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}
.checkout .billing-input {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.0266666667;
  padding: 0.5em 1em;
}
.checkout .subscription h6.deliver {
  font-size: 16px;
  margin-top: 35px;
}
.checkout .subscription .print {
  width: 30%;
}
@media only screen and (max-width: 47.9375em) {
  .checkout .subscription .print {
    width: 50%;
  }
}
@media only screen and (max-width: 29.9375em) {
  .checkout .subscription .print {
    width: 100%;
  }
}
.checkout .subscription .digital {
  padding-top: 56px;
  width: 30%;
}
@media only screen and (max-width: 47.9375em) {
  .checkout .subscription .digital {
    width: 50%;
  }
}
@media only screen and (max-width: 29.9375em) {
  .checkout .subscription .digital {
    width: 100%;
  }
}
.checkout .subscription .block-first {
  width: 40%;
}
@media only screen and (max-width: 47.9375em) {
  .checkout .subscription .block-first {
    width: 100%;
  }
}
.checkout .subscription .block-last {
  clear: both;
  border-top: 1px solid #C7C7C7;
  padding-top: 20px;
}
.checkout .subscription .block-last label > div {
  width: 450px;
  display: inline-block;
}
@media only screen and (max-width: 47.9375em) {
  .checkout .subscription .block-last label > div {
    width: auto;
    display: inline;
  }
}
.checkout .subscription .block-last input[type=checkbox] + label:before {
  vertical-align: top;
  margin-top: 5px;
}
.checkout .subscription .block-thumb {
  margin-bottom: 1em;
  width: 13%;
  margin-right: 1%;
}
@media screen and (max-width: 1264px) {
  .checkout .subscription .block-thumb {
    width: 17%;
    margin-right: 1%;
  }
}
@media only screen and (max-width: 47.9375em) {
  .checkout .subscription .block-thumb {
    width: auto;
  }
}
.checkout .subscription .block-group {
  width: 84%;
  padding-left: 2%;
}
@media screen and (max-width: 1264px) {
  .checkout .subscription .block-group {
    width: 81%;
    padding-left: 1%;
  }
}
@media only screen and (max-width: 47.9375em) {
  .checkout .subscription .block-group {
    width: 100%;
    padding-left: 0px;
  }
}
@media only screen and (min-width: 30em) {
  .checkout .subscription .block-content {
    margin-left: 0px;
  }
}
.checkout .delivery-details {
  margin-bottom: 20px;
}
.checkout .delivery-details .block-title {
  font-size: 22px;
}
.checkout .delivery-details .block-title2 {
  font-size: 14px;
}
.checkout .delivery-details .block-title2 strong {
  font-size: 16px;
  font-weight: 600;
}
.checkout .delivery-details .block-box {
  margin-top: 15px;
  border: 1px solid #C4C4C4;
  padding: 12px 15px;
}
.checkout .delivery-details .block-box .small {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.05;
}
.checkout .delivery-details .block-box > div {
  display: inline-block;
  width: 74.6%;
}
.checkout .delivery-details .block-box > div input, .checkout .delivery-details .block-box > div textarea {
  width: 100%;
  margin-bottom: 0px;
}
.checkout .delivery-details .block-box > div p {
  margin-top: 8px;
}
.checkout .delivery-details .block-box > div p.small {
  font-size: 12px;
}
@media screen and (max-width: 1264px) {
  .checkout .delivery-details .block-box > div {
    width: 100%;
  }
}
.checkout .delivery-details label {
  width: 103px;
  display: inline-block;
  vertical-align: top;
}
.checkout .delivery-details input, .checkout .delivery-details textarea {
  width: 70%;
  display: inline-block;
  padding: 9px 0px;
  margin-bottom: 14px;
}
@media screen and (max-width: 1264px) {
  .checkout .delivery-details input, .checkout .delivery-details textarea {
    width: 100%;
  }
}
.checkout .delivery-details select {
  width: 70%;
}
.checkout .delivery-details .billing {
  overflow: hidden;
  font-size: 16px;
}
.checkout .delivery-details .billing a {
  font-size: 13px;
}
.checkout .delivery-details .billing .block-thumb {
  max-width: 40%;
}
.checkout .checkout-account-form {
  font-size: 16px;
}
.checkout .checkout-account-form label {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
@media only screen and (min-width: 71.875em) {
  .checkout .checkout-account-form label {
    width: 20%;
    padding-right: 5%;
  }
}
.checkout .checkout-account-form label div {
  font-size: 14px;
  color: #7D7D7D;
}
.checkout .checkout-account-form span {
  color: #feca0a;
}
.checkout .checkout-account-form input[type="email"], .checkout .checkout-account-form input[type="number"], .checkout .checkout-account-form input[type="password"], .checkout .checkout-account-form input[type="search"], .checkout .checkout-account-form input[type="tel"], .checkout .checkout-account-form input[type="text"], .checkout .checkout-account-form input[type="url"], .checkout .checkout-account-form input[type="color"], .checkout .checkout-account-form input[type="date"], .checkout .checkout-account-form input[type="datetime"], .checkout .checkout-account-form input[type="datetime-local"], .checkout .checkout-account-form input[type="month"], .checkout .checkout-account-form input[type="time"], .checkout .checkout-account-form input[type="week"] {
  width: 100%;
  display: inline-block;
  padding: 9px;
  margin-bottom: 14px;
}
@media only screen and (min-width: 71.875em) {
  .checkout .checkout-account-form input[type="email"], .checkout .checkout-account-form input[type="number"], .checkout .checkout-account-form input[type="password"], .checkout .checkout-account-form input[type="search"], .checkout .checkout-account-form input[type="tel"], .checkout .checkout-account-form input[type="text"], .checkout .checkout-account-form input[type="url"], .checkout .checkout-account-form input[type="color"], .checkout .checkout-account-form input[type="date"], .checkout .checkout-account-form input[type="datetime"], .checkout .checkout-account-form input[type="datetime-local"], .checkout .checkout-account-form input[type="month"], .checkout .checkout-account-form input[type="time"], .checkout .checkout-account-form input[type="week"] {
    width: 80%;
  }
}
.checkout .checkout-account-form select {
  width: 100%;
  display: inline-block;
  height: 40px;
  margin-bottom: 14px;
  margin-top: 0;
}
@media only screen and (min-width: 30em) {
  .checkout .checkout-account-form select {
    width: 70%;
  }
}
.checkout .checkout-account-form input[type="submit"] {
  width: auto !important;
}
.checkout .checkout-account-form .required-label {
  font-size: 12px;
  color: #7C7C7C;
}
.checkout .checkout-account-form .block-container {
  margin-top: 10px;
  margin-bottom: 30px;
  overflow-x: hidden;
}
.checkout .checkout-account-form.block-box label {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
}
@media only screen and (min-width: 71.875em) {
  .checkout .checkout-account-form.block-box label {
    width: 30%;
  }
}
@media only screen and (min-width: 71.875em) {
  .checkout .checkout-account-form.block-box input[type="email"], .checkout .checkout-account-form.block-box input[type="number"], .checkout .checkout-account-form.block-box input[type="password"], .checkout .checkout-account-form.block-box input[type="search"], .checkout .checkout-account-form.block-box input[type="tel"], .checkout .checkout-account-form.block-box input[type="text"], .checkout .checkout-account-form.block-box input[type="url"], .checkout .checkout-account-form.block-box input[type="color"], .checkout .checkout-account-form.block-box input[type="date"], .checkout .checkout-account-form.block-box input[type="datetime"], .checkout .checkout-account-form.block-box input[type="datetime-local"], .checkout .checkout-account-form.block-box input[type="month"], .checkout .checkout-account-form.block-box input[type="time"], .checkout .checkout-account-form.block-box input[type="week"] {
    width: 70%;
  }
}
.checkout .basket-summary .block-container {
  margin: 0px;
  padding-bottom: 0;
}
.checkout .basket-summary .block-container:not(:last-child):after {
  content: "";
  display: block;
  clear: both;
  padding-top: 24px;
  border-bottom: 1px solid #C7C7C7;
}
.checkout .basket-summary .block-content {
  font-size: 13px;
}
@media only screen and (min-width: 30em) {
  .checkout .basket-summary .block-content {
    float: none;
    margin: 0;
  }
}
.checkout .basket-summary hr {
  color: #C7C7C7;
  margin-bottom: 0px;
  margin-top: 20px;
}
.checkout .basket-summary .block-title {
  font-size: 20px;
  color: #3A3A3A;
}
.checkout .basket-summary .block-title2 {
  font-size: 12px;
}
.checkout .basket-summary .block-title2 strong {
  font-size: 14px;
}
.checkout .basket-summary .text-center {
  font-weight: bold;
  margin: 0px 0px 20px;
}
.checkout .basket-summary .btn.narrow {
  padding: 3px 10px;
}
.checkout .basket-summary .clearfix {
  margin-top: 12px;
}
@media only screen and (min-width: 48em) {
  .checkout .basket-summary .clearfix {
    margin-bottom: 1.75rem;
  }
}
@media only screen and (min-width: 48em) {
  .checkout .basket-summary.delivery .clearfix {
    margin-bottom: 0.8rem;
  }
}
#id_address-phone_area, #UserAddressForm_UserAddressForm_addressphone_area, #UserAddressForm_UserAddressForm_phone_area {
  width: 90px;
  margin-right: 10px;
}
#UserAddressForm_UserAddressForm_addressphone, #UserAddressForm_UserAddressForm_phone {
  width: calc(100% - 100px);
}
@media only screen and (min-width: 71.875em) {
  #UserAddressForm_UserAddressForm_addressphone, #UserAddressForm_UserAddressForm_phone {
    width: calc(80% - 100px);
  }
}
#phone {
  width: 61.5%;
}
.checkout-signup, body.Security form {
  margin: 0px auto;
  width: 100%;
}
@media only screen and (min-width: 30em) {
  .checkout-signup, body.Security form {
    max-width: 550px;
  }
}
.checkout-signup input[type="email"], body.Security form input[type="email"], .checkout-signup input[type="number"], body.Security form input[type="number"], .checkout-signup input[type="password"], body.Security form input[type="password"], .checkout-signup input[type="search"], body.Security form input[type="search"], .checkout-signup input[type="tel"], body.Security form input[type="tel"], .checkout-signup input[type="text"], body.Security form input[type="text"], .checkout-signup input[type="url"], body.Security form input[type="url"], .checkout-signup input[type="color"], body.Security form input[type="color"], .checkout-signup input[type="date"], body.Security form input[type="date"], .checkout-signup input[type="datetime"], body.Security form input[type="datetime"], .checkout-signup input[type="datetime-local"], body.Security form input[type="datetime-local"], .checkout-signup input[type="month"], body.Security form input[type="month"], .checkout-signup input[type="time"], body.Security form input[type="time"], .checkout-signup input[type="week"], body.Security form input[type="week"] {
  box-sizing: border-box;
}
.checkout-signup .message, body.Security form .message {
  margin-bottom: 10px;
}
.checkout-signup div.save-desc, body.Security form div.save-desc {
  font-size: 14px;
  color: #808285;
}
.checkout-signup a.save-desc, body.Security form a.save-desc {
  display: block;
  color: #808285;
  font-size: 12px;
}
.checkout-signup .continue-btn, body.Security form .continue-btn {
  margin-top: 20px;
}
.checkout-signup .extra-info label, body.Security form .extra-info label {
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 580px) {
  .checkout-signup .extra-info label, body.Security form .extra-info label {
    width: 20%;
  }
}
.checkout-signup .extra-info input, body.Security form .extra-info input {
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 580px) {
  .checkout-signup .extra-info input, body.Security form .extra-info input {
    width: 80%;
  }
}
.checkout-signup .radio, body.Security form .radio {
  margin: 0;
  padding-left: 40px;
}
.checkout-signup .radio input, body.Security form .radio input {
  margin: 10px 0;
  padding: 10px;
}
.checkout-signup .radio.selected, body.Security form .radio.selected {
  background: #DEDFE2;
}
.checkout-signup .radio > label, body.Security form .radio > label {
  margin-left: -20px;
}
.checkout-signup .radio-group, body.Security form .radio-group {
  background: #F1F1F2;
}
.checkout-signup .login-help-button, body.Security form .login-help-button {
  margin-top: 20px;
}
.login-help-button {
  float: right;
}
.micro-page-head .dish-login-logo {
  float: right;
  max-height: 69px;
}
::-webkit-input-placeholder {
  font-size: 14px;
}
:-moz-placeholder {
  font-size: 14px;
}
::-moz-placeholder {
  font-size: 14px;
}
:-ms-input-placeholder {
  font-size: 14px;
}
.message {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  padding: 10px;
}
.message--info {
  background-color: #feca0a;
  color: #FFF;
  padding-left: 40px;
  position: relative;
}
.message--info:before {
  color: white;
  position: absolute;
  left: 5px;
  top: 9px;
  font-size: 20px;
}
.message.bad {
  background: lightpink;
  font-weight: bold;
}
.message.warning {
  background: lightyellow;
  font-weight: bold;
}
.progress-bar {
  position: relative;
  display: block;
  background-color: #E7E8E9;
  height: 3px;
  margin: 42px 0;
}
.progress-bar .progress {
  background-color: #F0005B;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.progress-bar .progress-points {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.progress-bar .progress-point {
  background: #FFF;
  border-radius: 50%;
  border: 3px solid #E7E8E9;
  position: absolute;
  height: 2em;
  width: 2em;
  line-height: 1.75em;
  text-align: center;
  top: -13px;
  color: #A9A9A9;
  font-weight: bold;
}
.progress-bar .progress-point:nth-child(1) {
  left: 0;
}
.progress-bar .progress-point:nth-child(2) {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.progress-bar .progress-point:nth-child(3) {
  right: 0;
}
.progress-bar.step-1 .progress {
  width: 0%;
}
.progress-bar.step-1 .progress-point:nth-child(1) {
  color: #feca0a;
  border-color: #feca0a;
}
.progress-bar.step-2 .progress {
  width: 50%;
}
.progress-bar.step-2 .progress-point:nth-child(1) {
  color: #feca0a;
  border-color: #feca0a;
}
.progress-bar.step-2 .progress-point:nth-child(2) {
  color: #feca0a;
  border-color: #feca0a;
}
.progress-bar.step-3 .progress {
  width: 100%;
}
.progress-bar.step-3 .progress-point:nth-child(1) {
  color: #feca0a;
  border-color: #feca0a;
}
.progress-bar.step-3 .progress-point:nth-child(2) {
  color: #feca0a;
  border-color: #feca0a;
}
.progress-bar.step-3 .progress-point:nth-child(3) {
  color: #feca0a;
  border-color: #feca0a;
}
.display-inline-block {
  display: inline-block;
}
.full-width {
  width: 100% !important;
}
.casestudy-page .content-container {
  margin-bottom: 72px;
}
.casestudy-page h1 {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.3;
  margin-top: 0px;
  margin-bottom: 36px;
}
@media only screen and (max-width: 53.0625em) {
  .casestudy-page h1 {
    font-size: 23px;
    font-size: 1.4375rem;
    line-height: 1.3;
  }
}
.casestudy-page h2.subtitle, .casestudy-page h2.subtitle--landingpage {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.3;
  margin: -15px 0 0 0;
}
@media only screen and (max-width: 53.0625em) {
  .casestudy-page h2.subtitle, .casestudy-page h2.subtitle--landingpage {
    margin-top: 5px;
  }
}
.casestudy-page h2.subtitle--landingpage {
  margin: -26px 0 10px 0;
}
.casestudy-page h2.separator {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.05;
  border-bottom: solid 1px #E4E4E4;
  padding-bottom: 5px;
}
.casestudy-page p {
  font-size: 18px;
}
.casestudy-page .intro-line {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.05;
  margin-top: 48px;
}
.casestudy-page .header-block {
  margin-bottom: 30px;
}
@media only screen and (max-width: 47.9375em) {
  .casestudy-page .header-block {
    margin-top: 24px;
  }
}
.casestudy-page .header-block__titles {
  vertical-align: bottom;
}
@media only screen and (min-width: 48em) {
  .casestudy-page .header-block__titles {
    width: calc(100% - 150px);
  }
}
.casestudy-page .header-block__titles a {
  text-decoration: none;
}
.casestudy-page .header-block--link {
  vertical-align: bottom;
}
.casestudy-page .header-block--link a {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.0111111111;
  color: black;
  text-decoration: none;
}
.casestudy-page .header-block--link a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 53.0625em) {
  .casestudy-page .vendiagram {
    margin-top: 25px;
  }
}
.casestudy-page .footer-block {
  margin-bottom: 60px;
  margin-top: 60px;
}
.casestudy-page .casestudy-hero-banner {
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}
.casestudy-page .casestudy-hero-banner * {
  color: #fff;
}
.casestudy-page .casestudy-hero-banner .casestudy-hero-image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0px;
  z-index: -1;
}
.casestudy-page .casestudy-hero-banner .casestudy-hero-content p {
  margin: 0px;
  font-size: 4rem;
}
.casestudy-page .casestudy-hero-banner .casestudy-hero-content h1 {
  font-size: 6rem;
  margin-bottom: 0px;
  text-transform: unset;
}
@media only screen and (max-width: 47.9375em) {
  .casestudy-page .casestudy-hero-banner .casestudy-hero-content p {
    font-size: 3rem;
  }
  .casestudy-page .casestudy-hero-banner .casestudy-hero-content h1 {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 29.9375em) {
  .casestudy-page .casestudy-hero-banner .casestudy-hero-content p {
    font-size: 2rem;
  }
  .casestudy-page .casestudy-hero-banner .casestudy-hero-content h1 {
    font-size: 3rem;
  }
}
.casestudy-page .content-marketing-video {
  border: solid 5px black;
  width: 615px;
}
.casestudy-page .video-container {
  background-color: black;
  padding-top: 48px;
  padding-bottom: 48px;
}
.casestudy-page .video {
  max-width: 754px;
  margin-left: auto;
  margin-right: auto;
}
.casestudy-page .thumb-icon {
  font-size: 15px;
  margin-right: 5px;
  margin-left: 0px;
}
.casestudy-page .container {
  margin-top: 45px;
}
.casestudy-page .casestudy-text-banner {
  background: #f0f0f0;
  padding: 48px 0px;
}
.casestudy-page .casestudy-text-banner * {
  color: black;
  text-transform: unset;
}
.casestudy-page .casestudy-content {
  display: none;
}
.casestudy-page .secondary-tile__img {
  border: solid 2px #f0f0f0;
}
.casestudy-page .casestudy-images {
  margin-bottom: 48px;
}
.casestudy-page .casestudy-images .grid__item {
  margin-bottom: 24px;
}
.casestudy-page .casestudy-images .image__item {
  padding: 24px;
  background-color: #f0f0f0;
  text-align: center;
  height: 100%;
}
.casestudy-page .casestudy__content {
  width: 100%;
  float: none;
  margin: 0 auto;
}
.casestudy-page .casestudy__content img {
  height: auto;
}
.casestudy-page .casestudy__content p {
  margin-top: 40px;
  font-size: 18px;
}
.casestudy-page .casestudy__content .wistia_responsive_padding, .casestudy-page .casestudy__content iframe {
  margin-left: 0px;
  margin-right: 0px;
}
@media only screen and (min-width: 53.125em) {
  .casestudy-page .casestudy__content .wistia_responsive_padding, .casestudy-page .casestudy__content iframe {
    margin-top: 40px;
    margin-left: -20%;
    margin-right: -20%;
    margin-bottom: 26%;
  }
}
.page-checkout--dish .header-container {
  overflow: hidden;
  border-bottom: 1px solid #E4E4E4;
}
.page-checkout--dish .header-checkout {
  background-color: white;
  color: black;
  border-color: #ECECEC;
}
.page-checkout--dish .header-checkout li.selected {
  border-color: #C4004F;
}
.page-checkout--dish .block-title, .page-checkout--dish .total-price.h1 {
  color: #C4004F;
}
.page-checkout--dish .button--secondary, .page-checkout--dish body.Security input[type="submit"], body.Security .page-checkout--dish input[type="submit"], .page-checkout--dish .errorlist {
  background-color: #C4004F;
}
@media only screen and (max-width: 47.9375em) {
  .page-checkout--dish .logo {
    float: none;
    position: static;
  }
  .page-checkout--dish .logo img {
    margin-top: 10px;
    margin-bottom: 10px;
    max-height: 60px;
  }
}
@media only screen and (min-width: 48em) {
  .page-checkout--dish .logo {
    margin-left: -12px;
  }
}
.offer-page {
  padding-top: 0;
}
@media only screen and (min-width: 53.125em) {
  .offer-page {
    background-color: #f0f0f0;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f0f0f0), color-stop(50%, #FFF));
    background-image: -webkit-linear-gradient(-360deg, #f0f0f0 50%, #FFF 50%);
    background-image: linear-gradient(90deg,#f0f0f0 50%, #FFF 50%);
    padding-top: 0;
  }
}
.offer-page .form-container {
  margin-top: 24px;
}
.offer-page .form-container .radio {
  margin: 0;
  background-color: #F1F1F2;
}
.offer-page .form-container .radio.selected {
  background: #DEDFE2;
}
.offer-page .form-container .save-desc {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.05;
}
.offer-page .form-container .title-block .logo-tangible {
  max-height: 25px;
  float: right;
}
.offer-page .form-container label {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}
.offer-page .form-container input {
  margin-top: 12px;
}
.offer-page .subscription-container .subscription {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
}
.offer-page .subscription-container select {
  width: 100%;
}
.offer-page .subscription-container input {
  float: left;
}
.offer-page .subscription-container span {
  overflow: hidden;
  display: block;
  margin-left: 1.5em;
}
.offer-page .subscription-container .block-group {
  margin-top: 12px;
}
@media only screen and (min-width: 30em) {
  .offer-page .subscription-container .block-group {
    margin-top: 0;
    float: none;
    overflow: hidden;
    clear: none;
  }
}
.offer-page .subscription-container .block-content {
  margin-left: 0;
  float: none;
}
.offer-page .subscription-container .radio-group {
  margin-top: 0;
}
.offer-page .subscription-container .radio {
  margin: 0;
  background-color: #F1F1F1;
}
.offer-page .subscription-container .radio.selected {
  background: #DEDFE2;
}
.offer-page .subscription-container .total-price.h1 {
  color: black;
}
.offer-page .subscription-container .selection-form {
  display: inline-block;
}
.offer-page .subscription-container .selection-form .button, .offer-page .subscription-container .selection-form body.Security input[type="submit"], body.Security .offer-page .subscription-container .selection-form input[type="submit"] {
  min-width: 80px;
}
.offer-page.Dish strong {
  font-weight: bold;
}
.offer-page.Dish .arrow_box.selected {
  background-color: #595959;
  color: white;
}
.offer-page.Dish .arrow_box.selected:after {
  border-top-color: #595959;
}
.offer-page.Dish input[type=radio]:checked + label:before, .offer-page.Dish input[type=checkbox]:checked + label:before {
  background-color: #595959;
}
.offer-page.Dish .button--default.underline:after {
  border-bottom-color: #595959;
}
.offer-page.Dish .button--default:hover {
  background-color: #595959;
  color: white;
}
.offer-page .social-icons {
  height: 25px;
  display: inline-block;
}
.offer-page .social a {
  font-size: 25px;
  text-decoration: none;
  color: black;
}
.offer-page .social-icons.svg-x svg {
  height: 100%;
  margin-left: 0.2em;
  margin-right: 0.2em;
  margin-top: -0.3em;
}
.offer-page .social.white .svg-x {
  fill: white;
}
.offer-page .social.white a {
  color: white;
}
.offer-page .footer-nav {
  margin-top: 48px;
}
.offer-page .footer-nav a {
  color: white;
  text-decoration: none;
}
.offer-page .footer-nav a:hover {
  text-decoration: underline;
}
.offer__panel > .panel-container {
  max-width: 550px;
  padding: 24px 48px;
  margin: 0 auto;
}
@media only screen and (min-width: 53.125em) {
  .offer__panel > .panel-container {
    display: inline-block;
  }
}
.offer__panel > .panel-container--full {
  width: 100%;
  padding: 24px;
}
.offer__panel--left {
  text-align: right;
  background-color: #f0f0f0;
}
.offer__panel--left > .panel-container {
  text-align: left;
}
.offer__panel--left .support-preview {
  margin-top: 24px;
}
.offer__header h1 {
  color: #feca0a;
}
@media only screen and (min-width: 30em) {
  .offer__header h1 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1;
  }
}
.offer__header h2 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-top: 0;
}
.medium__header h1 {
  display: inline-block;
}
@media only screen and (min-width: 30em) {
  .medium__header h1 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1;
  }
}
.medium__header h2 {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.2;
  margin-top: 0;
}
.offer__panel__logo {
  max-width: 250px;
}
.micro-page-head img {
  margin-bottom: 24px;
}
.flat-page .page-content {
  max-width: 600px;
  margin: 0 auto 48px;
}
body.Security form fieldset {
  padding: 20px;
  background: #dedfe2;
}
body.Security form fieldset label.left {
  width: 30%;
  display: inline-block;
}
body.Security form fieldset .middleColumn {
  display: inline-block;
  width: 70%;
}
body.Security form fieldset .middleColumn input {
  width: 100%;
  display: inline-block;
  padding: 9px;
  border: 0;
  margin-bottom: 20px;
}
body.Security form fieldset .description {
  font-size: 11px;
  width: 70%;
  display: block;
  margin-left: 30%;
  margin-bottom: 20px;
}
body.Security input[type="submit"] {
  margin-top: 20px;
}
body.Security .otherlinks {
  margin-top: 20px;
}
.mediakit {
  padding-bottom: 48px;
}
.mediakit .product-tile .product-image-container {
  padding: 48px 24px;
  height: 300px;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}
.mediakit .mediakit__contact a {
  color: inherit;
  text-decoration: none;
}
.mediakit .mediakit__contact .mediakit__contact-image {
  border: 1px solid;
  border-radius: 50%;
}
.mediakit .mediakit__stats {
  display: grid;
  max-width: 400px;
  grid-template-columns: 1fr 1fr;
  margin: 48px 0px;
}
.product-teaser {
  width: 250px;
  float: left;
  margin-right: 50px;
  margin-bottom: 20px;
  min-height: 500px;
}
.product-name {
  font-weight: bold;
}
.product-blurb {
  font-size: 13px;
  min-height: 70px;
}
.product-cta {
  background-color: #eb005e;
  text-align: center;
  border-radius: 0px 0px 5px 5px;
}
.product-cta a {
  color: #FFF;
}
sup.icon-help-circled {
  font-size: 14px;
  color: #808285;
}
html, body {
  height: 100%;
}
body {
  display: table;
  width: 100%;
}
.page-row {
  display: table-row;
}
.page-row-expanded {
  height: 100%;
}
.pac-container {
  z-index: 9999;
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22%2Fthemes%2Ftangible%2Fsass%2Fmain.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fvendors%2F_csswizardry-grids.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fvendors%2F_fontello.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fvendors%2F_jquery.webui-popover.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fvendors%2F_tooltipster.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fvendors%2F_magnific-popup.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fhelpers%2F_mixins.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fbourbon%2Fcss3%2F_keyframes.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fhelpers%2F_animations.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fbase%2F_normalize.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fbase%2F_font-face.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fbase%2F_fonts.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fbase%2F_helpers.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fbase%2F_core.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fbase%2F_layout.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fbase%2F_grid-extended.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_header.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_buttons.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_footer.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_before-footer.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_product.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_block.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_tab.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_form.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_arrow-box.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_basket.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_modal.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_messages.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_loader.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_tooltipster.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_ckeditor-templates.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_tiles-secondary.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_get-in-touch.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_autocomplete.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_text-banner.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_image-banner.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fcomponents%2F_client-logos.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fpages%2F_homepage.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fpages%2F_product.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fpages%2F_account.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fpages%2F_checkout.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fpages%2F_case-study.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fpages%2F_checkout--dish.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fpages%2F_offer.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fpages%2F_micro-page.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fpages%2F_flat-page.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fpages%2Flostpass.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2Fpages%2F_mediakit.scss%22%2C%22%2Fthemes%2Ftangible%2Fsass%2F_shame.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC4NA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAD5NA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACsPI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADtPJ%3BAAAA%3BAAAA%3BAAAA%3BAC2QA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAD%2FQJ%3BAAAA%3BAAAA%3BAAAA%3BAC0RA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAD7RJ%3BAAAA%3BAAAA%3BACsSA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BADzSJ%3BAAAA%3BAAAA%3BAAAA%3BACmTA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BADtTJ%3BAAAA%3BAAAA%3BAAAA%3BACkUI%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BADzUJ%3BAAAA%3BAAAA%3BACkVA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BADrVJ%3BAAAA%3BAAAA%3BAC8VA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BADjWJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACmXI%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAD%2FcJ%3BAAAA%3BAAAA%3BAC0LY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6LJ%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAArRQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6LJ%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAArRQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6LJ%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAArRQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6LJ%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAArRQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6LJ%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAArRQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6LJ%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAArRQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6LJ%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAArRQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6LJ%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAArRQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6LJ%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAD%2FcJ%3BAAAA%3BAAAA%3BAC4eI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAArHI%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAD%2FcJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAECA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEwBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAoCA%3BAAAA%3BAAAA%3BAAAA%3BAF5DA%3BAE8DA%3BAAAA%3BAAAA%3BAF9DA%3BAE%2BDA%3BAAAA%3BAAAA%3BAF%2FDA%3BAEgEA%3BAAAA%3BAAAA%3BAFhEA%3BAEiEA%3BAAAA%3BAAAA%3BAFjEA%3BAEkEA%3BAAAA%3BAAAA%3BAFlEA%3BAEmEA%3BAAAA%3BAAAA%3BAFnEA%3BAEoEA%3BAAAA%3BAAAA%3BAFpEA%3BAEqEA%3BAAAA%3BAAAA%3BAFrEA%3BAEsEA%3BAAAA%3BAAAA%3BAFtEA%3BAEuEA%3BAAAA%3BAAAA%3BAFvEA%3BAEwEA%3BAAAA%3BAAAA%3BAFxEA%3BAEyEA%3BAAAA%3BAAAA%3BAFzEA%3BAE0EA%3BAAAA%3BAAAA%3BAF1EA%3BAE6EA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF7EA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGSA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAmBA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAH1QA%3BAICA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJDA%3BAISA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJTA%3BAIkBA%3BAAAA%3BAAAA%3BAJlBA%3BAIwBA%3BAAAA%3BAAAA%3BAAAA%3BAJxBA%3BAI8BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAJ1CA%3BAI%2BCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ%2FHA%3BAIwIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJrPA%3BAIiQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJjQA%3BAKCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUE%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAGJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBE%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWE%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALtOF%3BAKiPA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALjPA%3BAK8PA%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUE%3BAAAA%3BAAAA%3BAAEF%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWF%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJnLY%3BAK7JJ%3BAAAA%3BAAAA%3BAAAA%3BAL6JI%3BAK7JJ%3BAAAA%3BAAAA%3BAAAA%3BAL6JI%3BAK7JJ%3BAAAA%3BAAAA%3BAAAA%3BAL6JI%3BAK7JJ%3BAAAA%3BAAAA%3BAAAA%3BAL6JI%3BAK7JJ%3BAAAA%3BAAAA%3BAAAA%3BAL6JI%3BAK7JJ%3BAAAA%3BAAAA%3BAAAA%3BAL6JI%3BAK7JJ%3BAAAA%3BAAAA%3BAAAA%3BAL6JI%3BAK7JJ%3BAAAA%3BAAAA%3BAAAA%3BAL6JI%3BAK7JJ%3BAAAA%3BAAAA%3BAAAA%3BAClBJ%3BACRA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADWA%3BACfA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADkBA%3BACtBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADyBA%3BAC7BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BARbA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATRA%3BAAAA%3BAAAA%3BASkBA%3BAAAA%3BAAAA%3BATlBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASgCA%3BAAAA%3BAAAA%3BAThCA%3BAAAA%3BAAAA%3BAAAA%3BASqDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATrDA%3BAAAA%3BAAAA%3BAAAA%3BASkEA%3BAAAA%3BAAAA%3BAAAA%3BATlEA%3BAAAA%3BAAAA%3BAAAA%3BAS4EA%3BAAAA%3BAAAA%3BAT5EA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASwFA%3BAAAA%3BAAAA%3BATxFA%3BAAAA%3BAAAA%3BASgGA%3BAAAA%3BAAAA%3BAThGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAS4GA%3BAAAA%3BAAAA%3BAT5GA%3BAAAA%3BAAAA%3BASoHA%3BAAAA%3BAAAA%3BATpHA%3BAAAA%3BAAAA%3BAS6HA%3BAAAA%3BAAAA%3BAT7HA%3BAAAA%3BAAAA%3BAAAA%3BASsIA%3BAAAA%3BAAAA%3BAAAA%3BATtIA%3BAAAA%3BAAAA%3BAS%2BIA%3BAAAA%3BAAAA%3BAAAA%3BAT%2FIA%3BAAAA%3BAAAA%3BASwJA%3BAAAA%3BAAAA%3BATxJA%3BAAAA%3BAAAA%3BASgKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAT5KA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASuLA%3BAAAA%3BAAAA%3BATvLA%3BAAAA%3BAAAA%3BAS%2BLA%3BAAAA%3BAAAA%3BAT%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAS0MA%3BAAAA%3BAAAA%3BAT1MA%3BAAAA%3BAAAA%3BASkNA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATlNA%3BAAAA%3BAAAA%3BAS4NA%3BAAAA%3BAAAA%3BAT5NA%3BAAAA%3BAAAA%3BASoOA%3BAAAA%3BAAAA%3BAAAA%3BATpOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAS2PA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAT3PA%3BAAAA%3BAAAA%3BASyQA%3BAAAA%3BAAAA%3BATzQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASoRA%3BAAAA%3BAAAA%3BATpRA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASiSA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATjSA%3BAAAA%3BAAAA%3BAS6SA%3BAAAA%3BAAAA%3BAT7SA%3BAAAA%3BAAAA%3BASsTA%3BAAAA%3BAAAA%3BAAAA%3BATtTA%3BAAAA%3BAAAA%3BAAAA%3BASiUA%3BAAAA%3BAAAA%3BATjUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAS6UA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAT7UA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASyVA%3BAAAA%3BAAAA%3BATzVA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASoWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATpWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASiXA%3BAAAA%3BAAAA%3BATjXA%3BAAAA%3BAAAA%3BAS0XA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAT1XA%3BAAAA%3BAAAA%3BAAAA%3BASqYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATrYA%3BAAAA%3BAAAA%3BAS8YA%3BAAAA%3BAAAA%3BAT9YA%3BAAAA%3BAAAA%3BAAAA%3BASuZA%3BAAAA%3BAAAA%3BATvZA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASkaA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAC5eJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACRA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAwEA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAC1IA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWR%3BAAAA%3BAAAA%3BAAMQ%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAC7FA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAqBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAYJ%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAb1KA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAa6LA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC7LA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAb0LY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAD1LZ%3BAAAA%3BAAAA%3BAeMA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAfTJ%3BAAAA%3BAAAA%3BAekBA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACzDA%3BAAAA%3BAAAA%3BAfyLY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAelLZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfkLY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAerKZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfqKY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAexJR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQE%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfiGU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAexFR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfqDU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe9CV%3BAAAA%3BAAAA%3BAAAA%3BAf8CU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAenCV%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAf8BU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAebV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfaU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAeHV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfGU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAeSV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYE%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcE%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIF%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAflEY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe4EZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAf5EY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAeuGV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAf5JU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe2KV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAf3KU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe2LV%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAf%2FLU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAewMV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAftOY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAeiPV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWE%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAf%2FQU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAemSV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfnSU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAemTV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAfnTU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAe4TV%3BAAAA%3BAAAA%3BAf5TU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAeoUV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAgCE%3BAAAA%3BAAAA%3BAAAA%3BAC9iBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAEE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUE%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAON%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAON%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAMN%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAhBsEU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgB3DV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BACpJF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjBiLI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiBnKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjBmKQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiBtJR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjBsJQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiB3IR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjB2IQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAiB%2FHJ%3BAAAA%3BAAAA%3BAC3DR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAlBoLW%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAkB7KX%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BACvBG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAnB%2BKU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmB9JX%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAC5DF%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAASJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BApBiKY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAoBxJZ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQH%3BAAAA%3BAAAA%3BApB4HW%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAoB7GZ%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BApB%2BFY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAoBrFX%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BApBqFW%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAoBtEV%3BAAAA%3BAAAA%3BAAAA%3BApBsEU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAoB1DX%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BApBiDW%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAoB%2FBX%3BAAAA%3BAAAA%3BAAAA%3BAC3JD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BACpFA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAvBvBA%3BAuB8BA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BACxIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBD%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAChCA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BACpBR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAKQ%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAzB8IQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyBnIR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAzBmIQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyBxHR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAzBwHQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyB5GR%3BAAAA%3BAAAA%3BAzB4GQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyBpGR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BA1B1JR%3BA0BkKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA1BlKA%3BA0B0KA%3BAAAA%3BAAAA%3BA1B1KA%3BA0B8KA%3BAAAA%3BAAAA%3BA1B9KA%3BA0BmLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA1BnLA%3BA0B2LA%3BAAAA%3BAAAA%3BA1B3LA%3BA0B%2BLA%3BAAAA%3BAAAA%3BAC%2FLA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BACxBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BArBrDC%3BAqB%2BDD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BArBhEC%3BAqBwDD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BArBzDC%3BAqBiDD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BArBlDC%3BAqB0CD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BACjGJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACVI%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BACrBR%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BACvER%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACvBA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACXJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC1BJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAGA%3BAACI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BACzCR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACEC%3BAAAA%3BAAAA%3BAAAA%3BApCwLW%3BAoClLV%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAKF%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAClDD%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaD%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAOE%3BAAAA%3BAAAA%3BArCoGS%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAsC%2FKX%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAYF%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BACvED%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAIH%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMG%3BAAAA%3BAAAA%3BAAAA%3BAAKH%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAvC%2BEU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuCrEV%3BAAAA%3BAAAA%3BAAAA%3BAvCqEU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuC3DV%3BAAAA%3BAAAA%3BAvC2DU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuCrDV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAvCgDS%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuCvCT%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAvC8BS%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuCrBV%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAvCiBS%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuCEX%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAvCpFU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuC8FT%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAvCzGU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuC2HJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAvC3HI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuCuIV%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAvCzJA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuC2KV%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAvCzLU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuCkMV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAvC3NU%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuC4OZ%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAvCjPY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuC0PZ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAvC9PY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuCsQX%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAIG%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAlC%2FdE%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAkCyeF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUE%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAWH%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAC1pBI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAxCqLQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwC7KR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAxC6KQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwCpKR%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAxCiJQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwC1IR%3BAAAA%3BAAAA%3BAxC0IQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwCpIJ%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAxCmHA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAwCrGR%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUI%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAxCqEA%3BAwC%2FDI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAxC4DJ%3BAwCvDI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAQZ%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAxCzBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyCvLR%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAzCoKQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAyC3JA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAzC2JA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0C1LZ%3BAAAA%3BAAAA%3BA1C0LY%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0CjLR%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BA1C0HI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0CjHJ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAUJ%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAaR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA1CmBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0CTJ%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BA1CdQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0CqBR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BA1C3BQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BA0CiCR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAChOI%3BAAAA%3BAAAA%3BACFJ%3BAAAA%3BAAAA%3BAAAA%3BACKQ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASR%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BACrCJ%3BAAAA%3BAAAA%3BAAGQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACpBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%22%7D */