/*
 *  Custom webmeadow.com mixins
 *  Version: 4/12/2014
 *	Author: aaron@webmeadow.com
 *
 */
/*
 *  Custom webmeadow.com variables and mixins
 *  Version: 4/12/2014
 *	Author: aaron@webmeadow.com
 *
 */
/*
  Color Variables
*/
/*
  Size Variables
*/
/*
  Font Variables
*/
/*
 * @file
 * global.base
 *
 * - imports variables.scss and other partials.
 * - normalize CSS
 * - Default container alignment.
 * - Flexible images and media declarations.
 */
/*
 *  Custom webmeadow.com variables and mixins
 *  Version: 4/12/2014
 *	Author: aaron@webmeadow.com
 *
 */
/*
  Color Variables
*/
/*
  Size Variables
*/
/*
  Font Variables
*/
/*
* Apply a natural box layout model to all elements 
*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* =============================================================================
    HTML5 display definitions
   ========================================================================== */
/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block; }

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

/*
 * Prevents modern browsers from displaying 'audio' without controls
 * Remove excess height in iOS5 devices
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */
[hidden] {
  display: none; }

/* =============================================================================
    Base
   ========================================================================== */
/*
 * If you are using the themes Responsive JS feature (media_queries.js) do not
 * set a font-family on the html element, use body.
 *
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  height: 100%;
  overflow-y: scroll; }

/*
 * 1 . Addresses margins handled incorrectly in IE6/7
 */
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility\9;
  /* Only IE, can mess with Android */ }

/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */
button,
input,
select,
textarea {
  font-family: sans-serif; }

/* =============================================================================
    Links
   ========================================================================== */
/*
 * Addresses outline displayed oddly in Chrome
 */
a:focus {
  outline: thin dotted; }

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

/* =============================================================================
    Typography
   ========================================================================== */
/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */
abbr[title] {
  border-bottom: 1px dotted; }

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
 */
b,
strong {
  font-weight: bold; }

blockquote {
  margin: 1em 40px; }

/*
 * Addresses styling not present in S5, Chrome
 */
dfn {
  font-style: italic; }

/*
 * Addresses styling not present in IE6/7/8/9
 */
mark {
  background: #ff0;
  color: #000; }

/*
 * Addresses margins set differently in IE6/7
 */
p,
pre {
  margin: 0 0 1.5em; }

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

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

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */
q {
  quotes: none; }

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

small {
  font-size: 75%; }

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* =============================================================================
    Lists
   ========================================================================== */
/*
 * Addresses margins set differently in IE6/7
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0 0 0 40px; }

/*
 * Addresses paddings set differently in IE6/7
 */
menu,
ol,
ul {
  padding: 0 0 0 40px; }

/*
 * Corrects list images handled incorrectly in IE7
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* =============================================================================
    Embedded content
   ========================================================================== */
/*
 * 1. Remove border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  /* border: 0; */
  /* Drupal core already does this, uncomment if you need it */
  -ms-interpolation-mode: bicubic; }

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

/* =============================================================================
    Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
figure {
  margin: 0; }

/* =============================================================================
    Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7
 */
form {
  margin: 0; }

/*
 * Define consistent margin, and padding
 */
fieldset {
  margin: 0;
  padding: 0; }

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3
 * 3. Corrects alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px; }

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle; }

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */
button,
input {
  line-height: normal; }

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible; }

/*
 * Re-set default cursor for disabled elements
 */
button[disabled],
input[disabled] {
  cursor: default; }

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
 *    Known issue: excess padding remains in IE6
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px; }

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none; }

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

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */
textarea {
  overflow: auto;
  vertical-align: top; }

/* =============================================================================
    Tables
   ========================================================================== */
/*
 * 1. Remove most spacing between table cells
 */
table {
  border: 1px solid;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: inherit;
  font: 100%; }

/* =============================================================================
    Flexible Media and Cross browser improvements
   ========================================================================== */
/*
 * - This can cause issues in table cells where no width is set on the column,
 *   only in some versions of webkit and IE 7/8.
 * - declaring the width attribute on image elements and using max-width causes
 *   the "dissappering images" bug in IE8.
 * - Mapping services such as Google Maps may break also, see below for fixes.
 */
img {
  height: auto;
  -ms-interpolation-mode: bicubic; }

/* Ethan Marcotte - http://front.ie/l8rJaA */
img,
embed,
object,
video {
  max-width: 100%; }

/* Disable flexiblity for IE8 and below */
/* Override max-width 100% for map displays */
#map img,
.gmap img,
.view-gmap img,
.openlayers-map img,
#getlocations_map_canvas img,
#locationmap_map img,
.geofieldMap img,
.views_horizontal_slider img {
  max-width: none !important; }

/* =============================================================================
    Misc helpers, Accessibility classes etc
   ========================================================================== */
/* Prevent overflowing content */
header[role=banner],
.content-inner,
.nav,
.region-sidebar-first,
.region-sidebar-second,
.region-secondary-content,
.region-tertiary-content,
.region-footer {
  overflow: visible;
  word-wrap: break-word; }

/* --------------------------------------------
		webmeadow.com styles

		version: April 12, 2014
		author: webmeadow
		email: aaron@webmeadow.com
----------------------------------------------- */
/* ---- Consolidate SCSS ---- */
/*
 *  Custom webmeadow.com variables and mixins
 *  Version: 4/12/2014
 *	Author: aaron@webmeadow.com
 *
 */
/*
  Color Variables
*/
/*
  Size Variables
*/
/*
  Font Variables
*/
/*
 *  Global webmeadow.com styles
 *  Version: 4/12/2014
 *  Author: aaron@webmeadow.com
 *
 */
/*
 *  Custom webmeadow.com mixins
 *  Version: 4/12/2014
 *	Author: aaron@webmeadow.com
 *
 */
/*
 *  Custom webmeadow.com variables and mixins
 *  Version: 4/12/2014
 *	Author: aaron@webmeadow.com
 *
 */
/*
  Color Variables
*/
/*
  Size Variables
*/
/*
  Font Variables
*/
/*
 * @file
 * global.base
 *
 * - imports variables.scss and other partials.
 * - normalize CSS
 * - Default container alignment.
 * - Flexible images and media declarations.
 */
/*
 *  Custom webmeadow.com variables and mixins
 *  Version: 4/12/2014
 *	Author: aaron@webmeadow.com
 *
 */
/*
  Color Variables
*/
/*
  Size Variables
*/
/*
  Font Variables
*/
/*
* Apply a natural box layout model to all elements 
*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* =============================================================================
    HTML5 display definitions
   ========================================================================== */
/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block; }

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

/*
 * Prevents modern browsers from displaying 'audio' without controls
 * Remove excess height in iOS5 devices
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */
[hidden] {
  display: none; }

/* =============================================================================
    Base
   ========================================================================== */
/*
 * If you are using the themes Responsive JS feature (media_queries.js) do not
 * set a font-family on the html element, use body.
 *
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  height: 100%;
  overflow-y: scroll; }

/*
 * 1 . Addresses margins handled incorrectly in IE6/7
 */
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility\9;
  /* Only IE, can mess with Android */ }

/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */
button,
input,
select,
textarea {
  font-family: sans-serif; }

/* =============================================================================
    Links
   ========================================================================== */
/*
 * Addresses outline displayed oddly in Chrome
 */
a:focus {
  outline: thin dotted; }

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

/* =============================================================================
    Typography
   ========================================================================== */
/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */
abbr[title] {
  border-bottom: 1px dotted; }

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
 */
b,
strong {
  font-weight: bold; }

blockquote {
  margin: 1em 40px; }

/*
 * Addresses styling not present in S5, Chrome
 */
dfn {
  font-style: italic; }

/*
 * Addresses styling not present in IE6/7/8/9
 */
mark {
  background: #ff0;
  color: #000; }

/*
 * Addresses margins set differently in IE6/7
 */
p,
pre {
  margin: 0 0 1.5em; }

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

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

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */
q {
  quotes: none; }

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

small {
  font-size: 75%; }

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* =============================================================================
    Lists
   ========================================================================== */
/*
 * Addresses margins set differently in IE6/7
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0 0 0 40px; }

/*
 * Addresses paddings set differently in IE6/7
 */
menu,
ol,
ul {
  padding: 0 0 0 40px; }

/*
 * Corrects list images handled incorrectly in IE7
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* =============================================================================
    Embedded content
   ========================================================================== */
/*
 * 1. Remove border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  /* border: 0; */
  /* Drupal core already does this, uncomment if you need it */
  -ms-interpolation-mode: bicubic; }

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

/* =============================================================================
    Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
figure {
  margin: 0; }

/* =============================================================================
    Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7
 */
form {
  margin: 0; }

/*
 * Define consistent margin, and padding
 */
fieldset {
  margin: 0;
  padding: 0; }

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3
 * 3. Corrects alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px; }

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle; }

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */
button,
input {
  line-height: normal; }

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible; }

/*
 * Re-set default cursor for disabled elements
 */
button[disabled],
input[disabled] {
  cursor: default; }

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
 *    Known issue: excess padding remains in IE6
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px; }

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none; }

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

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */
textarea {
  overflow: auto;
  vertical-align: top; }

/* =============================================================================
    Tables
   ========================================================================== */
/*
 * 1. Remove most spacing between table cells
 */
table {
  border: 1px solid;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: inherit;
  font: 100%; }

/* =============================================================================
    Flexible Media and Cross browser improvements
   ========================================================================== */
/*
 * - This can cause issues in table cells where no width is set on the column,
 *   only in some versions of webkit and IE 7/8.
 * - declaring the width attribute on image elements and using max-width causes
 *   the "dissappering images" bug in IE8.
 * - Mapping services such as Google Maps may break also, see below for fixes.
 */
img {
  height: auto;
  -ms-interpolation-mode: bicubic; }

/* Ethan Marcotte - http://front.ie/l8rJaA */
img,
embed,
object,
video {
  max-width: 100%; }

/* Disable flexiblity for IE8 and below */
/* Override max-width 100% for map displays */
#map img,
.gmap img,
.view-gmap img,
.openlayers-map img,
#getlocations_map_canvas img,
#locationmap_map img,
.geofieldMap img,
.views_horizontal_slider img {
  max-width: none !important; }

/* =============================================================================
    Misc helpers, Accessibility classes etc
   ========================================================================== */
/* Prevent overflowing content */
header[role=banner],
.content-inner,
.nav,
.region-sidebar-first,
.region-sidebar-second,
.region-secondary-content,
.region-tertiary-content,
.region-footer {
  overflow: visible;
  word-wrap: break-word; }

/* =============================================================================
 *   Base
 * ========================================================================== */
.wf-loading #page {
  visibility: hidden; }

html {
  background: #fff; }

body {
  font-family: "Quattrocento Sans", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1.25;
  color: #715a3e;
  background: #F7F4ED;
  text-align: center; }

section,
.webform-client-form,
#user-login,
#messages,
#footer,
#tasks {
  width: 100%;
  padding: 0 4%; }

.wrapper,
#messages .messages {
  margin: 0 auto;
  max-width: 1130px;
  position: relative;
  padding: 1em 0 3em; }

#messages .messages {
  padding-bottom: 1em; }

.region-footer {
  padding-top: 3.5em;
  padding-bottom: 3em; }

/* =============================================================================
 *   HTML Elements
 * ========================================================================== */
h1, h2, h3, h4, h5 {
  font-family: "Quattrocento Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  line-height: 1.2; }

h1 {
  font-weight: normal;
  font-size: 1.28571em;
  margin: 1em 0 0;
  color: #fff; }

@media all and (min-width: 560px) {
  h1 {
    font-size: 1.71429em; } }
h2 {
  font-size: 1.15714em;
  margin: 1em 0 0;
  color: #715a3e;
  font-family: "Droid Serif", Georgia, "Times New Roman", Times, Baskerville, serif;
  font-style: italic; }

h3 {
  font-size: 0.89286em;
  margin: .25em 0 .75em;
  color: #715a3e;
  font-weight: bold;
  font-family: "Quattrocento Sans", Arial, Helvetica, sans-serif;
  font-style: italic; }

p {
  margin-bottom: 1.5em; }

small {
  font-size: 0.5em; }

blockquote {
  color: #715a3e; }

pre,
code,
tt,
samp,
kbd,
var {
  font-family: Consolas, Monaco, "Courier New", Courier, monospace, sans-serif; }

/* =============================================================================
 *   Header -- Site H1, H2 and Logo; About Us; Footer
 * ========================================================================== */
#header {
  background: #556425 url(../images/hero_image.jpg) no-repeat center top; }

#header, #about-us, #footer {
  height: auto;
  padding: 3.67857em .5em 0; }
  #header .wrapper, #about-us .wrapper, #footer .wrapper {
    max-width: 1130px;
    margin: 0 auto; }

#logo {
  max-width: 493px;
  padding: 0;
  margin: 0 auto; }

h2#site-slogan {
  margin-top: .8em;
  font-weight: normal;
  font-size: 1.11429em;
  line-height: 1.25;
  color: #fff;
  border-top: 2px dashed #F7F4ED;
  border-bottom: 2px dashed #F7F4ED;
  padding: 0.66667em 0.72917em;
  font-family: "Quattrocento Sans", Arial, Helvetica, sans-serif;
  font-style: normal; }
  @media all and (min-width: 560px) {
    h2#site-slogan {
      font-size: 1.28571em; } }
  @media all and (min-width: 700px) {
    h2#site-slogan {
      font-size: 1.71429em; } }
  h2#site-slogan a {
    color: #fff;
    text-decoration: none; }

#about-us {
  padding: 2em .5em 1.5em .5em;
  background-size: 150%;
  background: #715a3e url(../images/ducks.jpg);
  background-repeat: no-repeat;
  background-position: center calc(50% + 3em);
  overflow: hidden;
  *overflow: visible;
  *zoom: 1; }
  @media all and (min-width: 560px) {
    #about-us {
      background: #715a3e url(../images/ducks.jpg) no-repeat center calc(50% + 3em);
      background-size: 150%;
      padding: 2em 4% 1em; } }
  @media all and (min-width: 700px) {
    #about-us {
      background-size: auto;
      background-position: center -10em; } }
  .ie8 #about-us {
    background-position: center -10em;
    background-size: 100%; }

/* =============================================================================
 *   Footer -- Logo, Credits, Social Media
 * ========================================================================== */
#footer {
  background: #715a3e url(../images/footer_tile.jpg);
  background-repeat: repeat;
  background-position: center center;
  color: #bcb49d;
  padding-bottom: 1em; }

#footer #block-block-1 {
  margin-bottom: 1.75em; }
  #footer #block-block-1 .block-content {
    max-width: 224px;
    margin: 0 auto;
    text-align: center; }
    #footer #block-block-1 .block-content a strong {
      text-decoration: underline;
      font: inherit; }
    #footer #block-block-1 .block-content a, #footer #block-block-1 .block-content a:hover strong {
      text-decoration: none; }
    #footer #block-block-1 .block-content p {
      margin-bottom: 0em; }

#block-block-2 {
  font-size: 0.57143em;
  text-align: center;
  margin: 0 0 .5em;
  line-height: 1.5; }
  #block-block-2 p {
    margin: 0; }
  #block-block-2 span {
    display: block;
    border: 0;
    margin: 1em 0 0;
    padding: 0; }

#footer #block-block-3 .block-content {
  padding-top: 1.5em; }
  #footer #block-block-3 .block-content p {
    padding: 0;
    text-align: center;
    margin: 0 auto;
    width: 3.57143em; }
  #footer #block-block-3 .block-content ul {
    list-style-type: none;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
    text-align: center; }
    #footer #block-block-3 .block-content ul li {
      display: inline-block;
      vertical-align: top;
      list-style-type: none;
      margin: 0 5px; }
  #footer #block-block-3 .block-content span {
    border: 0;
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px); }
  #footer #block-block-3 .block-content a {
    text-decoration: none; }

/* =============================================================================
 *   Rows & Columns
 * ========================================================================== */
section .row {
  clear: both;
  overflow: hidden; }
  section .row.how-it-works {
    border-bottom: 0; }

#services .row {
  border-color: #715a3e;
  padding-top: 0; }
  #services .row.inventories {
    padding-bottom: 4em; }
  #services .row.inventories, #services .row.audits {
    border-top: 0;
    clear: none; }
  #services .row.audits {
    border-bottom: 0; }
  #services .row.get-started {
    border-bottom: 0;
    border-top: 0;
    text-align: center; }

.column {
  display: block;
  padding: 1em 2% 2em;
  float: none;
  font-size: 0.75em; }

#services .column {
  padding: 1px 0 1em; }
  #services .column.complications {
    padding-top: 1.5em;
    border-top: 1px dashed #715a3e;
    text-align: left; }
  #services .column.button {
    display: block;
    width: 100%;
    text-align: center;
    overflow: hidden;
    padding: 2em 0; }

/* =============================================================================
 *   Sections
 * ========================================================================== */
#strategists {
  max-width: 1130px;
  text-align: center;
  margin: 0 auto; }

#strategists .row {
  padding-bottom: 1em;
  position: relative;
  background: #F7F4ED;
  z-index: 100; }
  @media all and (min-width: 700px) {
    #strategists .row {
      margin: 0 auto; }
      #strategists .row .column {
        width: 48%;
        background: #F7F4ED; }
      #strategists .row .column.left {
        float: left; }
      #strategists .row .column.right {
        float: right; } }

#services .aud-simple {
  padding-bottom: 1px; }

#worked-with ul, #meet ul, #transcripts ul {
  display: inline-block;
  margin: 0; }
#worked-with li, #meet li, #transcripts li {
  list-style-type: none;
  margin: 0;
  padding: 0; }

#meet {
  overflow: hidden;
  *overflow: visible;
  *zoom: 1;
  display: inline-block;
  margin: 0 auto;
  padding-bottom: 2em; }
  #meet li {
    display: inline-block;
    vertical-align: top;
    max-width: 11em;
    margin-left: -.2em; }
    @media all and (min-width: 450px) {
      #meet li {
        margin-left: .5em; } }
    @media all and (min-width: 700px) {
      #meet li {
        margin-left: 2em; } }
  #meet li + li {
    margin-left: 1em; }
    @media all and (min-width: 700px) {
      #meet li + li {
        margin-left: 2em; } }
  #meet li.lowest {
    margin-top: .5em; }
  #meet li.highest {
    margin-top: -.5em; }
  #meet li.lower {
    margin-top: .2em; }

#worked-with ul {
  width: 100%; }
#worked-with li {
  width: 90%;
  margin: 2px;
  float: left;
  display: block; }
  @media all and (min-width: 560px) {
    #worked-with li {
      width: 48%;
      margin: 3px; } }
  @media all and (min-width: 820px) {
    #worked-with li {
      width: 30%;
      margin: 5px; } }

#why ul,
#what-you-get ol {
  list-style: none;
  overflow: hidden;
  margin-bottom: 1em;
  padding: 0.35714em 0;
  text-align: center; }

#services ul {
  list-style: none;
  padding-left: 0; }
  #services ul li {
    padding-left: 1.5em;
    text-indent: -1em;
    margin-bottom: .5em; }
    #services ul li:before {
      content: "\2022";
      color: #fff;
      padding-right: .65em; }

#why ul {
  padding: 0;
  margin-top: 0; }
#why .column {
  padding-bottom: 0; }
  #why .column.freedom, #why .column.obstacle {
    margin-bottom: 1em; }
#why h3 {
  font-size: 1.42857em; }

#services .row p {
  margin-bottom: .5em; }
#services ul {
  margin-bottom: 1.5em; }
#services .row strong {
  color: #fff; }

.difference {
  margin: -5em 5% 1em;
  font-size: .85em;
  position: relative;
  overflow: hidden;
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  padding: 1.25em 0.35714em 0.5em; }
  .difference p {
    margin-bottom: 1em; }
  .difference strong {
    display: block;
    text-transform: uppercase; }
  .difference em {
    font-style: normal;
    font-weight: bold; }

#what-you-get p {
  font-size: 1.28571em; }
#what-you-get .get-started {
  padding: 1.25em 0 2.25em; }
  #what-you-get .get-started h3 {
    margin: 0;
    margin-bottom: 0;
    text-align: center;
    font-size: 1.25em;
    font-weight: bold;
    color: #715a3e; }
  #what-you-get .get-started .button {
    font-size: 1.1em; }
#what-you-get aside {
  margin: 2em 0; }
  #what-you-get aside p,
  #what-you-get aside h5 {
    display: inline;
    font-size: .75em; }

.webform-client-form,
#webform-ajax-wrapper-1 {
  background: #8bc8dc; }

.webform-client-form, .webform-client-form > div {
  overflow: hidden; }
.webform-client-form .form-item {
  width: 100%; }
.webform-client-form #webform-component-title-header {
  margin: 0 0 2em; }
.webform-client-form #edit-actions {
  text-align: center;
  position: relative; }

#thanks {
  font-size: 0.75em; }

/* =============================================================================
 *   Links
 * ========================================================================== */
a {
  text-decoration: underline;
  color: #5c8bb4;
  /* ---------------- Aaron Modification ----------------------*/ }
  a:visited {
    color: #5c8bb4; }
  a:hover, a:focus, a:active, a.active {
    text-decoration: none; }
  #footer a {
    color: #bcb49d; }
  a.btn {
    padding: 12px 20px 10px;
    border: 0;
    color: #fff;
    font-weight: normal;
    font-family: "Droid Serif", Georgia, "Times New Roman", Times, Baskerville, serif;
    font-size: 0.92857em;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
    text-decoration: none;
    background: #5e8db5;
    display: block; }
    a.btn:hover, a.btn:focus {
      text-decoration: none;
      color: #556425; }
    h3 a.btn {
      font-size: 0.78788em; }
    #services a.btn {
      padding: 12px 20px 10px;
      border: 0;
      color: #fff;
      font-weight: normal;
      font-family: "Droid Serif", Georgia, "Times New Roman", Times, Baskerville, serif;
      font-size: 0.92857em;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px;
      border-radius: 12px;
      text-decoration: none;
      background: #fff; }
      #services a.btn:hover, #services a.btn:focus {
        text-decoration: none;
        color: #556425; }
  #meet a, #meet a:visited {
    color: #fff; }

.button {
  width: auto;
  display: block; }

span.button {
  margin-top: .5em; }

/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */
#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50; }
  #skip-link a {
    background: #444;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: block;
    line-height: 2;
    padding: 0;
    text-align: center;
    text-decoration: none; }
    #skip-link a:link, #skip-link a:visited {
      background: #444;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      display: block;
      line-height: 2;
      padding: 0;
      text-align: center;
      text-decoration: none; }
    #skip-link a:hover, #skip-link a:focus, #skip-link a:active {
      outline: 0; }

/* =============================================================================
 *   Forms
 * ========================================================================== */
.ajax-progress {
  position: absolute;
  width: 10%;
  margin-top: 3em;
  left: 0; }

/*
 * Wrapper for a form element (or group of form elements) and its label
 */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 3px solid #c00; }
.form-item label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.89286em; }
.form-item.form-type-checkbox label {
  font-size: 1em;
  color: #fff;
  text-transform: none; }
.form-item .description {
  font-size: 1em; }
.form-item input.form-checkbox,
.form-item input.form-radio {
  vertical-align: inherit; }
.form-item.webform-component-checkboxes {
  margin-bottom: 2em; }
.form-item .form-text,
.form-item .form-textarea {
  background: #e5e5e5;
  color: #715a3e;
  border: 0;
  font-size: 0.64286em;
  padding: 7px;
  margin: .5em 0;
  width: 100%;
  -webkit-transition-property: compact(background, false, false, false, false, false, false, false, false, false);
  -moz-transition-property: compact(background, false, false, false, false, false, false, false, false, false);
  -o-transition-property: compact(background, false, false, false, false, false, false, false, false, false);
  transition-property: compact(background, false, false, false, false, false, false, false, false, false);
  -webkit-transition-duration: compact(0.5s, false, false, false, false, false, false, false, false, false);
  -moz-transition-duration: compact(0.5s, false, false, false, false, false, false, false, false, false);
  -o-transition-duration: compact(0.5s, false, false, false, false, false, false, false, false, false);
  transition-duration: compact(0.5s, false, false, false, false, false, false, false, false, false);
  -webkit-transition-timing-function: compact(ease, false, false, false, false, false, false, false, false, false);
  -moz-transition-timing-function: compact(ease, false, false, false, false, false, false, false, false, false);
  -o-transition-timing-function: compact(ease, false, false, false, false, false, false, false, false, false);
  transition-timing-function: compact(ease, false, false, false, false, false, false, false, false, false); }
  .form-item .form-text:focus,
  .form-item .form-textarea:focus {
    background: #fff; }
.form-item .form-textarea {
  margin-bottom: 0; }

/*
 * The submit button
 */
input[type="submit"] {
  padding: 12px 20px 10px;
  border: 0;
  color: #fff;
  font-weight: normal;
  font-family: "Droid Serif", Georgia, "Times New Roman", Times, Baskerville, serif;
  font-size: 0.92857em;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  text-decoration: none;
  background: #5e8db5;
  font-size: 1.07143em;
  margin-top: 1em; }
  input[type="submit"]:hover, input[type="submit"]:focus {
    text-decoration: none;
    color: #556425; }

.container-inline div,
.container-inline label {
  display: inline; }

/*
 * Define consistent borders
 */
legend {
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px); }

fieldset {
  border: 0; }

/* =============================================================================
 *   Tables
 * ========================================================================== */
table {
  margin: 10px 0;
  padding: 0;
  width: 100%; }
  table.sticky-header {
    z-index: 10; }

table,
thead,
tbody,
tr,
th,
td {
  border-color: #F7F4ED; }

table,
td,
th {
  vertical-align: middle; }

caption,
th,
td {
  text-align: left; }

thead tr {
  font-weight: 700;
  background-color: #e5e5e5; }

td,
th {
  border-bottom: 0;
  margin: 0;
  padding: 5px 7px; }

tbody tr {
  border-top: 1px solid #F7F4ED; }

tr {
  /* Table row striping */ }
  tr.odd {
    background: #fff; }
  tr.info, tr.even, tr:nth-child(2n+2) {
    border-bottom: 0;
    background-color: #f5f5f5; }
  tr.odd td.active {
    background-color: #eee; }
  tr.even td.active {
    background-color: #ebebeb; }

/* =============================================================================
 *   Messages
 * ========================================================================== */
div.messages {
  margin: 10px 0;
  padding-top: 1em;
  padding-bottom: 1em;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background-position: 16px 16px; }
  div.messages ul {
    margin-top: 0;
    margin-bottom: 0; }

/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */
/*
 * Admin menu overrides
 */
#admin-menu {
  margin: 0;
  padding: 0; }

/*
 * Devel Module
 */
.dev-query {
  background: #eee;
  padding: 30px; }

/*
 * Styleguide module tweaks
 */
#styleguide-header {
  padding: 0 10px; }
  #styleguide-header .item-list {
    font-family: inherit;
    margin: 0 20px 20px 0;
    min-height: 260px;
    width: auto; }

/* back to top
*/
p.top-link {
  display: block;
  width: 100%;
  margin: 0.5em 0;
  padding: 0 0.5em;
  font-size: 0.65em;
  text-align: right;
  font-style: italic; }
  p.top-link a {
    text-decoration: none; }

section#meet ul.post-list {
  margin: 0;
  padding: 0; }
  section#meet ul.post-list li {
    margin: 0;
    padding: 5px;
    font-size: .75em;
    color: #d5cbae;
    background: none;
    max-width: 11em; }
    section#meet ul.post-list li figure {
      position: relative;
      padding-top: 1.5em; }
      section#meet ul.post-list li figure a {
        display: block;
        width: 100%; }
        section#meet ul.post-list li figure a img {
          width: 100%; }
      section#meet ul.post-list li figure figcaption {
        display: inline-block;
        text-align: left;
        vertical-align: top; }
        section#meet ul.post-list li figure figcaption section {
          padding: 0; }
        section#meet ul.post-list li figure figcaption a {
          font-weight: bold;
          max-width: 100%; }
  @media all and (min-width: 560px) {
    section#meet ul.post-list li {
      margin: 0 2em; }
      section#meet ul.post-list li figure a {
        display: inline-block;
        max-width: 40%; }
        section#meet ul.post-list li figure a img {
          max-height: 200px;
          margin: 0 0.5em 0.5em 0; }
      section#meet ul.post-list li figure figcaption {
        max-width: 60%; } }
section#meet p.archive-link {
  text-align: center;
  font-size: .9em;
  margin: 1.25em 0;
  border: 0;
  padding: 0; }
  section#meet p.archive-link a {
    font-weight: bold;
    font-size: .9em; }

.blog .post {
  width: calc(100% - 0.2em);
  padding: 0.2em;
  min-height: 600px;
  padding-bottom: 50px;
  text-align: left;
  margin: 0 auto;
  font-size: 0.95em; }
@media all and (min-width: 560px) {
  .blog .post {
    max-width: 950px;
    padding-bottom: 100px; } }
.blog h1,
.blog h1.post-title {
  color: #515F22;
  font-style: italic;
  font-family: "Droid Serif", Georgia, "Times New Roman", Times, Baskerville, serif;
  font-weight: bold; }
.blog h1 {
  margin-bottom: 15px; }
.blog h2 .post-link {
  color: #715a3e;
  font-style: normal;
  font-size: .95em; }
.blog .post-list {
  padding-left: 0;
  list-style: none;
  text-align: left;
  font-family: "Trebuchet MS","Lucida Grande","Lucida Sans Unicode","Lucida Sans",Tahoma,sans-serif; }
  .blog .post-list li {
    padding: 20px 0;
    border-top: 2px dashed #d5cbae;
    font-size: .9em;
    clear: left; }
    .blog .post-list li:first-child {
      border: none; }
    .blog .post-list li img {
      width: 100%;
      margin: 0.25em 0; }
    @media all and (min-width: 560px) {
      .blog .post-list li img {
        width: 200px;
        height: auto;
        vertical-align: top;
        margin: 0 0.5em 1em 0; } }
    .blog .post-list li .post-info {
      vertical-align: top; }
    .blog .post-list li .post-meta {
      font-size: .9em; }
    .blog .post-list li h3 {
      margin: 0 0 0.25em 0;
      font-size: 1.2em;
      font-family: "Trebuchet MS","Lucida Grande","Lucida Sans Unicode","Lucida Sans",Tahoma,sans-serif;
      vertical-align: top; }
      .blog .post-list li h3 a {
        text-decoration: none;
        font-style: normal;
        font-weight: bold; }
    .blog .post-list li .excerpt {
      padding-left: 0;
      font-size: .75em; }

article.post-content table {
  width: 100%; }
  article.post-content table td {
    width: auto; }

.PageNavigation {
  display: flex;
  flex-flow: row-reverse nowrap;
  align-items: stretch;
  align-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none outside; }
  @media all and (min-width: 560px) {
    .PageNavigation li {
      margin: 3px; } }
  .PageNavigation li a {
    display: block;
    margin: 1em 0;
    text-decoration: none; }
  .PageNavigation .next {
    text-align: right; }

#header {
  position: relative;
  z-index: 9; }

.mainPage:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 75%;
  height: 1400px;
  left: 50%;
  border-left: 2px dashed #d5cbae; }

#stragists:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
  /* Adjusts for spacing */ }

#strategists h2, #strategists p {
  background: #F7F4ED;
  position: relative;
  z-index: 100;
  padding: .3em 0;
  margin: 1em .5em 2em .5em;
  font-size: .9em; }
  @media all and (min-width: 700px) {
    #strategists h2, #strategists p {
      margin: 1.5em 0 2em 0;
      font-size: 1.1em; } }
#strategists h2.top {
  padding-top: 2em;
  margin-top: 0; }
#strategists h2.bottom {
  margin-bottom: 0em; }
#strategists p {
  margin: 2em 6% 1.5em 6%;
  font-size: .8em;
  line-height: 1.5em; }
  @media all and (min-width: 700px) {
    #strategists p {
      font-size: .95em; } }
#strategists p.bottom {
  margin: 0;
  padding: 1em 6% 2em 6%; }
#strategists #plans-wrapper {
  background: #F7F4ED;
  padding: .4em 0;
  position: relative;
  z-index: 100; }
#strategists .plans {
  display: table;
  margin: .3em auto 0 auto;
  width: 100%;
  vertical-align: middle;
  background: url(../images/retina/topo_circle.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  width: 300px; }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (max--moz-device-pixel-ratio: 2) {
    #strategists .plans {
      background-size: 300px; } }
  @media all and (min-width: 700px) {
    #strategists .plans {
      background-size: cover;
      height: 422px;
      width: 422px; } }
  #strategists .plans h3 {
    color: #fff;
    font-size: 1.2em;
    display: table-cell;
    font-family: "Quattrocento Sans", Arial, Helvetica, sans-serif;
    vertical-align: middle;
    text-transform: uppercase;
    font-style: normal;
    padding: 0 20%; }
    @media all and (min-width: 700px) {
      #strategists .plans h3 {
        font-size: 1.5em; } }
  .ie8 #strategists .plans {
    background: #5c8bb4;
    height: auto;
    width: auto;
    background-size: auto; }
    .ie8 #strategists .plans h3 {
      padding: 0 10%;
      display: block; }
#strategists .column p {
  font-style: italic;
  margin-top: 0;
  margin-bottom: .5em;
  line-height: 1.2em;
  font-size: .95em;
  margin: 0% 0 .5em 0%; }
#strategists .column h3 {
  width: 30%;
  margin: 0 auto;
  padding: .5em 0 .5em 0;
  margin-bottom: .5em;
  font-family: "Droid Serif", Georgia, "Times New Roman", Times, Baskerville, serif;
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 2px dashed #d5cbae; }
#strategists .headshot {
  width: 250px;
  height: 250px; }
#strategists .twitter, #strategists .email {
  background-position: 3px 3px;
  padding: 0 0 0em 1.5em;
  background-repeat: no-repeat;
  font-weight: bold;
  text-decoration: none;
  font-size: .9em; }
#strategists .twitter {
  background-image: url(../images/retina/mini_twitter.png);
  background-size: 19px 16px; }
  .ie8 #strategists .twitter {
    background-image: url(../images/retina/mini_twitter-ie.gif); }
#strategists .email {
  background-image: url(../images/retina/email.png);
  background-size: 19px 14px;
  background-position: 0 4px; }
  .ie8 #strategists .email {
    background-image: url(../images/retina/email-ie.gif); }
#strategists a.twitter:hover, #strategists a.email:hover {
  text-decoration: underline; }

/* The borders are done using a version of ALA's sliding doors: an image that is wider than
 * the div will ever be, sitting at the bottom providing a bottom and right border, plus page-turn.
 * Elements provide the left and top borders.
 *
 * For IE (in a media query below) the middle border is also an image because it's being ridiculous
 * and providing some overlap visualization that makes the border look like it doesn't meet the side.
 */
#meet {
  background: #556425 url(../images/retina/topo_pattern.jpg);
  background-size: 500px 499px;
  padding-top: 2em;
  padding-bottom: 0;
  font-family: "Quattrocento Sans", Arial, Helvetica, sans-serif;
  border-collapse: collapse; }
  #meet h2 {
    margin-top: 0; }
  #meet h2, #meet h3, #meet p {
    color: #d5cbae;
    border-collapse: collapse;
    border-spacing: 0; }
  #meet h2 {
    color: white; }
  #meet h3 {
    font-size: 1.5em;
    margin: 0;
    padding: .5em .75em;
    border-left: 1px solid #d5cbae;
    border-right: 1px solid #d5cbae;
    border-bottom: 1px solid #d5cbae;
    display: block;
    box-sizing: border-box; }
    #meet h3 span {
      margin-left: -0.25em;
      font-size: 2.2em;
      display: block; }
  #meet ul {
    padding: 0; }
  #meet li {
    background: url(../images/retina/pin.png) no-repeat center top;
    background-size: 15px 28.5px;
    padding-top: 1em; }
  #meet li:nth-child(3) {
    background: url(../images/retina/pin-flipped.png) no-repeat center top;
    background-size: 15px 28.5px; }
  #meet p {
    font-size: .85em;
    color: white;
    font-weight: bold;
    padding: 1.2em 1em;
    margin-bottom: .5em;
    border-left: 1px solid #d5cbae;
    box-sizing: border-box;
    height: 5em;
    vertical-align: middle; }
  #meet article {
    border-top: 1px solid #d5cbae;
    background: url(../images/retina/cal_page_border.png) no-repeat right bottom;
    background-size: 250px 277px; }
  #meet .wrapper {
    padding-top: 2em; }

#worked-with h2 {
  margin-top: 1.5em;
  margin-bottom: 1em; }
#worked-with li {
  display: block !important;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #edeae1;
  background-size: cover;
  height: 200px; }
#worked-with .mariott {
  background-image: url(../images/retina/marriott_logo.png);
  background-size: 167px 82px; }
#worked-with .shriver {
  background-image: url(../images/retina/shriver_logo.png);
  background-size: 167px 116px; }
#worked-with .ritz {
  background-image: url(../images/retina/ritz_logo.png);
  background-size: 174px 121px; }
#worked-with .papa {
  background-image: url(../images/retina/papa_johns_logo.png);
  background-size: 178px 78px; }
#worked-with .target {
  background-image: url(../images/retina/target_logo.png); }
#worked-with .trek {
  background-image: url(../images/retina/trek_logo.png);
  background-size: 158px 90px; }
#worked-with .cineplex {
  background-image: url(../images/retina/cineplex_logo.png);
  background-size: 196px 56px; }
#worked-with .ala {
  background-image: url(../images/retina/ala_logo.png);
  background-size: 224px 28px; }
#worked-with .kidney {
  background-image: url(../images/retina/kidney_logo.png);
  background-size: 105px 136px; }
#worked-with .fws {
  background-image: url(../images/retina/fws_logo.png);
  background-size: 103px 127px; }
#worked-with .jj {
  background-image: url(../images/retina/jj_logo.png);
  background-size: 250px 45px; }

#about-us p {
  color: white;
  padding: 1em 0em;
  padding: 1.14286em 1.25em;
  font-size: 1em;
  margin-bottom: 0; }
  @media all and (min-width: 700px) {
    #about-us p {
      font-size: 1.2em;
      padding: 1.14286em 1.25em; } }
  @media all and (min-width: 1120px) {
    #about-us p {
      padding: 1.14286em 1.25em;
      font-size: 1.35em; } }

#footer {
  padding: 1em;
  font-size: .6em; }
  #footer .wrapper {
    overflow: hidden;
    *overflow: visible;
    *zoom: 1;
    padding: 1em 0 2em 0; }
  #footer ul, #footer li {
    padding: 0;
    margin: 0; }
  #footer li {
    display: inline;
    float: left; }
  #footer em {
    text-transform: uppercase;
    font-weight: bold;
    font-style: normal; }
  #footer ul.social {
    display: table;
    width: 100%;
    position: relative;
    z-index: 100; }
    @media all and (min-width: 700px) {
      #footer ul.social {
        width: 13em;
        float: right; } }
    #footer ul.social li {
      padding-right: 1em; }
    #footer ul.social .twitter a {
      background-image: url(../images/retina/twitter_circle.png);
      background-size: 33px 33px;
      width: 33px;
      height: 33px;
      display: block !important;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      border: 0;
      font: 0/0 a;
      text-shadow: none;
      color: transparent;
      background-color: transparent; }
      .ie8 #footer ul.social .twitter a {
        background-image: url(../images/retina/twitter_circle-ie.gif); }
    #footer ul.social .twitter a:hover {
      background-image: url(../images/retina/twitter_circle_rollover.png); }
      .ie8 #footer ul.social .twitter a:hover {
        background-image: url(../images/retina/twitter_circle_rollover-ie.gif); }
    #footer ul.social .email a {
      background-image: url(../images/retina/email_circle.png);
      background-size: 33px 33px;
      width: 33px;
      height: 33px;
      display: block !important;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      border: 0;
      font: 0/0 a;
      text-shadow: none;
      color: transparent;
      background-color: transparent; }
      .ie8 #footer ul.social .email a {
        background-image: url(../images/retina/email_circle-ie.gif); }
    #footer ul.social .email a:hover {
      background-image: url(../images/retina/email_circle_rollover.png); }
      .ie8 #footer ul.social .email a:hover {
        background-image: url(../images/retina/email_circle_rollover-ie.gif); }
  #footer ul.contact {
    display: table;
    width: 100%;
    padding-top: 1em; }
    #footer ul.contact li {
      display: block;
      float: none;
      text-align: left; }
    @media all and (min-width: 700px) {
      #footer ul.contact {
        margin-top: -2em;
        padding-top: 0em;
        float: left;
        width: 75.5%; }
        #footer ul.contact li {
          display: inline;
          float: left; }
        #footer ul.contact li:after {
          content: " / ";
          padding-right: .5em;
          padding-left: .5em; }
        #footer ul.contact li:last-child:after {
          content: ""; } }
    @media all and (min-width: 921px) {
      #footer ul.contact {
        margin-top: 0em; } }
    @media all and (min-width: 1088px) {
      #footer ul.contact {
        margin-top: .3em; } }

/*
 * IE 10 conditionals. Sigh.
*/
@media screen and (min-width: 0\0) {
  #meet p {
    background: url(../images/retina/cal_border.png) no-repeat top;
    background-size: 300px 1px; } }
