@charset "UTF-8";
/******************************************************************
Site Name: Tabula Rasa
Author: Kenny Scott  

/** TABLE OF CONTENTS
****************************************************************
- MIXINS
		mixins-remtopx
		mixins-settings
		mixins-functions
		mixins-grid
- INITIALIZE
		Normalize
		Accessibility
		Alignments
- TYPOGRAPHY
		Headings
		Copy
- ELEMENTS
		Lists
		Tables
		Forms
		Buttons
- MEDIA
		Images
		Galleries
		Captions
- STRUCTURE
		Layout
		Header
		Navigation
		Asides
		Footer
- CONTENT
		Posts and Pages
		Comments		 
		Other Pages
		Partials
- PRINT SETTINGS  

******************************************************************/
/*==================================================================

	=MIXINS

==================================================================*/
/** MIXINS-COLORS
******************************************************************/
/** MIXINS-SETTINGS
******************************************************************/
/* 
Sets up the main variables for the site.
Colors, text, and fonts
*/
/** MIXINS-FUNCTIONS
******************************************************************/
/* 
mixins for border-radius and gradients and stuff like that.
I am sure this is an actual term for this that I should add later
*/
/* BORDER BOX */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  box-sizing: inherit;
}

/** MIXINS-GRID
******************************************************************/
/*==================================================================

	=INITIALIZE

==================================================================*/
/** NORMALIZE
******************************************************************/
/*! normalize.css v3.0.1 | 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,
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: 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 {
  -webkit-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] {
  -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] {
  -webkit-box-sizing: border-box;
          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 */
  -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;
}

/** ACCESSIBILITY
******************************************************************/
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  right: 0;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  padding: 1.80190108rem 2.9154759474rem;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* z-index so above WP toolbar */
}

/** ALIGNMENTS
******************************************************************/
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*==================================================================

	=TYPOGRAPHY 

==================================================================*/
/** Headings
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
  text-rendering: optimizelegibility;
  clear: both;
  margin: 2.9154759474rem 0 1.80190108rem;
  color: #6A596D;
  text-transform: uppercase;
  font-weight: 900;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  text-decoration: none;
  color: #6A596D;
  font-weight: 900;
}
h1 a:visited, .h1 a:visited, h2 a:visited, .h2 a:visited, h3 a:visited, .h3 a:visited, h4 a:visited, .h4 a:visited, h5 a:visited, .h5 a:visited, h6 a:visited, .h6 a:visited {
  color: #6A596D;
}
h1 a:active,
h1 a :hover,
h1 a :focus, .h1 a:active,
.h1 a :hover,
.h1 a :focus, h2 a:active,
h2 a :hover,
h2 a :focus, .h2 a:active,
.h2 a :hover,
.h2 a :focus, h3 a:active,
h3 a :hover,
h3 a :focus, .h3 a:active,
.h3 a :hover,
.h3 a :focus, h4 a:active,
h4 a :hover,
h4 a :focus, .h4 a:active,
.h4 a :hover,
.h4 a :focus, h5 a:active,
h5 a :hover,
h5 a :focus, .h5 a:active,
.h5 a :hover,
.h5 a :focus, h6 a:active,
h6 a :hover,
h6 a :focus, .h6 a:active,
.h6 a :hover,
.h6 a :focus {
  color: #6A596D;
}

h1.entry-title {
  line-height: 1;
}

h1 {
  font-size: 60px;
  font-size: 6rem;
  line-height: 97px;
  line-height: 9.7rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
}

h2 {
  font-size: 37px;
  font-size: 3.7rem;
  line-height: 60px;
  line-height: 6rem;
  font-weight: 800;
  letter-spacing: 0.12rem;
}

h3 {
  font-size: 29px;
  font-size: 2.9rem;
  line-height: 47px;
  line-height: 4.7rem;
  font-weight: 900;
  letter-spacing: 0.12rem;
}

h4 {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 37px;
  line-height: 3.7rem;
  letter-spacing: 0.12rem;
}

h5 {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 37px;
  line-height: 3.7rem;
}

h6 {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 37px;
  line-height: 3.7rem;
}

/** Copy
******************************************************************/
p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 29px;
  line-height: 2.9rem;
  font-weight: 600;
  margin: 0 0 1.80190108rem;
  font-weight: 600;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote {
  margin: 0 1.80190108rem;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 23px;
  line-height: 2.3rem;
}

del {
  color: #444;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 23px;
  line-height: 2.3rem;
  margin-bottom: 2.9154759474rem;
  max-width: 100%;
  overflow: auto;
}
pre code {
  display: block;
}

address {
  margin: 0 0 2.9154759474rem;
}

mark, ins {
  background: #fff9c0;
  text-decoration: none;
}

abbr,
dfn,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

big {
  font-size: 125%;
}

/*==================================================================

	=ELEMENTS

==================================================================*/
/** Lists and hr
******************************************************************/
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1.80190108rem;
  padding-left: 1.80190108rem;
}
ul {
  list-style: disc outside;
}
ol {
  list-style: decimal outside;
}
li > ul,
li > ol {
  margin-bottom: 0;
}

dl {
  margin-bottom: 1.80190108rem;
}
dl dt {
  font-weight: bold;
  margin-top: 1.80190108rem;
}
/** HR **/
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
}

/** Tables
******************************************************************/
table {
  border-collapse: collapse;
  -webkit-font-feature-settings: "kern", "liga", "tnum";
          font-feature-settings: "kern", "liga", "tnum";
  margin: 1.80190108rem 0;
  table-layout: fixed;
  width: 100%;
}
table caption {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 23px;
  line-height: 2.3rem;
  font-weight: normal;
  text-align: left;
}
table tr th {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 23px;
  line-height: 2.3rem;
  font-weight: bold;
  border-bottom: 1px solid shade(#444, 25%);
  padding: 1.80190108rem 0;
  text-align: left;
}
table tr td {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 23px;
  line-height: 2.3rem;
  border-bottom: #444;
  padding: 1.80190108rem 0;
}
tr,
td,
th {
  vertical-align: middle;
}

/** Forms
******************************************************************/
fieldset {
  background-color: #757575;
  border: 1px;
  margin: 0 0 1.80190108rem;
  padding: 2.9154759474rem;
}

input,
label,
select,
textarea {
  display: block;
  border-radius: 10px;
  font-family: inherit;
  padding: 2.9154759474rem;
}

input {
  line-height: normal;
}

label {
  font-weight: 600;
  margin-bottom: 1.1136595056rem;
  padding: 0;
}
label.required::after {
  content: "*";
}
label abbr {
  display: none;
}

select {
  margin-bottom: 2.9154759474rem;
  max-width: 100%;
  width: auto;
}

textarea {
  font-size: 100%;
  overflow: auto;
  vertical-align: top;
  width: 100%;
  resize: vertical;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
select[multiple=multiple],
textarea {
  background-color: #757575;
  border: 1px;
  margin-bottom: 1.80190108rem;
  padding: 12.3493760269rem;
  width: 100%;
}
input[type=text]:hover,
input[type=email]:hover,
input[type=url]:hover,
input[type=password]:hover,
input[type=search]:hover,
select[multiple=multiple]:hover,
textarea:hover {
  border-color: shade(#444, 20%);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
select[multiple=multiple]:focus,
textarea:focus {
  border-color: #15363f;
  outline: none;
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=url]:disabled,
input[type=password]:disabled,
input[type=search]:disabled,
select[multiple=multiple]:disabled,
textarea:disabled {
  background-color: shade(#757575, 5%);
  cursor: not-allowed;
}
input[type=text]:disabled:hover,
input[type=email]:disabled:hover,
input[type=url]:disabled:hover,
input[type=password]:disabled:hover,
input[type=search]:disabled:hover,
select[multiple=multiple]:disabled:hover,
textarea:disabled:hover {
  border: 1px;
}

/** Reset non-text input types **/
input[type=checkbox],
input[type=radio],
input[type=file],
input[type=hidden],
input[type=image],
input[type=color] {
  border: 0;
  border-radius: 0;
  padding: 0;
}

input[type=search] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=checkbox],
input[type=radio] {
  display: inline;
  margin-right: 1.1136595056rem;
}

input[type=file] {
  margin-bottom: 1.80190108rem;
  width: 100%;
}

/** Buttons
******************************************************************/
.caldera-grid .button, .button,
.caldera-grid button,
button,
.caldera-grid input[type=button],
input[type=button],
.caldera-grid input[type=reset],
input[type=reset],
.caldera-grid input[type=submit],
input[type=submit],
.caldera-grid article.post-password-required input[type=submit],
article.post-password-required input[type=submit] {
  background-color: #215361;
  color: #fffefc;
  border: 1px solid #102930;
  border-top-color: #183c46;
  border-left-color: #183c46;
  padding: 1.80190108rem 2.9154759474rem;
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 29px;
  line-height: 2.9rem;
  font-weight: 600;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1.1136595056rem 7.6324944542rem;
  text-shadow: 0 1px rgba(0, 0, 0, 0.75);
  cursor: pointer;
  border-radius: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  letter-spacing: 1px;
  background-color: #1b434e;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#215361), to(#1b434e));
  background-image: linear-gradient(to bottom, #215361, #1b434e);
}
.caldera-grid .button:hover, .caldera-grid .button:focus, .button:hover, .button:focus,
.caldera-grid button:hover,
.caldera-grid button:focus,
button:hover,
button:focus,
.caldera-grid input[type=button]:hover,
.caldera-grid input[type=button]:focus,
input[type=button]:hover,
input[type=button]:focus,
.caldera-grid input[type=reset]:hover,
.caldera-grid input[type=reset]:focus,
input[type=reset]:hover,
input[type=reset]:focus,
.caldera-grid input[type=submit]:hover,
.caldera-grid input[type=submit]:focus,
input[type=submit]:hover,
input[type=submit]:focus,
.caldera-grid article.post-password-required input[type=submit]:hover,
.caldera-grid article.post-password-required input[type=submit]:focus,
article.post-password-required input[type=submit]:hover,
article.post-password-required input[type=submit]:focus {
  color: #fffefc;
  border: 1px solid #102930;
  border-top-color: #071215;
  border-left-color: #071215;
  background-color: #14323b;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1b434e), to(#14323b));
  background-image: linear-gradient(to bottom, #1b434e, #14323b);
}
.caldera-grid .button a, .button a,
.caldera-grid button a,
button a,
.caldera-grid input[type=button] a,
input[type=button] a,
.caldera-grid input[type=reset] a,
input[type=reset] a,
.caldera-grid input[type=submit] a,
input[type=submit] a,
.caldera-grid article.post-password-required input[type=submit] a,
article.post-password-required input[type=submit] a {
  color: #fffefc;
  text-decoration: none;
}

button,
input[type=submit],
input[type=button],
input[type=reset] {
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

details {
  margin: 2.9154759474rem 0;
}
details summary {
  font-size: 29px;
  font-size: 2.9rem;
  line-height: 47px;
  line-height: 4.7rem;
  font-weight: 900;
  letter-spacing: 0.12rem;
  padding: 1.1136595056rem 2.9154759474rem;
  background: #215361;
  color: #fffefc;
  border-radius: 10px;
}
details summary:active, details summary:focus {
  outline: none;
}
details .panel {
  margin: 0 2.9154759474rem;
}
details h3 {
  margin-bottom: 0;
}
.caldera-grid form .form-control.cf2-file .btn {
  color: #fffefc;
  background-color: #757575;
  border: none;
  -webkit-transition: none;
  transition: none;
  background-image: none;
}
.caldera-grid form .form-control.cf2-file .btn:hover {
  color: #fffefc;
  background-color: #757575;
  background-image: none;
}

/** Links
******************************************************************/
a {
  color: #215361;
  font-weight: 800;
}
a:visited {
  color: #215361;
}
a:active,
a :hover,
a :focus {
  color: #215361;
}

/*==================================================================

	=MEDIA

==================================================================*/
/** Images
******************************************************************/
img,
figure,
picture {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
  margin: 0;
}
.entry-content img,
.comment-content img,
.wp-block-image,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
  /* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
  border-radius: 10px;
}
.entry-content img.alignleft,
.comment-content img.alignleft,
.wp-block-image.alignleft,
.widget img.alignleft,
img.header-image.alignleft,
.author-avatar img.alignleft,
img.wp-post-image.alignleft {
  margin-right: 3.6286462176rem;
}
.entry-content img.alignright,
.comment-content img.alignright,
.wp-block-image.alignright,
.widget img.alignright,
img.header-image.alignright,
.author-avatar img.alignright,
img.wp-post-image.alignright {
  margin-left: 2.9154759474rem;
}
.entry-content img .alignleft,
.comment-content img .alignleft,
.wp-block-image .alignleft,
.widget img .alignleft,
img.header-image .alignleft,
.author-avatar img .alignleft,
img.wp-post-image .alignleft {
  margin-right: 3.6286462176rem;
}

.alignleft {
  margin-right: 3.6286462176rem;
}

/** Galleries 
******************************************************************/
.gallery {
  margin-bottom: 2.9154759474rem;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/** Captions 
******************************************************************/
.wp-caption {
  padding: 1.80190108rem;
  max-width: 100%;
}
.wp-caption-text,
.gallery-caption,
.entry-caption {
  font-style: italic;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 23px;
  line-height: 2.3rem;
  color: #757575;
  text-align: center;
}

/** Videos 
******************************************************************/
/* Make sure videos and embeds fit their containers */
embed,
iframe,
video,
object {
  max-width: 100%;
  height: auto;
}

/* Responsiveness for Youtube and Vimeo */
/* Must wrap frame in <div class="responsive-iframe-container"> */
.responsive-iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.responsive-iframe-container iframe,
.responsive-iframe-container object,
.responsive-iframe-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*==================================================================

	=STRUCTURE

==================================================================*/
/** LAYOUT
******************************************************************/
html {
  font-size: 50%;
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (min-width: 600px) {
  html {
    font-size: 62.5%;
  }
}

body {
  background: #fffefc;
  /* Fallback for when there is no custom background color defined. */
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 29px;
  line-height: 2.9rem;
  font-weight: 600;
  font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  color: #4D4D4D;
}

/* Page Structure
-------------------------------------------------------------- 
body
	#page .site
		> header#masthead .site-header
		+ #content .site-content
			>#primary .content-area
				>main#main .site-main
					>article
			+#secondary .widget-area .aside1
			+.widget-area .aside2
		+footer#colophon .site-footer
-------------------------------------------------------------- */
.site-content {
  clear: both;
  padding: 0 10px;
}
.site-content:after {
  clear: both;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  content: "";
  font-size: 0;
}
.site-content .content-area .site-main {
  word-wrap: break-word;
}
.site-content .widget-area {
  display: none;
}

.site-footer {
  clear: both;
}

/** Breakpoint - 600 **/
/** Breakpoint - 768 **/
@media only screen and (min-width: 1000px) {
  .site-header {
    padding: 0;
  }
  .site-content {
    max-width: 1280px;
    margin: 0 auto 0;
    padding: 0;
  }
  .site-content .content-area {
    display: inline;
    float: left;
    width: 65.6948413509%;
    margin: 0 1.4577379737%;
    margin-left: 0;
    padding: 0 1.80190108rem 0 0;
  }
  .site-content .widget-area {
    display: inline;
    float: left;
    width: 31.3896827017%;
    margin: 0 1.4577379737%;
    margin-right: 0;
    margin-top: 2.9154759474rem;
    list-style: none;
  }

  .site-footer {
    clear: both;
    padding: 0;
  }
}
/** HEADER
******************************************************************/
/** Site Header
-------------------------------------------------------------- 
header#masthead .site-header
	.inner-header
		.site-branding
			h1.site-title
			h2.site-description
		nav#site-navigation .main-navigation	
			.menu
				.nav-menu
					li 
						.children
-------------------------------------------------------------- */
.site-header {
  background: #fffefc;
  min-height: 35px;
  border-bottom: 1px solid #fffefc;
  height: auto;
}

.QRprintonly {
  display: none;
}

.header-top {
  padding: 1.80190108rem;
  padding-bottom: 0;
}
.header-top .wrapper .site-branding {
  display: inline;
  float: left;
  width: 44.2541171951%;
  margin: 0 1.4577379737%;
  margin-left: 0;
}
.header-top .wrapper .header-info {
  display: inline;
  float: left;
  width: 52.8304068574%;
  margin: 0 1.4577379737%;
  margin-right: 0;
}
@media only screen and (min-width: 600px) {
  .header-top .wrapper {
    max-width: 1280px;
    margin: 0 auto 0;
    padding: 0 2.9154759474rem;
  }
  .header-top .wrapper .header-info {
    text-align: right;
  }
}

.site-branding .site-title {
  display: none;
}
.site-branding .site-description {
  display: none;
}
.site-branding .site-logo {
  line-height: 0;
}
.site-branding .site-logo img {
  width: 24rem;
}
@media only screen and (min-width: 600px) {
  .site-branding .site-logo {
    margin: 0 2.9154759474rem 4.7172400829rem 0;
    overflow: hidden;
  }
  .site-branding .site-logo img {
    width: 24rem;
  }
}

.header-info .hours {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 29px;
  line-height: 2.9rem;
  margin-top: 2.9154759474rem;
  margin-right: 0;
  text-align: right;
  margin-top: 0;
}
.header-info .hours ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.header-info .hours ul li {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 37px;
  line-height: 3.7rem;
}
.header-info .hours ul li.heading {
  font-size: 29px;
  font-size: 2.9rem;
  line-height: 47px;
  line-height: 4.7rem;
  font-weight: 800;
}
@media only screen and (min-width: 600px) {
  .header-info .hours {
    display: inline-block;
    margin-right: 0.6882938848rem;
  }
}
@media only screen and (min-width: 900px) {
  .header-info .hours ul li {
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 37px;
    line-height: 3.7rem;
  }
  .header-info .hours ul li.heading {
    font-size: 29px;
    font-size: 2.9rem;
    line-height: 47px;
    line-height: 4.7rem;
  }
  .header-info .hours ul li.heading:before {
    content: "";
    width: 4rem;
    height: 4rem;
    background-size: 100% 100%;
    display: inline-block;
    background-image: url(../images/icons/clock.png);
    margin-right: 5px;
    position: relative;
    top: 14px;
  }
}

.account {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 29px;
  line-height: 2.9rem;
  margin-top: 2.9154759474rem;
  padding-bottom: 15px;
  text-align: right;
  margin-top: 0;
}
.account ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.account ul li {
  margin-left: 1.1136595056rem;
  display: none;
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 37px;
  line-height: 3.7rem;
}
.account ul li.heading {
  display: block;
  font-size: 29px;
  font-size: 2.9rem;
  line-height: 47px;
  line-height: 4.7rem;
  font-weight: 800;
  color: #B23328;
}
.account ul li.heading a {
  color: #B23328;
  text-decoration: none;
}
@media only screen and (min-width: 900px) {
  .account {
    display: inline-block;
    border-left: 2px solid #757575;
  }
  .account ul li {
    display: block;
    text-align: left;
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 37px;
    line-height: 3.7rem;
  }
  .account ul li.heading {
    font-size: 29px;
    font-size: 2.9rem;
    line-height: 47px;
    line-height: 4.7rem;
  }
}
.account .questions a {
  text-decoration: none;
  font-weight: 600;
  color: #444;
}
.account .phone a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  font-weight: 600;
  color: #444;
}

.hero-image {
  height: 28rem;
  position: relative;
  clear: both;
  height: 35rem;
}
.hero-image img {
  height: 28rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  height: 35rem;
}
.hero-image .page-title {
  font-size: 60px;
  font-size: 6rem;
  line-height: 97px;
  line-height: 9.7rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
  color: #fffefc;
  text-transform: uppercase;
  position: absolute;
  top: 10rem;
  left: 2rem;
  z-index: 2;
}
/** Breakpoint - 600 **/
@media only screen and (min-width: 1000px) {
  .hero-image {
    height: 28rem;
    height: 35rem;
  }
  .hero-image img {
    height: 28rem;
    /* 			object-fit: cover;
    			width: 100%;
    			position: absolute;
    			top: 0;
    			right: 0;	 */
    height: 35rem;
  }
  .hero-image .page-title {
    /* 			@include title();
    			color: $white;
    			text-transform: uppercase;
    			position: absolute;
    			top: 10rem;
    			left: 2rem;
    			z-index: 2; */
  }
  .home .hero-image {
    height: 57rem;
  }
  .home .hero-image img {
    height: 57rem;
  }
}
/** NAVIGATION
******************************************************************/
/** Mobile Menu **/
/** Main Navigation **/
.site-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.site-canvas {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 1s ease all;
  transition: 1s ease all;
}

.mobile-menu {
  font-size: 37px;
  font-size: 3.7rem;
  line-height: 60px;
  line-height: 6rem;
  text-decoration: none;
  width: 100%;
  display: inline;
  float: right;
  text-align: right;
  background: #757575;
  padding-right: 2.9154759474rem;
}

/** Mobile Menu Icons **/
.fa-bars:before,
.fa-search:before {
  color: #fffefc;
}

.main-navigation {
  clear: both;
  display: none;
  width: 100%;
  height: 100%;
}
.main-navigation .wrapper {
  position: relative;
}
@media only screen and (min-width: 1100px) {
  .main-navigation {
    display: block;
    margin-top: 2.9154759474rem;
    width: 100%;
    position: static;
    line-height: 0;
  }
  .main-navigation .wrapper {
    max-width: 1800px;
    margin: 0 auto 0;
  }
}

.show-nav .site-canvas {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.show-nav .main-navigation {
  display: block;
}
.show-nav .main-navigation li {
  display: block;
  float: none;
  border-bottom: 1px solid #fffefc;
}
.show-nav .main-navigation li a {
  color: #fffefc;
}
@media only screen and (min-width: 1100px) {
  .show-nav .main-navigation li {
    display: inline;
    float: left;
    border: none;
  }
}

.show-nav .nav-menu li.menu-item-has-children > .mobile-button {
  color: #fff;
  width: 10%;
  text-align: center;
  display: inline-block;
}
.show-nav .nav-menu li.menu-item-has-children > .mobile-button:before {
  font-family: FontAwesome;
  content: "\f055";
  text-align: center;
}
.show-nav .nav-menu li.menu-item-has-children > .mobile-button + .sub-menu {
  display: none;
}
.show-nav .nav-menu li.menu-item-has-children > .mobile-button-opened:before {
  font-family: FontAwesome;
  content: "\f056";
  text-align: center;
}
.show-nav .nav-menu li.menu-item-has-children > .mobile-button-opened + .sub-menu {
  display: block;
}
@media only screen and (min-width: 1100px) {
  .show-nav .nav-menu li.menu-item-has-children .sub-menu .sub-menu {
    display: block;
  }
}

.article-header .mobile-menu {
  display: none;
}

/** Switch from mobile menu to main menu **/
@media only screen and (min-width: 1100px) {
  .mobile-menu,
.mobile-button {
    display: none !important;
  }

  .nav-menu {
    display: inline-block;
    position: relative;
  }

  .search-not-mobile {
    display: inline-block;
    float: right;
    padding-top: 1.80190108rem;
  }
}
.nav-menu {
  margin: 0;
  padding-left: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  /* end .nav-menu li */
  /* end 1000px */
}
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  font-size: 29px;
  font-size: 2.9rem;
  line-height: 47px;
  line-height: 4.7rem;
}
.nav-menu li a {
  display: inline-block;
  text-decoration: none;
  padding: 1.80190108rem;
  width: 90%;
}
.nav-menu .sub-menu,
.nav-menu .children {
  padding: 0;
  border-top: 2px solid #5c5c5c;
}
@media only screen and (min-width: 1100px) {
  .nav-menu {
    position: relative;
  }
  .nav-menu li,
.nav-menu .sub-menu li {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 29px;
    line-height: 2.9rem;
    line-height: initial;
    position: unset;
    display: inline;
    float: left;
    width: 16.8099902758%;
    margin: 0 1.4577379737%;
    width: 19%;
    margin: 0 0.625%;
    text-align: center;
    border-radius: 10px 10px 0 0;
    padding: 1.1136595056rem;
  }
  .nav-menu li a,
.nav-menu .sub-menu li a {
    color: #fffefc;
    padding: 0.6882938848rem 0;
  }
  .nav-menu li:hover > ul, .nav-menu li:active > ul, .nav-menu li:focus > ul,
.nav-menu .sub-menu li:hover > ul,
.nav-menu .sub-menu li:active > ul,
.nav-menu .sub-menu li:focus > ul {
    display: block;
  }
  .nav-menu li:nth-of-type(1),
.nav-menu .sub-menu li:nth-of-type(1) {
    margin-left: 0;
  }
  .nav-menu li:nth-of-type(5),
.nav-menu .sub-menu li:nth-of-type(5) {
    margin-right: 0;
  }
  .nav-menu li a,
.nav-menu .sub-menu li a {
    width: unset;
    font-weight: 600;
  }
  .nav-menu .sub-menu {
    display: none;
    border-top: none;
    position: absolute;
    left: 0;
    z-index: 99999;
    width: 100%;
  }
  .nav-menu .sub-menu li {
    text-align: left;
    text-transform: uppercase;
  }
  .nav-menu .sub-menu .sub-menu {
    display: block;
    position: relative;
    border-top: 1px solid #fffefc;
  }
  .nav-menu .sub-menu .sub-menu li {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 29px;
    line-height: 2.9rem;
    text-transform: initial;
    width: 100%;
    padding: 0;
  }
  .nav-menu .sub-menu .sub-menu li a {
    padding: 1.1136595056rem 0 0 0;
    line-height: initial;
  }
}

/* highlight current page */
.books {
  background-color: #B23328;
}
.books .sub-menu {
  background-color: #d3463a;
}
.books .sub-menu a {
  padding-left: 2.9154759474rem;
}
.books .sub-menu .sub-menu {
  background-color: #fffefc;
}
.books .sub-menu .sub-menu a {
  color: #B23328;
  padding-left: 5.8309518948rem;
}
@media only screen and (min-width: 1100px) {
  .books .sub-menu {
    background-color: #B23328;
  }
  .books .sub-menu a {
    padding-left: 0;
  }
  .books .sub-menu .sub-menu {
    background-color: #B23328;
  }
  .books .sub-menu .sub-menu a {
    color: #fffefc;
    padding-left: 0;
    border-bottom: none;
  }
}

.services {
  background-color: #9D643F;
}
.services .sub-menu {
  background-color: #bb7d54;
}
.services .sub-menu a {
  padding-left: 2.9154759474rem;
}
.services .sub-menu .sub-menu {
  background-color: #fffefc;
}
.services .sub-menu .sub-menu a {
  color: #9D643F;
  padding-left: 5.8309518948rem;
}
@media only screen and (min-width: 1100px) {
  .services .sub-menu {
    background-color: #9D643F;
  }
  .services .sub-menu a {
    padding-left: 0;
  }
  .services .sub-menu .sub-menu {
    background-color: #9D643F;
  }
  .services .sub-menu .sub-menu a {
    color: #fffefc;
    padding-left: 0;
    border-bottom: none;
  }
}

.resources {
  background-color: #6A596D;
}
.resources .sub-menu {
  background-color: #857089;
}
.resources .sub-menu a {
  padding-left: 2.9154759474rem;
}
.resources .sub-menu .sub-menu {
  background-color: #fffefc;
}
.resources .sub-menu .sub-menu a {
  color: #6A596D;
  padding-left: 5.8309518948rem;
}
@media only screen and (min-width: 1100px) {
  .resources .sub-menu {
    background-color: #6A596D;
  }
  .resources .sub-menu a {
    padding-left: 0;
  }
  .resources .sub-menu .sub-menu {
    background-color: #6A596D;
  }
  .resources .sub-menu .sub-menu a {
    color: #fffefc;
    padding-left: 0;
    border-bottom: none;
  }
}
.resources .resources-menu ul {
  margin: 0;
  border: 0;
}
.resources .resources-menu li {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 29px;
  line-height: 2.9rem;
}
.resources .resources-menu .search-by-name {
  display: none;
}
.resources .resources-menu .abc {
  display: none;
}
.resources .resources-menu .abc + .sub-menu {
  display: block;
  background-color: #857089;
  padding: 1.1136595056rem;
}
.resources .resources-menu .abc + .sub-menu .view {
  background: #f7f7f7;
  padding: 0.6882938848rem;
}
.resources .resources-menu .abc + .sub-menu .view:nth-of-type(1) {
  display: inline;
  float: left;
  width: 48.5422620263%;
  margin: 0 1.4577379737%;
  margin-left: 0;
}
.resources .resources-menu .abc + .sub-menu .view:nth-of-type(2) {
  display: inline;
  float: left;
  width: 48.5422620263%;
  margin: 0 1.4577379737%;
  margin-right: 0;
}
.resources .resources-menu .abc + .sub-menu .view a {
  padding: 0.6882938848rem;
  text-transform: uppercase;
  line-height: 1;
}
@media only screen and (min-width: 1100px) {
  .resources .resources-menu {
    display: inline;
    float: left;
    width: 100%;
    margin: 0 1.4577379737%;
    text-align: left;
    margin: 0;
    padding: 0 1.80190108rem;
  }
  .resources .resources-menu .search-by-name {
    display: block;
    padding: 1.1136595056rem;
    border-bottom: 1px solid #fffefc;
    text-transform: uppercase;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 29px;
    line-height: 2.9rem;
    font-weight: 600;
  }
  .resources .resources-menu li {
    padding: 0 0.6882938848rem;
  }
  .resources .resources-menu .abc {
    display: inline;
    padding: 0;
  }
  .resources .resources-menu .abc li {
    padding: 0;
    margin: 0 1.1136595056rem;
    width: auto;
    line-height: 3;
  }
  .resources .resources-menu .abc + .sub-menu {
    margin-left: 2.9154759474rem;
    background: inherit;
    display: inline-block;
    float: none;
    width: auto;
    border: none;
  }
  .resources .resources-menu .abc + .sub-menu .view {
    border-radius: 0;
  }
  .resources .resources-menu .abc + .sub-menu .view:nth-of-type(1) {
    width: auto;
    margin: 0 1.1136595056rem;
  }
  .resources .resources-menu .abc + .sub-menu .view:nth-of-type(2) {
    width: auto;
    margin: 0 1.1136595056rem;
  }
  .resources .resources-menu .abc + .sub-menu .view a {
    color: #757575;
    width: auto;
  }
}

.kids {
  background-color: #215361;
}
.kids .sub-menu {
  background-color: #2e7487;
}
.kids .sub-menu a {
  padding-left: 2.9154759474rem;
}
.kids .sub-menu .sub-menu {
  background-color: #fffefc;
}
.kids .sub-menu .sub-menu a {
  color: #215361;
  padding-left: 5.8309518948rem;
}
@media only screen and (min-width: 1100px) {
  .kids .sub-menu {
    background-color: #215361;
  }
  .kids .sub-menu a {
    padding-left: 0;
  }
  .kids .sub-menu .sub-menu {
    background-color: #215361;
  }
  .kids .sub-menu .sub-menu a {
    color: #fffefc;
    padding-left: 0;
    border-bottom: none;
  }
}

li.events {
  background-color: #4D4D4D;
}
li.events .sub-menu {
  background-color: #676767;
}
li.events .sub-menu a {
  padding-left: 2.9154759474rem;
}
li.events .sub-menu .sub-menu {
  background-color: #fffefc;
}
li.events .sub-menu .sub-menu a {
  color: #4D4D4D;
  padding-left: 5.8309518948rem;
}
@media only screen and (min-width: 1100px) {
  li.events .sub-menu {
    background-color: #4D4D4D;
  }
  li.events .sub-menu a {
    padding-left: 0;
  }
  li.events .sub-menu .sub-menu {
    background-color: #4D4D4D;
  }
  li.events .sub-menu .sub-menu a {
    color: #fffefc;
    padding-left: 0;
    border-bottom: none;
  }
}
@media only screen and (min-width: 1100px) {
  li.events {
    position: relative;
  }
  li.events .sub-menu {
    padding: 0 1.80190108rem;
  }
  li.events .sub-menu li {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 29px;
    line-height: 2.9rem;
    text-transform: capitalize;
    width: 100%;
    margin-left: 0;
    border-radius: 0;
    padding: 0;
  }
  li.events .sub-menu li:first-of-type {
    border-top: 1px solid #fffefc;
    margin-top: 1.80190108rem;
  }
  li.events .sub-menu li a {
    line-height: 1;
    font-weight: normal;
    padding-top: 1.1136595056rem;
  }
}

/** Social Menu **/
.menu-social ul {
  float: right;
  text-align: center;
  list-style: none;
}
.menu-social ul li {
  position: relative;
  display: inline-block;
}
.menu-social ul li a:before {
  display: inline-block;
  padding: 0 1.80190108rem;
  vertical-align: top;
  font-family: "FontAwesome";
  font-size: 29px;
  font-size: 2.9rem;
  line-height: 47px;
  line-height: 4.7rem;
  font-weight: 900;
  letter-spacing: 0.12rem;
  color: #757575;
  -webkit-font-smoothing: antialiased;
  content: "\f0c0";
}
.menu-social ul a:after {
  content: "";
  height: 40px;
  width: 40px;
  background-color: #215361;
  border-radius: 50%;
  display: inline-block;
  color: red;
}

.menu-social li a[href*="facebook.com"]::before {
  content: "\f09a";
}

.menu-social li a[href*="twitter.com"]::before {
  content: "\f099";
}

.menu-social li a[href*="dribbble.com"]::before {
  content: "\f17d";
}

.menu-social li a[href*="plus.google.com"]::before {
  content: "\f0d5";
}

.menu-social li a[href*="pinterest.com"]::before {
  content: "\f0d2";
}

.menu-social li a[href*="github.com"]::before {
  content: "\f09b";
}

.menu-social li a[href*="tumblr.com"]::before {
  content: "\f173";
}

.menu-social li a[href*="youtube.com"]::before {
  content: "\f167";
}

.menu-social li a[href*="flickr.com"]::before {
  content: "\f16e";
}

.menu-social li a[href*="vimeo.com"]::before {
  content: "\f194";
}

.menu-social li a[href*="instagram.com"]::before {
  content: "\f16d";
}

.menu-social li a[href*="linkedin.com"]::before {
  content: "\f0e1";
}

.menu-social li a[href*=mailto]::before {
  content: "\f0e0";
}

/** Header Search Bar **/
.search-mobile,
.search-not-mobile {
  /* 	float: right;
  	color: $grey; 
  	text-align: center;
  	cursor: pointer;
  	@include sub-headline();
  	width: 10%;
  	display: inline;
  	text-align: center;  */
}
.search-box .search-field {
  color: #444;
}
.search-mobile {
  display: none;
}

.search-not-mobile {
  display: inline-block;
}

.hero-image > .wrapper {
  max-width: 1800px;
  margin: 0 auto 0;
  position: relative;
}

.search-box-wrapper {
  background: url(../images/search-bubble.png) no-repeat;
  background-size: contain;
  text-align: center;
  position: absolute;
  z-index: 10;
  color: #fffefc;
  top: 1rem;
  right: 0rem;
  width: 42rem;
  height: 26rem;
  top: 1rem;
  right: 0rem;
  width: 52rem;
  height: 33rem;
}
.search-box-wrapper .content-wrapper {
  position: relative;
  top: 7rem;
  left: 4rem;
  width: 33rem;
  left: 10rem;
}
.search-box-wrapper a {
  color: #fffefc;
}
@media only screen and (min-width: 1000px) {
  .home .search-box-wrapper {
    width: 65rem;
    height: 40rem;
    top: 6rem;
  }
  .home .search-box-wrapper .content-wrapper {
    top: 12rem;
    left: 7rem;
    width: 46rem;
  }
}
.search-box-wrapper .heading {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 29px;
  line-height: 2.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0;
}
@media only screen and (min-width: 1000px) {
  .home .search-box-wrapper .heading {
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 37px;
    line-height: 3.7rem;
  }
}
.search-box-wrapper .search-box {
  background: #fffefc;
  overflow: hidden;
  padding: 0;
}
.search-box-wrapper .search-box .search-field {
  background-color: #fffefc;
}
.search-box-wrapper .search-box label {
  width: 85%;
  float: left;
  margin: 0;
}
.search-box-wrapper .search-box label input {
  margin: 0;
  font-weight: 400;
  padding: 0.6882938848rem 1.80190108rem;
}
.search-box-wrapper .search-box .submit-button {
  width: 15%;
  padding: 0.6882938848rem;
  margin: 0;
  border-radius: 0;
  border: none;
  background: #757575;
}
.search-box-wrapper .search-box .submit-button .fa-search {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 37px;
  line-height: 3.7rem;
  line-height: 1;
}
.search-box-wrapper p {
  text-align: left;
  padding: 0.6882938848rem 0;
  margin: 0;
  font-weight: 400;
}
.search-box-wrapper .selection {
  text-align: left;
  padding-left: 2.9154759474rem;
}
.search-box-wrapper .selection .radio {
  display: inline;
  display: block;
  margin-right: 2.9154759474rem;
}
.search-box-wrapper .selection label {
  display: inline;
  font-weight: 400;
  margin: 0;
}

/** ASIDES
******************************************************************/
/* -------------------------------------------------------------
#secondary .widget-area
	aside .widget
-------------------------------------------------------------- */
.widget-area {
  background: #f7f7f7;
  padding: 2.9154759474rem;
}
.widget-area .widget {
  word-wrap: break-word;
}
.widget-area .widget a {
  color: #215361;
}
.widget-area .widget ul {
  list-style: none;
}
.widget-area .widget ul li {
  /* deep nesting */
}
.widget-area #s {
  width: 53.6666666667%;
  /* define a width to avoid dropping a wider submit button */
}
.widget-area .custom-section h6 {
  text-transform: uppercase;
  font-weight: 800;
}
.widget-area .custom-section .sidebar-image img {
  width: 100%;
}
.widget-area .custom-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/** FOOTER
******************************************************************/
/* -------------------------------------------------------------
footer#colophon .site-footer
	.inner-footer
-------------------------------------------------------------- */
.site-footer {
  clear: both;
  background: url("../images/icons/book-single.png") repeat-x;
  background-size: 7rem;
  padding-top: 7rem;
  margin-top: 7.6324944542rem;
}
.site-footer a {
  font-weight: 600;
}
.site-footer .footer-top {
  padding: 2.9154759474rem;
  text-align: center;
  border-top: #215361 6px solid;
  overflow: hidden;
}
.site-footer .footer-top .wrapper {
  max-width: 800px;
  margin: 0 auto 0;
}
@media only screen and (min-width: 1500px) {
  .site-footer .footer-top .wrapper {
    max-width: 1800px;
    margin: 0 auto 0;
  }
}
@media only screen and (min-width: 1500px) {
  .site-footer .footer-top .wrapper > div {
    display: inline;
    float: left;
    width: 16.8099902758%;
    margin: 0 1.4577379737%;
    padding: 0 2.9154759474rem;
  }
}
.site-footer .footer-top .wrapper > div h4 {
  text-transform: uppercase;
  text-align: left;
  color: #4D4D4D;
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 37px;
  line-height: 3.7rem;
}
.site-footer .footer-top .wrapper > div.logo {
  float: right;
}
.site-footer .footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 29px;
  line-height: 2.9rem;
}
.site-footer .footer-top li {
  list-style: none;
}
@media only screen and (min-width: 600px) {
  .site-footer .footer-top .contact {
    display: inline;
    float: left;
    width: 48.5422620263%;
    margin: 0 1.4577379737%;
    margin-left: 0;
  }
}
.site-footer .footer-top .contact a[href*=tel] {
  padding: 1.80190108rem 0;
  display: block;
}
.site-footer .footer-top .contact .comments {
  padding-bottom: 1.80190108rem;
  display: block;
  font-weight: bold;
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 37px;
  line-height: 3.7rem;
}
.site-footer .footer-top .social-media li {
  display: inline-block;
  clear: both;
}
@media only screen and (min-width: 600px) {
  .site-footer .footer-top .hours {
    display: inline;
    float: left;
    width: 48.5422620263%;
    margin: 0 1.4577379737%;
    margin-right: 0;
  }
}
.site-footer .footer-top .hours label {
  display: inline-block;
  width: 30%;
}
@media only screen and (min-width: 600px) {
  .site-footer .footer-top .book_drops {
    display: inline;
    float: left;
    width: 31.3896827017%;
    margin: 0 1.4577379737%;
    margin-left: 0;
  }
}
.site-footer .footer-top .book_drops ul {
  margin-bottom: 1.80190108rem;
}
@media only screen and (min-width: 600px) {
  .site-footer .footer-top .about-us {
    display: inline;
    float: left;
    width: 31.3896827017%;
    margin: 0 1.4577379737%;
  }
}
@media only screen and (min-width: 600px) {
  .site-footer .footer-top .get-involved {
    display: inline;
    float: left;
    width: 31.3896827017%;
    margin: 0 1.4577379737%;
    margin-right: 0;
  }
}
.site-footer .footer-top .pagenav li {
  margin-bottom: 1.1136595056rem;
}
.site-footer .footer-top .pagenav a {
  text-decoration: none;
  color: #215361;
  font-weight: 600;
}
.site-footer .footer-bottom {
  background: #4D4D4D;
  padding: 2.9154759474rem;
}
.site-footer .footer-bottom .wrapper {
  max-width: 1280px;
  margin: 0 auto 0;
}
.site-footer .footer-bottom .links ul {
  padding: 0;
}
.site-footer .footer-bottom .links ul li {
  display: inline-block;
  color: #fffefc;
  padding-right: 1.80190108rem;
}
.site-footer .footer-bottom .links ul li:before {
  content: "•";
  padding-right: 1.80190108rem;
}
.site-footer .footer-bottom .links ul li:first-of-type:before {
  display: none;
}
.site-footer .footer-bottom .links ul li a {
  color: #fffefc;
  text-decoration: none;
}
.site-footer .footer-bottom .links .copyright {
  color: #fffefc;
  margin: 0;
}
.site-footer .footer-bottom .links .copyright:before {
  content: "© ";
}
@media only screen and (min-width: 1000px) {
  .site-footer .phone a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/*==================================================================

	=CONTENT

==================================================================*/
/** POSTS AND PAGES
******************************************************************/
/* -------------------------------------------------------------
#primary .content-area
	main#main .site-main
		article .post
			.entry-header 
			.entry-content
			.entry-footer
		.post-navigation	
-------------------------------------------------------------- */
.content-area.without_sidebar {
  width: 100%;
}
@media only screen and (min-width: 1000px) {
  .content-area.without_sidebar .site-main {
    margin: 0 12.3493760269rem;
  }
}
.entry-header .entry-meta {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 23px;
  line-height: 2.3rem;
  display: inline-block;
}
.entry-header .cat-links {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 23px;
  line-height: 2.3rem;
}

.entry-content img {
  margin-top: 0.6882938848rem;
}
/** PAGING NAVIGATION
******************************************************************/
.comment-navigation,
.paging-navigation,
.post-navigation,
.posts-navigation {
  padding: 1.80190108rem 0;
  margin: 0;
  margin-bottom: 2.9154759474rem;
  list-style-type: none;
  border-top: 1px solid #757575;
  border-bottom: 1px solid #757575;
  overflow: hidden;
}
.comment-navigation .current,
.paging-navigation .current,
.post-navigation .current,
.posts-navigation .current {
  font-weight: bold;
}
.comment-navigation li,
.paging-navigation li,
.post-navigation li,
.posts-navigation li {
  display: inline;
}
.comment-navigation a.page-numbers,
.comment-navigation span.page-numbers,
.paging-navigation a.page-numbers,
.paging-navigation span.page-numbers,
.post-navigation a.page-numbers,
.post-navigation span.page-numbers,
.posts-navigation a.page-numbers,
.posts-navigation span.page-numbers {
  padding: 3px 7px;
  color: #fffefc;
}
.comment-navigation a.page-numbers:hover,
.comment-navigation span.page-numbers:hover,
.paging-navigation a.page-numbers:hover,
.paging-navigation span.page-numbers:hover,
.post-navigation a.page-numbers:hover,
.post-navigation span.page-numbers:hover,
.posts-navigation a.page-numbers:hover,
.posts-navigation span.page-numbers:hover {
  color: #fffefc;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous,
.posts-navigation .nav-previous {
  width: 50%;
  float: left;
  padding-right: 15%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next,
.posts-navigation .nav-next {
  width: 50%;
  float: right;
  padding-left: 15%;
  text-align: right;
}
.comment-navigation .nav-indicator,
.paging-navigation .nav-indicator,
.post-navigation .nav-indicator,
.posts-navigation .nav-indicator {
  margin-bottom: 1.80190108rem;
}
.comment-navigation .nav-title,
.paging-navigation .nav-title,
.post-navigation .nav-title,
.posts-navigation .nav-title {
  font-weight: bold;
}
.comment-navigation .nav-title a,
.paging-navigation .nav-title a,
.post-navigation .nav-title a,
.posts-navigation .nav-title a {
  text-decoration: none;
}
.comment-navigation .nav-title a:hover,
.paging-navigation .nav-title a:hover,
.post-navigation .nav-title a:hover,
.posts-navigation .nav-title a:hover {
  text-decoration: underline;
}

/** COMMENTS
******************************************************************/
/* -------------------------------------------------------------
#comments .comment-area
	.comments-title
	ol.comment-list
		li.comment
	#respond .comment-respond
		#reply-title .comment-reply-title
		form#commentform .comment-form
			.logged-in-as 
			.comment-form-comment
			.form-allowed-tags
			.form-submit
-------------------------------------------------------------- */
.comments-area {
  clear: both;
  /** Comments List **/
  /** Comments Response Area **/
}
.comments-area .comments-title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 29px;
  line-height: 2.9rem;
  font-weight: 600;
}
.comments-area .comment-list {
  margin: 0;
  padding: 0;
}
.comments-area .comment-list li.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
}
.comments-area .comment-list li.comment:last-child {
  margin-bottom: 0;
}
.comments-area .comment-list li.comment .comment-body {
  padding: 5px;
}
.comments-area .odd {
  background: #757575;
}
.comments-area .even {
  background: #fffefc;
}
.comments-area .comment-respond .comment-form .comment-form-comment input,
.comments-area .comment-respond .comment-form .comment-form-comment textarea {
  width: 100%;
  /* form validation */
}
.comments-area .comment-respond .comment-form .comment-form-comment input:focus,
.comments-area .comment-respond .comment-form .comment-form-comment textarea:focus {
  background: #fffefc;
}
.comments-area .comment-respond .comment-form .comment-form-comment input:invalid,
.comments-area .comment-respond .comment-form .comment-form-comment textarea:invalid {
  outline: none;
  border-color: #444;
  background-color: #757575;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
.comments-area .comment-respond .comment-form .required {
  color: red;
}
/** OTHER PAGES
******************************************************************/
/** Front Page
-------------------------------------------------------------- */
.home .site-content {
  width: unset;
  max-width: unset;
}
.home .site-content .content-area {
  width: 100%;
  margin: 0;
  padding: 0;
}
.home .mission {
  display: none;
}
@media only screen and (min-width: 1000px) {
  .home .mission {
    display: block;
    clear: both;
    background: url("../images/icons/book-single.png") repeat-x;
    background-size: 7rem;
    padding-top: 7rem;
    overflow: hidden;
  }
  .home .mission .wrapper {
    max-width: 1280px;
    margin: 0 auto 0;
    padding: 0 2.9154759474rem;
    overflow: hidden;
  }
  .home .mission .col1 {
    display: inline;
    float: left;
    width: 65.6948413509%;
    margin: 0 1.4577379737%;
    margin-left: 0;
  }
  .home .mission h3 {
    text-transform: uppercase;
    color: #B23328;
    margin-bottom: 0;
  }
  .home .mission p {
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 37px;
    line-height: 3.7rem;
  }
  .home .mission .col2 {
    display: inline;
    float: left;
    width: 31.3896827017%;
    margin: 0 1.4577379737%;
    margin-right: 0;
    position: relative;
  }
  .home .mission button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 150%);
            transform: translate(-50%, 150%);
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 29px;
    line-height: 2.9rem;
  }
  .home .mission button a {
    color: #fffefc;
  }
}
.home .spotlights {
  margin-bottom: 2.9154759474rem;
  clear: both;
  overflow: hidden;
}
.home .spotlights .wrapper {
  max-width: 1280px;
  margin: 0 auto 0;
}
@media only screen and (min-width: 800px) {
  .home .spotlights .wrapper {
    padding: 0 2.9154759474rem;
  }
}
.home .spotlights .spotlight-wrapper {
  display: inline;
  float: left;
  width: 48.5422620263%;
  margin: 0 1.4577379737%;
  margin-top: 2.9154759474rem;
  line-height: 0;
}
@media only screen and (max-width: 800px) {
  .home .spotlights .spotlight-wrapper:nth-of-type(2n+1) {
    margin-left: 0;
    clear: both;
  }
  .home .spotlights .spotlight-wrapper:nth-of-type(2n+2) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 800px) {
  .home .spotlights .spotlight-wrapper {
    display: inline;
    float: left;
    width: 31.3896827017%;
    margin: 0 1.4577379737%;
    margin-top: 2.9154759474rem;
    line-height: 0;
  }
  .home .spotlights .spotlight-wrapper:nth-of-type(3n+1) {
    margin-left: 0;
    clear: both;
  }
  .home .spotlights .spotlight-wrapper:nth-of-type(3n+3) {
    margin-right: 0;
  }
}
.home .spotlights .spotlight-wrapper:nth-of-type(1) .spotlight::after {
  background-color: #215361;
}
.home .spotlights .spotlight-wrapper:nth-of-type(2) .spotlight::after {
  background-color: #CE8D34;
}
.home .spotlights .spotlight-wrapper:nth-of-type(3) .spotlight::after {
  background-color: #9D643F;
}
.home .spotlights .spotlight-wrapper:nth-of-type(4) .spotlight::after {
  background-color: #6C9E97;
}
.home .spotlights .spotlight-wrapper:nth-of-type(5) .spotlight::after {
  background-color: #B23328;
}
.home .spotlights .spotlight-wrapper:nth-of-type(6) .spotlight::after {
  background-color: #6A596D;
}
.home .spotlights .spotlight {
  position: relative;
}
.home .spotlights .spotlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 1;
}
.home .spotlights .spotlight:hover::after {
  opacity: 0.5;
}
.home .spotlights .spotlight h4 {
  font-size: 29px;
  font-size: 2.9rem;
  line-height: 47px;
  line-height: 4.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fffefc;
  margin: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.home .spotlights .spotlight h4 a {
  color: #fffefc;
}
.home .news {
  clear: both;
  max-width: 110rem;
  max-width: 1400px;
  margin: 0 auto 0;
  min-height: 38rem;
  margin: 0 auto 0;
  background: url("../images/icons/book-single.png") repeat;
  background-size: 7rem;
  padding: 2.9154759474rem;
  margin-top: 2.9154759474rem;
}
.home .news .news-bground {
  max-width: 1280px;
  margin: 0 auto 0;
  background: #f7f7f7;
  padding: 2.9154759474rem 1.80190108rem;
  overflow: hidden;
}
.home .news .featured {
  margin-bottom: 2.9154759474rem;
}
@media only screen and (min-width: 800px) {
  .home .news .featured {
    display: inline;
    float: left;
    width: 65.6948413509%;
    margin: 0 1.4577379737%;
    margin-left: 0;
  }
}
.home .news .featured img {
  margin-right: 1.80190108rem;
  margin-bottom: 1.80190108rem;
  border-radius: 0;
  display: inline;
  float: left;
}
.home .news .featured h4 {
  display: inline-block;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1.80190108rem;
  line-height: 1;
}
.home .news .featured h4 a {
  color: #6A596D;
}
.home .news .featured span {
  clear: both;
  display: inline-block;
  margin-bottom: 1.80190108rem;
  font-weight: 400;
}
.home .news .news-aside h4 {
  text-transform: uppercase;
  margin-top: 0;
  line-height: 1;
}
.home .news .news-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 2.9154759474rem;
  margin-bottom: 2.9154759474rem;
}
.home .news .news-aside ul li {
  padding-bottom: 1.1136595056rem;
}
.home .news .news-aside .more a {
  text-decoration: none;
}
@media only screen and (min-width: 800px) {
  .home .news .news-aside {
    display: inline;
    float: left;
    width: 31.3896827017%;
    margin: 0 1.4577379737%;
    margin-right: 0;
    border-left: 3px solid #444;
    padding-left: 2.9154759474rem;
  }
}

/** Blog Page
-------------------------------------------------------------- */
.blog article {
  overflow: hidden;
}
.blog .entry-header {
  margin-bottom: 1.80190108rem;
}
/** Archives
-------------------------------------------------------------- */
.archive article {
  overflow: hidden;
  margin-bottom: 1.80190108rem;
}
.archive .entry-header {
  margin-bottom: 1.80190108rem;
}
.archive .entry-header .entry-title {
  margin-top: 0;
}
.archive img {
  float: left;
  margin-right: 1.80190108rem;
}

/** 404
-------------------------------------------------------------- */
/** Single 
-------------------------------------------------------------- */
/** Page 
-------------------------------------------------------------- */
/** Online Resources
-------------------------------------------------------------- */
.page-template-resources-abc h3 a,
.page-template-resources-topic h3 a {
  color: #215361;
}

/** Search Form
-------------------------------------------------------------- */
.site-content .content-area {
  width: 100%;
}
.site-content .search-form {
  margin: 2.9154759474rem 0;
  overflow: hidden;
}
.site-content .search-form label {
  margin-bottom: 0;
}
.site-content .search-form input[type=search] {
  margin: 0;
  padding: 0;
  display: inline;
  float: left;
  width: 74.2711310131%;
  margin: 0 1.4577379737%;
  margin-left: 0;
  width: 60%;
  padding: 1.1136595056rem 2.9154759474rem;
  border: 2px solid #215361;
  background: #fffefc;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 29px;
  line-height: 2.9rem;
  font-weight: 600;
  color: #444;
}
.site-content .search-form input[type=submit] {
  margin: 0;
  padding: 0;
  display: inline;
  float: left;
  width: 22.8133930394%;
  margin: 0 1.4577379737%;
  margin-right: 0;
  padding: 1.1136595056rem;
}
.site-content .entry-title {
  margin-bottom: 0;
}
.site-content .site-content img {
  float: left;
  margin-right: 2.9154759474rem;
  margin-bottom: 2.9154759474rem;
}

/** PARTIALS
******************************************************************/
.c-accordion__item h2, .c-accordion__item h3, .c-accordion__item h4 {
  text-transform: none;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 29px;
  line-height: 2.9rem;
  font-weight: 600;
}

.alert {
  background-color: #B23328;
  color: #fffefc;
}
.alert .wrapper {
  max-width: 1280px;
  margin: 0 auto 0;
  text-align: center;
  padding: 0.6882938848rem 0;
}
.alert .wrapper a {
  color: #fffefc;
}

.breadcrumbs {
  padding: 1.80190108rem;
  border-bottom: 1px solid #444;
  line-height: 1;
}
.breadcrumbs .wrapper {
  max-width: 1400px;
  margin: 0 auto 0;
}
.breadcrumbs .result {
  font-weight: 800;
  font-style: italic;
}
.read-more-container a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 900;
}

.caldera-grid .help-block {
  display: inline !important;
  margin-left: 1rem;
  font-style: italic;
}
.caldera-grid .checkbox:first-of-type {
  margin-top: -5px;
}
.caldera-grid .checkbox label,
.caldera-grid .radio label {
  font-weight: 600 !important;
}

/* Caldera Date Picker Mods */
.datepicker {
  position: relative;
}
.datepicker .header {
  text-align: center;
}
.datepicker .header button {
  font-size: 1.5rem;
  vertical-align: unset;
}
.datepicker .date input {
  display: inline;
  float: left;
  width: 82.8474206754%;
  margin: 0 1.4577379737%;
  margin-left: 0;
}
.datepicker .date button {
  padding: 0;
  margin: 0;
  display: inline;
  float: left;
  width: 14.2371033771%;
  margin: 0 1.4577379737%;
  margin-right: 0;
  float: none;
}
.datepicker .date button .fa-2x {
  font-size: 1em;
}
.datepicker button.icon:focus {
  outline: none;
  border-color: #307ae8;
}

.datepicker span.arrow {
  margin: 0;
  padding: 0;
  display: none;
  background: transparent;
}

.datepicker input {
  margin: 0;
  width: 20%;
}

.datepicker .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.datepicker .header h2 {
  margin: 0;
  font-size: 1em;
  line-height: 2.5;
}

.datepicker .header button {
  border-style: none;
  background: transparent;
}
.datepicker .header button span {
  color: #757575;
}

.datepicker .datepickerDialog button::-moz-focus-inner {
  border: 0;
}

.datepicker .prevYear,
.datepicker .prevMonth,
.datepicker .nextMonth,
.datepicker .nextYear {
  padding: 4px;
  width: 24px;
  height: 24px;
  color: white;
}

.datepicker .prevYear:focus,
.datepicker .prevMonth:focus,
.datepicker .nextMonth:focus,
.datepicker .nextYear:focus {
  padding: 2px;
  border: 2px solid white;
  border-radius: 4px;
  outline: 0;
}

.datepicker .dialogButtonGroup {
  text-align: right;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-right: 1em;
}

.datepicker .dialogButton {
  padding: 5px;
  margin-left: 1em;
  width: 5em;
  background-color: #dae7fb;
  font-size: 0.85em;
  color: black;
  outline: none;
  border: 1px solid #dae7fb;
  border-radius: 5px;
}

.datepicker .dialogButton:focus {
  padding: 4px;
  border: 2px solid black;
}

.datepicker .monthYear {
  display: inline-block;
  width: 12em;
  text-align: center;
}

.datepicker table.dates {
  width: 100%;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 1em;
}

.datepicker table.dates th,
.datepicker table.dates td {
  text-align: center;
}

.datepicker .dateRow {
  border: 1px solid black;
}

.datepicker .dateCell {
  outline: 0;
  border: 0;
  padding: 0;
  margin: 0;
  height: 40px;
  width: 40px;
}

.datepicker .dateButton {
  padding: 0;
  margin: 0;
  line-height: inherit;
  height: 100%;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 5px;
  font-size: 15px;
  background: #888;
}

.datepicker .dateButton:focus,
.datepicker .dateButton:hover {
  padding: 0;
}

.datepicker .dateButton:focus {
  border-width: 2px;
  outline: 0;
}

.datepicker .dateButton[aria-selected] {
  background: #215361;
}

.datepicker .disabled {
  color: #666;
}

.datepicker .disabled:hover {
  color: black;
}

.datepicker .dateButton:disabled {
  color: #777;
  background-color: #fff;
  border: none;
  cursor: not-allowed;
}

.datepicker .message {
  padding-top: 0.25em;
  padding-left: 1em;
  height: 1.75em;
  background: #215361;
  color: white;
}

.cfdatepicker > div {
  display: block !important;
}

.datepickerDialog {
  display: none;
}

.datepickerDialog .dialogButton {
  background: #215361;
  color: #fffefc;
}

.printonly {
  display: none;
}

/*==================================================================

	=PRINT SETTINGS

==================================================================*/
@media print {
  /******************************************************************
  Site Name: Tabula Rasa
  Author: Kenny Scott
  Stylesheet: Print Stylesheet

  Sources:
  http://www.webdesignerdepot.com/2010/01/10-tips-for-better-print-style-sheets/
  http://www.smashingmagazine.com/2013/03/08/tips-and-tricks-for-print-style-sheets/
  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
            filter: none !important;
    -ms-filter: none !important;
  }

  .site-main,
article {
    width: 100%;
    margin: 0;
    float: none;
  }

  a, a:visited {
    font-weight: bolder;
    text-decoration: none;
    color: #06c;
  }
  a[rel=external]:after, a:visited[rel=external]:after {
    content: " (" attr(href) ")";
    font-size: 14px;
    font-weight: normal;
    color: #06c;
  }

  .printonly {
    display: block;
    font-size: 14px;
    font-weight: normal;
    color: #06c !important;
  }

  .entry-title:after {
    content: none;
  }

  a:link {
    font-weight: bolder;
    text-decoration: none;
    color: #06c;
  }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  ul, tr, img {
    page-break-inside: avoid;
  }

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

  @page :left {
    margin: 0.5cm;
  }
  @page :right {
    margin: 0.8cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  p {
    font-size: 12pt;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  .comments-area {
    page-break-before: always;
  }

  .mobile-menu,
.search-mobile,
.site-logo,
.site-description,
.header-info,
.hours,
.account,
.sidebar,
.breadcrumbs,
.widget-area,
.page-navigation,
.post-navigation,
.wp-prev-next,
.respond-form,
.comment-respond,
.site-footer,
nav,
.hero-image {
    display: none !important;
  }

  .site-branding {
    margin-top: 50px;
    width: 75% !important;
    float: left;
  }
  .site-branding .site-title {
    display: block;
    font-size: 28pt;
    text-align: left;
    position: static;
  }

  .QRprintonly {
    display: inline-block !important;
    width: 20%;
    float: left;
  }
}
@media print and (color) {
  * {
    print-color-adjust: exact;
  }
}
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInN0eWxlLnNjc3MiLCJtaXhpbnMvX21peGlucy1zZXR0aW5ncy5zY3NzIiwibWl4aW5zL19taXhpbnMtZnVuY3Rpb25zLnNjc3MiLCJpbml0L19ub3JtYWxpemUuc2NzcyIsImluaXQvX2FjY2Vzc2liaWxpdHkuc2NzcyIsImluaXQvX2FsaWdubWVudHMuc2NzcyIsInR5cG9ncmFwaHkvX2hlYWRpbmdzLnNjc3MiLCJ0eXBvZ3JhcGh5L19jb3B5LnNjc3MiLCJlbGVtZW50cy9fbGlzdHMuc2NzcyIsImVsZW1lbnRzL190YWJsZXMuc2NzcyIsImVsZW1lbnRzL19mb3Jtcy5zY3NzIiwiZWxlbWVudHMvX2J1dHRvbnMuc2NzcyIsImVsZW1lbnRzL19saW5rcy5zY3NzIiwibWVkaWEvX2ltYWdlcy5zY3NzIiwibWVkaWEvX2dhbGxlcmllcy5zY3NzIiwibWVkaWEvX2NhcHRpb25zLnNjc3MiLCJtZWRpYS9fdmlkZW9zLnNjc3MiLCJzdHJ1Y3R1cmUvX2xheW91dC5zY3NzIiwibWl4aW5zL19taXhpbnMtZ3JpZC5zY3NzIiwic3RydWN0dXJlL19oZWFkZXIuc2NzcyIsInN0cnVjdHVyZS9fbmF2aWdhdGlvbi5zY3NzIiwic3RydWN0dXJlL19uYXYtbWFpbi5zY3NzIiwic3RydWN0dXJlL19uYXYtc29jaWFsLnNjc3MiLCJzdHJ1Y3R1cmUvX25hdi1zZWFyY2hiYXIuc2NzcyIsInN0cnVjdHVyZS9fYXNpZGVzLnNjc3MiLCJzdHJ1Y3R1cmUvX2Zvb3Rlci5zY3NzIiwiY29udGVudC9fcG9zdHMtYW5kLXBhZ2VzLnNjc3MiLCJjb250ZW50L19wYWdpbmduYXYuc2NzcyIsImNvbnRlbnQvX2NvbW1lbnRzLnNjc3MiLCJjb250ZW50L19vdGhlci1wYWdlcy5zY3NzIiwiY29udGVudC9fcGFydGlhbHMuc2NzcyIsInByaW50L19wcmludC5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQTtBQUFBO0FBQUE7O0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTs7QUFBQTtBQTBDQTs7QUFBQTs7QUFBQTtBQU1DO0FBQUE7QUFLQTtBQUFBO0FDcEREO0FBQUE7QUFBQTtBQUFBO0FEd0RDO0FBQUE7QUV4REQ7QUFBQTtBQUFBO0FBQUE7QUFLQTtBQUVBO0FBQUE7QUFBQTtFQUdDO0FBQTZCO0VBQzdCO0FBQTZCO0VBQzdCOzs7QUZnREE7QUFBQTtBQUtEOztBQUFBOztBQUFBO0FBS0M7QUFBQTtBR3ZFRDtBQUVBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFNQTtFQUNFO0FBQXlCO0VBQ3pCO0FBQTRCO0VBQzVCO0FBQWdDOzs7QUFHbEM7QUFBQTtBQUFBO0FBSUE7RUFDRTs7O0FBR0Y7QUFBQTtBQUdBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFNQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7RUFZRTs7O0FBR0Y7QUFBQTtBQUFBO0FBQUE7QUFLQTtBQUFBO0FBQUE7QUFBQTtFQUlFO0FBQXVCO0VBQ3ZCO0FBQTBCOzs7QUFHNUI7QUFBQTtBQUFBO0FBQUE7QUFLQTtFQUNFO0VBQ0E7OztBQUdGO0FBQUE7QUFBQTtBQUFBO0FBS0E7QUFBQTtFQUVFOzs7QUFHRjtBQUFBO0FBR0E7QUFBQTtBQUFBO0FBSUE7RUFDRTs7O0FBR0Y7QUFBQTtBQUFBO0FBSUE7QUFBQTtFQUVFOzs7QUFHRjtBQUFBO0FBR0E7QUFBQTtBQUFBO0FBSUE7RUFDRTs7O0FBR0Y7QUFBQTtBQUFBO0FBSUE7QUFBQTtFQUVFOzs7QUFHRjtBQUFBO0FBQUE7QUFJQTtFQUNFOzs7QUFHRjtBQUFBO0FBQUE7QUFBQTtBQUtBO0VBQ0U7RUFDQTs7O0FBR0Y7QUFBQTtBQUFBO0FBSUE7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 */

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