/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _init.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
html {
  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
}

/* Remove default margin. */
body {
  margin: 0;
  padding: 0;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* Address `outline` inconsistency between Chrome and other browsers. */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
p,
pre {
  margin: 1.5em 0;
}

blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

h3 {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}

h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

h5 {
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}

h6 {
  font-size: 0.67em;
  line-height: 2.23881em;
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

/* Address styling not present in IE 8/9. */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

/* Improve readability of pre-formatted text in all browsers. */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* 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;
}

/**
 * Lists
 */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
menu,
ol,
ul {
  padding: 0 0 0 30px;
  /* LTR */
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* Correct overflow displayed oddly in IE 9. */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 0.0625em;
  border-top-style: solid;
  padding-top: 0.4625em;
  border-bottom-width: 0.0625em;
  border-bottom-style: solid;
  padding-bottom: 0.9125em;
  border-left-width: 0.0625em;
  border-left-style: solid;
  padding-left: 0.9125em;
  border-right-width: 0.0625em;
  border-right-style: solid;
  padding-right: 0.9125em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
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.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
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;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

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

/* Remove inner padding and border in Firefox 4+. */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* Layout rules */
/**
 * @file
 * Positioning for a responsive layout.
 *
 * Define CSS classes to create a fluid grid layout with optional sidebars
 * depending on whether blocks are placed in the left or right sidebars.
 *
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
#page,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer {
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

/* Containers for grid items and flow items. */
#header:before, #header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
#header:after,
#main:after,
#footer:after {
  clear: both;
}

/* Navigation bar */
@media all and (min-width: 480px) {
  #main {
    /* Move all the children of #main down to make room. */
    padding-top: 3em;
    position: relative;
  }

  #navigation {
    /* Move the navbar up inside #main's padding. */
    position: absolute;
    top: 0;
    height: 3em;
    width: 100%;
  }
}
/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (min-width: 480px) and (max-width: 959px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  .sidebar-first {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  .sidebar-first #content {
    float: left;
    width: 200%;
    margin-left: 100%;
    margin-right: -300%;
  }
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  .sidebar-second {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 3rd column from left. */
  }
  .sidebar-second #content {
    float: left;
    width: 200%;
    margin-left: 0%;
    margin-right: -200%;
  }
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 200%;
    margin-right: -300%;
  }

  /**
   * The layout when there are two sidebars.
   */
  .two-sidebars {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Start a new row and span all 3 columns. */
  }
  .two-sidebars #content {
    float: left;
    width: 200%;
    margin-left: 100%;
    margin-right: -300%;
  }
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 300%;
    margin-left: 0%;
    margin-right: -300%;
    padding-left: 0;
    padding-right: 0;
    clear: left;
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
    /* Span 1 column, starting in the 1st column from left. */
    /* Span 1 column, starting in the 2nd column from left. */
    /* Span 1 column, starting in the 3rd column from left. */
  }
  .two-sidebars .region-sidebar-second .block {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 100%;
    margin-left: 100%;
    margin-right: -200%;
  }
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 100%;
    margin-left: 200%;
    margin-right: -300%;
  }
}
/**
 * Use 5 grid columns for larger screens.
 */
@media all and (min-width: 960px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  .sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  .sidebar-first #content {
    float: left;
    width: 400%;
    margin-left: 100%;
    margin-right: -500%;
  }
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  .sidebar-second #content {
    float: left;
    width: 400%;
    margin-left: 0%;
    margin-right: -400%;
  }
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 400%;
    margin-right: -500%;
  }

  /**
   * The layout when there are two sidebars.
   */
  .two-sidebars {
    /* Span 3 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  .two-sidebars #content {
    float: left;
    width: 300%;
    margin-left: 100%;
    margin-right: -400%;
  }
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 400%;
    margin-right: -500%;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
#skip-link {
  margin: 0;
}
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/**
 * Branding header.
 */
/* Wrapping link for logo. */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

/* Logo image. */
.header__logo-image {
  vertical-align: bottom;
}

/* Wrapper for website name and slogan. */
.header__name-and-slogan {
  float: left;
}

/* The name of the website. */
.header__site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}

/* The link around the name of the website. */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
.header__region {
  /* Clear the logo. */
  clear: both;
}

/**
 * Navigation bar.
 */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
#navigation .block {
  margin-bottom: 0;
}
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Breadcrumb navigation.
 */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

.messages--warning {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
  border-color: #ed5;
}

.messages--error {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
  border-color: #ed541d;
}

.messages__list {
  margin: 0;
}

.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
.messages--error p.error {
  color: #333;
}

/* System status report. */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  *zoom: 1;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYmJiYmJiIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: linear-gradient(to top, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbb \0/ie;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/* Primary tabs. */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 #fff;
  border: 1px solid #bbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

.tabs-primary__tab.is-active {
  border-bottom-color: #fff;
}

a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -moz-border-radius: 0.75em;
  -webkit-border-radius: 0.75em;
  border-radius: 0.75em;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 #fff;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
.inline {
  display: inline;
  padding: 0;
}
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
.more-link {
  text-align: right;
  /* LTR */
}

.more-help-link {
  text-align: right;
  /* LTR */
}

.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis, .pager-current {
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
  background-image: none;
}

.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis. */
}

/* The current page's list item. */
.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
.block {
  margin-bottom: 1.5em;
}

/**
 * Menus.
 */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

/* The active item in a Drupal menu. */
.menu a.active {
  color: #000;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
.comments {
  margin: 1.5em 0;
}

/* Preview of the comment before submitting new or updated comment. */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
.comment {
  /* Comment's permalink wrapper. */
}
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
.form-item {
  margin: 1.5em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
.form-item .description {
  font-size: 0.85em;
}

.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
a.button {
  -moz-appearance: button;
  -webkit-appearance: button;
}

/* Password confirmation. */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

#user-login ul {
  margin: 1.5em 0;
}

/**
 * Drupal admin tables.
 */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
form tbody {
  border-top: 1px solid #ccc;
}
form table ul {
  margin: 0;
}

tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
html.js .collapsible .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
tr.drag {
  background-color: #fffff0;
}

tr.drag-previous {
  background-color: #ffd;
}

.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
.progress {
  font-weight: bold;
}
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1590996183');
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
/* -----------------------------------------------------
General Styling
----------------------------------------------------- */
html {
  font-family: helvetica, serif;
  font-size: 12px;
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  text-align: center;
  width: 100%;
}

body {
  font-family: helvetica, serif;
  font-size: 12px;
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  text-align: center;
  width: 100%;
}

#page {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 100%;
  max-width: none;
}

.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.region.region-bottom-content {
  display: inline-block;
  margin-top: 20px;
}

#outer_container {
  background: #fff;
  margin: 0px auto;
  padding-top: 0px;
  text-align: left;
}

#header {
  position: relative;
  background: url(../images/ims_gradient.png) bottom center no-repeat;
  padding-bottom: 5px;
}
#header .region-header {
  float: left;
  clear: none !important;
  margin: 38px 0 0 15px;
}
#header .menu-name-menu-header-social-links {
  display: none;
}

#main {
  padding-top: 10px;
}

#logo {
  display: block;
  height: 53px;
  width: 193px;
  float: left;
}

#cycleTop {
  display: block;
  height: 68px;
  left: 441px;
  position: absolute;
  top: 57px;
  width: 68px;
}

#ubmLogo {
  visibility: hidden;
  height: 51px;
  position: absolute;
  right: 20px;
  top: 0px;
  width: 42px;
}

h1#page-title {
  display: none;
}

.menu__item.is-leaf {
  list-style-image: none;
  list-style-type: none;
  list-style: none;
}

.menu__item.is-expanded {
  list-style-image: none;
  list-style-type: none;
  list-style: none;
}

.contextual-links-region {
  position: static;
}

/* -----------------------------------------------------
Front Page
----------------------------------------------------- */
body.front .views-slideshow-controls-bottom .views_slideshow_pager_field_item.active {
  background-image: url(../images/hms_button_on.png);
}
body.front .views-field-field-slide-text {
  color: red;
}
body.front #page {
  width: 100%;
  max-width: none;
}
body.front #main {
  margin: auto;
}
body.front #outer_container {
  width: 100%;
}
body.front #content {
  padding: 0;
  width: 100%;
}
body.front #header {
  margin: 0 auto;
  display: block;
}
body.front #footer {
  margin: 0 auto;
  display: block;
}
body.front #block-ims-brand-carousel-brand-carousel {
  margin: 0 auto;
  display: block;
  width: 100%;
  background-size: 100% 100%;
  padding: 15px 30px;
  display: inline-block;
  word-wrap: break-word;
  box-sizing: border-box;
  height: 70px;
}
body.front #block-views-social-feed-block {
  margin: 0 auto;
  display: block;
}

/* -----------------------------------------------------
Navigation Menu
----------------------------------------------------- */
#navigation {
  display: none;
}

.menu-name-menu-header-top-menu ul {
  margin: 0px;
  padding: 0px;
}
.menu-name-menu-header-top-menu ul li {
  float: left;
  /*font-weight:bold;*/
  list-style-type: none;
}
.menu-name-menu-header-top-menu ul li ul {
  background: rgba(255, 255, 255, 0.8);
  display: none;
  padding: 15px 10px 10px 10px;
  position: absolute;
  top: 58px;
  z-index: 10;
  min-width: 95px;
  margin-left: -10px;
}
.menu-name-menu-header-top-menu ul li ul li {
  float: none;
}
.menu-name-menu-header-top-menu ul li ul li:last-child {
  border-bottom: none;
}
.menu-name-menu-header-top-menu ul li ul li a {
  color: black;
  font-family: 'Oswald';
  font-weight: 300;
  font-size: 14px;
  display: block;
  margin: 4px 0px 2px 0px;
  padding: 0px;
  text-transform: none;
}
.menu-name-menu-header-top-menu ul li ul li a:hover {
  color: black;
  font-weight: 400;
}
.menu-name-menu-header-top-menu ul li ul .column-2 {
  -webkit-column-count: 2;
  /* Chrome, Safari, Opera */
  -moz-column-count: 2;
  /* Firefox */
  column-count: 2;
}
.menu-name-menu-header-top-menu ul li ul .column-3 {
  -webkit-column-count: 3;
  /* Chrome, Safari, Opera */
  -moz-column-count: 3;
  /* Firefox */
  column-count: 3;
}
.menu-name-menu-header-top-menu ul li ul .column-4 {
  -webkit-column-count: 4;
  /* Chrome, Safari, Opera */
  -moz-column-count: 4;
  /* Firefox */
  column-count: 4;
}
.menu-name-menu-header-top-menu ul li ul .column-5 {
  -webkit-column-count: 5;
  /* Chrome, Safari, Opera */
  -moz-column-count: 5;
  /* Firefox */
  column-count: 5;
}
.menu-name-menu-header-top-menu ul li ul .column-6 {
  -webkit-column-count: 6;
  /* Chrome, Safari, Opera */
  -moz-column-count: 6;
  /* Firefox */
  column-count: 6;
}
.menu-name-menu-header-top-menu ul li a {
  color: #000;
  font-size: 13px;
  font-family: 'Oswald';
  margin-right: 10px;
  text-decoration: none;
  text-transform: uppercase;
}
.menu-name-menu-header-top-menu ul li a:hover {
  color: #cc0033;
}
.menu-name-menu-header-top-menu ul li:nth-child(6) ul, .menu-name-menu-header-top-menu ul li:nth-child(7) ul {
  min-width: 125px !important;
}
.menu-name-menu-header-top-menu ul li:last-child a::after, .menu-name-menu-header-top-menu ul li ul li a::after {
  content: "";
}

nav.breadcrumb {
  display: none;
}

.header-buy-tickets {
  background: url(../images/btnBuyTickets.png) no-repeat 0px 0px;
  display: block;
  height: 55px;
  position: absolute;
  right: 10px;
  text-indent: -9999px;
  top: 70px;
  width: 111px;
}

/* -----------------------------------------------------
Slideshow
----------------------------------------------------- */
#block-views-homepage-slideshow-block {
  margin-bottom: 6px;
  width: 100%;
}
#block-views-homepage-slideshow-block img {
  height: auto !important;
  width: 100%;
}
#block-views-homepage-slideshow-block .views-field-field-slide-text {
  color: #333333;
  font-family: 'open-sans-condensed';
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0;
}

#views_slideshow_cycle_main_homepage_slideshow-block {
  height: auto !important;
}

#views_slideshow_cycle_teaser_section_homepage_slideshow-block {
  vertical-align: middle;
  display: block !important;
}
#views_slideshow_cycle_teaser_section_homepage_slideshow-block .views-slideshow-cycle-main-frame-row {
  display: block !important;
  vertical-align: middle;
}
#views_slideshow_cycle_teaser_section_homepage_slideshow-block .field-content a {
  display: block;
}

#block-ims-brand-carousel-mobile-brand-carousel-mobile {
  display: none;
}

#widget_pager_bottom_homepage_slideshow-block {
  text-align: center;
  height: 16px;
  overflow: hidden;
}

.views-slideshow-cycle-main-frame {
  width: 100% !important;
  text-align: center !important;
}

.views-slideshow-cycle-main-frame-row {
  width: 100% !important;
  height: 100% !important;
  vertical-align: middle;
  display: inline-block !important;
}

.views-slideshow-controls-bottom {
  margin: 6px 0 0 0;
}
.views-slideshow-controls-bottom .views_slideshow_pager_field_item {
  background: url(../images/hms_button.png) no-repeat top left;
  cursor: pointer;
  display: inline-block;
  height: 13px;
  width: 14px;
}
.views-slideshow-controls-bottom .views-content-field-slide-image img {
  display: none;
}

.flex-control-nav {
  z-index: 9999;
  height: 25px;
  bottom: -20px;
}

.flexslider .views-field.views-field-field-slide-link a {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-indent: -999px;
}

.flexslider {
  border: 0;
  margin-bottom: 20px;
}

.flex-control-paging li a {
  background: url(../images/hms_button.png) no-repeat;
  width: 14px;
  height: 14px;
}
.flex-control-paging li a.flex-active {
  background: url(../images/hms_button_on.png) no-repeat;
}

li.flex-active-slide .views-field.views-field-field-slide-link a {
  display: block;
}

/* -----------------------------------------------------
Search Block
----------------------------------------------------- */
#search-block-form #edit-search-block-form--2 {
  background: transparent;
  border: 1px solid #006aac;
  border-radius: 5px;
  font-size: 12px;
  height: 22px;
  position: absolute;
  right: 132px;
  top: 100px;
  -webkit-appearance: none;
  width: 162px;
}
#search-block-form #edit-submit {
  background: url(../images/search_white.gif) no-repeat;
  border: 0px solid green;
  height: 24px;
  position: absolute;
  right: 296px;
  text-indent: -9999px;
  top: 100px;
  -webkit-appearance: none;
  width: 26px;
}
#search-block-form #edit-submit--2 {
  background: url(../images/search_white.gif) no-repeat;
  border: 0px solid green;
  height: 24px;
  position: absolute;
  right: 296px;
  text-indent: -9999px;
  top: 100px;
  -webkit-appearance: none;
  width: 26px;
}

/* -----------------------------------------------------
App Menu Block
----------------------------------------------------- */
#block-menu-menu-app-links {
  width: 40%;
  display: block;
  float: left;
  background: #c41230;
  padding: 0;
  box-sizing: border-box;
  height: 205px;
  text-align: center;
}
#block-menu-menu-app-links ul.menu {
  list-style-type: none;
  padding: 0;
  margin: 25px 0;
  display: inline-block;
  text-align: center;
  max-width: 295px;
  width: 100%;
}
#block-menu-menu-app-links ul li a {
  display: block;
  text-indent: -9999px;
}
#block-menu-menu-app-links ul li.first a {
  background: url(../images/ims-app.png) no-repeat 0px 0px;
  background-size: cover;
  width: 100px;
  display: block;
  height: 100px;
  float: left;
  border: 5px solid #fff;
  border-radius: 15px;
  margin-right: 20px;
  margin-left: 5px;
}
#block-menu-menu-app-links ul li.last a {
  background: url(../images/ims-app-playstore.png) no-repeat 0px 0px;
  background-size: cover;
  margin-top: 10px;
}
#block-menu-menu-app-links a.menu__link {
  background: url(../images/ims-app-apple.png) no-repeat 0px 0px;
  height: 50px;
  width: 150px;
  float: left;
  background-size: contain;
}
#block-menu-menu-app-links h2.block__title.block-title {
  text-align: center;
  font-family: 'open-sans-condensed';
  text-transform: uppercase;
  color: #fff;
  font-size: 25px;
  line-height: 30px;
}

.region-bottom-content .block-block {
  width: 40%;
  display: block;
  float: left;
  background: #c41230;
  padding: 0;
  box-sizing: border-box;
  height: 205px;
  text-align: center;
}
.region-bottom-content .block-block p {
  margin: 0;
}
.region-bottom-content .block-block h2.block__title.block-title {
  text-align: center;
  font-family: 'open-sans-condensed';
  text-transform: uppercase;
  color: #fff;
  font-size: 45px;
  line-height: 55px;
  vertical-align: middle;
  margin: auto;
  display: inline-block;
  width: 85%;
  margin-top: 45px;
}

/* -----------------------------------------------------
Webform
----------------------------------------------------- */
article.node-webform form {
  padding-bottom: 25px;
}
article.node-webform .form-type-radio label {
  margin-left: 4px;
}

.webform-client-form input[type="checkbox"] {
  margin: 0 4px 0 0;
}
.webform-client-form input[type="radio"] {
  margin: 0 4px 0 0;
}

.webform-submit {
  background: #eaeaea;
  border: 1px solid #a6a6a6;
  margin-bottom: 25px;
  padding: 4px 8px;
}

.block-webform {
  float: left;
  width: 60%;
  font-family: 'open-sans-condensed';
  padding-right: 10px;
  text-align: center;
  box-sizing: border-box;
}
.block-webform .webform-client-form {
  background: #f0f0f0;
}
.block-webform h2.block__title.block-title {
  text-align: center;
  color: #fff;
  background: #c41230;
  text-transform: uppercase;
  font-size: 25px;
  line-height: 30px;
}
.block-webform .form-actions {
  text-align: center;
  clear: both;
}

.form-item.connected-field {
  display: inline-block;
}

.form-item.webform-component {
  margin: 0;
  padding: 5px 2px;
  font-size: 15px;
}
.form-item.webform-component p {
  margin: 0;
  line-height: 20px;
  font-size: 17px;
  font-weight: bold;
}
.form-item.webform-component span {
  font-weight: bold;
  color: #888;
  font-size: 13px;
  line-height: 14px;
}

.connected-field {
  padding: 5px 10px;
}
.connected-field input {
  padding: 3px 10px;
}

input.webform-submit.button-primary.form-submit {
  width: 60px;
  font-size: 15px;
  box-shadow: 1px 1px 2px -1px;
  background: #fff;
  padding: 3px 5px;
}

input#edit-submitted-email {
  width: 250px;
}

.connected-field.webform-component--country {
  width: 25%;
}

/* -----------------------------------------------------
Social Icons
----------------------------------------------------- */
.menu-name-menu-header-social-links {
  height: 28px;
  position: absolute;
  right: 25px;
  bottom: 32px;
  width: 195px;
}
.menu-name-menu-header-social-links ul {
  margin: 0px;
  padding: 0px;
}
.menu-name-menu-header-social-links ul li {
  float: left;
  list-style-type: none;
  margin-right: 10px;
}
.menu-name-menu-header-social-links ul li a {
  display: block;
  height: 35px;
  text-indent: -9999px;
  width: 35px;
}
.menu-name-menu-header-social-links ul li.menu-mlid-427 a {
  background: url(../images/ims-instagram.png) no-repeat 0px 0px;
  background-size: cover;
}
.menu-name-menu-header-social-links ul li.menu-mlid-428 a {
  background: url(../images/ims-facebook.png) no-repeat 0px 0px;
  background-size: cover;
}
.menu-name-menu-header-social-links ul li.menu-mlid-429 a {
  background: url(../images/ims-youtube.png) no-repeat 0px 4px;
  background-size: contain;
  width: 42px;
}
.menu-name-menu-header-social-links ul li.menu-mlid-430 a {
  background: url(../images/ims-twitter.png) no-repeat 0px 4px;
  background-size: contain;
}

/* -----------------------------------------------------
Social Feed Icons
----------------------------------------------------- */
#block-views-social-feed-block {
  display: inline-block;
  vertical-align: top;
  margin-right: 50px;
}
#block-views-social-feed-block h2 {
  font-family: 'Oswald';
  color: #000;
  font-size: 22px;
  font-weight: bold;
  line-height: 22px;
  margin: 0px 0px 10px 0px;
  padding: 2px 0px 0px 10px;
  text-transform: uppercase;
}
#block-views-social-feed-block .views-row a {
  color: #000;
  display: block;
  margin: 2px 10px 0px 10px;
  min-height: 22px;
  text-decoration: none;
}
#block-views-social-feed-block .views-row a:hover {
  color: #0075bf;
}
#block-views-social-feed-block .views-row a.twitter-social-link {
  background: url(../images/socl_twitter.png) no-repeat left top;
  padding-left: 30px;
  padding-bottom: 10px;
}
#block-views-social-feed-block .views-row a.facebook-social-link {
  background: url(../images/socl_fb.png) no-repeat left top;
  padding-left: 30px;
  padding-bottom: 10px;
}
#block-views-social-feed-block .views-row a.instagram-social-link {
  background: url(../images/socl_insta.gif) no-repeat left top;
  padding-left: 30px;
  padding-bottom: 10px;
}

/* -----------------------------------------------------
Motorcycle Blog
----------------------------------------------------- */
body.page-continue-the-ride .view-header h2 {
  font-weight: bold !important;
  font-size: 24px;
}

body.node-type-page.section-continue-the-ride .field-name-field-page-title {
  border-bottom: 1px solid #000;
  font-size: 24px;
  line-height: 45px;
  font-family: 'Oswald';
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}

.view-id-motorcycleshows_blog .field-name-title .field-item {
  font-family: 'Oswald';
  font-weight: 400;
  color: #FF6331;
  text-decoration: underline;
}
.view-id-motorcycleshows_blog .field-name-title .field-item h2 {
  border: 0;
  font-size: 18px;
  margin-bottom: 5px;
  line-height: 23px;
  margin-top: 0;
}
.view-id-motorcycleshows_blog .field-name-field-blog-image {
  padding-left: 80px;
}
.view-id-motorcycleshows_blog .views-row {
  border: 1px solid #484848;
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
}
.view-id-motorcycleshows_blog .views-field-field-blog-image {
  width: 50%;
  float: left;
  height: 300px;
}
.view-id-motorcycleshows_blog .views-field-field-blog-image a {
  display: block;
  line-height: 0;
}
.view-id-motorcycleshows_blog .views-field-field-blog-image img {
  height: 300px;
  width: 100%;
}
.view-id-motorcycleshows_blog .views-field.views-field-created {
  width: 50%;
  float: left;
  padding-left: 15px;
  box-sizing: border-box;
  padding-top: 15px;
  text-transform: uppercase;
  color: #818181;
}
.view-id-motorcycleshows_blog .views-field.views-field-created-1 {
  width: 50%;
  float: left;
  padding-left: 15px;
  box-sizing: border-box;
  color: #818181;
  text-transform: none;
}
.view-id-motorcycleshows_blog .views-field.views-field-title {
  width: 50%;
  float: left;
  padding-left: 15px;
  box-sizing: border-box;
}
.view-id-motorcycleshows_blog .views-field.views-field-body {
  width: 50%;
  float: left;
  padding-left: 15px;
  box-sizing: border-box;
  padding-top: 10px;
  padding-right: 10px;
  color: #5F5F5F;
}
.view-id-motorcycleshows_blog .views-field.views-field-view-node {
  width: 50%;
  float: left;
  padding-left: 15px;
  box-sizing: border-box;
  margin-top: 35px;
}
.view-id-motorcycleshows_blog .field-name-post-date {
  text-transform: uppercase;
  color: #818181;
}
.view-id-motorcycleshows_blog .views-field-title {
  padding-top: 25px;
}
.view-id-motorcycleshows_blog .views-field-title a {
  color: #ff6633;
  text-decoration: underline;
  font-size: 25px;
  font-family: 'Oswald';
  line-height: 25px;
}
.view-id-motorcycleshows_blog .views-field-view-node span.field-content {
  display: inline-block;
  padding: 12px 1px 11px;
  background: #fff;
  border: 1px solid #000;
}
.view-id-motorcycleshows_blog .views-field-view-node a {
  display: inline;
  padding: 10px 15px;
  text-transform: uppercase;
  background: black;
  border: 1px solid black;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
.view-id-motorcycleshows_blog .field-name-field-tags .field-item {
  display: inline-block;
  margin-left: 4px;
}

#block-views-motorcycleshows-blog-block-2 {
  padding: 20px 40px 0;
  background: #333333;
}
#block-views-motorcycleshows-blog-block-2 .flexslider {
  margin-bottom: 0;
}
#block-views-motorcycleshows-blog-block-2 .flexslider .slides {
  background: #333333;
}
#block-views-motorcycleshows-blog-block-2 .flexslider .flex-direction-nav a, #block-views-motorcycleshows-blog-block-2 .flexslider .flex-direction-nav a {
  display: block;
  opacity: 1;
  overflow: visible;
  background-repeat: no-repeat;
  width: 25px;
}
#block-views-motorcycleshows-blog-block-2 .flex-direction-nav .flex-next {
  right: -40px;
  background-image: url("../images/orange-right-arrow.png");
}
#block-views-motorcycleshows-blog-block-2 .flex-direction-nav .flex-prev {
  left: -35px;
  background-image: url("../images/orange-left-arrow.png");
}
#block-views-motorcycleshows-blog-block-2 .flex-direction-nav a:before {
  content: '';
}
#block-views-motorcycleshows-blog-block-2 .flex-direction-nav a.flex-next:before {
  content: '';
}
#block-views-motorcycleshows-blog-block-2 .flex-caption {
  width: 100%;
  float: left;
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'Oswald';
}
#block-views-motorcycleshows-blog-block-2 .flex-caption a {
  color: #ff9933;
}
#block-views-motorcycleshows-blog-block-2 h2 {
  color: #fff;
  font-family: 'Oswald';
  font-size: 25px;
  text-transform: uppercase;
}
#block-views-motorcycleshows-blog-block-2 img {
  height: auto;
  width: 100%;
  min-height: 200px;
}
#block-views-motorcycleshows-blog-block-2 .views-field-field-blog-image {
  width: 100%;
  max-height: 200px;
  overflow: hidden;
  height: 250px;
}
#block-views-motorcycleshows-blog-block-2 .field-name-post-date .post-time {
  color: #818181;
  text-transform: none;
}

.views-field-field-blog-image .field-name-field-tags .field-item a {
  text-decoration: none;
  color: #0099CB;
}

.node-type-blog-post #content {
  padding: 0;
}
.node-type-blog-post .sharethis-buttons {
  margin-top: 20px;
}
.node-type-blog-post span.st_facebook_custom,
.node-type-blog-post span.st_twitter_custom {
  height: 30px;
  width: 30px;
  display: inline-block;
  cursor: pointer;
  margin-right: 10px;
}
.node-type-blog-post span.st_facebook_custom {
  background: url(../images/ims-facebook.png) no-repeat;
  background-size: contain;
}
.node-type-blog-post span.st_twitter_custom {
  background: url(../images/ims-twitter.png) no-repeat;
  background-size: contain;
  width: 35px;
}

.node-blog-post .field-name-body a {
  color: #0075BE;
}
.node-blog-post .field-name-blog-views-link {
  margin-bottom: 20px;
}
.node-blog-post .field-name-post-date {
  text-transform: uppercase;
  color: #818181;
}
.node-blog-post .field-name-post-date .post-time {
  text-transform: none;
}
.node-blog-post .return-link {
  display: inline-block;
  padding: 12px 1px 11px;
  background: #fff;
  border: 1px solid #000;
}
.node-blog-post .return-link a {
  display: inline;
  padding: 10px 15px;
  text-transform: uppercase;
  background: black;
  border: 1px solid black;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.node-blog-post .field-name-title h2 {
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  font-family: 'Oswald';
  font-size: 30px;
  color: #000;
  line-height: 45px;
}
.node-blog-post .group-left {
  padding-right: 10px;
  box-sizing: border-box;
}
.node-blog-post .group-right {
  padding-left: 10px;
  box-sizing: border-box;
}
.node-blog-post .group-right img {
  width: 100% !important;
  height: auto !important;
}

.section-continue-the-ride #content .block {
  color: #5F5F5F;
}
.section-continue-the-ride #content .block h2 {
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  font-family: 'Oswald';
  font-size: 30px;
  color: #000;
  line-height: 45px;
}

ul.pager {
  margin-top: 0;
}
ul.pager a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}
ul.pager li {
  padding: 0 3px;
}

li.pager-current {
  color: #ff6633;
}

/* -----------------------------------------------------
Brightcove
----------------------------------------------------- */
.field.field-name-field-brightcove-video.field-type-brightcove-field {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.brightcove-field-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* -----------------------------------------------------
Block 3 Styles
----------------------------------------------------- */
#block-block-3 {
  margin-top: 25px;
}
#block-block-3 h2.block-title {
  background: #C4112E;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Oswald';
  font-weight: 400;
  font-size: 26px;
  line-height: 31px;
}
#block-block-3 table {
  margin-top: 0;
  width: 100%;
  background: #eee;
}
#block-block-3 table p {
  font-weight: bold;
  font-family: 'Oswald';
  font-weight: 400;
  text-align: center;
  font-size: 19px;
  margin: 10px 0 15px 0;
}
#block-block-3 table tbody tr:nth-child(2) td:nth-child(1) {
  width: 370px;
  text-align: right;
}
#block-block-3 table tbody tr:nth-child(2) td:nth-child(1) input {
  width: 260px;
  padding: 2px;
  font-size: 15px;
}
#block-block-3 table tbody tr:nth-child(2) td:nth-child(2) {
  text-align: right;
  width: 180px;
}
#block-block-3 table tbody tr:nth-child(2) td:nth-child(2) input {
  width: 120px;
  padding: 2px;
  font-size: 15px;
}
#block-block-3 table tbody tr:nth-child(2) td:nth-child(3) input {
  box-shadow: 0 0 6px #888;
  margin-left: 70px;
  border-radius: 0;
  border: 1px solid #888;
  padding: 5px 0;
  font-size: 15px;
  font-weight: normal;
  width: 90px;
  background: #eeeeee;
  background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%);
  background: -webkit-linear-gradient(top, #eeeeee 0%, #cccccc 100%);
  background: linear-gradient(to bottom, #eeeeee 0%, #cccccc 100%);
  filter: "progid: DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0)";
}
#block-block-3 table tbody input {
  margin-bottom: 20px;
}

/* -----------------------------------------------------
Industry News Block
----------------------------------------------------- */
#block-views-industry-news-block {
  display: inline-block;
  vertical-align: top;
}
#block-views-industry-news-block h2 {
  font-family: 'Oswald';
  color: #000;
  font-size: 22px;
  font-weight: bold;
  line-height: 22px;
  margin: 0px 0px 10px 0px;
  padding: 2px 0px 0px 10px;
  text-transform: uppercase;
  background: url(../images/industry_hdr.png) no-repeat 0px 0px;
}
#block-views-industry-news-block .views-row a {
  color: #000;
  display: block;
  margin: 2px 10px 0px 10px;
  min-height: 22px;
  text-decoration: none;
}
#block-views-industry-news-block .views-row a:hover {
  color: #0075bf;
}

/* -----------------------------------------------------
Other Blocks
----------------------------------------------------- */
#block-block-3 {
  margin: 0 auto;
}

#block-block-4 h2.block-title {
  font-family: 'Oswald';
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0px 0px 10px 0px;
  padding: 2px 0px 0px 10px;
}

#block-menu-block-6 {
  height: 200px;
}

#footer .block-block:last-of-type {
  display: none;
  width: 100% !important;
  text-align: center;
  margin-bottom: 0;
}

.menu-block-1 li.menu__item a:after {
  content: none !important;
  display: none !important;
}

#block-menu-block-2 {
  clear: both;
}

#ddigInner {
  border: 1px solid #3399cc;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  min-height: 200px;
  padding: 20px 0px 10px 0px;
  width: 310px;
}
#ddigInner a {
  color: black;
  display: block;
  margin: 2px 10px 0px 10px;
  min-height: 22px;
  text-decoration: none;
}
#ddigInner a:hover {
  text-decoration: underline;
}
#ddigInner a.social_feed_item {
  background: url(../images/socl_fb.png) no-repeat left top;
  padding-left: 30px;
  padding-bottom: 10px;
}
#ddigInner a.twitter_feed_item {
  background: url(../images/socl_twitter.png) no-repeat left top;
  padding-left: 30px;
  padding-bottom: 10px;
}
#ddigInner a.instagram_feed_item {
  background: url(../images/socl_insta.gif) no-repeat left top;
  padding-left: 30px;
  padding-bottom: 10px;
}

/* -----------------------------------------------------
Nodes
----------------------------------------------------- */
body.page-node .field-name-field-right-column .field-label {
  display: none;
}
body.page-node .submitted {
  display: none;
}
body.page-node article.node-109 input[type="checkbox"] {
  margin: 0 .5rem 0 0;
}
body.page-node article.node-109 input[type="radio"] {
  margin: 0 .5rem 0 0;
}
body.page-node article.node-109 input[type="submit"] {
  background: #eaeaea;
  border: 1px solid #a6a6a6;
  margin-bottom: 25px;
  padding: 4px 8px;
}

body.node-type-article h1#page-title {
  border-bottom: 1px solid #706d88;
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Oswald';
}
body.node-type-article article p.submitted {
  display: none;
}

/* -----------------------------------------------------
Footer
----------------------------------------------------- */
#footer-container {
  background: url(../images/footer_top.gif) no-repeat top center #e6e6e6;
}

#footer {
  background: url(../images/footer_top.gif) no-repeat top center #e6e6e6;
  font-family: myriad, sans-serif;
  padding: 30px 0 25px;
  position: relative;
}
#footer .menu {
  font-size: 11px;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
#footer .menu .menu-mlid-525 {
  display: none;
}
#footer .menu li {
  list-style-image: none;
}
#footer .menu li a {
  color: #666;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}
#footer .menu li a:hover {
  text-decoration: underline;
}
#footer .menu li ul.menu {
  margin: -5px 0px 10px 0px;
}
#footer .menu li ul.menu li {
  height: 14px;
  margin: 0px;
  padding: 0px 0px 0px 20px;
}
#footer .menu li ul.menu li a {
  text-transform: none;
}
#footer .block-menu-block {
  float: left;
  width: 20%;
}
#footer .block {
  display: inline-block;
  width: 20%;
  margin-top: 5px;
}
#footer .block p, #footer .block h2 {
  line-height: 15px;
  color: #666;
  font-weight: bold;
  font-size: 11px;
  margin: 0;
}
#footer .block h2 {
  text-transform: uppercase;
}
#footer .menu-name-menu-footer-menu-5 li.first {
  display: none;
}
#footer .menu-name-menu-footer-menu-5 li:nth-child(1) {
  display: none;
}
#footer .menu-name-menu-footer-menu-5 li.last {
  height: 54px;
  margin-bottom: 15px;
  display: none;
}
#footer .menu-name-menu-footer-menu-5 li.last a {
  display: block;
  height: 70px;
  margin: 15px 0 0;
  text-indent: -9999px;
  width: 100%;
  background-size: contain;
}
#footer .menu-name-menu-footer-menu-5 .menu a:hover {
  text-decoration: underline;
}

/* -----------------------------------------------------
Gallery
----------------------------------------------------- */
#pastContainer {
  min-height: 560px;
  padding-bottom: 40px;
}

#pastShowTitle {
  border-bottom: 1px solid #000;
  text-transform: uppercase;
  font-family: 'Oswald';
  font-size: 24px;
  line-height: 36px;
}

#pastRightContainer {
  float: left;
  width: 560px;
}

.pPhotosTitle {
  color: #C03;
  font-size: 20px;
  margin: 0px;
  padding: 0px;
}

#galleryBigPhoto {
  display: block;
  margin: 0px 0px 10px 0px;
}

#buildersBigPhoto {
  display: block;
  margin: 0px 0px 10px 0px;
}

.gallerySmallPhoto {
  margin-right: 5px;
}

.buildersSmallPhoto {
  margin-right: 5px;
}

#bPhotosContainer {
  margin-top: 60px;
}

#pastLeftContainer {
  float: left;
  position: relative;
  width: 360px;
}

.blueTitle {
  color: #3399cc;
  font-size: 20px;
  margin: 0px;
  padding: 0px;
}

#pagePastShow #main {
  position: relative;
}

#whereNext {
  bottom: 120px;
  display: none;
  font-size: 18px;
  left: 10px;
  line-height: 18px;
  position: absolute;
  text-transform: uppercase;
  width: 310px;
}

.nextCityName {
  font-weight: bold;
  margin-top: 5px;
}
.nextCityName a {
  color: #000;
}

.buyNowNext {
  background: url(../images/btnBuyNext.gif) no-repeat 0px 0px;
  display: block;
  height: 55px;
  margin-top: 20px;
  text-indent: -9999px;
  width: 111px;
}

#partdealSelect {
  margin-top: 20px;
}
#partdealSelect a {
  color: black;
  font-size: 12px;
  font-weight: bold;
  margin-right: 20px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
#partdealSelect a.oncity {
  color: #478ac8;
}

#btnCustService {
  background: url(../images/questions.gif) no-repeat;
  display: block;
  height: 23px;
  left: 524px;
  position: absolute;
  text-indent: -9999px;
  top: 100px;
  width: 92px;
}

#galSocial {
  margin: 100px 40px 40px 0;
}

#galFB {
  background-image: url(../images/galFacebook.gif);
  background-repeat: no-repeat;
  display: block;
  float: right;
  height: 46px;
  margin-right: 10px;
  width: 45px;
}

#galTwitLink {
  background-image: url(../images/galTwitter.gif);
  background-repeat: no-repeat;
  display: block;
  float: right;
  height: 46px;
  width: 47px;
}

.pastShowMain {
  position: relative;
}

.pastBlueBar {
  background-image: url(../images/socialBlue1px.png);
  bottom: 0px;
  height: 44px;
  left: 0px;
  padding: 10px 14px 0 0;
  position: absolute;
  width: 536px;
}

.mainFB {
  background: url(../images/transFB.png) no-repeat 0px 0px;
  display: block;
  float: right;
  height: 34px;
  margin-right: 10px;
  text-indent: -9999px;
  width: 35px;
}

.mainTwitter {
  background: url(../images/transTwitter.png) no-repeat 0px 0px;
  display: block;
  float: right;
  height: 34px;
  text-indent: -9999px;
  width: 35px;
}

.galleryPageThumb {
  color: #4d4d4d;
  display: block;
  text-decoration: none;
  width: 288px;
}

.gptContainer {
  display: inline-block;
  padding: 10px 7px;
  position: relative;
  vertical-align: top;
  width: 288px;
}

.gptFB {
  background: url(../images/galFB35.png) no-repeat 0px 0px;
  height: 35px;
  display: block;
  position: absolute;
  right: 50px;
  top: 146px;
  width: 35px;
}

.gptTwitter {
  background: url(../images/galTwitter35.png) no-repeat 0px 0px;
  bottom: 10px;
  height: 35px;
  display: block;
  position: absolute;
  right: 10px;
  top: 146px;
  width: 35px;
}

#imageDataContainer {
  position: relative;
}

#lbFacebook {
  background: url(../images/galFB35.png) no-repeat 0px 0px;
  bottom: 20px;
  display: block;
  height: 35px;
  position: absolute;
  right: 100px;
  text-indent: -9999px;
  width: 35px;
}

#lbTwitter {
  background: url(../images/galTwitter35.png) no-repeat 0px 0px;
  bottom: 20px;
  display: block;
  height: 35px;
  position: absolute;
  right: 50px;
  text-indent: -9999px;
  width: 35px;
}

#numberDisplay {
  visibility: hidden;
}

#tempstayconnected {
  background: url("../images/stay_connected_1.png") 0 0 no-repeat;
  display: block;
  width: 458px;
  height: 151px;
}

.service-links {
  margin: 20px 0 25px 0;
}

.fb_iframe_widget {
  top: -5px;
  left: -30px;
}

.twitter-share-button {
  position: relative !important;
  left: -18px;
}

.view-display-id-page .field-name-tour-schedule-buy-tickets-link a {
  line-height: 13px !important;
}

#imageData #imageDetails {
  width: 100%;
  float: none;
  text-align: center;
}

/* -----------------------------------------------------
Paragraphs
----------------------------------------------------- */
#paragraph-front {
  background-color: #333;
}

.field-name-field-paragraph-button a, .field-name-field-paragraph-button-2 a, .field-name-field-paragraph-button-3 a {
  background: #808080;
  border: 2px solid white;
  display: inline-block;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 15px 24px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: oswald;
  line-height: 25px;
}

.field-name-field-paragraph-button, .field-name-field-paragraph-button-2, .field-name-field-paragraph-button-3 {
  margin: 30px;
  text-align: center;
}

.front-headline {
  color: white;
  font-family: oswald;
  font-size: 45px;
  padding-bottom: 10px;
  padding-top: 30px;
  text-align: center;
  text-transform: uppercase;
}

.field-name-field-paragraph-sub-title-1, .field-name-field-paragraph-sub-title-2, .field-name-field-paragraph-sub-title-3 {
  color: white;
  font-family: oswald;
  font-size: 40px;
  font-weight: lighter;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.field-items .field-item ul li {
  list-style-image: none;
  list-style-position: initial;
  list-style-type: disc;
}
.field-items .field-item ol li {
  list-style-image: none;
  list-style-position: initial;
  list-style-type: decimal;
}

/*************************************
Brands Pages
*************************************/
body.page-brands .view-brands table, body.page-sponsors .view-sponsors table {
  border-collapse: separate;
  empty-cells: hide;
  width: 100%;
}
body.page-brands .view-brands td, body.page-sponsors .view-sponsors td {
  background: url(../images/brand_box_bg.png) no-repeat;
  border-collapse: separate;
  border-bottom: 30px solid transparent;
  height: 123px;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25%;
  padding: 15px;
  background-size: 235px 133px;
}
body.page-brands .view-brands .views-field-field-subtitle, body.page-sponsors .view-sponsors .views-field-field-subtitle {
  bottom: -22px;
  display: block;
  font-size: 11px;
  font-weight: bold;
  left: 0px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 231px;
}

body.page-brands #main {
  padding-top: 10px;
  padding-top: 10px;
}
body.page-brands .view-brands .view-header p {
  font-size: 16px;
}

#brand_carousel {
  margin: -5px 0px 0px 0px;
  width: 100%;
}

/*************************************
Builders Pages
*************************************/
body.page-custom-builders .view-participating-builders .views-row {
  float: left;
  margin: 0px 8px 20px 8px;
  width: 217px;
}
body.page-custom-builders .view-participating-builders .field-name-field-builder-image img {
  border: 1px solid #5b5b76;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 125px;
  width: 215px;
}
body.page-custom-builders .view-participating-builders .field-name-title h2 {
  font-size: 12px;
  font-weight: normal;
  line-height: 14px;
  margin: 0;
  padding: 0;
}
body.page-custom-builders .view-participating-builders a {
  color: black;
  text-decoration: none;
}
body.page-custom-builders .view-participating-builders a:hover {
  text-decoration: underline;
}
body.page-custom-builders .view-participating-builders td {
  padding: 0px 8px 40px 8px;
}
body.page-custom-builders .view-participating-builders td div {
  line-height: 18px;
}
body.page-custom-builders .builderText {
  text-transform: uppercase;
}
body.page-custom-builders .builderText a {
  color: #000;
  text-decoration: none;
}
body.page-custom-builders .builderText a:hover {
  text-decoration: underline;
}

/*************************************
Post Show Reports
*************************************/
body.page-post-show-reports h1#page-title {
  display: block;
  font-family: 'Oswald';
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  border-bottom: 1px solid #5F9EC5;
}
body.page-post-show-reports .field-name-title h2 {
  margin-top: -5px;
  font-family: 'Oswald';
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  width: 210px;
}
body.page-post-show-reports .field-name-post-show-report-imagelink img {
  border: 1px solid #000;
}

.view-post-show-reports table {
  width: 100%;
  margin-bottom: 50px;
}

/*************************************
Features Page
*************************************/
body.node-type-feature .node-feature .field-name-title h2 {
  border-bottom: 1px solid black;
  font-size: 24px;
  font-family: 'Oswald';
  font-weight: 800;
  line-height: 36px;
  margin: 0px;
  padding: 20px 0px 0px 0px;
  text-indent: 4px;
  text-transform: uppercase;
}
body.node-type-feature .group-left {
  padding: 0px 80px 20px 24px;
  width: 325px;
}
body.node-type-feature .group-left .field-name-body {
  font-size: 16px;
}
body.node-type-feature .field-name-feature-tour-stops h2 {
  color: #c00;
  font-size: 20px;
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
}
body.node-type-feature .field-name-participating-brands h2.block-title {
  color: #c00;
  font-size: 20px;
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
}
body.node-type-feature .view-feature-tour-stops {
  font-size: 16px;
}
body.node-type-feature .view-feature-tour-stops .field-name-field-show-name {
  padding-right: 10px;
  text-transform: uppercase;
}
body.node-type-feature .view-feature-tour-stops .field-name-field-new-city {
  color: #c00;
  font-style: italic;
  text-transform: uppercase;
}
body.node-type-feature .view-feature-tour-stops .field-name-field-new-city .field-item span {
  color: #000;
  font-style: normal;
}
body.node-type-feature .view-feature-tour-stops .field-name-field-new-location {
  color: #c00;
  font-style: italic;
  text-transform: uppercase;
}
body.node-type-feature .view-feature-tour-stops .field-name-field-new-location .field-item span {
  color: #000;
  font-style: normal;
}
body.node-type-feature .view-feature-tour-stops .field-name-field-new-dates {
  color: #c00;
  font-style: italic;
  text-transform: uppercase;
}
body.node-type-feature .view-feature-tour-stops .field-name-field-new-dates .field-item span {
  color: #000;
  font-style: normal;
}
body.node-type-feature .view-feature-tour-stops .views-row {
  margin-bottom: 20px;
}
body.node-type-feature .view-feature-tour-stops .views-row div {
  display: inline;
}
body.node-type-feature .view-feature-tour-stops .field-name-feature-tour-stops-location-name {
  padding-right: 10px;
  white-space: pre;
}
body.node-type-feature .view-feature-tour-stops .field-name-feature-tour-stops-location-name:before {
  content: '\A';
}
body.node-type-feature .view-feature-tour-stops .field-name-field-show-dates {
  padding-right: 10px;
  white-space: pre;
}
body.node-type-feature .view-feature-tour-stops .field-name-field-show-dates:before {
  content: '\A';
}
body.node-type-feature .view-participating-brands td {
  padding-right: 20px;
}
body.node-type-feature .field-name-field-feature-image {
  margin-top: 20px;
}

body.node-type-page .field-name-field-page-title {
  border-bottom: 1px solid black;
  font-size: 24px;
  font-family: 'Oswald';
  font-weight: 800;
  line-height: 36px;
  margin: 0px;
  padding: 20px 0px 0px 0px;
  text-indent: 4px;
  text-transform: uppercase;
  padding-top: 0px;
  font-family: 'Oswald';
  font-size: 24px;
  line-height: 36px;
  border-bottom: 1px solid #000;
}
body.node-type-page .field-name-field-feature-thumbnail {
  display: none;
}
body.node-type-page .field-name-field-mobile-description {
  display: none;
}

body.node-type-webform .node-webform .field-name-title h2 {
  border-bottom: 1px solid black;
  font-size: 24px;
  font-family: 'Oswald';
  font-weight: 800;
  line-height: 36px;
  margin: 0px;
  padding: 20px 0px 0px 0px;
  text-indent: 4px;
  text-transform: uppercase;
}

body.section-chicago .field-name-field-page-title {
  border: 0;
}

body.section-dallas .field-name-field-page-title {
  border: 0;
}

body.section-minneapolis .field-name-field-page-title {
  border: 0;
}

body.section-cleveland .field-name-field-page-title {
  border: 0;
}

body.section-washingtondc .field-name-field-page-title {
  border: 0;
}

body.section-newyork .field-name-field-page-title {
  border: 0;
}

body.section-longbeach .field-name-field-page-title {
  border: 0;
}

body.node-type-article .field-name-field-mobile-description {
  display: none;
}

.ds-2col-stacked-fluid > .group-right {
  float: left;
}
.ds-2col-stacked-fluid > .group-left {
  padding: 0 10px;
  box-sizing: border-box;
}

/*************************************
Dealers Pages
*************************************/
body.section-dealers #block-ims-dealers-ims-dealers {
  padding: 0px 30px;
}
body.section-dealers #block-ims-dealers-ims-dealers h3 {
  color: #c00;
  font-size: 20px;
  font-weight: bold;
  margin: 30px 0px 6px 0px;
  padding: 0px;
  text-transform: uppercase;
}
body.section-dealers #block-ims-dealers-ims-dealers .views-row {
  display: inline-block;
  padding: 0 10px 20px 0;
  vertical-align: top;
  width: 160px;
  color: #333;
}
body.section-dealers #block-ims-dealers-ims-dealers .views-row a {
  color: blue;
  text-decoration: underline;
}
body.section-dealers #block-ims-dealers-ims-dealers .field-name-dealer-teaser-title h2 {
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
}
body.section-dealers #block-ims-dealers-ims-dealers .field-name-dealer-teaser-title h2.exhibiting {
  color: #c00;
  font-weight: bold;
}
body.section-dealers #block-ims-dealers-ims-dealers h2.grouping-title {
  display: none;
}
body.section-dealers #block-ims-dealers-ims-dealers td {
  padding-bottom: 40px;
  width: 180px;
}
body.section-dealers #block-ims-dealers-ims-dealers td .node-dealer {
  color: #333;
  line-height: 16px;
}
body.section-dealers #block-ims-dealers-ims-dealers td .node-dealer a:hover {
  text-decoration: underline;
}
body.section-dealers .node-page .field-name-body {
  padding: 0px 30px;
}

/*************************************
Mediasponsors Pages
*************************************/
body.page-mediasponsors .view-media-sponsors {
  display: table;
  padding: 0px 0px 40px 40px;
}
body.page-mediasponsors .view-media-sponsors .views-row {
  float: left;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  width: 206px;
}
body.page-mediasponsors .view-media-sponsors .views-row .views-field-field-media-logo a {
  border: 1px solid #BFBFCB;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: table-cell;
  height: 102px;
  vertical-align: middle;
  line-height: normal;
}

#media_sponsors_container .sponsor {
  background: url("../images/brand_box_bg.png") no-repeat scroll 0px 0;
  display: block;
  float: left;
  margin: 0 8px;
  padding: 10px 10px 20px 10px;
  min-height: 102px;
  width: 197px;
}
#media_sponsors_container .sponsor .s_logo {
  background-position: center;
  display: block;
  height: 102px;
  text-indent: -9999px;
  width: 196px;
}
#media_sponsors_container .sponsor .subtitle {
  display: block;
  font-weight: bold;
  padding-top: 14px;
  text-align: center;
  text-transform: uppercase;
  width: 196px;
}

/*************************************
City Pages
*************************************/
body.page-cities #main {
  padding-top: 0px;
}

body.section-cities #main {
  padding-top: 0px;
}
body.section-cities #block-views-tour-schedule-block-1 .block-title {
  color: #000;
  font-size: 22px;
  font-family: 'Oswald';
  font-weight: 400;
  margin: 0px 0px 10px 0px;
  padding: 2px 0px 0px 10px;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  padding-left: 0;
  margin: 0 10px 10px 10px;
  line-height: 36px;
  font-size: 24px;
  font-weight: bold !important;
}

body.node-type-city .node-city .group-left {
  padding: 0px 10px;
  position: relative;
  width: 45%;
  box-sizing: border-box;
}
body.node-type-city .node-city .field-name-field-show-name {
  font-size: 22px;
  font-family: 'Oswald';
  font-weight: 400;
  color: #CC0000;
  text-transform: uppercase;
}
body.node-type-city .node-city .field-name-field-show-location span {
  font-family: 'open-sans';
  font-size: 14px;
  text-transform: none !important;
}
body.node-type-city .node-city .field-name-field-show-location .adr {
  margin-top: 7px;
}
body.node-type-city .node-city .fn {
  height: 4px;
  line-height: 12px;
}
body.node-type-city .node-city .country-name {
  height: 4px;
  line-height: 12px;
}
body.node-type-city .node-city .street-address {
  height: 4px;
  line-height: 12px;
}
body.node-type-city .node-city .field-name-custom-show-dates {
  font-size: 16px;
  font-weight: bold;
  padding: 18px 0 20px 0;
  text-transform: uppercase;
}
body.node-type-city .node-city .field-name-field-hours .field-label {
  font-size: 12px;
  font-family: 'open-sans';
  font-weight: 700;
  height: 20px;
  text-transform: uppercase;
}
body.node-type-city .node-city .field-name-field-hours .entity-field-collection-item {
  border-top: #000 1px solid;
  padding-left: 4px;
}
body.node-type-city .node-city .field-name-field-hours .field-items .field-item:first-child .entity-field-collection-item {
  border-left: none;
  padding-left: 0px;
}
body.node-type-city .node-city .field-name-field-hours .field-items .field-label {
  display: none;
}
body.node-type-city .node-city .field-name-field-hours .field-collection-view {
  margin: 0px;
  padding: 0px;
}
body.node-type-city .node-city .field-name-field-hours .field-item {
  float: left;
  margin: 0px 0 0 0;
  width: 128px;
}
body.node-type-city .node-city .field-name-field-hours .field-name-field-time .field-item {
  font-size: 12px;
  line-height: 12px;
  margin-top: 0px 0 0 0;
}
body.node-type-city .node-city .field-name-field-prices .field-label {
  font-size: 12px;
  font-weight: bold;
  height: 20px;
  margin: 14px 0 0 0;
  text-transform: uppercase;
  width: 385px;
  border-bottom: 1px solid #000;
}
body.node-type-city .node-city .field-name-field-prices .field-items .field-item:first-child .entity-field-collection-item {
  border-left: none;
  padding-left: 0px;
}
body.node-type-city .node-city .field-name-field-prices .field-items .field-label {
  display: none;
}
body.node-type-city .node-city .field-name-field-prices .field-collection-view {
  margin: 0px;
  padding: 0px;
}
body.node-type-city .node-city .field-name-field-prices .field-item {
  float: left;
  margin: 0px 0 0 0;
  width: 128px;
}
body.node-type-city .node-city .field-collection-view {
  border: 0px solid transparent;
}
body.node-type-city .node-city .field-collection-container {
  border-bottom: none;
  margin-bottom: 0px;
}
body.node-type-city .node-city .field-name-field-day {
  margin: 4px 0 0 0;
}
body.node-type-city .node-city .field-name-field-price-type {
  margin: 4px 0 0 0;
}
body.node-type-city .node-city .field-name-field-price .field-item {
  font-size: 12px;
  line-height: 14px;
  margin: 0px 0 0 0;
}
body.node-type-city .field-name-field-parking {
  bottom: 10px;
  color: #000;
  position: absolute;
  left: 242px;
  text-decoration: none;
}
body.node-type-city .field-name-field-parking a {
  color: #000;
  text-decoration: none;
  width: 100%;
  padding: 9px 14px;
  height: 40px;
  font-family: 'Oswald';
  font-size: 14px;
  border: 2px solid #000;
  display: inline-block;
  text-align: center;
  font-size: 14px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  body.node-type-city .field-name-field-parking a {
    padding: 8px 14px !important;
  }
}
body.node-type-city .field-name-field-parking a br {
  display: none;
}
body.node-type-city .field-name-field-directions {
  bottom: 10px;
  color: #000;
  position: absolute;
  left: 125px;
}
body.node-type-city .field-name-field-directions a {
  color: #000;
  text-decoration: none;
  width: 90px;
  padding: 10px;
  height: 18px;
  font-family: 'Oswald';
  font-size: 14px;
  border: 2px solid #000;
  display: inline-block;
  text-align: center;
}
body.node-type-city .field-name-field-exhibitor-list {
  bottom: 10px;
  color: #000;
  position: absolute;
  left: 125px;
}
body.node-type-city .field-name-field-exhibitor-list a {
  color: #000;
  text-decoration: none;
  width: 100%;
  padding: 10px;
  height: 40px;
  font-family: 'Oswald';
  font-size: 14px;
  border: 2px solid #000;
  display: inline-block;
  text-align: center;
}
body.node-type-city .field-name-field-exhibitor-list img {
  display: none;
}
body.node-type-city .field-name-field-buy-tickets-link {
  bottom: 0px;
  position: inherit;
  left: auto;
}
body.node-type-city .field-name-field-buy-tickets-link a {
  color: #CC0000;
  text-transform: uppercase;
  font-family: 'Oswald';
  font-size: 14px;
  border: 2px solid #000;
  display: inline-block;
  height: 40px;
  margin: 14px 0 10px -2px;
  width: 100px;
  padding: 10px;
  text-decoration: none;
  text-align: center;
}
body.node-type-city .field-name-features-by-city .block-title {
  color: #000;
  font-size: 22px;
  font-family: 'Oswald';
  font-weight: 400;
  margin: 0px 0px 10px 0px;
  padding: 2px 0px 0px 10px;
  text-transform: uppercase;
  font-weight: bold !important;
}
body.node-type-city .field-name-features-by-city .field-name-field-feature-image a img {
  border: 1px solid #5b5b76;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: block;
  width: 213px;
}
body.node-type-city .field-name-features-by-city .field-name-field-feature-thumbnail {
  padding-top: 0px;
}
body.node-type-city .field-name-features-by-city .field-name-field-feature-thumbnail a img {
  border: 1px solid #5b5b76;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: block;
  width: 213px;
}
body.node-type-city .field-name-features-by-city .field-name-field-image a img {
  border: 1px solid #5b5b76;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: block;
  width: 213px;
}
body.node-type-city .field-name-features-by-city .field-items .field-name-field-page-title {
  margin-top: 5px;
}
body.node-type-city .field-name-features-by-city .field-name-title h2 {
  border: 1px solid #5b5b76;
  font-size: 14px;
  font-family: 'Oswald';
  font-weight: 400;
  line-height: 18px;
  margin: 4px 0px 0px 0px;
  padding: 2px 0px 0px 0px;
  text-align: center;
  text-transform: uppercase;
  width: 215px;
  height: 40px;
  vertical-align: middle;
  display: table-cell;
}
body.node-type-city .field-name-features-by-city .field-name-field-page-title .field-item {
  border: 1px solid #5b5b76;
  font-size: 14px;
  font-family: 'Oswald';
  font-weight: 400;
  line-height: 18px;
  margin: 4px 0px 0px 0px;
  padding: 2px 0px 0px 0px;
  text-align: center;
  text-transform: uppercase;
  width: 215px;
  height: 40px;
  vertical-align: middle;
  display: table-cell;
}
body.node-type-city .field-name-features-by-city td {
  padding: 0px 10px 20px 10px;
  vertical-align: top;
}
body.node-type-city .field-name-features-by-city td article header {
  display: none;
}
body.node-type-city .field-name-features-by-city ul.links {
  display: none;
}

body.node-type-city .node-city .group-right {
  position: relative;
  width: 55%;
}

.field-name-field-video-embed iframe {
  height: 316px;
  position: absolute;
  right: 0;
  top: 0;
  width: 496px;
}

body.past-show-version .field-name-field-buy-tickets-link a {
  display: inline-block;
  height: 18px;
  font-family: 'Oswald';
  margin: 14px 0 10px -2px;
  width: 90px;
  padding: 10px;
  text-align: center;
  visibility: hidden;
  color: #CC0000;
  text-decoration: none;
}

body.node-type-attractions-page #block-views-attractions-block .block-title {
  color: #000;
  font-size: 22px;
  font-family: 'Oswald';
  font-weight: 400;
  margin: 0px 0px 10px 0px;
  padding: 2px 0px 0px 10px;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  padding-left: 0;
  margin: 0 10px 10px 10px;
  line-height: 36px;
  font-size: 24px;
}
body.node-type-attractions-page .field-name-field-feature-thumbnail a img {
  border: 1px solid #5b5b76;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: block;
  width: 213px;
}
body.node-type-attractions-page ul.links {
  display: none;
}
body.node-type-attractions-page .view-attractions {
  margin-bottom: 100px;
}
body.node-type-attractions-page .view-attractions .node header h2 {
  display: none;
}
body.node-type-attractions-page .view-attractions .field-name-field-page-title {
  margin-top: 5px;
}
body.node-type-attractions-page .view-attractions td {
  padding: 0px 10px 20px 10px;
  vertical-align: top;
}
body.node-type-attractions-page .field-name-field-page-title .field-item {
  border: 1px solid #5b5b76;
  font-size: 14px;
  font-family: 'Oswald';
  font-weight: 400;
  line-height: 18px;
  margin: 4px 0px 0px 0px;
  padding: 2px 0px 0px 0px;
  text-align: center;
  text-transform: uppercase;
  width: 215px;
  height: 40px;
  vertical-align: middle;
  display: table-cell;
}

body.section-attractions h2.block-title {
  font-weight: bold !important;
  font-size: 24px;
}

.section-cities .field-name-tour-schedule-buy-tickets-link a {
  line-height: 13px !important;
}

/* -----------------------------------------------------
Tour Block
----------------------------------------------------- */
#block-views-the-tour-block {
  border-radius: 5px;
  margin-top: 125px;
  height: 0px !important;
  border: none !important;
}
#block-views-the-tour-block .view-the-tour {
  display: none !important;
}
#block-views-the-tour-block .block-title {
  display: none !important;
  background: url(../images/the_tour_logo.gif) no-repeat 4px 7px #c00;
  float: left;
  height: 37px;
  text-indent: -9999px;
  width: 50px;
}
#block-views-the-tour-block .view-the-tour {
  display: none !important;
}
#block-views-the-tour-block .view-the-tour .views-row {
  float: left;
  font-family: 'league-gothic';
  font-size: 12px;
  height: 33px;
  line-height: 12px;
  padding: 2px 0px;
  text-align: center;
  width: 88px;
}
#block-views-the-tour-block .view-the-tour .views-row.city_show_past {
  color: #9a9a9a;
}
#block-views-the-tour-block .view-the-tour .views-row.city_show_past .views-field-title a {
  color: #999;
}
#block-views-the-tour-block .view-the-tour .views-row.city_show_current {
  background: #c00;
  color: #fff;
}
#block-views-the-tour-block .view-the-tour .views-row.city_show_current .views-field-title a {
  color: #fff;
}
#block-views-the-tour-block .view-the-tour .views-field-title a {
  color: black;
  font-family: 'league-gothic';
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
  text-transform: uppercase;
}

#block-views-tour-schedule-block-2 {
  display: none;
}
#block-views-tour-schedule-block-2 .views-row {
  border: 1px solid #6A6A6A !important;
  margin-bottom: 5px;
  padding: 10px;
}
#block-views-tour-schedule-block-2 .views-row .node-city .group-left {
  width: 100%;
  text-align: center;
}
#block-views-tour-schedule-block-2 .views-row .node-city .group-left .field-name-title h2 {
  color: #037F9A;
  font-family: 'Oswald';
  font-size: 30px;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 36px;
  margin: 0;
}
#block-views-tour-schedule-block-2 .views-row .node-city .group-left .field-name-field-show-name .field-item {
  color: #037F9A;
  font-family: 'Oswald';
  font-size: 30px;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 36px;
  margin: 0;
}
#block-views-tour-schedule-block-2 .views-row .node-city .group-left .field-name-mobile-city-tour-schedule-dates {
  color: #1F1B1C;
  font-family: 'Oswald';
  font-size: 28px;
  font-weight: 100;
  line-height: 35px;
}
#block-views-tour-schedule-block-2 .views-row .node-city .group-left .tour-stops-location-name {
  text-transform: uppercase;
  color: #1F1D1E;
  font-size: 25px;
  font-family: 'Oswald';
  font-weight: 100;
  line-height: 30px;
}
#block-views-tour-schedule-block-2 .views-row .node-city .group-right {
  width: 100%;
  border: 0;
  background: transparent;
  position: static;
}
#block-views-tour-schedule-block-2 .views-row .node-city .group-right .field-name-tour-schedule-more-link a {
  color: #1F1D1E;
  display: block;
  width: 50%;
  height: 60px;
  font-weight: bold;
  font-family: 'Oswald';
  text-decoration: none;
  text-align: center;
  line-height: 60px;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0;
  padding: 0px 5px;
  float: left;
  box-sizing: border-box;
  border: 1px solid #FFF;
  background: #FBB673;
}
#block-views-tour-schedule-block-2 .views-row .node-city .group-right .field-name-tour-schedule-buy-tickets-link a {
  color: #1F1D1E;
  display: block;
  width: 50%;
  height: 60px;
  font-weight: bold;
  font-family: 'Oswald';
  text-decoration: none;
  text-align: center;
  line-height: 60px;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0;
  padding: 0px 5px;
  float: left;
  box-sizing: border-box;
  border: 1px solid #FFF;
  background: #F47820;
}
#block-views-tour-schedule-block-2 .views-row-1 {
  display: block;
}
#block-views-tour-schedule-block-2 h2.block-title {
  text-transform: uppercase;
  font-size: 40px;
  color: #555459;
  font-family: 'Oswald';
  font-weight: 100;
  margin-bottom: 25px;
  background: url("../../ims/images/ims_gradient.png") bottom center no-repeat;
  width: 100%;
  text-align: center;
}

/* -----------------------------------------------------
Tour Schedule
----------------------------------------------------- */
body.page-cities .view-tour-schedule .node-city {
  margin: 20px 10px 10px 10px;
  position: relative;
  width: 215px;
}
body.page-cities .view-tour-schedule table {
  margin-top: 0;
}
body.page-cities .view-tour-schedule .field-name-field-show-image {
  display: block;
  height: 120px;
  width: 215px;
}
body.page-cities .view-tour-schedule .field-name-field-show-image img {
  border-left: 1px solid #5b5b76;
  border-right: 1px solid #5b5b76;
  border-top: 1px solid #5b5b76;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
body.page-cities .view-tour-schedule .field-name-tour-schedule-logo-image {
  display: block;
  height: 120px;
  width: 215px;
}
body.page-cities .view-tour-schedule .field-name-tour-schedule-logo-image img {
  border-left: 1px solid #5b5b76;
  border-right: 1px solid #5b5b76;
  border-top: 1px solid #5b5b76;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
body.page-cities .view-tour-schedule .field-name-title {
  background: #0C869E;
  border-left: 1px solid #5b5b76;
  border-right: 1px solid #5b5b76;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  width: 215px;
}
body.page-cities .view-tour-schedule .field-name-title h2 {
  font-family: 'Oswald';
  font-weight: 400;
  font-size: 18px;
  height: 28px;
  line-height: 34px;
  margin: 0px;
  padding: 0px;
}
body.page-cities .view-tour-schedule .field-name-field-show-dates {
  background: #0C869E;
  border-left: 1px solid #5b5b76;
  border-right: 1px solid #5b5b76;
  color: #fff;
  font-size: 14px;
  font-family: 'Oswald';
  font-weight: 400;
  padding-bottom: 6px;
  text-align: center;
  width: 215px;
}
body.page-cities .view-tour-schedule .group-left {
  background: #efefdf;
  border-bottom: 1px solid #5b5b76;
  border-left: 1px solid #5b5b76;
  border-bottom-left-radius: 10px;
  width: 107px;
}
body.page-cities .view-tour-schedule .field-name-tour-schedule-buy-tickets-link a {
  background: #F47A20;
  color: #32251E;
  display: block;
  font-weight: bold;
  font-size: 11px;
  height: 30px;
  line-height: 26px;
  margin: 5px 3px 6px 7px;
  padding: 4px 20px 0px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 56px;
  font-family: 'Oswald';
}
body.page-cities .view-tour-schedule .field-name-tour-schedule-buy-tickets-link a:hover {
  text-decoration: underline;
}
body.page-cities .view-tour-schedule .group-right {
  background: #efefdf;
  border-bottom: 1px solid #5b5b76;
  border-right: 1px solid #5b5b76;
  border-bottom-right-radius: 10px;
  bottom: 0px;
  position: absolute;
  right: -2px;
  width: 108px;
}
body.page-cities .view-tour-schedule .field-name-tour-schedule-more-link a {
  background: #FBB673;
  color: #32251E;
  display: block;
  font-weight: bold;
  font-size: 11px;
  height: 23px;
  line-height: 14px;
  margin: 5px 5px 6px 5px;
  padding: 5px 10px 0px 10px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 76px;
  font-family: 'Oswald';
}
body.page-cities .view-tour-schedule .field-name-tour-schedule-more-link a:hover {
  text-decoration: underline;
}
body.page-cities .view-mode-tour_schedule_past .field-name-tour-schedule-more-link {
  background: #efefdf;
  border-bottom: 1px solid #5b5b76;
  border-left: 1px solid #5b5b76;
  border-right: 1px solid #5b5b76;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-top: 0px;
  padding-top: 6px;
  width: 215px;
}

body.section-cities .view-tour-schedule .node-city {
  margin: 20px 10px 10px 10px;
  position: relative;
  width: 215px;
}
body.section-cities .view-tour-schedule table {
  margin-top: 0;
}
body.section-cities .view-tour-schedule .field-name-field-show-image {
  display: block;
  height: 120px;
  width: 215px;
}
body.section-cities .view-tour-schedule .field-name-field-show-image img {
  border-left: 1px solid #5b5b76;
  border-right: 1px solid #5b5b76;
  border-top: 1px solid #5b5b76;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
body.section-cities .view-tour-schedule .field-name-tour-schedule-logo-image {
  display: block;
  height: 120px;
  width: 215px;
}
body.section-cities .view-tour-schedule .field-name-tour-schedule-logo-image img {
  border-left: 1px solid #5b5b76;
  border-right: 1px solid #5b5b76;
  border-top: 1px solid #5b5b76;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
body.section-cities .view-tour-schedule .field-name-title {
  background: #012c44;
  border-left: 1px solid #5b5b76;
  border-right: 1px solid #5b5b76;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  width: 215px;
}
body.section-cities .view-tour-schedule .field-name-title h2 {
  font-family: 'Oswald';
  font-weight: 400;
  font-size: 18px;
  height: 28px;
  line-height: 34px;
  margin: 0px;
  padding: 0px;
}
body.section-cities .view-tour-schedule .field-name-field-show-dates {
  background: #012c44;
  border-left: 1px solid #5b5b76;
  border-right: 1px solid #5b5b76;
  color: #fff;
  font-size: 14px;
  font-family: 'Oswald';
  font-weight: 400;
  padding-bottom: 6px;
  text-align: center;
  width: 215px;
}
body.section-cities .view-tour-schedule .group-left {
  background: #efefdf;
  border-bottom: 1px solid #5b5b76;
  border-left: 1px solid #5b5b76;
  border-right: 1px solid #5b5b76;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 215px;
}
body.section-cities .view-tour-schedule .field-name-tour-schedule-buy-tickets-link {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
body.section-cities .view-tour-schedule .field-name-tour-schedule-buy-tickets-link a {
  background: none;
  color: #32251E;
  display: block;
  font-weight: bold;
  font-size: 11px;
  height: 23px;
  line-height: 26px;
  margin: 5px 5px 6px 5px;
  padding: 5px 10px 0px 10px;
  text-align: center;
  text-decoration: underline;
  text-transform: uppercase;
  width: 95%;
  font-family: 'Oswald';
}
body.section-cities .view-tour-schedule .field-name-tour-schedule-buy-tickets-link a:hover {
  text-decoration: underline;
}
body.section-cities .view-tour-schedule .group-right {
  display: none;
}
body.section-cities .view-tour-schedule .field-name-tour-schedule-more-link {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
body.section-cities .view-tour-schedule .field-name-tour-schedule-more-link a {
  background: none;
  color: #32251E;
  display: block;
  font-weight: bold;
  font-size: 11px;
  height: 23px;
  line-height: 14px;
  margin: 5px 5px 6px 5px;
  padding: 5px 10px 0px 10px;
  text-align: center;
  text-decoration: underline;
  text-transform: uppercase;
  width: 90%;
  font-family: 'Oswald';
}
body.section-cities .view-tour-schedule .field-name-tour-schedule-more-link a:hover {
  text-decoration: underline;
}
body.section-cities .view-tour-schedule .hide_buy_tickets {
  display: none;
}
body.section-cities .view-tour-schedule .large_more_link {
  width: 215px;
}
body.section-cities .view-tour-schedule .large_more_link a {
  width: 184px;
}
body.section-cities .view-mode-tour_schedule_past .field-name-tour-schedule-more-link {
  background: #efefdf;
  border-bottom: 1px solid #5b5b76;
  border-left: 1px solid #5b5b76;
  border-right: 1px solid #5b5b76;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-top: 0px;
  padding-top: 6px;
  width: 215px;
}

body.page-cities-archive .view-tour-schedule .field-name-title {
  background: #003;
}
body.page-cities-archive .view-tour-schedule .field-name-tour-schedule-more-link a {
  background: #f59345;
  color: #fff;
}
body.page-cities-archive .view-tour-schedule .field-name-tour-schedule-buy-tickets-link a {
  background: #c00;
  color: #fff;
  width: 160px !important;
}
body.page-cities-archive .view-tour-schedule .group-right {
  display: none !important;
}
body.page-cities-archive .view-tour-schedule .group-left {
  width: 215px;
  border-bottom: 1px solid #5b5b76;
  border-right: 1px solid #5b5b76;
  border-bottom-right-radius: 10px;
}
body.page-cities-archive .view-tour-schedule tr.row-1 td.col-1 .node-city {
  background: url(../images/the_tour_hero.png) no-repeat 2px 10px;
}
body.page-cities-archive .view-tour-schedule .field-name-field-show-dates {
  background: #003;
}

/* -----------------------------------------------------
Responsive
----------------------------------------------------- */
@media (min-width: 992px) {
  body.front #main {
    width: 970px;
    margin: auto;
  }
  body.front #header-container {
    width: 970px;
    margin: auto;
  }
  body.front #footer {
    width: 970px;
    margin: auto;
  }

  #main {
    width: 970px;
    margin: auto;
  }

  #header-container {
    width: 970px;
    margin: auto;
  }

  #footer {
    width: 970px;
    margin: auto;
  }

  #block-menu-menu-ticket {
    display: none;
  }

  .row-3x1, .front-headline {
    margin: auto;
    width: 970px;
  }

  .paragraph-3x1 {
    display: inline;
    float: left;
    width: 310px;
  }

  .paragraph-3x1 img {
    border: 2px solid white;
    margin: 10px 0px;
    text-align: center;
    width: 310px;
  }

  .row-3x1 .column-1 {
    margin-right: 17.75px;
  }

  .row-3x1 .column-3 {
    margin-left: 17.75px;
  }
}
@media (max-width: 992px) {
  body.node-type-city .node-city .group-left {
    width: 100%;
  }
  body.node-type-city .node-city .group-right {
    width: 100%;
  }

  div#block-menu-menu-app-links {
    height: 225px;
  }

  input#edit-submitted-email {
    width: 160px;
  }

  .region-bottom-content .block-block {
    height: 225px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  body.front #main {
    width: 750px;
    margin: auto;
  }
  body.front #header-container {
    width: 750px;
    margin: auto;
  }
  body.front #footer {
    width: 750px;
    margin: auto;
  }

  #main {
    width: 750px;
    margin: auto;
  }

  #header-container {
    width: 750px;
    margin: auto;
  }

  #footer {
    width: 750px;
    margin: auto;
  }

  #header {
    height: 80px;
  }
  #header .region-header {
    margin: 15px 0 0 15px;
    float: right;
  }

  #block-menu-menu-ticket {
    display: inline-block;
    float: left;
    font-size: 16px;
    border: 2px solid #c41230;
    margin: 5px 0;
  }
  #block-menu-menu-ticket ul {
    padding: 0;
    margin: 0;
  }
  #block-menu-menu-ticket li {
    list-style: none;
    text-decoration: none;
  }
  #block-menu-menu-ticket li a {
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 10px;
    height: 15px;
    display: block;
    color: #000;
    font-family: 'open-sans-condensed';
    font-size: 20px;
  }

  .mean-container .mean-nav {
    background: #333333;
    position: absolute;
    margin-top: 51px;
    width: 300px;
    right: 0;
  }
  .mean-container .mean-nav ul {
    position: static;
  }
  .mean-container .mean-nav ul li a {
    padding: 8px 5%;
    border-top: 2px solid #fff;
    font-size: 14px;
  }
  .mean-container .mean-nav ul li a:hover {
    background: none;
  }
  .mean-container .mean-nav ul li a.mean-expand {
    height: 20px;
    border: 0 !important;
    background: none;
    font-size: 9px !important;
    padding: 7px 10px !important;
  }
  .mean-container .mean-nav ul li a.mean-expand:hover {
    background: none;
    color: #fff;
  }
  .mean-container .mean-nav ul li:hover {
    background: #c41230;
  }
  .mean-container .mean-nav ul li li {
    background: #ff9934;
    height: 30px;
    line-height: 0px;
    color: #fff;
  }
  .mean-container .mean-nav ul li li:hover {
    background: #ff9934;
    height: 30px;
    line-height: 0px;
    color: #fff;
  }
  .mean-container .mean-nav ul li li a {
    color: #fff;
    opacity: 1;
    font-size: 14px;
  }
  .mean-container .mean-nav ul li li a:hover {
    color: #fff;
    opacity: 1;
    font-size: 14px;
  }
  .mean-container .mean-bar {
    background: transparent;
    width: 70px;
    float: right;
    margin-top: 10px;
  }
  .mean-container a.meanmenu-reveal span {
    background: #c41230;
    margin-top: 0px;
    margin-bottom: 4px;
    width: 28px;
    height: 4px;
  }

  .menu-name-menu-header-top-menu ul li a:hover {
    color: #fff;
  }

  a.meanmenu-reveal.meanclose {
    color: #c41230;
  }

  body.page-cities .view-tour-schedule .node-city {
    margin: auto;
  }

  body.section-cities .view-tour-schedule .node-city {
    margin: auto;
  }

  .view-tour-schedule.view-id-tour_schedule.view-display-id-block_1 td {
    width: 49%;
    display: inline-block;
    float: left;
    height: 245px;
    box-sizing: border-box;
  }

  body.page-brands .view-brands td {
    background-position: 0px 10px;
    background-size: 180px 115px;
    border-left: 1px solid #fff;
  }
  body.page-brands .view-brands .views-field-field-subtitle {
    width: 185px;
  }

  body.page-sponsors .view-sponsors td {
    background-position: 0px 10px;
    background-size: 180px 115px;
    border-left: 1px solid #fff;
  }
  body.page-sponsors .view-sponsors .views-field-field-subtitle {
    width: 185px;
  }

  .view-id-motorcycleshows_blog .views-field-title {
    padding-top: 15px;
  }
  .view-id-motorcycleshows_blog .views-field.views-field-view-node {
    margin-top: 20px;
  }

  #paragraph-front .front-headline, #paragraph-front .row-3x1 {
    margin: auto;
    width: 750px;
  }

  #paragraph-front .paragraph-3x1 {
    float: left;
    display: inline-block;
    width: 238px;
  }

  #paragraph-front .paragraph-3x1 img {
    border: 2px solid white;
    margin: 10px 0px;
    text-align: center;
    width: 233px;
  }

  .row-3x1 .column-1 {
    margin-right: 17.75px;
  }

  .row-3x1 .column-3 {
    margin-left: 17.75px;
  }
}
@media (max-width: 767px) {
  #page {
    max-width: 768px;
  }

  #block-block-3 {
    width: 748px;
  }

  #header .region-header {
    margin: 38px 0 0 0;
    float: right;
  }

  body.front #block-ims-brand-carousel-brand-carousel {
    background-repeat: no-repeat;
    background-position: top center;
  }

  #stay-connected table tbody tr:nth-child(2) td:nth-child(1) input {
    width: 200px;
  }

  .region-bottom-content .block-block {
    width: 100%;
    height: initial;
  }
  .region-bottom-content .block-block h2.block__title.block-title {
    margin: 50px 20px;
    width: auto;
  }

  body.page-cities .view-tour-schedule .node-city {
    width: 165px;
  }
  body.page-cities .view-tour-schedule tr.row-1 td.col-1 .node-city {
    height: 184px;
    background-size: contain;
  }
  body.page-cities .view-tour-schedule .field-name-field-show-image {
    width: 165px;
  }
  body.page-cities .view-tour-schedule .field-name-tour-schedule-logo-image {
    width: 165px;
  }
  body.page-cities .view-tour-schedule .field-name-title {
    width: 165px;
  }
  body.page-cities .view-tour-schedule .field-name-field-show-dates {
    width: 165px;
  }
  body.page-cities .view-tour-schedule .group-right {
    width: 88px;
  }
  body.page-cities .view-tour-schedule .field-name-tour-schedule-more-link a {
    width: 55px;
  }
  body.page-cities .view-tour-schedule .field-name-tour-schedule-buy-tickets-link a {
    padding: 4px 20px 0 7px;
  }

  body.section-cities .view-tour-schedule .node-city {
    width: 165px;
  }
  body.section-cities .view-tour-schedule tr.row-1 td.col-1 .node-city {
    height: 184px;
    background-size: contain;
  }
  body.section-cities .view-tour-schedule .field-name-field-show-image {
    width: 165px;
  }
  body.section-cities .view-tour-schedule .field-name-tour-schedule-logo-image {
    width: 165px;
  }
  body.section-cities .view-tour-schedule .field-name-title {
    width: 165px;
  }
  body.section-cities .view-tour-schedule .field-name-field-show-dates {
    width: 165px;
  }
  body.section-cities .view-tour-schedule .group-right {
    width: 88px;
  }
  body.section-cities .view-tour-schedule .field-name-tour-schedule-more-link a {
    width: 55px;
  }
  body.section-cities .view-tour-schedule .field-name-tour-schedule-buy-tickets-link a {
    padding: 4px 20px 0 7px;
  }

  body.page-brands .view-brands td {
    width: 181px;
    background-size: 175px;
    background-position: 5px 0;
  }
  body.page-brands .view-brands .views-field-field-brand-logo img {
    transform: scale(0.6);
  }
  body.page-brands .view-brands .views-field-field-subtitle {
    width: 181px;
    bottom: -5px;
  }

  body.page-sponsors .view-sponsors td {
    width: 181px;
    background-size: 175px;
    background-position: 5px 0;
  }
  body.page-sponsors .view-sponsors .views-field-field-subtitle {
    width: 181px;
    bottom: -5px;
  }

  #partdealSelect a {
    margin-right: 10px;
  }

  .block-webform {
    width: 100%;
    padding: 0;
  }
  .block-webform .form-actions {
    clear: none;
    display: inline;
  }

  .connected-field.form-item.webform-component-email {
    width: 100%;
    max-width: 270px;
    display: block;
    float: none;
    margin: auto;
  }

  .connected-field.form-item.webform-component--zip-code {
    width: 100px;
  }

  .connected-field.webform-component--country {
    width: 100px;
  }

  input#edit-submitted-email {
    width: inherit;
  }

  div#block-menu-menu-app-links {
    width: 100%;
    padding: 0;
  }

  #outer_container {
    padding-top: 0;
  }

  header#header {
    padding: 0;
    background: none;
  }

  #header .region-header {
    margin: 20px;
  }
  #header .menu-name-menu-header-social-links {
    display: block;
    top: 10px;
    left: 20px;
    z-index: 999999;
  }
  #header .menu-name-menu-header-social-links ul li a {
    display: block;
    height: 25px;
    text-indent: -9999px;
    width: 25px;
  }
  #header .menu-name-menu-header-social-links ul li.menu-mlid-429 a {
    background: url(../images/ims-youtube.png) no-repeat 0px 2px;
    width: 31px;
    background-size: contain;
  }

  .views-slideshow-controls-bottom {
    display: none;
  }

  #main {
    padding: 0 15px;
  }

  #logo {
    width: 150px;
    padding: 10px 0 10px 15px;
    height: 60px;
  }

  #block-menu-menu-ticket {
    display: inline-block;
    float: left;
    font-size: 16px;
    border: 2px solid #c41230;
    margin: 5px 0;
  }
  #block-menu-menu-ticket ul {
    padding: 0;
    margin: 0;
  }
  #block-menu-menu-ticket li {
    list-style: none;
    text-decoration: none;
  }
  #block-menu-menu-ticket li a {
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 10px;
    height: 20px;
    display: block;
    color: #000;
    font-family: 'open-sans-condensed';
    font-size: 20px;
  }

  .mean-container .mean-nav {
    background: #333333;
    position: absolute;
    margin-top: 45px;
    right: 0;
  }
  .mean-container .mean-nav ul {
    position: static;
  }
  .mean-container .mean-nav ul li a {
    padding: 8px 5%;
    border-top: 2px solid #fff;
    font-size: 14px;
  }
  .mean-container .mean-nav ul li a:hover {
    background: none;
  }
  .mean-container .mean-nav ul li a.mean-expand {
    height: 20px;
    border: 0 !important;
    background: none;
    font-size: 9px !important;
    padding: 7px 10px !important;
  }
  .mean-container .mean-nav ul li a.mean-expand:hover {
    background: none;
    color: #fff;
  }
  .mean-container .mean-nav ul li:hover {
    background: #c41230;
  }
  .mean-container .mean-nav ul li li {
    background: #ff9934;
    height: 30px;
    line-height: 0px;
    color: #fff;
  }
  .mean-container .mean-nav ul li li:hover {
    background: #ff9934;
    height: 30px;
    line-height: 0px;
    color: #fff;
  }
  .mean-container .mean-nav ul li li a {
    color: #fff;
    opacity: 1;
    font-size: 14px;
  }
  .mean-container .mean-nav ul li li a:hover {
    color: #fff;
    opacity: 1;
    font-size: 14px;
  }
  .mean-container .mean-bar {
    margin-top: 0;
    background: #333333;
  }
  .mean-container a.meanmenu-reveal span {
    margin-top: 0px;
    margin-bottom: 4px;
    width: 28px;
    height: 4px;
  }

  a.meanmenu-reveal {
    margin-right: 20px;
  }

  .menu-name-menu-header-top-menu ul li a:hover {
    color: #fff;
  }

  a.meanmenu-reveal.meanclose {
    color: #c41230;
  }

  #footer {
    padding: 20px 0px;
  }
  #footer .block-menu-block {
    width: 100%;
    float: none;
    text-align: center;
    display: inline-block;
  }
  #footer .block-menu-block .menu-block-wrapper {
    width: 100%;
    margin: auto;
    display: inline-block;
  }
  #footer .menu li {
    display: inline-block;
    padding: 0px 5px;
  }
  #footer .menu li ul.menu {
    display: none;
  }
  #footer .menu li ul.menu li {
    display: none;
  }
  #footer .block {
    width: 100%;
    width: 100%;
    float: none;
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
  }
  #footer .block p {
    display: inline-block;
  }
  #footer .block h2 {
    display: none;
  }
  #footer .menu-block-wrapper.menu-block-2.menu-name-menu-header-social-links.parent-mlid-0.menu-level-1 {
    width: 230px;
    display: inline-block;
    position: static;
  }

  body.front #footer {
    padding: 20px 0px;
  }

  #footer .menu-name-menu-footer-menu-5 li.last {
    height: 85px;
  }
  #footer .menu-name-menu-footer-menu-5 li.last a {
    background-position: center;
  }

  li.menu__item.is-leaf.first.leaf.menu-mlid-951 {
    width: 100%;
  }

  li.menu__item.is-leaf.last.leaf.menu-mlid-523 {
    width: 100%;
  }

  li.menu__item.is-leaf.last.leaf.menu-mlid-526 {
    width: 100%;
  }

  .menu-name-menu-header-social-links ul li {
    margin: 0 5px;
  }

  body.node-type-city .field-name-features-by-city td {
    width: 50%;
    display: block;
    box-sizing: border-box;
    padding: 5px !important;
    float: left;
  }
  body.node-type-city .field-name-features-by-city table {
    width: 100%;
  }
  body.node-type-city .field-name-features-by-city .field-name-field-feature-image a img {
    margin: auto;
  }
  body.node-type-city .field-name-features-by-city .field-name-field-feature-thumbnail a img {
    margin: auto;
  }
  body.node-type-city .field-name-features-by-city .field-name-field-image a img {
    margin: auto;
  }
  body.node-type-city .field-name-features-by-city .field-name-title h2 {
    margin: 0 auto 10px;
    width: 100%;
    display: inherit;
    max-width: 215px;
  }
  body.node-type-city .field-name-features-by-city .field-name-field-page-title .field-item {
    margin: 0 auto 10px;
    width: 100%;
    display: inherit;
    max-width: 215px;
  }
  body.node-type-city .node-city .field-name-field-hours .field-item {
    float: left;
    margin: 0px 0 0 0;
    width: 100px;
  }
  body.node-type-city .node-city .field-name-field-prices .field-label {
    width: 305px;
  }

  body.node-type-attractions-page .view-attractions td {
    width: 50%;
    display: block;
    box-sizing: border-box;
    padding: 5px !important;
    float: left;
  }
  body.node-type-attractions-page .view-attractions table {
    width: 100%;
  }
  body.node-type-attractions-page .field-name-field-feature-thumbnail a img {
    margin: auto;
  }
  body.node-type-attractions-page .field-name-field-page-title .field-item {
    margin: 0 auto 10px;
    width: 100%;
    display: inherit;
    max-width: 215px;
  }

  #block-views-tour-schedule-block-2 {
    display: block;
  }

  #block-views-tour-schedule-block-1 {
    display: none;
  }

  body.page-cities .view-tour-schedule .node-city {
    width: 100%;
    margin: 0;
  }

  body.section-cities .view-tour-schedule .node-city {
    width: 100%;
    margin: 0;
  }
  body.section-cities .view-tour-schedule .group-left {
    background: transparent;
    border: 0;
  }

  .view-display-id-page .field-name-tour-schedule-buy-tickets-link a {
    line-height: 60px !important;
  }

  .section-cities .field-name-tour-schedule-buy-tickets-link a {
    line-height: 60px !important;
  }

  body.page-brands .view-brands td {
    width: 50%;
    background: transparent;
    float: left;
    box-sizing: border-box;
  }
  body.page-brands .view-brands .views-field-field-subtitle {
    bottom: -10px;
    left: 0;
    right: 0;
    text-align: center;
    width: 100%;
  }
  body.page-brands .views-field.views-field-field-brand-logo {
    border-radius: 25px 0 25px 0;
    border: 1px solid #cecece;
    height: 100px;
  }

  body.page-sponsors .view-sponsors td {
    width: 50%;
    background: transparent;
    float: left;
    box-sizing: border-box;
  }
  body.page-sponsors .view-sponsors .views-field-field-subtitle {
    bottom: -10px;
    left: 0;
    right: 0;
    text-align: center;
    width: 100%;
  }

  .view-id-motorcycleshows_blog .views-field-field-blog-image {
    width: 100%;
    height: initial;
  }
  .view-id-motorcycleshows_blog .views-field-field-blog-image img {
    height: initial;
    width: 100%;
  }
  .view-id-motorcycleshows_blog .views-field.views-field-body {
    padding-right: 25px;
  }
  .view-id-motorcycleshows_blog .views-field.views-field-view-node {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .view-id-motorcycleshows_blog .views-field-title {
    padding: 0 30px;
  }
  .view-id-motorcycleshows_blog .views-field-title a {
    font-size: 22px;
  }

  .view-id-motorcycleshows_blog .views-field.views-field-created {
    width: 100%;
    padding: 10px 35px;
    box-sizing: border-box;
    padding-bottom: 0px;
  }

  .view-id-motorcycleshows_blog .views-field.views-field-created-1 {
    width: 100%;
    padding: 10px 35px;
    box-sizing: border-box;
    padding-top: 0;
  }

  .view-id-motorcycleshows_blog .views-field.views-field-title {
    width: 100%;
    padding: 10px 35px;
    box-sizing: border-box;
  }

  .view-id-motorcycleshows_blog .views-field.views-field-body {
    width: 100%;
    padding: 10px 35px;
    box-sizing: border-box;
  }

  .view-id-motorcycleshows_blog .views-field.views-field-view-node {
    width: 100%;
    padding: 10px 35px;
    box-sizing: border-box;
  }

  .node-type-blog-post .field-name-instagram-link {
    left: 48px;
  }

  .ds-2col-stacked.node-blog-post > .group-left {
    width: 100%;
    padding: 0;
  }
  .ds-2col-stacked.node-blog-post > .group-right {
    width: 100%;
    padding: 0;
  }

  #block-menu-block-6 {
    height: inherit;
  }
}
body.ismobiledevice #imageData #imageDetails {
  width: 70%;
  float: left;
  text-align: left;
}

#paragraph-front .paragraph-3x1 img {
  border: 2px solid white;
  margin: 10px 0px;
}

.field-name-field-paragraph-media-asset-1, .field-name-field-paragraph-media-asset-2, .field-name-field-paragraph-media-asset-3 {
  text-align: center;
}

body.node-type-city a.mobile-3-button {
  color: #000;
  text-decoration: none;
  width: 100%;
  padding: 9px 20px !important;
  height: 40px;
  font-family: 'Oswald';
  font-size: 14px;
  border: 2px solid #000;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  margin: 1px;
  vertical-align: middle;
}
body.node-type-city a.mobile-3-button.last {
  padding-bottom: 17px;
  padding-top: 3px;
}

/* hide show gallery for past shows */
body.past-show-version #mobile-3-buttons .mobile-3-button:first-child {
  display: none;
}

/*
  OPEN SANS EXTRA BOLD
  font-family: 'open-sans';
  font-weight: 800;
  
  OPEN SANS BOLD
  font-family: 'open-sans';
  font-weight: 700;
  
  OPEN SANS SEMI BOLD
  font-family: 'open-sans';
  font-weight: 600;

  OPEN SANS CONDENSED
  font-family: 'open-sans-condensed';
  font-weight: 300;
  
  OPEN SANS CONDENSED BOLD
  font-family: 'open-sans-condensed';
  font-weight: 700;
*/
