/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
@import url(normalize.css);
body,
.cf {
  *zoom: 1;
}

body:before,
.cf:before,
body:after,
.cf:after {
  content: '';
  display: table;
}

body:after,
.cf:after {
  clear: both;
}

*,
*:before,
*:after,
*::before,
*::after {
  *behavior: url("js/boxsizing.htc");
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  width: 100%;
}

img,
video,
audio,
embed,
object,
input,
iframe {
  max-width: 100%;
}

.browsehappy {
  width: 100%;
  padding: 15px;
  background: #222;
  color: #fff;
}

.browsehappy p, .browsehappy div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 .browsehappy ul, .browsehappy div.content-wrap div.col-1of1 li, div.content-wrap div.col-1of1 .browsehappy li {
  text-align: center;
}

.browsehappy a {
  color: #fff;
  font-weight: bold;
}

body {
  background: #BBDEFB;
}

img {
  max-width: 100%;
}

.d {
  display: none;
}

@media only screen and (min-width: 768px) {
  .d {
    display: block;
  }
}

.m {
  display: block;
}

@media only screen and (min-width: 768px) {
  .m {
    display: none;
  }
}

h1 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #009688;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.75em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

p, div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 li, ul, li {
  font-size: 1em;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
}

p, div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 li {
  margin-bottom: 1em;
}

div#menu {
  font-size: 1rem;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  display: block;
  z-index: 3;
  -webkit-transition: 1s;
  transition: 1s;
  line-height: 2;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #FFEB3B;
  max-height: 30px;
  padding: 0 0 10px 5px;
}

@media only screen and (min-width: 768px) {
  div#menu {
    display: none;
  }
}

div#menu span {
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  padding: 0 0 5px 0;
  color: #1565C0;
}

div#menu span img {
  margin-bottom: -2px;
  margin-right: 16px;
  width: 16px;
  height: 16px;
}

div#menu:active {
  max-height: 999px;
}

div#menu:hover {
  max-height: 999px;
}

div#menu a:link {
  margin-left: 30px;
  font-weight: 700;
}

div#menu a:link, a:visited {
  color: #1E88E5;
  padding: 4px 8px;
  text-decoration: none;
  border-bottom: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

div#menu a:hover {
  background: #1E88E5;
  color: #FFEB3B;
  border-radius: 5px;
  text-decoration: none;
  text-shadow: none;
  letter-spacing: 1px;
}

div#header-wrap, div#nav-wrap, div.row-wrap, div#footer-wrap {
  width: 100%;
  position: relative;
  *zoom: 1;
}

div#header-wrap:before, div#header-wrap:after, div#nav-wrap:before, div#nav-wrap:after, div.row-wrap:before, div.row-wrap:after, div#footer-wrap:before, div#footer-wrap:after {
  content: '';
  display: table;
}

div#header-wrap:after, div#nav-wrap:after, div.row-wrap:after, div#footer-wrap:after {
  clear: both;
}

div#header, div.content-wrap, div#footer {
  position: relative;
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 1400px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}

div#header:before, div#header:after, div.content-wrap:before, div.content-wrap:after, div#footer:before, div#footer:after {
  content: '';
  display: table;
}

div#header:after, div.content-wrap:after, div#footer:after {
  clear: both;
}

div#header:before, div#header:after, div.content-wrap:before, div.content-wrap:after, div#footer:before, div#footer:after {
  content: '';
  display: table;
}

div#header:after, div.content-wrap:after, div#footer:after {
  clear: both;
}

div.row-wrap {
  background: #BBDEFB;
}

@media only screen and (min-width: 768px) {
  div.row-wrap {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}

div#nav-wrap-sticky-wrapper.sticky-wrapper {
  max-height: 5px;
  display: none;
}

@media only screen and (min-width: 768px) {
  div#nav-wrap-sticky-wrapper.sticky-wrapper {
    display: block;
  }
}

div#nav-wrap {
  display: none;
  z-index: 20;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  margin: 0;
  padding: 6px 0 8px 0;
  background: #FFEB3B;
}

@media only screen and (min-width: 768px) {
  div#nav-wrap {
    display: block;
  }
}

div#nav-wrap div#nav {
  font-size: .85rem;
}

div#nav-wrap div#nav ul {
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  padding: 0;
  letter-spacing: .05em;
}

div#nav-wrap div#nav ul li {
  display: inline-block;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 1em;
  color: #1565C0;
  margin: 0;
  padding: 0;
}

div#nav-wrap div#nav ul li a:link, div#nav-wrap div#nav ul li a:visited {
  padding: 0 3px;
  color: #1E88E5;
  border-bottom: none;
  text-decoration: none;
  -webkit-transition: all 0.10s ease-in-out;
  transition: all 0.10s ease-in-out;
}

div#nav-wrap div#nav ul li a:hover {
  border-bottom: none;
  text-decoration: none;
  color: #FFEB3B;
  background: #1E88E5;
  border-radius: 5px;
}

div#header-wrap {
  margin: 0;
  padding: 0;
  background: #BBDEFB;
}

div#header-wrap div.div-320 {
  display: block;
  margin-top: 0;
  padding: 0;
}

@media only screen and (min-width: 400px) {
  div#header-wrap div.div-320 {
    display: none;
  }
}

div#header-wrap div.div-600 {
  display: none;
  margin-top: 0;
  padding: 0;
}

@media only screen and (min-width: 401px) {
  div#header-wrap div.div-600 {
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  div#header-wrap div.div-600 {
    display: none;
  }
}

div#header-wrap div.div-1000 {
  display: none;
  padding: 0;
}

@media only screen and (min-width: 768px) {
  div#header-wrap div.div-1000 {
    margin-top: 25px;
    display: block;
    max-width: 1500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

div.content-wrap {
  position: relative;
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 1400px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0.1em;
  padding-right: 0.1em;
  background: #BBDEFB;
  margin-bottom: 1em;
}

div.content-wrap:before, div.content-wrap:after {
  content: '';
  display: table;
}

div.content-wrap:after {
  clear: both;
}

div.content-wrap:before, div.content-wrap:after {
  content: '';
  display: table;
}

div.content-wrap:after {
  clear: both;
}

@media only screen and (max-width: 767px) {
  div.content-wrap {
    padding: 0 1em;
  }
}

@media only screen and (min-width: 768px) {
  div.content-wrap {
    padding: 0 2em;
  }
}

div.content-wrap ul {
  margin-left: 1.5em;
}

div.content-wrap li {
  margin-bottom: .3em;
}

div.content-wrap a:link, div.content-wrap a:visited {
  color: #1E88E5;
  text-decoration: none;
  border-bottom: 1px dotted #1E88E5;
  padding-bottom: 3px;
}

div.content-wrap a:hover {
  color: #4DB6AC;
  text-decoration: none;
  border-bottom: 1px solid #4DB6AC;
  padding-bottom: 3px;
}

div.content-wrap a:link, div.content-wrap a:visited {
  text-decoration: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

div.content-wrap div.col-1of1 {
  font-size: 1rem;
  min-height: 1px;
  padding: 1em;
  background: #fff;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.3);
  border-radius: .5em;
  border: 1px #0D47A1 solid;
}

@media only screen and (min-width: 768px) {
  div.content-wrap div.col-1of1 {
    font-size: 1rem;
    text-align: left;
  }
}

@media only screen and (min-width: 1024px) {
  div.content-wrap div.col-1of1 {
    *zoom: 1;
    width: auto;
    max-width: 900px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
    padding: 1em 2em;
  }
  div.content-wrap div.col-1of1:before, div.content-wrap div.col-1of1:after {
    content: '';
    display: table;
  }
  div.content-wrap div.col-1of1:after {
    clear: both;
  }
}

div.content-wrap div.col-1of1 img.book-online {
  margin: .5em auto;
  display: block;
  max-width: 125px;
}

@media only screen and (min-width: 768px) {
  div.content-wrap div.col-1of1 img.book-online {
    max-width: 150px;
  }
}

div.content-wrap div.col-1of1 p, div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 li {
  font-size: 1em;
  color: #607D8B;
  line-height: 1.7;
  margin: 0 0 1em 0;
}

@media only screen and (min-width: 768px) {
  div.content-wrap div.col-1of1 p, div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 li {
    margin: 0 1em .8em 60px;
  }
}

div.content-wrap div.col-1of1 div.box {
  font-size: .85em;
  background: #BBDEFB;
  margin-bottom: 1em;
  padding-left: 1em;
  padding-right: 1em;
  border: 1px #999 solid;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.3);
  border-radius: .5em;
}

@media only screen and (min-width: 600px) {
  div.content-wrap div.col-1of1 div.box {
    *zoom: 1;
    width: auto;
    max-width: 500px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 1em;
    padding-right: 1em;
  }
  div.content-wrap div.col-1of1 div.box:before, div.content-wrap div.col-1of1 div.box:after {
    content: '';
    display: table;
  }
  div.content-wrap div.col-1of1 div.box:after {
    clear: both;
  }
}

@media only screen and (min-width: 768px) {
  div.content-wrap div.col-1of1 div.box {
    *zoom: 1;
    width: auto;
    max-width: 700px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 1em;
    padding-right: 1em;
  }
  div.content-wrap div.col-1of1 div.box:before, div.content-wrap div.col-1of1 div.box:after {
    content: '';
    display: table;
  }
  div.content-wrap div.col-1of1 div.box:after {
    clear: both;
  }
}

@media only screen and (min-width: 1024px) {
  div.content-wrap div.col-1of1 div.box {
    *zoom: 1;
    width: auto;
    max-width: 500px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 1em;
    padding-right: 1em;
  }
  div.content-wrap div.col-1of1 div.box:before, div.content-wrap div.col-1of1 div.box:after {
    content: '';
    display: table;
  }
  div.content-wrap div.col-1of1 div.box:after {
    clear: both;
  }
}

div.content-wrap div.col-1of1 div.box h2 {
  font-size: 1.5em;
  margin-bottom: 1em;
  margin-top: .5em;
}

div.content-wrap div.col-1of1 div.box p, div.content-wrap div.col-1of1 div.box ul, div.content-wrap div.col-1of1 div.box li {
  font-family: 'Open Sans', sans-serif;
}

div.content-wrap div.col-1of1 ul {
  margin-left: 1.5em;
}

div.content-wrap div.col-1of1 li {
  margin-bottom: .3em;
}

div.content-wrap div.col-1of1 h1 {
  font-size: 1.5em;
  line-height: 1.2;
  padding-top: .5em;
  color: #009688;
}

@media only screen and (min-width: 768px) {
  div.content-wrap div.col-1of1 h1 {
    margin: 0 1em 1em 30px;
  }
}

div.content-wrap div.col-1of1 h2 {
  font-size: 1.1em;
  margin-bottom: 0;
  line-height: 1.2;
  padding-top: .5em;
  color: #1976D2;
}

@media only screen and (min-width: 768px) {
  div.content-wrap div.col-1of1 h2 {
    font-size: 1.1em;
    margin: 0 1em .2em 30px;
  }
}

div.content-wrap div.col-1of1 h3 {
  font-size: 1em;
  margin-bottom: 0;
  line-height: 1.2;
  padding-top: .5em;
  color: #009688;
}

@media only screen and (min-width: 768px) {
  div.content-wrap div.col-1of1 h3 {
    margin: 0 1em .2em 60px;
  }
}

div#footer-widget-wrap {
  position: relative;
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 960px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 1em;
  padding-right: 1em;
  background: #BBDEFB;
}

div#footer-widget-wrap:before, div#footer-widget-wrap:after {
  content: '';
  display: table;
}

div#footer-widget-wrap:after {
  clear: both;
}

div#footer-widget-wrap:before, div#footer-widget-wrap:after {
  content: '';
  display: table;
}

div#footer-widget-wrap:after {
  clear: both;
}

div#footer-widget-wrap div#footer-1of3 p, div#footer-widget-wrap div#footer-1of3 div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 div#footer-widget-wrap div#footer-1of3 ul, div#footer-widget-wrap div#footer-1of3 div.content-wrap div.col-1of1 li, div.content-wrap div.col-1of1 div#footer-widget-wrap div#footer-1of3 li {
  text-align: center;
}

div#footer-widget-wrap div#footer-1of3 img {
  text-align: center;
  max-width: 120px;
}

@media only screen and (min-width: 600px) {
  div#footer-widget-wrap div#footer-1of3 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 33.3333333333%;
    margin-left: 0%;
    margin-right: 0%;
  }
  div#footer-widget-wrap div#footer-1of3:before, div#footer-widget-wrap div#footer-1of3:after {
    content: '';
    display: table;
  }
  div#footer-widget-wrap div#footer-1of3:after {
    clear: both;
  }
  div#footer-widget-wrap div#footer-1of3 p, div#footer-widget-wrap div#footer-1of3 div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 div#footer-widget-wrap div#footer-1of3 ul, div#footer-widget-wrap div#footer-1of3 div.content-wrap div.col-1of1 li, div.content-wrap div.col-1of1 div#footer-widget-wrap div#footer-1of3 li {
    text-align: left;
  }
  div#footer-widget-wrap div#footer-1of3 img {
    max-width: 120px;
    text-align: left;
    margin: 0;
  }
}

div#footer-widget-wrap div#footer-2of3 p, div#footer-widget-wrap div#footer-2of3 div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 div#footer-widget-wrap div#footer-2of3 ul, div#footer-widget-wrap div#footer-2of3 div.content-wrap div.col-1of1 li, div.content-wrap div.col-1of1 div#footer-widget-wrap div#footer-2of3 li {
  text-align: center;
}

div#footer-widget-wrap div#footer-2of3 img {
  text-align: center;
  max-width: 140px;
}

@media only screen and (min-width: 600px) {
  div#footer-widget-wrap div#footer-2of3 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 33.3333333333%;
    margin-left: 0%;
    margin-right: 0%;
  }
  div#footer-widget-wrap div#footer-2of3:before, div#footer-widget-wrap div#footer-2of3:after {
    content: '';
    display: table;
  }
  div#footer-widget-wrap div#footer-2of3:after {
    clear: both;
  }
  div#footer-widget-wrap div#footer-2of3 p, div#footer-widget-wrap div#footer-2of3 div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 div#footer-widget-wrap div#footer-2of3 ul, div#footer-widget-wrap div#footer-2of3 div.content-wrap div.col-1of1 li, div.content-wrap div.col-1of1 div#footer-widget-wrap div#footer-2of3 li {
    text-align: center;
  }
  div#footer-widget-wrap div#footer-2of3 img {
    max-width: 140px;
    text-align: center;
    margin: 0;
  }
}

div#footer-widget-wrap div#footer-3of3 p, div#footer-widget-wrap div#footer-3of3 div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 div#footer-widget-wrap div#footer-3of3 ul, div#footer-widget-wrap div#footer-3of3 div.content-wrap div.col-1of1 li, div.content-wrap div.col-1of1 div#footer-widget-wrap div#footer-3of3 li {
  text-align: center;
}

div#footer-widget-wrap div#footer-3of3 img {
  text-align: center;
  max-width: 60px;
}

@media only screen and (min-width: 600px) {
  div#footer-widget-wrap div#footer-3of3 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 33.3333333333%;
    margin-left: 0%;
    margin-right: 0%;
  }
  div#footer-widget-wrap div#footer-3of3:before, div#footer-widget-wrap div#footer-3of3:after {
    content: '';
    display: table;
  }
  div#footer-widget-wrap div#footer-3of3:after {
    clear: both;
  }
  div#footer-widget-wrap div#footer-3of3 p, div#footer-widget-wrap div#footer-3of3 div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 div#footer-widget-wrap div#footer-3of3 ul, div#footer-widget-wrap div#footer-3of3 div.content-wrap div.col-1of1 li, div.content-wrap div.col-1of1 div#footer-widget-wrap div#footer-3of3 li {
    text-align: right;
  }
  div#footer-widget-wrap div#footer-3of3 img {
    max-width: 60px;
    text-align: right;
    margin: 0;
  }
}

div#footer-wrap {
  background: #1565C0;
  position: relative;
  *zoom: 1;
}

div#footer-wrap:before, div#footer-wrap:after {
  content: '';
  display: table;
}

div#footer-wrap:after {
  clear: both;
}

div#footer-wrap div#footer {
  position: relative;
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 1400px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0.1em;
  padding-right: 0.1em;
  font-size: .9rem;
  padding: 1em;
}

div#footer-wrap div#footer:before, div#footer-wrap div#footer:after {
  content: '';
  display: table;
}

div#footer-wrap div#footer:after {
  clear: both;
}

div#footer-wrap div#footer:before, div#footer-wrap div#footer:after {
  content: '';
  display: table;
}

div#footer-wrap div#footer:after {
  clear: both;
}

@media only screen and (min-width: 768px) {
  div#footer-wrap div#footer {
    font-size: 1rem;
  }
}

div#footer-wrap div#footer p, div#footer-wrap div#footer div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 div#footer-wrap div#footer ul, div#footer-wrap div#footer div.content-wrap div.col-1of1 li, div.content-wrap div.col-1of1 div#footer-wrap div#footer li {
  text-align: center;
  font-family: "Open Sans Condensed", sans-serif;
  color: #BBDEFB;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 3px;
}

div#footer-wrap div#footer p a:link, div#footer-wrap div#footer div.content-wrap div.col-1of1 ul a:link, div.content-wrap div.col-1of1 div#footer-wrap div#footer ul a:link, div#footer-wrap div#footer div.content-wrap div.col-1of1 li a:link, div.content-wrap div.col-1of1 div#footer-wrap div#footer li a:link, div#footer-wrap div#footer p a:visited, div#footer-wrap div#footer div.content-wrap div.col-1of1 ul a:visited, div.content-wrap div.col-1of1 div#footer-wrap div#footer ul a:visited, div#footer-wrap div#footer div.content-wrap div.col-1of1 li a:visited, div.content-wrap div.col-1of1 div#footer-wrap div#footer li a:visited {
  border-bottom: none;
  text-decoration: none;
  color: #FFEB3B;
  padding: 0 3px;
  -webkit-transition: all 0.10s ease-in-out;
  transition: all 0.10s ease-in-out;
}

div#footer-wrap div#footer p a:hover, div#footer-wrap div#footer div.content-wrap div.col-1of1 ul a:hover, div.content-wrap div.col-1of1 div#footer-wrap div#footer ul a:hover, div#footer-wrap div#footer div.content-wrap div.col-1of1 li a:hover, div.content-wrap div.col-1of1 div#footer-wrap div#footer li a:hover {
  padding: 0 3px;
  color: #BBDEFB;
  background: #FFEB3B;
  border-radius: 5px;
  border-bottom: none;
  text-decoration: none;
}

div.row-gallery {
  *zoom: 1;
  position: relative;
  *zoom: 1;
  width: auto;
  max-width: 1400px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 1em;
  padding-right: 1em;
  background: #BBDEFB;
}

div.row-gallery:before, div.row-gallery:after {
  content: '';
  display: table;
}

div.row-gallery:after {
  clear: both;
}

div.row-gallery:before, div.row-gallery:after {
  content: '';
  display: table;
}

div.row-gallery:after {
  clear: both;
}

@media only screen and (min-width: 768px) {
  div.row-gallery {
    padding: 1em;
  }
}

div.row-gallery ul.gallery li {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
  display: block;
  list-style-type: none;
}

div.row-gallery ul.gallery li:before, div.row-gallery ul.gallery li:after {
  content: '';
  display: table;
}

div.row-gallery ul.gallery li:after {
  clear: both;
}

div.row-gallery ul.gallery li:nth-child(1n) {
  margin-right: 0%;
  float: right;
}

div.row-gallery ul.gallery li:nth-child(1n + 1) {
  clear: both;
}

div.row-gallery ul.gallery li a:link, div.row-gallery ul.gallery li a:visited, div.row-gallery ul.gallery li a:hover {
  border: none;
  text-decoration: none;
}

@media only screen and (min-width: 641px) {
  div.row-gallery ul.gallery li {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 49%;
    margin-left: 0%;
    margin-right: 2%;
  }
  div.row-gallery ul.gallery li:before, div.row-gallery ul.gallery li:after {
    content: '';
    display: table;
  }
  div.row-gallery ul.gallery li:after {
    clear: both;
  }
  div.row-gallery ul.gallery li:nth-child(1n) {
    margin-right: 2%;
    float: left;
  }
  div.row-gallery ul.gallery li:nth-child(1n + 1) {
    clear: none;
  }
  div.row-gallery ul.gallery li:nth-child(2n) {
    margin-right: 0%;
    float: right;
  }
  div.row-gallery ul.gallery li:nth-child(2n + 1) {
    clear: both;
  }
}

@media only screen and (min-width: 768px) {
  div.row-gallery ul.gallery li {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 32%;
    margin-left: 0%;
    margin-right: 2%;
  }
  div.row-gallery ul.gallery li:before, div.row-gallery ul.gallery li:after {
    content: '';
    display: table;
  }
  div.row-gallery ul.gallery li:after {
    clear: both;
  }
  div.row-gallery ul.gallery li:nth-child(2n) {
    margin-right: 2%;
    float: left;
  }
  div.row-gallery ul.gallery li:nth-child(2n + 1) {
    clear: none;
  }
  div.row-gallery ul.gallery li:nth-child(3n) {
    margin-right: 0%;
    float: right;
  }
  div.row-gallery ul.gallery li:nth-child(3n + 1) {
    clear: both;
  }
}

@media only screen and (min-width: 1025px) {
  div.row-gallery ul.gallery li {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 23.5%;
    margin-left: 0%;
    margin-right: 2%;
  }
  div.row-gallery ul.gallery li:before, div.row-gallery ul.gallery li:after {
    content: '';
    display: table;
  }
  div.row-gallery ul.gallery li:after {
    clear: both;
  }
  div.row-gallery ul.gallery li:nth-child(3n) {
    margin-right: 2%;
    float: left;
  }
  div.row-gallery ul.gallery li:nth-child(3n + 1) {
    clear: none;
  }
  div.row-gallery ul.gallery li:nth-child(4n) {
    margin-right: 0%;
    float: right;
  }
  div.row-gallery ul.gallery li:nth-child(4n + 1) {
    clear: both;
  }
}

div.row-gallery ul.gallery li img {
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
  display: block;
  width: auto;
  margin-bottom: 1em;
}

@media only screen and (min-width: 641px) {
  div.row-gallery ul.gallery li img {
    margin-bottom: 1.25em;
  }
}

@media only screen and (min-width: 768px) {
  div.row-gallery ul.gallery li img {
    margin-bottom: 1.75em;
  }
}

@media only screen and (min-width: 1025px) {
  div.row-gallery ul.gallery li img {
    margin-bottom: 2em;
  }
}

div.gallery-text {
  font-size: .9rem;
}

@media only screen and (min-width: 768px) {
  div.gallery-text {
    font-size: 1rem;
  }
}

div.gallery-text h1 {
  font-size: 1.5em;
  text-align: center;
  margin: 1em 0 1em 0;
  color: #009688;
}

@media only screen and (min-width: 768px) {
  div.gallery-text h1 {
    margin: .5em 0;
    font-size: 2em;
  }
}

div.gallery-text p, div.gallery-text div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 div.gallery-text ul, div.gallery-text div.content-wrap div.col-1of1 li, div.content-wrap div.col-1of1 div.gallery-text li {
  text-align: center;
  color: #607D8B;
  margin-bottom: 1em;
}

@media only screen and (min-width: 768px) {
  div.gallery-text p, div.gallery-text div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 div.gallery-text ul, div.gallery-text div.content-wrap div.col-1of1 li, div.content-wrap div.col-1of1 div.gallery-text li {
    margin-bottom: .5em;
  }
}

div.gallery-text p.gallery-click, div.gallery-text div.content-wrap div.col-1of1 ul.gallery-click, div.content-wrap div.col-1of1 div.gallery-text ul.gallery-click, div.gallery-text div.content-wrap div.col-1of1 li.gallery-click, div.content-wrap div.col-1of1 div.gallery-text li.gallery-click {
  color: #1976D2;
}

div.cycle-slide-show-wrapper {
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 50em;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 2em;
  padding-right: 2em;
  position: relative;
  font-size: 1rem;
  z-index: 0;
}

div.cycle-slide-show-wrapper:before, div.cycle-slide-show-wrapper:after {
  content: '';
  display: table;
}

div.cycle-slide-show-wrapper:after {
  clear: both;
}

div.cycle-slide-show-wrapper:before, div.cycle-slide-show-wrapper:after {
  content: '';
  display: table;
}

div.cycle-slide-show-wrapper:after {
  clear: both;
}

@media only screen and (min-width: 1025px) {
  div.cycle-slide-show-wrapper {
    *zoom: 1;
    width: auto;
    max-width: 48em;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 1em;
    padding-right: 1em;
  }
  div.cycle-slide-show-wrapper:before, div.cycle-slide-show-wrapper:after {
    content: '';
    display: table;
  }
  div.cycle-slide-show-wrapper:after {
    clear: both;
  }
}

div.cycle-slide-show-wrapper div#head-book-wrap {
  position: relative;
  *zoom: 1;
}

div.cycle-slide-show-wrapper div#head-book-wrap:before, div.cycle-slide-show-wrapper div#head-book-wrap:after {
  content: '';
  display: table;
}

div.cycle-slide-show-wrapper div#head-book-wrap:after {
  clear: both;
}

@media only screen and (min-width: 768px) {
  div.cycle-slide-show-wrapper div#head-book-wrap {
    padding: 0;
  }
}

div.cycle-slide-show-wrapper div#head-book-wrap div.head-div h1 {
  font-size: 1.3em;
  margin: 0 0 .3em 0;
  padding: 0;
  line-height: 1.2;
  color: #009688;
}

@media only screen and (min-width: 768px) {
  div.cycle-slide-show-wrapper div#head-book-wrap div.head-div h1 {
    font-size: 1.5em;
    padding: 0;
    margin: 0 0 .5em 0;
  }
}

div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div p, div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div div.content-wrap div.col-1of1 ul, div.content-wrap div.col-1of1 div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div ul, div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div div.content-wrap div.col-1of1 li, div.content-wrap div.col-1of1 div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div li {
  text-align: center;
  margin: 0;
  padding: 0;
}

div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div p img, div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div div.content-wrap div.col-1of1 ul img, div.content-wrap div.col-1of1 div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div ul img, div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div div.content-wrap div.col-1of1 li img, div.content-wrap div.col-1of1 div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div li img {
  margin: .5em auto;
  display: block;
  max-width: 150px;
}

@media only screen and (min-width: 768px) {
  div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div p img, div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div div.content-wrap div.col-1of1 ul img, div.content-wrap div.col-1of1 div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div ul img, div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div div.content-wrap div.col-1of1 li img, div.content-wrap div.col-1of1 div.cycle-slide-show-wrapper div#head-book-wrap div.book-online-div li img {
    max-width: 170px;
    margin: -.5em 0 .3em 0;
    display: inline-block;
  }
}

div.cycle-slide-show-wrapper div.slide-show img {
  margin-bottom: .05em;
  width: 100%;
  border: 1px solid #1E88E5;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

div.cycle-slide-show-wrapper div#slideshow {
  width: 100%;
}

div.cycle-slide-show-wrapper div.single-slide {
  margin: 0 auto 1.25em auto;
}

div.cycle-slide-show-wrapper .is-cms .slide-show img {
  display: none;
}

div.cycle-slide-show-wrapper .is-cms .slide-show img:first-child {
  display: block;
}

div.cycle-slide-show-wrapper div.caption-pager-wrap {
  *zoom: 1;
  position: relative;
  width: 100%;
}

div.cycle-slide-show-wrapper div.caption-pager-wrap:before, div.cycle-slide-show-wrapper div.caption-pager-wrap:after {
  content: '';
  display: table;
}

div.cycle-slide-show-wrapper div.caption-pager-wrap:after {
  clear: both;
}

div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-caption {
  width: 100%;
  font-family: "Roboto Slab", serif;
  font-size: 1em;
  font-weight: 400;
  padding: 0;
  color: #009688;
}

div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap {
  *zoom: 1;
  position: relative;
  margin: .25em 0 0 0;
  padding: 0;
}

div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap:before, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap:after {
  content: '';
  display: table;
}

div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap:after {
  clear: both;
}

div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager {
  text-align: center;
  cursor: pointer;
}

div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span {
  font-size: 1.8em;
  width: .6em;
  font-family: arial;
  line-height: .8;
  display: inline-block;
  color: #999;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span {
    font-size: 2em;
    width: .6em;
  }
}

div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span.cycle-pager-active {
  color: #1E88E5;
}

div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon {
  padding: .3em 0 0 0;
  margin: 0 1.1em 0 0;
  float: left;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon {
    padding: .5em 0 0 0;
    margin: 0 1em 0 0;
  }
}

div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon img, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon img {
  border: none;
}
