@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

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

table {
  border-collapse: collapse;
  border-spacing: 0; }

.section-header {
  font-size: 28px;
  font-weight: lighter;
  margin-top: 5pt;
  margin-bottom: 12pt;
  font-family: "Roboto Slab";
}

.error {
  color: red; }

/*------------------------------------*\
    $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’:
 */
/**
 * 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.
 */
#footer {
  list-style: none;
  /* [1] */
  margin: 0;
  /* [2] */
  padding: 0;
  /* [2] */
  margin-left: -24px;
  /* [3] */ }

/**
 * 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.
 */
.one-twelfth, .two-twelfths, .three-twelfths, .four-twelfths, .five-twelfths, .six-twelfths, .seven-twelfths, .eight-twelfths, .nine-twelfths, .ten-twelfths, .eleven-twelfths, #map, #chart, form .input_set label, form .input_set input[type=text], form .input_set input[type=password], form .input_set select, form .input_set textarea, form input[type=submit], form .button, .checkbox_holder, #header #logo_holder, .content-block, .content-block .content-sub-block, #footer #copyright, #footer #quotation-mark, #footer #footer-testimonial {
  display: inline-block;
  /* [1] */
  padding-left: 24px;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  -webkit-box-sizing: border-box;
  /* [5] */
  -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`.
 */
/**
 * Gutterless grids have all the properties of regular grids, minus any spacing.
 * Extends `.grid`.
 */
/**
 * Align the entire grid to the right. Extends `.grid`.
 */
/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */
.content-block {
  text-align: center; }
  .content-block > .one-twelfth, .content-block > .two-twelfths, .content-block > .three-twelfths, .content-block > .four-twelfths, .content-block > .five-twelfths, .content-block > .six-twelfths, .content-block > .seven-twelfths, .content-block > .eight-twelfths, .content-block > .nine-twelfths, .content-block > .ten-twelfths, .content-block > .eleven-twelfths, .content-block > #map, .content-block > #chart, form .input_set .content-block > label, form .input_set .content-block > input[type=text], form .input_set .content-block > input[type=password], form .input_set .content-block > select, form .input_set .content-block > textarea, form .content-block > input[type=submit], form .content-block > .button, .content-block > .checkbox_holder, #header .content-block > #logo_holder, .content-block > .content-block, .content-block > .content-sub-block, #footer .content-block > #copyright, #footer .content-block > #quotation-mark, #footer .content-block > #footer-testimonial {
    text-align: left; }

/**
 * Align grid cells vertically (`.grid--middle` or `.grid--bottom`). Extends
 * `.grid`.
 */
/**
 * Create grids with narrower gutters. Extends `.grid`.
 */
/**
 * Create grids with wider gutters. Extends `.grid`.
 */
/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Create our width classes, prefixed by the specified namespace.
 */
/**
 * Our regular, non-responsive width classes.
 */
/**
 * Whole
 */
/**
 * Halves
 */
.six-twelfths, #map, #chart {
  width: 50%; }

/**
 * Thirds
 */
.four-twelfths {
  width: 33.333%; }

.eight-twelfths {
  width: 66.666%; }

/**
 * Quarters
 */
.three-twelfths {
  width: 25%; }

.nine-twelfths {
  width: 75%; }

/**
 * Fifths
 */
/**
 * Sixths
 */
.two-twelfths, #header #logo_holder {
  width: 16.666%; }

.ten-twelfths, .content-block .content-sub-block {
  width: 83.333%; }

/**
 * Eighths
 */
/**
 * Tenths
 */
/**
 * Twelfths
 */
.one-twelfth, #footer #quotation-mark {
  width: 8.333%; }

.five-twelfths, form .input_set label, #footer #copyright, #footer #footer-testimonial {
  width: 41.666%; }

.seven-twelfths, form .input_set input[type=text], form .input_set input[type=password], form .input_set select, form .input_set textarea, form input[type=submit], form .button, .checkbox_holder {
  width: 58.333%; }

.eleven-twelfths {
  width: 91.666%; }

/**
 * Our responsive classes, if we have enabled them.
 */
@media only screen and (max-width: 480px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */ }
@media only screen and (min-width: 481px) and (max-width: 1023px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */ }
@media only screen and (max-width: 1023px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */ }
@media only screen and (min-width: 1024px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */ }
/*------------------------------------*\
    $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.
 */
.row, form .input_set, #footer {
  white-space: nowrap;
  margin: 0px; }

#map svg {
  width: 100%; }

.tooltip {
  background: #fffff8;
  border: 1px solid #EC6D0E;
  color: #EC6D0E;
  padding: 15px;
  position: absolute;
  display: none;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px; }

.circle {
  opacity: 0;
  fill: #b9b9b9;
  fill-opacity: 1;
  stroke: black;
  stroke-width: 0.99986893;
  stroke-miterlimit: 3.97446823;
  stroke-dasharray: none;
  stroke-opacity: 1; }

/*
 * Land
 */
.land {
  fill: #b9b9b9;
  fill-opacity: 1;
  stroke: #ffffff;
  stroke-opacity: 1;
  stroke-width: 0.99986997;
  stroke-miterlimit: 3.97446823;
  stroke-dasharray: none; }

/*
 * Sea
 */
.ocean {
  fill: none;
  stroke: none; }

.lake {
  fill: #fffff8;
  fill-opacity: 1;
  stroke: #ffffff;
  stroke-opacity: 1;
  stroke-width: 0.99986997;
  stroke-miterlimit: 3.97446823;
  stroke-dasharray: none; }

svg .shipped, svg .shipped * {
  fill: #EC6D0E; }
  svg .shipped:hover, svg .shipped *:hover {
    fill: #FF7A32; }

#chart {
  	/*.grid rect{
  		fill:$subtle-color;
  	}
  
  	.grid rect:first-of-type{
  		fill:#000;
  	}
  
  	.area{
  		fill:$accent-color;
  		fill-opacity:.9;
  		stroke:none;
  	}*/ }
  #chart img {
    width: 100%;
    margin: 0 auto;
    max-width: 494px; }
  #chart h3 {
    text-align: center;
    width: 100%; }

html {
  background: #222; }

*, body {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  white-space: normal;
  line-height: 140%;
  font-size: 13pt; }

body {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #fffff8; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Slab";
  line-height: 140%; }

h1, h2 {
  font-weight: lighter;
  margin-top: 21pt;
  margin-bottom: 12pt; }

h1 {
  font-size: 34pt; }

h2 {
  font-size: 21pt; }

h3 {
  font-size: 13pt;
  margin-bottom: 12pt; }

p {
  margin-bottom: 12pt; }

p.note {
  font-size: 13pt;
  color: #A9A9A9;}

p.note-attention {
  color: #1c871e;}

a {
  text-decoration: none;
  color: #EC6D0E; }
  a:hover {
    text-decoration: underline; }

ul.bullet {
  list-style: disc;
  padding-left: 12pt; }
  ul.bullet li {
    margin-bottom: 6pt;
    padding-left: 12pt; }

form {
  margin-top: 24pt; }
  form .input_set {
    width: 100%;
    margin-bottom: 12px; }
    form .input_set label {
      text-align: right;
      font-family: 'Roboto Slab'; }
    form .input_set input[type=text], form .input_set input[type=password], form .input_set select, form .input_set textarea {
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      border-radius: 20px;
      border: #E2E2E2 1px solid; }
    form .input_set.flex {
      display: flex; }
    form .input_area {
      flex: 1;
      margin-left: 6px; }
    form .input_set .input_area input {
      width: 100%; }
    form .input_area select {
      margin-bottom: 8px;
      width: 100%; }
  form input[type=submit], form input[type=submit], form .button {
    float: right; }

.flex {
  display: flex; }

#paypal {
  float: none;
  width: auto; }

#forgot_password {
  width: 100%;
  text-align: right;
  display: block;
  float: right; }

.genre_holder {
  display: inline-block; }

.checkbox_holder {
  float: right; }

.hoverable, a, .button, form input[type=submit], form .button, #footer #quotation-mark {
  -webkit-transition: background 200ms ease-in-out 0ms, color 200ms ease-in-out 0ms;
  -moz-transition: background 200ms ease-in-out 0ms, color 200ms ease-in-out 0ms;
  -o-transition: background 200ms ease-in-out 0ms, color 200ms ease-in-out 0ms;
  transition: background 200ms ease-in-out 0ms, color 200ms ease-in-out 0ms; }

.button, form input[type=submit], form .button {
  cursor: pointer;
  margin-top: 12pt;
  margin-bottom: 12pt;
  padding: 20px 25px;
  background: #EC6D0E;
  color: #fffff8;
  border: 0px;
  font-style: italic;
  font-size: 16pt;
  display: inline-block;
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-decoration: none; }
  .button:hover, form input[type=submit]:hover {
    background: #FF7A32;
    text-decoration: none; }

.submenu ul {
  border-bottom: 0.25pt solid #E2E2E2;
  border-top: 0.25pt solid #E2E2E2;
  margin-right: 30px;
  padding-right: 30px; }
  .submenu ul li {
    display: inline-block;
    padding: 10px; }

#header {
  padding-top: 20px; }
  #header #logo_holder {
    display: inline-block;
    text-align: center;
    z-index: 10;
    position: relative; }
  #header #menu {
    float: right;
    padding-right: 10px; }
    #header #menu ul {
      text-align: right; }
    #header #menu li {
      display: inline-block;
      padding: 10px;
      font-size: 12pt; }

#hero-image {
  width: 100%;
  position: relative;
  top: -50px;
  background: url("../images/hero-image.jpg");
  height: 550px;
  background-size: cover;
  z-index: 0;
  text-align: center;
  color: #fffff8; }
  #hero-image h1 {
    font-weight: bold;
    font-size: 48pt;
    margin-bottom: 36pt;
    padding-top: 20%;
    margin-top: 0px; }
  #hero-image p {
    font-size: 24pt; }

#rick {
  float: left;
  width: 150px;
  height: 150px;
  border: 2px solid #EC6D0E;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12pt; }
  #rick img {
    width: 100%;
    height: auto; }

.staff {
  padding: 10px; }
  .staff span:last-of-type {
    font-style: italic; }
  .staff span:first-of-type {
    font-family: Roboto Slab;
    font-style: normal; }

.content-block {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 0.25pt solid #E2E2E2; }
  .content-block.last {
    margin-bottom: 0px;
    border-bottom: 0px; }

.content-img {
  width: 50%;
  float: right;
  margin: 15px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  border: 2px solid #EC6D0E;
  cursor: pointer; }

#footer {
  background: #3D3D3D;
  color: #fffff8; }
  #footer #copyright {
    text-align: center;
    padding-top: 15px;
    color: #fffff8; }
    #footer #copyright:hover {
      color: #fff; }
  #footer #quotation-mark {
    font-size: 140pt;
    text-align: center;
    font-family: 'Libre Baskerville','Baskerville','Georgia',serif;
    line-height: 100%;
    padding-top: 35px;
    text-decoration: none; }
    #footer #quotation-mark:hover {
      color: #FF7A32; }

.thankyousby {
  padding-top: 12pt;
  width: 100%; }

.thankyouspage div:last-of-type {
  border-bottom: 0px;
  margin-bottom: 0px; }

.special-request {
  border: 1px solid #E2E2E2;
  display: inline-block;
  padding: 10px;
  margin: 20px 0;
  width: 100%; }
  .special-request legend {
    background: #fffff8;
    position: relative;
    top: -2px;
    padding: 5px;
    font-family: "Roboto Slab";
    font-size: 21pt; }

.addresses .tbl_left, .addresses .tbl_right {
  padding: 15px 0px;
  border-top: 1px solid #E2E2E2; }

.addresses .number_of_addresses {
  padding-right: 5px;
  font-weight: 500;
}

.addresses .callout {
  margin-left: 10px;
  color: red;
}

.mobile {
  display: none !important; }

#menu_break {
  display: none; }

@media (max-width: 950px) {
  #header #menu #menu_toggle {
    z-index: 20;
    position: relative;
    color: #fffff8;
    background: #EC6D0E;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    text-align: center;
    padding: 10px 10px; }
    #header #menu #menu_toggle span {
      position: relative;
      top: -3px;
      margin-left: 10px; }
  #header #menu ul {
    max-height: 0px;
    overflow: hidden;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    z-index: 10;
    background: #3D3D3D;
    -webkit-transition: max-height 300ms ease-in-out 0ms;
    -moz-transition: max-height 300ms ease-in-out 0ms;
    -o-transition: max-height 300ms ease-in-out 0ms;
    transition: max-height 300ms ease-in-out 0ms; }
    #header #menu ul li {
      display: block;
      border-bottom: 1px solid #E2E2E2;
      width: 100%; }
      #header #menu ul li a {
        width: 100%;
        display: block; }
    #header #menu ul.visible {
      max-height: 500px; }

  .six-twelfths, .five-twelfths, .seven-twelfths, #copyright, #footer-testimonial, #map, #chart {
    width: 95% !important;
    display: block !important;
    margin-left: 2.5%;
    padding-left: 0px; }

  .content-block, .content-sub-block {
    padding-left: 0px !important; }

  .content-img {
    width: 100%; }

  #footer #copyright {
    padding-left: 0px !important;
    margin-right: 0px; }
  #footer #quotation-mark {
    width: 100%;
    text-align: center;
    height: 90px;
    padding-left: 0%; }
  #footer #footer-testimonial {
    text-align: center;
    padding-left: 2.5%; }

  .mobile {
    display: block !important; }

  .desktop {
    display: none; } }

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