/**
 * global.styles.css
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * The first part of this file is normalize.css with a few modifications to make
 * it work with the Adaptivetheme theme settings, these are commented and there
 * are only a few minor changes.
 *
 * http://github.com/necolas/normalize.css
 *
 * The approach with normalize is to modify it to suit your design, rather than
 * overriding its defaults.
 *
 * Additionally there are many empty selectors and base styles to act as a guide
 * or examples of how you can style Drupal. Nothing is set in stone, you can
 * change anything you want, even delete all of it and start with your own
 * clean slate.
 *
 * Now hack this CSS!
 */

/* =============================================================================
   HTML5 display definitions
   ========================================================================== */

/**
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}


/**
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;

}

audio,
video {
  width: 100%;  
}

/**
 * Prevents modern browsers from displaying 'audio' without controls
 * Remove excess height in iOS5 devices
 */

audio:not([controls]) {
  display: none;
  height: 0;
}


/**
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */

[hidden] {
  display: none;
}


/* =============================================================================
   Base
   ========================================================================== */

/*
 * Notes for the HTML and BODY elements:
 *
 * Font Family:
 * If you are using the themes Responsive JS feature (media_queries.js) do not
 * set a font-family on the html element, use body.
 *
 * Font Size:
 * Default font size set in theme settings applies to the body elemet, using any
 * thing other than the 100% reset on the HTML element will result in odd font
 * sizing - only apply a global font size to the body element, or just use the
 * theme settings.
 *
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html {
  font-size: 100%; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  /* -ms-text-size-adjust: 100%;  2 - Commented, can cause text rendering issues in IE9 */
  line-height: 150%;
  height: 100%;
  overflow-y: scroll;
}


/* NOTE: Default font size set in theme settings applies to the body element
   so be carefu. */

/**
 * 1. Addresses margins handled incorrectly in IE6/7
 */

body {
  min-height: 100%;
  margin: 0; /* 1 */
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility\9; /* Only IE, can mess with Android */
  background: #fff;
  font-family: 'Crimson Text', Georgia, "Times new roman";
  font-size: 17px;
}


/**
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 *
 * EDIT: removed html element from this stack, it does not play with AT's theme
 * settings for fonts and Responsive JavaScript implementations.
 */

button,
input,
select,
textarea {
  font-family: sans-serif;
}


/* =============================================================================
   Links
   ========================================================================== */

/**
 * Addresses outline displayed oddly in Chrome
 */

a:focus {
  outline: thin dotted;
}


/**
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */

a:hover,
a:active {
  outline: 0;
}

.pane-page-content .pane-content a {
  color: #eb1c23;
  text-decoration: none;
}


/* =============================================================================
   Typography
   ========================================================================== */

/**
 * Font Theme Settings
 *
 * Adaptivetheme includes powerful theme settings for adding webfonts and
 * setting font sizes - you can enable these under "Site Tweaks", simply enable
 * the Fonts setting and start using them. You can choose from standard websafe
 * font stacks, Google fonts, add your own custom stacks, and if you have
 * @font-your-face module installed just set the font to...
 *
 * "-- add selector in theme CSS --"
 *
 * ...and the font will automatically be available to you in theme settings.
 *
 * @see http://drupal.org/project/fontyourface
 *
 * Font Stacks
 *
 * These are the font stacks that used for the websafe fonts
 * in theme settings (if you enabled the Fonts feature). They are
 * included here for easy reference if you prefer to set your fonts
 * in CSS.
 *
 * font-family: 'Trebuchet MS', 'Helvetica Neue', Arial, Helvetica, sans-serif;
 * font-family: Verdana, Geneva, 'DejaVu Sans', Arial, Helvetica, sans-serif;
 * font-family: Arial, Helvetica, sans-serif;
 * font-family: Calibri, Candara, Arial, Helvetica, sans-serif;
 * font-family: 'Segoe UI', 'Myriad Pro', Myriad, Arial, Helvetica, sans-serif;
 * font-family: 'Lucida Sans Unicode', 'Lucida Sans', 'Lucida Grande', Verdana, Geneva, sans-serif;
 * font-family: Impact, Haettenschweiler, 'Franklin Gothic Bold', Charcoal, 'Helvetica Inserat', 'Bitstream Vera Sans Bold', 'Arial Black', sans-serif;
 * font-family: Garamond, Perpetua, 'Times New Roman', serif;
 * font-family: Georgia, Baskerville, Palatino, 'Palatino Linotype', 'Book Antiqua', 'Times New Roman', serif;
 * font-family: Consolas, Monaco, 'Courier New', Courier, monospace, sans-serif;
 */

/**
 * Addresses font sizes and margins set differently in IE6/7
 * Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}


h2 {
  font-size: 24px;
  margin: 5px 0;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  padding: 0;
  clear: both;
  display: block;
  line-height: 100%;
}


h3 {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 100%;
  margin-top: 10px;
}


h4 {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 100%;
  margin-top: 10px;
}


h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}


h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}


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


/**
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
 */

b,
strong {
  font-weight: bold;
}


blockquote {
  margin: 1em 40px;
}


/**
 * Addresses styling not present in S5, Chrome
 */

dfn {
  font-style: italic;
}


/**
 * Addresses styling not present in IE6/7/8/9
 */

mark {
    background: #ff0;
    color: #000;
}


/**
 * Addresses margins set differently in IE6/7
 */

p,
pre {
    margin-bottom: 20px;
    margin-top: 0;
}


/**
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */

pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}


/**
 * Improves readability of pre-formatted text in all browsers
 */

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}


/**
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */

/* 1 */
q {
  quotes: none;
}


/* 2 */
q:before,
q:after {
  content: '';
  content: none;
}


small {
  font-size: 75%;
}


/**
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}


sup {
  top: -0.5em;
}


sub {
  bottom: -0.25em;
}


/* =============================================================================
   Lists
   ========================================================================== */

/**
 * Addresses margins set differently in IE6/7
 */

dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0 0 0 40px;
}


/**
 * Addresses paddings set differently in IE6/7
 */

menu {
  padding: 0 0 0 40px;
}

ol,
ul {
  padding: 0 0 0 42px;
}

ul {
  list-style-type: square;
}

li {
  margin-bottom: 15px;
}

ol li {
  padding-left: 10px;
}

ol li:before {
  font-size: 24px;
  font-weight: 300;
}

/**
 * Corrects list images handled incorrectly in IE7
 */

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}


/* =============================================================================
   Embedded content
   ========================================================================== */

/**
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img {
  /* border: 0;  1 : Drupal core already does this, uncomment if you need it */
  -ms-interpolation-mode: bicubic; /* 2 */
}


/**
 * Corrects overflow displayed oddly in IE9
 */

svg:not(:root) {
  overflow: hidden;
}


/* =============================================================================
   Figures
   ========================================================================== */

/**
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */

figure {
  margin: 0;
}


/* =============================================================================
   Forms
   ========================================================================== */

/**
 * Corrects margin displayed oddly in IE6/7
 */

form {
  margin: 0;
}


/**
 * Define consistent border, margin, and padding
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}


/**
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3
 * 3. Corrects alignment displayed oddly in IE6/7
 */

legend {
  border: 0; /* 1 */
  padding: 0;
  white-space: normal; /* 2 */
  *margin-left: -7px; /* 3 */
}


/**
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */

button,
input,
select,
textarea {
  font-size: 100%; /* 1 */
  margin: 0; /* 2 */
  vertical-align: baseline; /* 3 */
  *vertical-align: middle; /* 3 */
}


/**
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */

button,
input {
  line-height: normal; /* 1 */
}


/**
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer; /* 1 */
    -webkit-appearance: button; /* 2 */
    *overflow: visible;  /* 3 */
}


/**
 * Re-set default cursor for disabled elements
 */

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


/**
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
      Known issue: excess padding remains in IE6
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
  *height: 13px; /* 3 */
  *width: 13px; /* 3 */
}


/**
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}


/**
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}


/**
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}


/**
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */

textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}


/* =============================================================================
   Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells
 */

table {
  border: 1px solid;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: inherit;
  font: 100%;
  margin: 10px 0;
  padding: 0;
  width: 100%;
}


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


table.sticky-header {
  z-index: 10;
}


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


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


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


tbody {
}


tr.even,
tr.odd {
  background: transparent;
}


/* Table row striping */
thead tr {
  font-weight: 700;
  background-color: #f2f2f2;
  background-color: rgba(0, 0, 0, .15);
}


tr.even,
tr.info,
tr:nth-child(2n+2) {
  background-color: #f5f5f5;
  background-color: rgba(0, 0, 0, .075);
}


tr.even {
}


tr.drag {
}


tr.drag-previous {
}


tr.odd td.active {
  background-color: #eee;
}


tr.even td.active {
  background-color: #f7f7f7;
  background-color: rgba(0, 0, 0, 0.2);
}


/* IE doesn't display borders on table rows */
.lt-ie8 tr.even th,
.lt-ie8 tr.even td,
.lt-ie8 tr.odd th,
.lt-ie8 tr.odd td {
  border-bottom: 1px solid #ccc;
}


/**
 * Forum tables
 */

/* Core sets white-space to nowrap, which makes no sense at all */
#forum td.created,
#forum td.posts,
#forum td.topics,
#forum td.last-reply,
#forum td.replies,
#forum td.pager {
  white-space: normal;
}


/* =============================================================================
   Page Styling
   ========================================================================== */

/**
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .more-link, etc.
 */

/* Page wrapper, includes the .container class which sets the overall page or
   section width */
#page  {
}


/* Main site header */
#header {
}


/* Wraps the 3 vertical columns - content, sidebar-first and sidebar-second */
#columns {
}


/* Floats the main content column */
#content-column {
}


/* Wraps the main-content-header, the content region and feed-icons. Use this
   wrapper to style the entire main content column */
#main-content  {
}


/* Wraps the content region, avoid applying styles to this wrapper, its used
   mainly for position and invisible gutters and can be problematic to style */
#content {
}


/* Main site footer. */
#footer {
}


/* Region wrapper, anything that adds width or positioning can break the layout! */
.region {
}


/* Add borders or other width to the region-inner */
.region-inner {
}


/* Regions can be nested, such as when using Panels module */
.region-inner .region-inner  {
}


/* AT Panels may need additional margin wrangling when in the content region */
#content .at-panel {
}


/* Logo */
#logo {
  padding: 10px 0;
}


#logo img {
  vertical-align: bottom;
}


/* hgroup wrapper for website name and slogan, be careful with display properties
   as this can be hidden */
#name-and-slogan {
}


/* The name of the website */
#site-name {
  margin: 0;
}


#site-name a:link,
#site-name a:visited {
  text-decoration: none;
}


#site-name a:hover,
#site-name a:focus {
}


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


/* Wrapper for any blocks placed in the header region. */
.region-header {
}


/* Highlighted region */
.region-highlighted {
}


/* Wraps the page title, tabs and actions links. */
#main-content-header {
}


/* The title of the page. */
#page-title {
  margin: 0;
}


/* Important messages (status, warning, and error) for the user. See also the
   declarations in messages.css. */
div.messages  {
  margin: 15px 10px; /* Drupal core uses "6px 0" margin */
}


/* Multiple message of the same type are output as a list */
div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}


/* Normal priority messages */
div.status {
}


/* Medium priority messages */
div.warning,
tr.warning  {
}


/* High priority messages. See also the .error declaration below */
div.error,
tr.error  {
}


/* Errors that are separate from div.messages status messages */
.error {
}


/* Warnings that are separate from div.messages status messages */
.warning {
}


/* Unpublished nodes - set here to supply a global style in one place */
.node-unpublished,
.comment-unpublished {
}


/* The word "Unpublished" displayed underneath the content */
.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
  color: pink; /* target browsers that do not support rgba */
  color: rgba(239, 170, 170, 0.4);
  font-family: Impact, Haettenschweiler, 'Franklin Gothic Bold', Charcoal, 'Helvetica Inserat', 'Bitstream Vera Sans Bold', 'Arial Black', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
}


/* Otherwise these elements will appear below the "Unpublished" text. */
.lt-ie8 .node-unpublished > *,
.lt-ie8 .comment-unpublished > * {
  position: relative;
}


/* Help text on a page */
.region-help {
}


/* Link to more help */
.more-help-link  {
}


/* Wrapper for the actual page content */
.region-content {
}


/* Akin to a content-bottom region */
.region-aside {
}


/* List of links generated by theme_links(). */
ul.links  {
  margin: 0;
  padding: 0;
}


/* Let the links be inline, but the container be a block. */
ul.links.inline {
  display: block;
}


ul.links li {
  display: inline;
  list-style-type: none;
  padding: 0 10px 0 0; /* LTR */
}


/* The link to the RSS or Atom feed for the current list of content */
.feed-icon {
}


/* Aggregator, blog, and forum more link */
.more-link  {
}


/* Aggregator feed source */
#aggregator .feed-source .feed-icon {
  display: inline;
  float: none;
  margin-right: 10px;
}
.feed-details dt,
.feed-details dd {
  display: inline;
  margin: 0;
}


/* Search results are an ordered list so we reset the margin */
.search-results  {
  margin: 0;
}


/*
 * First sidebar
 * Remember to NOT add padding or margin to your .region-sidebar-first.
 */

.region-sidebar-first {
}


/*
 * Second sidebar
 * Remember to NOT add padding or margin to your .region-sidebar-second.
 */

.region-sidebar-second {
}


/*
 * Full Width Wrappers - these are used in the optional
 * page--full-width-wrappers.tpl.php template.
 */

#page-wrapper {
}


#leaderboard-wrapper {
}


#header-wrapper {
  background: #ddd; /* Debug style, is this working? */
}


#nav-wrapper {
}


#breadcrumb-wrapper {
}


#messages-help-wrapper {
}


#secondary-content-wrapper {
}


#content-wrapper {
}


#tertiary-content-wrapper {
}


#footer-wrapper {
  background: #666; /* Debug style, is this working? */
  color: #fff; /* Debug style, is this working? */
}


/* Maintenance pages */
.maintenance-page .container {
  padding: 40px 0;
}


.maintenance-page #site-name,
.maintenance-page #page-title {
  margin: 0;
}


.db-offline .container {
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  max-width: 960px;
}


.db-offline div.messages {
  margin: 20px 0 0;
}


.db-offline #content {
  padding: 20px 0;
}


/* =============================================================================
   Navigation Styling - menus, breadcrumbs, tasks, action links, pager etc
   ========================================================================== */

a {}
a:link    {}
a:visited {}
a:hover   {}
a:active  {}
a.active  {}


/* Global focus style for links. */
a:active,
a:focus {}


/*
 * Primary, Secondary and Menu Bar region menus
 * Use one of the following id's for granular control:
 *
 * #menu-bar (menu bar region)
 * #primary-menu (main menu)
 * #secondary-menu (secondary/user menu)
 *
 * You can target all of these with .nav or div[id$="menu-bar"]
 */

.nav {
  clear:both;
  margin: 10px 0;
}


.nav ul.menu {
  margin: 0;
}


.nav li,
.nav .menu li {
  display: inline;
  float: left;
  list-style: none;
}


.nav li a,
.nav .menu li a {
  display: block;
  white-space: nowrap;
  padding: 0 10px;
}


.nav ul,
.nav ul.menu,
.nav ul.menu li {
  margin: 0;
  padding: 0;
}


/* Menu bar block */
.nav .block {
  margin-bottom: 0;
}


/*
 * Superfish
 */

ul.sf-menu {
  margin-bottom: 0;
}


ul.sf-menu a {
  border-left: 0;
  border-top: 0;
  padding: 0 10px;
  text-decoration: none;
  height: 2.5em;
  line-height: 2.5em;
}


ul.sf-menu a:link,
ul.sf-menu a:visited  {
}


ul.sf-menu li:hover,
ul.sf-menu li.sfHover,
ul.sf-menu a:focus,
ul.sf-menu a:hover,
ul.sf-menu a:active {
  outline: 0;
}


/* Prevent momentary display of sub menus
ul.sf-vertical li ul,
ul.sf-horizontal li ul,
ul.sf-navbar li ul ul {
  display: none;
}
*/


/* Superfish blocks */
.block-superfish .block-inner,
.block-superfish .block-inner .content {
}


.block-superfish ul,
.block-superfish ul ul,
.block-superfish ul ul ul,
.block-superfish ul ul ul ul,
.block-superfish li {
  margin: 0 !important;
  padding: 0 !important;
}


/* Superfish - Vertical style */
.sf-vertical,
.sf-vertical li {
  width: 100%;
}


.sf-vertical li {}
.sf-vertical li.last {}
.sf-vertical li:hover ul,
.sf-vertical li.sfHover ul {
  left: 100%; /* match ul width */
  top:  0;
  margin: 0;
  padding: 0;
}


.sf-vertical li a {
  padding: 0 10px;
}


/* Superfish - Navbar style */
.sf-navbar {
  padding-bottom: 0 !important;
}


/* Sensible padding for the default style */
.sf-menu.sf-style-default a {
  padding: 0 10px;
}


/*
 * Menus
 */

ul.menu {
  padding-left: 15px;
}


ul.menu ul,
ul.menu ul ul,
ul.menu ul ul ul {
  padding-left: 15px;
  margin: 0;
}


ul.menu li {
  margin: 0;
}


ul.menu li.collapsed {
}


ul.menu li.expanded {
}


ul.menu li.leaf {
}


ul.menu li.first {
}


ul.menu li.last  {
}


/*
 * Adaptivetheme can generate .menu-dept classes on li elements, such as
 * .menu-depth-2. To enable this feature you must turn on Extensions in theme
 * settings, then enable Markup Overrides.
 */
ul.menu li.menu-depth-1 {
}


/*
 * Adaptivetheme can generate .menu-item classes on li elements using the menu
 * link id (mlid), such as .menu-item-123, to enable this feature you must turn
 * on Extensions in theme settings, then enable Markup Overrides.
 */
ul.menu li.menu-item-1 {
}


/* Menu item anchors */
ul.menu li a:link,
ul.menu li a:visited {
}


ul.menu li a:hover,
ul.menu li a:focus,
ul.menu li a:active  {
}


ul.menu li.active a  {
}


ul.menu li.active-trail a {
}


.block .menu li.content {
  padding: 0; /* this class (if it exists) could be a problem so reset the padding */
}


/* Book navigation menu */
.book-navigation .menu {
}


/*
 * Adaptivetheme outputs breadcrumbs as an ordered list. This provides better
 * semantics for breadcrumbs and familiar markup to themers. Breadcrumbs are
 * basically a menu displayed inline, so we mark it up like a real menu.
 */
#breadcrumb {
  margin: 10px 0;
}


#breadcrumb ol {
  margin: 0;
  padding: 0;
}


/* If the label is set to show in theme settings the label class is added */
#breadcrumb .breadcrumb-label {
  font-size: 1em;
  display: inline;
  padding-right: 10px;
}


#breadcrumb .breadcrumb-label:after {
  content: ":";
}


#breadcrumb .with-breadcrumb-label ol {
  display: inline;
}


#breadcrumb li {
  list-style: none;
  display: inline;
}


#breadcrumb a {
}


#breadcrumb a:link,
#breadcrumb a:visited {
}


#breadcrumb a:hover,
#breadcrumb a:focus,
#breadcrumb a:active {
}


/* Pager */
ul.pager {
  clear: both;
  margin: 0;
  text-align: center;
}


.item-list ul.pager li {
  margin: 0;
}


ul.pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: .5em;
}


ul.pager li.pager-current {
  font-weight: 700;
}


.block ul.pager li {
  margin: 0;
}


/* Theme the various states of pager links. */
ul.pager li a:link,
ul.pager li a:visited {
}


ul.pager li a:hover,
ul.pager li a:focus,
ul.pager li a:active {
}


/* Note: .pager-current is for the current page. */
ul.pager li.pager-item  {
}


ul.pager li.first {
}


ul.pager li.last {
}


ul.pager li.pager-current {
}


ul.pager li.pager-first {
}


ul.pager li.pager-previous {
}


ul.pager li.pager-next {
}


ul.pager li.pager-last {
}


/*
 * Skip Navigation - this provides a nice default set of styles for skip navigation,
 * hiding the link until its focused.
 */
#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50;
}


#skip-link a,
#skip-link a:link,
#skip-link a:visited {
  background: #444;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}


#skip-link a:hover,
#skip-link a:focus,
#skip-link a:active {
  outline: 0;
}


/* Tabs */
#tasks {
  margin-bottom: 20px;
}


ul.primary {
  border-bottom-color:#ccc;
  margin: 20px 0;
  padding: 0 0 0 5px;
}


ul.primary li {
  display: block;
  float: left;
  margin: 0 1px -1px;
}


ul.primary li a {
  background-color: #f5f5f5;
  border-color: #ccc;
  margin-right: 1px;
  padding: 0 10px;
  display: block;
  float: left;
  height: 1.5em;
  line-height: 1.5em;
}


ul.primary li a:hover,
ul.primary li a:focus {
  background-color: #eee;
  border-color: #ccc;
}


ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  background-color: #fff;
  border-bottom-color: #fff;
}


ul.secondary {
  border-bottom: 1px solid #ccc;
  margin: 15px 0 0;
  padding: 0 4px 15px;
}


ul.secondary li {
  border-right: 0;
  list-style: none;
  padding: 0 10px 0 0;
}


ul.secondary li a:hover,
ul.secondary li a.active {
  border-bottom: none;
  text-decoration: underline;
}


/* Action links */
ul.action-links {
  padding: 0;
  list-style: none;
}


ul.action-links li {
}


/* Custom collapse */

fieldset.collapse-text-fieldset {
  border: none;
  overflow: hidden;
  display: block;
  min-height: 65px !important;
  padding: 0;
  margin-bottom: 15px;
}
fieldset.collapse-text-fieldset .fieldset-legend span.summary {
  display: none;
}
fieldset.collapse-text-fieldset legend {
  width: 100%;
}
fieldset.collapse-text-fieldset.collapsed .fieldset-title {
  background: url(../images/expand_icon.svg) no-repeat; 
  background-position: 2% center;
  background-size: 24px 23px;
}
fieldset.collapse-text-fieldset .fieldset-title {
  font-size: 24px;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  padding: 15px 0 15px 0;
  display: block;
  width: 100%;
  padding-left: 55px;
  color: #000;
  background: url(../images/close_icon.svg) no-repeat;
  background-position: 2% center;
  background-size: 24px 23px;
}
fieldset.collapse-text-fieldset .fieldset-legend {
  background-color: #e8e7e7 !important;
  height: auto;
  overflow: hidden;
  padding-left: 0 !important;
  background-image: none !important;
}
fieldset.collapse-text-fieldset .fieldset-wrapper {
  padding: 10px 55px 15px 55px;
}

/* Book navigation */
.book-navigation {
}


.book-navigation .page-links {
}


.book-navigation .page-previous {
}


.book-navigation .page-next {
}


.book-navigation .page-up {
  /* Prevent text wrapping to a new line, assumes English "up" is used (two characters) */
  min-width: 2em;
  white-space: nowrap;
}



/* =============================================================================
   Field Styling
   ========================================================================== */

/* Wrapper for any field */
.field {
}


/* Fields with visible labels use section wrappers */
section.field {
}


/* Fields without lablel use div wrappers */
div.field {
}


/*
 * Field Lables
 */

/* Above and inline classes are on the field wrapper */
.field-label-above  {
}


/* When labels are set to inline in field display settings the clearfix class is automatically added */
.field-label-inline  {
}


/* Lables are h2 in Adaptivetheme. Use a strong selector to mitigate unwanted ineritance issues */
.field .field-label  {
  font-size: 1em;
  font-weight: 700;
  font-family: inherit;
  line-height: inherit;
  margin: 0;
}


/*
 * Field types (Core)
 */

/* Image fields use the <figure> and <figcaption> elements from HTML5 */
.field-type-image {
  margin-bottom: 1.5em;
}


/* The .caption class is applied to all captions regardless of view mode */
.field .caption {
}


/* View mode full. */
.field .full-caption {
}


/* View mode teaser. */
.field .teaser-caption {
}


/* Taxonomy fields are output as an unordered list in Adaptivetheme */
.field-type-taxonomy-term-reference {
  margin-bottom: 1.5em;
}


.field-type-taxonomy-term-reference .field-items {
}


.field-type-taxonomy-term-reference .field-item {
}


/* Restyle the list when the label is inline */
.field-type-taxonomy-term-reference.field-label-inline .field-items {
  margin: 0;
  padding: 0;
}


.field-type-taxonomy-term-reference.field-label-inline .field-item {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0; /* LTR */
}


.field-type-text {
}


.field-type-text-long {
}


.field-type-text-with-summary {
}


.field-type-file {
}


.field-type-number-integer {
}


.field-type-number-decimal {
}


.field-type-number-float {
}


.field-type-list-text {
}


.field-type-list-boolean {
}


.field-type-list-integer {
}


.field-type-list-float {
}


/*
 * Field types (Contrib)
 */

.field-type-datetime {
}


.field-type-node-reference {
}


.field-type-user-reference {
}


/*
 * Named fields
 */

.field-name-body H2, 
.field-name-body H3, 
.field-name-body H4 {
  margin-bottom: 25px;
}


.field-name-field-image {
}


.field-name-field-tags {
}


/* Your custom fields: underscores in field name are replaced with dashes */
.field-name-field-FIELDNAME {
}


/*
 * Image Alignment Theme Settings
 * These are included here so you can easily override them if required
 */

/* Float none setting */
.ia-n .field-type-image {
}


/* Float left setting */
.ia-l .field-type-image {
  margin: 0.5em 15px 1.5em 0;
}


/* Centered setting */
.ia-c .field-type-image {
  margin: 0.5em auto 1.5em;
}


/* Float right setting */
.ia-r .field-type-image {
  margin: 0.5em 0 1.5em 15px;
}


/* =============================================================================
   Block Styling
   ========================================================================== */

/* Block wrapper */
.block {
  margin-bottom: 20px;
}


/* Block inner wrapper, used mainly for gutter margins */
.block-inner {
}


/* The first block in the region */
.block.first {
}


/* The last block in the region */
.block.last {
}


/* Zebra striping for each block in the region */
.block.odd {
}


/* Zebra striping for each block in the region */
.block.even {
}


/* Block title */
.block-title {
  margin: 0;
}


/* Block content wrapper */
.block-content {
}


/* Match item list and block menu margin and padding */
.block-content ul,
.block-content ol {
  padding: 0 0 0 15px;
}


/* Match item list and block menu margin and padding */
.block-content li {
  margin: 0;
  padding: 0;
}


/* Block for the latest news items in the first category */
#block-aggregator-category-1 {
}


/* Block for the latest news items in the first feed */
#block-aggregator-feed-1 {
}


/* First block created with "Add block" link */
#block-block-1 {
}


/* "Recent blog posts" block */
#block-blog-recent {
}


/* "Book navigation" block for the current book's table of contents */
#block-book-navigation {
}


/* "Recent comments" block */
#block-comment-recent {
}


/* "Active forum topics" block */
#block-forum-active {
}


/* "New forum topics" block */
#block-forum-new {
}


/* Language switcher block */
#block-locale-language {
}


/* Custom menu block  */
#block-menu-menu-NAME {
}


/* "Recent content" block */
#block-node-recent {
}


/* "Syndicate" block for primary RSS feed; see also page.css's .feed-icon */
#block-node-syndicate {
}


/* "Most recent poll" block */
#block-poll-recent {
}


/* "Author information" block for the profile of the page's author */
#block-profile-author-information {
}


/* "Search form" block */
#block-search-form {
}


/* "Shortcuts" block */
#block-shortcut-shortcuts {
}


/* "Popular content" block */
#block-statistics-popular {
}


/* "Main menu" block */
#block-system-main-menu {
}


/* "Management" block for Drupal management menu */
#block-system-management {
}


/* "Navigation" block for Drupal navigation menu */
#block-system-navigation {
}


/* "User menu" block for Drupal user menu */
#block-system-user-menu {
}


/* "System help" block */
#block-system-help {
}


/* "Main page content" block */
#block-system-main {
}


/* "Powered by Drupal" block */
#block-system-powered-by {
}


/* "User login form" block */
#block-user-login {
}


/* "Who's new" block for a list of the newest users */
#block-user-new {
}


/* "Who's online" block for a list of the online users */
#block-user-online {
}


/* =============================================================================
   Node Styling
   ========================================================================== */

/* Node wrapper */
.node  {
  margin-bottom: 20px;
}


/* Preview of the content before submitting new or updated content */
.preview .node {
  /* background-color: #ffffea; Drupal core uses a #ffffea background */
}


/* A node that has been promoted to the front page */
.node-promoted {
}


/* A sticky node (displayed before others in a list) */
.node-sticky {
}


/* A node created by the current user */
.node-by-viewer {
}


/* A node displayed as teaser */
.node-teaser {
}


/* Zebra stripe node lists */
.node.odd {
}


.node.even {
}


/*
 * All nodes are given a node-[content-tyopt] class. If you create a new content
 * type called "my-custom-type", it will receive a "node-my-custom-type" class.
 */

/* Page content node */
.node-page {
}


/* Article content node */
.node-article {
}


/* Book content node */
.node-book {
}


/* Forum content node */
.node-forum {
}


/* Poll content node */
.node-poll {
}


/* Node title */
.node-title {
  margin: 0;
}


/* The picture of the node author */
.node .user-picture {
}


/* The "posted by" information */
.node .submitted {
}


/* The "posted by" user */
.node .submitted .username {
}


/* The "posted by" datetime wrapper */
.node .submitted  time {
}


/* Node's content wrapper */
.node .node-content {
}


/* Node links. See also the ul.links declaration in the pages.css. */
.node ul.links  {
}


/* Classes to style links */
.node ul.links li a {}
.node ul.links li.node-read-more a {}
.node ul.links li.comment-add a {}
.node ul.links li.comment-comments a {}
.node ul.links li.comment-new-comments a {}
.node ul.links li.blog-sernames-blog a {}
.node ul.links li.print-html a {}
.node ul.links li.print-email a {}
.node ul.links li.print-pdf a {}


/* =============================================================================
   Comment Styling - Comments, comment wrapper, comment form
   ========================================================================== */

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


/* Heading for the list of comments */
#comments h2.comment-title {
  margin: 0;
}


/* Heading for the comment form */
#comments h2.comment-form {
  margin: 0;
}


/* Wrapper for a single comment */
.comment {
  margin-bottom: 20px;
}


/* Preview of the comment before submitting new or updated comment */
.comment-preview {
  background-color: #ffffea;
}


/* The first comment in the list of comments */
.comment.first {
}


/* The last comment in the list of comments */
.comment.last {
}


/* An odd-numbered comment in the list of comments */
.comment.odd {
}


/* An even-numbered comment in the list of comments */
.comment.even {
}


/* Comment is new for the current user */
.comment-new {
}


/* A comment created by an anonymous user */
.comment-by-anonymous {
}


/* A comment created by the node's author */
.comment-by-node-author {
}


/* A comment created by the current user */
.comment-by-viewer {
}


/* The comment title is hidden using element-invisible */
.comment-title-hidden {
}


/* Comment user picture are enabled */
.comment-with-picture {
}


/* User signatures are enabled */
.comment-with-signature {
}


/* Comment title */
.comment-title {
  margin: 0;
}


/* "New" marker for comments that are new for the current user */
.new {
  color: #c00;
}


/* The picture of the comment author */
.comment .user-picture {
}


/* The "posted by" information wrapper (uses the footer element) */
.comment .submitted {
}


/* Submitted by elements are wrapped in a paragraph, is the equivalent to .comment footer.submitted > p */
.comment .submitted p {
}


/* Submitted by user name is wrapped in a span or an link depending on user permissions to view user profiles */
.comment .submitted .username {
}


/* Submitted by time element */
.comment .submitted time  {
}


/* The user's signature */
.comment .user-signature {
}


/* Comment links. See also the ul.links declaration in the pages.css. */
.comment ul.links {
}


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


/* =============================================================================
   Misc overrides for contrib modules
   ========================================================================== */

/* Admin menu overrides */
#admin-menu {
  margin: 0;
  padding: 0;
}


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


/* Styleguide module tweaks */
#styleguide-header {
  padding: 0 10px;
}


#styleguide-header .item-list {
  font-family: inherit;
  margin: 0 20px 20px 0;
  min-height: 260px;
  width: auto;
}

/* Custom */

.media-element.file-full-width.image-style-full-width-embed {
  max-width: 840px;
  width: 100%;
}
.media-element.file-half-width.image-style-half-width-embed {
  max-width: 420px;
  width: 100%;
}
.media-element.file-quarter-width.image-style-quarter-width-embed {
  max-width: 210px;
  width: 100%;
}

body.logged-in .one-column.at-panel.panel-display {
  position: relative;
}
body.logged-in.page-order .pane-page-content,
body.logged-in .pane-pane-messages,
body.logged-in.page-search .pane-page-content {
  margin-top: 220px;
}
body.logged-in .pane-page-content {
  margin-top: 190px;
}
body.logged-in.page-search-calendar .pane-page-content {
  margin-top: 0;  
}

ol {
  list-style-type: none;
  padding-left: 0;
}
ol li {
  overflow: hidden;
  padding-left: 40px;
}
ol .number-element {
  margin-right: 17px;
  float: left;
  display: inline-block;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 20px;
  margin-top: 2px;
}
ol .text-element {
  float: left;
  display: inline-block;
  width: 95%;
}

.block-edit-cta {
  display: inline-block;
  float: right;
  position: absolute;
  top: -30px;
  right: 0;
  text-decoration: none;
  color: #eb1c23;
  font-size: 18px;
  background: #fff;
  padding: 3px 6px;
  line-height: 100%;
}

.pane-page-content {
  margin-top: 100px;
}

.pane-pane-messages #tasks {
  margin-top: 110px;
}

.banner-text {
  font-size: 24px;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  line-height: 125%;
  background: #582c6a;
  color: #fff;
  padding: 15px 32px;
  margin-bottom: 15px;
}

.button-link {
  margin-bottom: 20px;
}
.button-link a {
  color: #000 !important;
  text-decoration: none;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 22px;
  text-decoration: none;
  padding: 10px 23px;
  border: 2px solid #a6a3a3;
  display: inline-block;
  width: auto;
}
.button-link a:hover {
  color: #fff !important;
  background: #eb1c23;
  border: 2px solid #eb1c23;
}

.view-content-list-order,
.view-display-id-page_1 {
  max-width: 1200px;
  margin: 0 auto;
}

.pager-show-more-next a {
  text-transform: uppercase;
  font-size: 22px;
  padding: 10px 16px;
  border: 2px solid #a6a3a3;
  display: inline-block;
  width: auto;
  color: #000 !important;
  text-decoration: none !important;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
}
.pager-show-more-next a:hover {
  color: #fff !important;
  background: #eb1c23;
  border: 2px solid #eb1c23;
}

.styledSelect {
  padding: 13px 18px 13px 37px;
  color: #1f1e1d;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 22px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #d4d4d4;
  background-image:url(../images/filter-arrow.svg);
  background-repeat: no-repeat;
  background-position: center left 16px;
  display: block;
  min-width: 166px;
}
.styledSelect.active {
  background-image:url(../images/filter-arrow-up.svg);  
}
#edit-field-speaker-tid-wrapper .styledSelect {
  min-width: 0;
  padding: 14px 23px 14px 37px;
  line-height: 100%;
}
.custom-options {
  display: none;
  padding: 0;
  background: #d4d4d4;
  list-style-type: none;
  position: absolute;
  width: 100%;
  z-index: 10;
  margin-top: 0;
  max-width: 260px !important;
}
.custom-options li {
  padding: 8px 37px 16px 37px;
  border-top: none;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 22px;
  margin-bottom: 0;
}
.custom-options li:hover {
  color: #fff;
  background: #eb1c23;
}

.views-widget-filter-combine input {
  width: 95%;
  border: 1px solid #d4d4d4;
  padding: 9px 12px;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 22px;
  color: #000;
  background: url(../images/search_icon_alt.svg) no-repeat;
  background-position: center right 17px;
}

.publish-info {
  margin-top: 5px;
  margin-bottom: 15px;
}
.publish-date {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
}

.bef-select-as-links .form-type-bef-link {
  display: inline-block;
  float: left;
  margin-right: 10px;
}
.bef-select-as-links .form-type-bef-link a {
  color: #000;
}
.bef-select-as-links .form-type-bef-link:last-child {
  margin-right: 0;
}
.bef-select-as-links a {
  padding: 14px 18px;
  background: #d4d4d4;
  line-height: 100%;
  display: block;
  font-size: 17px;
  font-family: 'Open Sans Condensed', Arial;
  text-transform: uppercase;
  color: #000;
  margin: 0;
  text-decoration: none;
}
.bef-select-as-links a.active,
.bef-select-as-links a:hover {
  background: #eb1c23;
  color: #fff;  
}

.ajax-progress.ajax-progress-throbber {
  position: absolute;
}
.ajax-progress .throbber {
	width: 17px;
	height: 17px;
	border-radius: 50%;
	margin: 1em;
	display: inline-block;
	position: relative;
	vertical-align: middle;
}
.ajax-progress .throbber {
	width: 17px;
	height: 17px;
	border-radius: 50%;
	margin: 1em;
	display: inline-block;
	position: relative;
	vertical-align: middle;
}
.ajax-progress .throbber,
.ajax-progress .throbber:before,
.ajax-progress .throbber:after {
	animation: 1.15s infinite ease-in-out;
		-o-animation: 1.15s infinite ease-in-out;
		-ms-animation: 1.15s infinite ease-in-out;
		-webkit-animation: 1.15s infinite ease-in-out;
		-moz-animation: 1.15s infinite ease-in-out;
}
.ajax-progress .throbber:before,
.ajax-progress .throbber:after {
	width: 100%; 
	height: 100%;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}
.ajax-progress .throbber:before,
.ajax-progress .throbber:after {
		content: "";
}
.ajax-progress .throbber {
		background-color: white;
		animation: cssload-flower-fan 0.46s infinite linear;
		-o-animation: cssload-flower-fan 0.46s infinite linear;
		-ms-animation: cssload-flower-fan 0.46s infinite linear;
		-webkit-animation: cssload-flower-fan 0.46s infinite linear;
		-moz-animation: cssload-flower-fan 0.46s infinite linear;
}
.ajax-progress .throbber:before{
	content: "";
	width: 80%;
	height: 80%;
	background-color: white;
	top: 10%;
	left: 10%;
	box-shadow: 2px -1px 0 rgba(255,100,100,0.7),
				2px 2px 0 rgba(100,255,100,0.7),
				-1px 2px 0 rgba(100,100,255,0.7),
				-2px -2px 0 rgba(240,240,120,0.7);
		-o-box-shadow: 2px -1px 0 rgba(255,100,100,0.7),
				2px 2px 0 rgba(100,255,100,0.7),
				-1px 2px 0 rgba(100,100,255,0.7),
				-2px -2px 0 rgba(240,240,120,0.7);
		-ms-box-shadow: 2px -1px 0 rgba(255,100,100,0.7),
				2px 2px 0 rgba(100,255,100,0.7),
				-1px 2px 0 rgba(100,100,255,0.7),
				-2px -2px 0 rgba(240,240,120,0.7);
		-webkit-box-shadow: 2px -1px 0 rgba(255,100,100,0.7),
				2px 2px 0 rgba(100,255,100,0.7),
				-1px 2px 0 rgba(100,100,255,0.7),
				-2px -2px 0 rgba(240,240,120,0.7);
		-moz-box-shadow: 2px -1px 0 rgba(255,100,100,0.7),
				2px 2px 0 rgba(100,255,100,0.7),
				-1px 2px 0 rgba(100,100,255,0.7),
				-2px -2px 0 rgba(240,240,120,0.7);
}
.ajax-progress .throbber:after{
	content: "";
	border: 1px solid white;
	z-index: 2;
	top: -1px;
	left: -1px;
}
@keyframes cssload-flower-fan {
	0%	 { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
@-o-keyframes cssload-flower-fan {
	0%	 { -o-transform: rotate(0deg); }
	100% { -o-transform: rotate(360deg); }
}
@-ms-keyframes cssload-flower-fan {
	0%	 { -ms-transform: rotate(0deg); }
	100% { -ms-transform: rotate(360deg); }
}
@-webkit-keyframes cssload-flower-fan {
	0%	 { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes cssload-flower-fan {
	0%	 { -moz-transform: rotate(0deg); }
	100% { -moz-transform: rotate(360deg); }
}

.quickedit-form.quickedit-highlighted,
.quickedit-field .quickedit-highlighted {
  border: none;
  box-shadow: none;
  background: #f5f5f5;
  width: 100%;
  max-width: 100%;
}
.quickedit-field.quickedit-highlighted {
  border: none;
  box-shadow: none;
  background: #f5f5f5;
  width: 100%;
  max-width: 100%;
}
.quickedit-field.quickedit-editable {
  border: 2px #333 dashed;
  box-shadow: none;
}

.sticky-jump-to #jump-to-section {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 70px;
  z-index: 50;
}

/* Site Header Top */
.logged-in #mobile-menu {
  display: none;
}
.pane-site-header-top {
  height: 39px;
  overflow: hidden;
  margin-bottom: 0;
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
}
.site-alert-up .pane-site-header-top {
  top: 57px !important;
}
.minimized-menu.site-alert-up .pane-site-header {
  top: 0 !important;
}
.site-alert-up .pane-site-header {
    top: 95px !important;
}
.site-alert-up .qtip.qtip-fixed {
  top: 204px !important;
}
.qtip.qtip-visible {
  display: block !important;
  opacity: 1 !important;
}
.minimized-menu .pane-site-header {
  position: fixed;
  top: 0;
  background: #fff;
}
#mini-panel-site_header_top {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}
#mini-panel-site_header_top .region-one-main{
  background: url(../images/quick-menu-link-bg.jpg) repeat-x;
  margin-bottom: 0;
}
#mini-panel-site_header_top .pane-inner {
  margin: 0;
}

/* Site Header */
.pane-site-header {
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  top: 39px;
}

#mini-panel-site_header {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  -webkit-box-shadow: 0px 8px 39px -6px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 8px 39px -6px rgba(0,0,0,0.75);
  box-shadow: 0px 8px 39px -6px rgba(0,0,0,0.75);
}

#mini-panel-site_header .pane-block-1 {
  width: 30%;
  float: left;
  text-align: center;
  background: #fff;
  height: 110px;
  margin-bottom: 0;
  -webkit-transition: height 200ms;
  -moz-transition:  height 200ms;
  -o-transition:  height 200ms;
  transition:  height 200ms;
}
.minimized-menu #mini-panel-site_header .pane-block-1 {
  height: 70px;
}
#mini-panel-site_header .pane-block-1 .pane-content p {
  margin: 12px 0 0 0;
}
.minimized-header-logo {
  display: none;
}
.full-header-logo {
  display: block;
}
.minimized-menu .minimized-header-logo {
  display: block;
}
.minimized-menu .full-header-logo {
  display: none;
}
.minimized-menu #mini-panel-site_header .pane-block-1 .pane-content p {
  margin: 7px;
}


#mini-panel-site_header .pane-system-main-menu .pane-inner {
  margin: 0;
}
#mini-panel-site_header .pane-system-main-menu {
  width: 70%;
  float: right;
  background: #000;
  color: #fff;
  height: 110px;
  margin-bottom: 0;
  -webkit-transition: height 200ms;
  -moz-transition:  height 200ms;
  -o-transition:  height 200ms;
  transition:  height 200ms;
}
.minimized-menu #mini-panel-site_header .pane-system-main-menu {
  height: 70px;  
}
#mini-panel-site_header .pane-system-main-menu ul.menu {
  padding: 0 6.9%;
  height: 110px;
  margin: 0;
}
#mini-panel-site_header .pane-system-main-menu ul.menu ul {
  display: none;
}
.minimized-menu #mini-panel-site_header .pane-system-main-menu ul.menu {
  height: 70px;
}
#mini-panel-site_header .pane-system-main-menu ul.menu li {
  list-style-type: none;
  display: inline-block;
  float: left;
  margin-right: 9%;
  padding: 0;
}
#mini-panel-site_header .pane-system-main-menu ul.menu li.active {
  background: url(../images/active-link-tip.png) no-repeat;
  background-position: center 87px;
}
.minimized-menu #mini-panel-site_header .pane-system-main-menu ul.menu li.active {
  background-position: center 57px;
}
#mini-panel-site_header .pane-system-main-menu ul.menu li:last-child {
  margin-right: 0;
}
#mini-panel-site_header .pane-system-main-menu ul.menu li a {
  color: #fff;
  text-decoration: none;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 110px;
  display: block;
  cursor: pointer;
}
.minimized-menu #mini-panel-site_header .pane-system-main-menu ul.menu li a {
  height: 70px;
  line-height: 70px;
}

.pane-menu-menu-secondary-navigation {
  float: right;
  display: inline-block;
  width: auto;
}
.pane-menu-menu-secondary-navigation ul.menu {
  float: right;
  margin: 5px 0px;
  height: auto;  
} 
.pane-menu-menu-secondary-navigation ul.menu li {
  list-style-type: none;
  display: inline-block;
  float: left;
}
.pane-menu-menu-secondary-navigation ul.menu li:after {
  content: "/";
  color: #fff;
  font-size: 16px;
}
.pane-menu-menu-secondary-navigation ul.menu li:last-child:after {
  content: "";
}
.pane-menu-menu-secondary-navigation ul.menu li a {
  color: #fff;
  font-family: 'Crimson Text', Georgia, "Times new roman";
  text-decoration: none;
  padding: 0 13px;
  font-size: 16px;
}

#header-search-block {
  width: 40px;
  float: right;
  margin: 0;
  padding: 0;
  display: inline-block;
  overflow: hidden;
  -webkit-transition:width 10ms ease-in-out, height 10ms ease-in-out;
  -moz-transition:width 10ms ease-in-out, height 10ms ease-in-out;
  -o-transition:width 10ms ease-in-out, height 10ms ease-in-out;
  transition:width 10ms ease-in-out, height 10ms ease-in-out; 
  position: relative;
  height: 40px;
}
#header-search-block.active {
  width: 220px;
  background: #fff;
}
#header-search-block #views-exposed-form-search-search-api-panel-pane-1 #edit-keyword-wrapper {
  display: none;
}
#header-search-block.active #views-exposed-form-search-search-api-panel-pane-1 #edit-keyword-wrapper {
  padding: 0;
  width: 179px;
  float: left;
  display: block;
  overflow: hidden;
}
#header-search-block #views-exposed-form-search-search-api-panel-pane-1 #edit-keyword {
  width: 100%;
  border: none;
  height: auto;
  margin: 0;
  padding-left: 20px;
  display: block;
  max-width: 89%;
  font-family: 'Crimson Text', Georgia, "Times new roman";
  font-size: 16px;
  color: #000;
  text-transform: none;
}
#header-search-block #views-exposed-form-search-search-api-panel-pane-1 .views-submit-button {
  width: 28px;
  float: left;
  padding: 0;
  margin: 0;
  height: 40px;
}
#header-search-block #views-exposed-form-search-search-api-panel-pane-1 #edit-submit-search-search-api {
  height: 40px;
  width: 100%;
  text-indent: -9999px;
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  background: url(../images/search_icon.svg) no-repeat;
  background-position: center center;
}
#header-search-block.active #views-exposed-form-search-search-api-panel-pane-1 #edit-submit-search-search-api {
  background: url(../images/search_icon_active.svg) no-repeat; 
  background-position: center center;
}
#header-search-block #views-exposed-form-search-search-api-panel-pane-1 #edit-keyword:focus,
#header-search-block #views-exposed-form-search-search-api-panel-pane-1 #edit-submit-search-search-api:focus {
  outline: none;
}
#header-search-block #views-exposed-form-search-search-api-panel-pane-1 {
  border: none;
}

/* Homepage slide */
.front .pane-header-slider-panel-pane-2 {
  margin-top: 100px;
  -webkit-box-shadow: 0px 23px 39px 1px rgba(221,221,221,1);
  -moz-box-shadow: 0px 23px 39px 1px rgba(221,221,221,1);
  box-shadow: 0px 23px 39px 1px rgba(221,221,221,1);
}
.front .pane-header-slider-panel-pane-2 .pane-inner {
  margin-left: 0;
  margin-right: 0;
}
.front .view-header-slider .views-slideshow-cycle-main-frame,
.front .view-header-slider .views-slideshow-cycle-main-frame-row,
.front .view-header-slider .views-slideshow-cycle-main-frame-row img {
  width: 100% !important;
}
.front .view-header-slider .views-field-nothing {
  max-width: 720px;
  margin: 0 auto;
  position: absolute;
  z-index: 110;
  left: 0;
  right: 0;
  margin-top: -130px;
  background: #fff;
  height: 105px;
  overflow: hidden;
  padding: 15px 120px 70px 120px;
  width: 100%;
  -webkit-box-shadow: 0px 23px 35px -5px rgba(221,221,221,1);
  -moz-box-shadow: 0px 23px 35px -5px rgba(221,221,221,1);
  box-shadow: 0px 23px 35px -5px rgba(221,221,221,1);
}
.front .view-header-slider .views-slideshow-pager-fields {
  margin: -175px auto 0 auto;
}
.front .view-header-slider .slide-title a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 45px;
  color: #eb1c23;
  text-align: center;
  text-decoration: none;
  display: block;
  line-height: 150%;
  margin-bottom: 5px;
}
.front .view-header-slider .slide-text {
  text-align: center;
  margin-bottom: 5px;
  font-size: 18px;
}
.front .view-header-slider .slide-link a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 18px;
  color: #eb1c23;
  display: block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.front .view-header-slider .views-slideshow-controls-text-next a {
  float: right;
  display: inline-block;
  position: relative;
  margin-top: 0;
  background: url(../images/slideshow_arrow_alt_right.svg) no-repeat;
}
.front .view-header-slider .views-slideshow-controls-text-previous a {
  float: left;
  display: inline-block;
  position: relative;
  margin-top: 0;
  background: url(../images/slideshow_arrow_alt_left.svg) no-repeat;
}
.front .view-header-slider .views-slideshow-controls-text {
    position: absolute;
    z-index: 20;
    margin-top: -55px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: 970px;
}

/* Header slide */
.view-header-slider .views-slideshow-cycle-main-frame,
.view-header-slider .views-slideshow-cycle-main-frame-row,
.view-header-slider .views-slideshow-cycle-main-frame-row img {
  width: 100% !important;
}
.view-header-slider .views-slideshow-controls-text-next a {
  display: block;
  width: 33px;
  height: 55px;
  text-indent: -999999px;
  background: url(../images/slideshow_arrow_right.svg) no-repeat;
  position: absolute;
  margin-top: auto;
  margin-bottom: auto;
  top: 0;
  bottom: 0;
  z-index: 10;
  right: 30px;
  background-position: center;
}
.view-header-slider .views-slideshow-controls-text-previous a {
  display: block;
  width: 33px;
  height: 55px;
  text-indent: -999999px;
  background: url(../images/slideshow_arrow_left.svg) no-repeat;
  position: absolute;
  margin-top: auto;
  margin-bottom: auto;
  top: 0;
  bottom: 0;
  z-index: 10;
  left: 30px;
  background-position: center;
}
.view-header-slider .view-content {
  position: relative;
}
.view-header-slider .views-slideshow-controls-text-pause {
  display: none;
}
.view-header-slider .views-slideshow-pager-fields {
  width: auto;
  display: inline-block;
  z-index: 10;
  position: absolute;
  left: 0;
  right: 0;
  margin: -10% auto 0 auto;
  text-align: center;
}
.view-header-slider .views-slideshow-pager-field-item {
  border-radius: 50%;
  width: 18px;
  height: 17px;
  display: inline-block !important;
  padding: 0;
  border: 2px solid #fff;
  margin: 0 4px;
  cursor: pointer;
}
.view-header-slider .views-slideshow-pager-field-item.active {
  background: #fff;
}
.view-header-slider .views-slideshow-pager-fields > div {
  padding: 0;
}
.view-bean-header-slide .views-field-field-header-slide-image .field-content,
.view-header-slider .views-field-field-header-image .field-content {
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 60%, rgba(0,0,0,0.65) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 60%,rgba(0,0,0,0.65) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%,rgba(0,0,0,0.65) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
  overflow: hidden;
}
.view-bean-header-slide .views-field-field-header-slide-image .field-content picture,
.view-header-slider .views-field-field-header-image .field-content picture {
  z-index: -1;
  position: relative;
  line-height: 95%;
  overflow: hidden;
  display: block;  
}

/* Site Footer */
.pane-site-footer {
  background: url(../images/footer-bg.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  padding-top: 70px;
  min-height: 405px;
  margin-bottom: 0;
  margin-top: 78px;
}
.pane-site-footer .pane-inner {
  max-width: 990px;
  margin: 0 auto !important;
}
.pane-site-footer .pane-block .pane-content {
  max-width: 275px;
  margin: 0 auto;
}
.pane-site-footer .pane-block .pane-content a {
  color: #000;
  text-decoration: none;
}

.pane-site-footer h3 {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 30px;
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 130%;  
}
.pane-site-footer h4 {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 0;
  line-height: 100%; 
}
.pane-site-footer p,
.pane-site-footer span {
  font-family: 'Crimson Text', Georgia, "Times new roman";
  margin-top: 0;
  margin-bottom: 9px;
  line-height: 100%;
}

.pane-site-footer .pane-block-2 {
  text-align: center;
}

.pane-site-footer .pane-block-6 .pane-content a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 22px;
  background: #fff;
  padding: 15px 18px;
  display: inline-block;
  width: auto;
  line-height: 100%;
}
.pane-site-footer .pane-block-6 .pane-content a:hover {
  background: #eb1c23;
  color: #fff;
}
.pane-site-footer .pane-block-6 .pane-inner {
  margin-top: 33px;
}

.pane-site-footer .pane-block-5 .pane-content ul li {
  list-style-type: none;
  float: left;
  display: inline-block;
  margin-right: 20px;
}
.pane-site-footer .pane-block-5 .pane-content ul li:last-child {
  margin-right: 0;
}
.pane-site-footer .pane-block-5 .pane-content ul {
  padding: 0;
  display: block;
  margin: 0;
  overflow: hidden;  
}

.pane-site-footer .pane-block-16 .pane-content a img {
  max-width: 210px;
}

/* Social Media Logo */
#fb-logo {
  background: url(../images/facebook.svg) no-repeat;
  background-position: center center;
  display: block;
  width: 15px;
  height: 30px;
  text-indent: -999px;
}
#fb-logo:hover {
  background: url(../images/facebook-rollover.svg) no-repeat;
  background-position: center center;
}
#twitter-logo {
  background: url(../images/twitter.svg) no-repeat;
  background-position: center center;
  display: block;
  width: 28px;
  height: 30px;
  text-indent: -999px;
}
#twitter-logo:hover {
  background: url(../images/twitter-rollover.svg) no-repeat;
  background-position: center center;  
}
#youtube-logo {
  background: url(../images/YouTube.svg) no-repeat;
  background-position: center center;
  display: block;
  width: 23px;
  height: 30px;
  text-indent: -999px;
}
#youtube-logo:hover {
  background: url(../images/YouTube-rollover.svg) no-repeat;
  background-position: center center;
}
#instagram-logo {
  background: url(../images/instagram.svg) no-repeat;
  background-position: center center;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -999px;
}
#instagram-logo:hover {
  background: url(../images/instagram-rollover.svg) no-repeat;
  background-position: center center;  
}
#pinterest-logo {
  background: url(../images/pinterest.svg) no-repeat;
  background-position: center center;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -999px;
}
#pinterest-logo:hover {
  background: url(../images/pinterest-rollover.svg) no-repeat;
  background-position: center center;  
}

/* Override qtip dropdown style */
.qtip {
  display: none;
}
.qtip.qtip-fixed {
  position: absolute !important;
  right: 0px !important;
  background: #fff !important;
  max-width: 1088px;
  top: 148px !important;
  left: 0 !important;
  margin: 0px auto !important;
  z-index: 200 !important;
  padding: 33px 56px 15px 56px;
  -webkit-box-shadow: 0px 8px 20px -6px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 8px 20px -6px rgba(0,0,0,0.75);
  box-shadow: 0px 8px 20px -6px rgba(0,0,0,0.75);
}
.logged-in .qtip.qtip-fixed {
  top: 177px !important;
}
.logged-in.admin-menu-with-shortcuts .qtip.qtip-fixed {
  top: 213px !important;
}
.minimized-menu .qtip.qtip-fixed {
  position: fixed !important;	
  top: 69px !important;
}
.logged-in.minimized-menu .qtip.qtip-fixed {
  top: 69px !important;
}
.qtip .qtip-content {
  max-width: 1110px !important;
  margin: 0px auto !important;
  left: 0 !important;
  top: 0 !important;
}
.qtip.qtip-focus {
  display: block;
}

.menu-minipanels .region {
  max-width: 30%;
  margin-left: 15px;
  margin-right: 15px;
}

.menu-minipanels .menu-block-wrapper {
  padding: 0;
  margin-left: 0;
  margin-top: 0;
}
.menu-minipanels ul.menu {
  padding: 0;
  list-style-type: none;
}
.menu-minipanels ul.menu li {
  list-style-image: none;
  list-style-type: none;
  margin-bottom: 9px;
  padding: 0;  
}
.menu-minipanels ul.menu li a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
}
.menu-minipanels ul.menu li a:hover {
  color: #eb1c23;
}

.menu-minipanels h2.block-title,
.menu-minipanels .pane-block h2.block-title {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 26px;
  color: #eb1c23;
  text-transform: uppercase;
  line-height: 110%;
  margin-bottom: 12px;
}
.menu-minipanels .block-block {
  position: relative;
}
.menu-minipanels .pane-block .pane-content p {
  margin: 0 0 15px 0;
  font-family: 'Crimson Text', Georgia, "Times new roman";
  font-size: 20px;
  font-style: italic;
  line-height: 23px;
}
.menu-minipanels .block-7 p {
  line-height: 110%;
}
.menu-minipanels .pane-block .pane-content .field-name-field-link {
  padding-top: 10px;
}
.menu-minipanels .pane-block .pane-content .field-name-field-link a {
  color: #000;
  text-decoration: none;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 22px;
  text-decoration: none;
  padding: 10px 33px;
  border: 2px solid #a6a3a3;
  display: inline-block;
  width: auto;
}
.menu-minipanels .pane-block .pane-content .field-name-field-link a:hover {
  color: #fff;
  background: #eb1c23;
  border: 2px solid #eb1c23;
}
.menu-minipanels .pane-block .pane-content .block-content p,
.menu-minipanels .pane-block .pane-content .bean-block-with-call-to-action p {
  font-size: 18px;
  line-height: 20px;
  font-style: normal;
}

/* Homepage pane content */
.front .pane-page-content {
  display: none;
}

.pane-homepage-multicultural-spiritual {
  margin-top: 98px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.pane-homepage-multicultural-spiritual .pane-inner {
  margin-left: 0;
  margin-right: 0;
}
.pane-homepage-multicultural-spiritual .pane-bean-multicultural-image {
  height: 550px;
  overflow: hidden;
}
.pane-homepage-multicultural-spiritual .region {
  max-height: 550px;
  overflow: hidden;
} 

.pane-homepage-multicultural-spiritual .pane-block.pane-bean-multicultural-image img {
  max-width: 752px;
}

.pane-homepage-multicultural-spiritual .region-two-50-second {
  background: url(../images/multicultural-section-bg.jpg) no-repeat;
  background-size: cover;
}
.pane-homepage-multicultural-spiritual .pane-bean-multicultural-multi-faith-spirit {
  background: rgba(139, 20, 129, 0.8);
  color: #fff;
  padding: 0 6.5%;
  text-align: center;
  margin-bottom: 0;
  height: 323px;
  overflow: hidden;
}
.pane-homepage-multicultural-spiritual .pane-bean-multicultural-multi-faith-spirit h2.block-title {
  font-family: 'Crimson Text', Georgia, 'Times new roman';
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 15px;
  margin-top: 45px;
}
.pane-homepage-multicultural-spiritual .pane-bean-multicultural-multi-faith-spirit p {
  font-size: 20px;
  line-height: 120%;
}
.pane-homepage-multicultural-spiritual .pane-bean-multicultural-multi-faith-spirit .field-name-field-link a {
  display: inline-block;
  background: #fff;
  padding: 15px 25px;
  text-decoration: none;
  line-height: 100%;
  color: #7a186f;
  font-size: 20px;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  text-transform: uppercase;  
}
.pane-homepage-multicultural-spiritual .pane-bean-multicultural-multi-faith-spirit .field-name-field-link a:hover {
  background: #372057;
  color: #fff;
}

.pane-homepage-multicultural-spiritual .pane-block-9 {
  background: rgba(7, 97, 123, 0.8);
  color: #fff;
  padding: 0 10%;
  text-align: center;
  margin-bottom: 0;
  height: 227px;
  overflow: hidden;  
}
.pane-homepage-multicultural-spiritual .pane-block-9 .pane-title.block-title {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 32px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
  line-height: 110%;
  margin-top: 30px;
}
.pane-homepage-multicultural-spiritual .pane-block-9 .pane-content p {
  font-size: 20px;
  line-height: 120%;
}
.pane-homepage-multicultural-spiritual .pane-block-9 .pane-content p a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
}

.pane-homepage-multicultural-spiritual .pane-events-panel-pane-1 {
  background: rgba(54,30,98, 0.8);
  color: #fff;
  padding: 0 10%;
  text-align: center;
  margin-bottom: 0;
  height: 227px;
  overflow: hidden; 
}
.pane-homepage-multicultural-spiritual .pane-events-panel-pane-1 .views-field-nothing {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 40px;
}
.pane-homepage-multicultural-spiritual .pane-events-panel-pane-1 .views-field-field-spirit-experience-service- {
  margin-bottom: 15px;
  margin-top: 5px;
}
.pane-homepage-multicultural-spiritual .pane-events-panel-pane-1 .views-field-field-spirit-experience-service- a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 32px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  line-height: 100%;
}
.pane-homepage-multicultural-spiritual .pane-events-panel-pane-1 .views-field-body p {
  font-size: 20px;
  line-height: 150%;
}
.pane-homepage-multicultural-spiritual .pane-events-panel-pane-1 .views-field-body p a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
}

/* Homepage scheduled text */
.front .pane-block-8 {
  text-align: center;
  margin-bottom: 43px;
}
.front .pane-block-8 h2.block-title {
  font-size: 40px;
  font-family: 'Crimson Text', Georgia, "Times new roman";
  font-weight: 300;
  margin-bottom: 15px;
  margin-top: 63px;
}
.front .pane-block-8 .pane-content p {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 32px;
}
.front .pane-block-8 .pane-content p a {
  color: #eb1c23;
  text-decoration: none;
}

/* Homepage featured box section */
.pane-homepage-featured-box {
  margin-bottom: 10px;
}
#mini-panel-homepage_featured_box {
  max-width: 1500px;
  margin: 0 auto;
}
.pane-homepage-featured-box .pane-inner {
  margin-left: 0;
  margin-right: 0;
}
#mini-panel-homepage_featured_box .region {
  max-width: 365px;
  margin-right: 2%;
  width: 48.5%;
  max-height: 365px;
  overflow: hidden;
}
#mini-panel-homepage_featured_box .region.region-four-second,
#mini-panel-homepage_featured_box .region.region-four-fourth {
  margin-right: 0;
}
#mini-panel-homepage_featured_box .region-four-third {
  margin-left: 1%;
}
#mini-panel-homepage_featured_box .field-name-field-block-featured-image .field-items {
  position: relative;
  max-height: 365px;
  overflow: hidden;
  height: auto;
  display: block;
}
#mini-panel-homepage_featured_box .field-name-field-block-featured-image .field-items:after {
  content: '';
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
}
#mini-panel-homepage_featured_box .field-name-field-block-featured-image .field-type-image {
  margin-bottom: 0;
}
#mini-panel-homepage_featured_box .field-name-field-block-featured-image .field-item,
#mini-panel-homepage_featured_box .field-name-field-block-featured-image .field-type-image img {
  line-height: 88%;
  display: block;
}
#mini-panel-homepage_featured_box .pane-bean-featured-box-1,
#mini-panel-homepage_featured_box .pane-bean-featured-box-2,
#mini-panel-homepage_featured_box .pane-bean-featured-box-3,
#mini-panel-homepage_featured_box .pane-bean-featured-box-4 {
  position: relative;
  margin-bottom: 0;
}
#mini-panel-homepage_featured_box .pane-bean-featured-box-1 h2.pane-title,
#mini-panel-homepage_featured_box .pane-bean-featured-box-2 h2.pane-title,
#mini-panel-homepage_featured_box .pane-bean-featured-box-3 h2.pane-title,
#mini-panel-homepage_featured_box .pane-bean-featured-box-4 h2.pane-title {
  width: 170px;
  height: auto;
  line-height: 110%;
  border: 2px solid #FFF;
  margin: 35% auto 0 auto;
  position: absolute;
  z-index: 20;
  color: #FFF;
  text-align: center;
  left: 0;
  right: 0;
  font-size: 32px;
  text-transform: uppercase;
  padding: 5% 5% 6% 5%;
}

#mini-panel-homepage_featured_box .field-name-field-block-featured-text,
#mini-panel-homepage_featured_box .field-name-field-featured-box-link {
  display: none;
}

#mini-panel-homepage_featured_box .active.pane-bean-featured-box-1 h2.pane-title,
#mini-panel-homepage_featured_box .active.pane-bean-featured-box-2 h2.pane-title,
#mini-panel-homepage_featured_box .active.pane-bean-featured-box-3 h2.pane-title,
#mini-panel-homepage_featured_box .active.pane-bean-featured-box-4 h2.pane-title {
  color: #a3a2a2;
  border: solid 2px #a3a2a2;
  margin: 13% auto 0 auto;
}
#mini-panel-homepage_featured_box .active .field-name-field-block-featured-image img {
  opacity: 0;
}
#mini-panel-homepage_featured_box .active .field-name-field-block-featured-image .field-items:after {
  display: none;
}
#mini-panel-homepage_featured_box .active .field-name-field-block-featured-text {
  display: block;
  position: absolute;
  z-index: 15;
  margin: 52% auto 0 auto;
  max-width: 90%;
  left: 0;
  right: 0;
  text-align: center;
  top: 0;
  font-size: 20px;
  line-height: 150%;
}
#mini-panel-homepage_featured_box a.close-feature-box-cta {
  position: absolute;
  top: 5px;
  right: 0;
  height: 24px;
  width: 24px;
  background: url(../images/close_icon.svg) no-repeat;
  background-position: center center;
  text-indent: -9999px;
}
#mini-panel-homepage_featured_box .field-type-image {
  margin-bottom: 0;
}

/* Homepage featured event section */
#mini-panel-homepage_event_section {
  max-width: 1500px;
  margin: 0 auto 0 auto;
}
.pane-homepage-event-section .pane-inner,
#mini-panel-homepage_event_section .pane-events-panel-pane-2 .pane-inner {
  margin-left: 0;
  margin-right: 0;
}
#mini-panel-homepage_event_section .pane-events-panel-pane-2 .views-row {
  width: 49.5%;
  display: inline-block;
}
#mini-panel-homepage_event_section .pane-events-panel-pane-2 .views-row-1 {
  float: left;
}
#mini-panel-homepage_event_section .pane-events-panel-pane-2 .views-row-2 {
  float: right;
}

/* Subpage */
.pane-content-title {
  position: absolute;
  margin: -9% auto 0 auto;
  text-align: center;
  width: 100%;
  z-index: 10;
}
.pane-content-title .node-title {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-size: 45px;
}

.pane-page-content .pane-inner {
  margin-left: 0;
  margin-right: 0;
}
.pane-page-content .pane-node .node-body-display, 
.pane-page-content .resource-area .pane-inner {
  max-width: 840px;
  margin: 0 auto;
}
.pane-page-content .node-attached-file-link {
  margin-bottom: 0;
}
.pane-page-content .resource-area {
  background: #e8e7e7;
  padding: 25px 0;
  margin-bottom: 82px;
}
.pane-page-content .resource-area .field-item {
  display: inline-block;
  float: left;
  width: 45%;
  min-height: 25px;
  margin-bottom: 15px;
}
.pane-page-content .resource-area .field-item.even {
  margin-right: 3.5%;
}
.pane-page-content .resource-area .field-item a {
  color: #000;
  font-size: 18px;
  line-height: 25px;
  display: block;
  padding-left: 35px;
  background: url(../images/link.svg) no-repeat;
  background-position: left center;
}
.pane-page-content .resource-area .field-item a:hover {
  background: url(../images/link-rollover.svg) no-repeat;
  background-position: left center;
}
.pane-page-content .resource-area .field-item a.pdf-file {
  background: url(../images/pdf.svg) no-repeat;  
}
.pane-page-content .resource-area .field-item a.pdf-file:hover {
  background: url(../images/pdf-rollover.svg) no-repeat; 
  background-position: left center;
}
.pane-page-content .resource-area .field-item a:hover {
  color: #eb1c23;
}
.pane-page-content .resource-area .pane-title {
  margin-bottom: 15px;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 38px;
}
.page-node .pane-header-slider-panel-pane-1 {
  margin-bottom: 45px;
}
.view-id-events.view-display-id-block_1 .view-content a span {
  padding: 0;
  margin: 0 0 0 5px;
  display: inline;
  float: right;
}
.view-id-events.view-display-id-block_1 .views-field-nothing {
  width: auto;
  float: none;
  display: inline-block;
  padding: 0;
}
.view-id-events.view-display-id-block_1 .view-content span.views-row-delimiter {
  margin-right: 5px;
}
.view-id-events.view-display-id-block_1 .view-content span  a {
  color: #222;
}
.view-id-events.view-display-id-block_1 .view-content span a:hover {
  color: #eb1c23;
}

/* Resource File */
.ministry-resources a,
.view-ministry .views-field-field-resource-file-link a {
  color: #000;
  font-size: 18px;
  line-height: 25px;
  display: block;
  padding-left: 35px;
  background: url(../images/link.svg) no-repeat;
  background-position: left center;
}
.ministry-resources a.pdf-file,
.view-ministry .views-field-field-resource-file-link a.pdf-file {
  background: url(../images/pdf.svg) no-repeat;
}
.field-name-field-news-publication-resource .field-item {
  margin: 15px 0 10px 0;
}
.field-name-field-news-publication-resource .field-item a {
  color: #000;
  font-size: 18px;
  line-height: 25px;
  display: block;
  padding-left: 35px;
  background: url(../images/pdf.svg) no-repeat;
  background-position: left center;
}
.field-name-field-news-publication-resource .field-item a:hover{
  background: url(../images/pdf-rollover.svg) no-repeat;
  background-position: left center;
  color: #eb1c23;
}


/* Media embed */
iframe {
  width: 100%;
}
.media.media-element-container {
  margin: 25px 0;
  clear: both;
  display: block;
}
iframe.media-youtube-player,
iframe.media-vimeo-player {
  height: 475px;
}

/* Custom site alert */
.pane-site-alert-site-alert .pane-inner {
  margin-left: 0;
  margin-right: 0;
}
.pane-site-alert-site-alert {
  margin-bottom: 0;
}
.site-alert-up .site-alert {
  width: 100%;
  font-weight: bold;
  height: 58px;
  overflow: hidden;
}
.site-alert-up .site-alert .text {
  padding: 0;
  line-height: 58px;
  font-size: 23px;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;  
}
.site-alert-up .site-alert .low {
  background: #fed118;
  color: #fff;
  margin: 0 auto;
  border: none;
  text-align: center;  
}
.site-alert-up .site-alert .info {
  background: #4687be;
  color: #fff;
  margin: 0 auto;
  border: none;
  text-align: center;   
}
.site-alert-up .site-alert .high {
  background: #eb1c23;
  color: #fff;
  margin: 0 auto;
  border: none;
  text-align: center;  
}

/* Upcoming views pane events */
.pane-events-panel-pane-3 {
  max-width: 1200px;
  margin: 82px auto 0 auto;
}
.pane-events-panel-pane-3 h2.pane-title {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 40px;
  display: block;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.pane-events-panel-pane-3 .view-content {
  overflow: hidden;
}
.pane-events-panel-pane-3 .views-row {
  max-width: 178px;
  float: left;
  margin-right: 1.5%;
  margin-left: 0;
}
.pane-events-panel-pane-3 .views-row.views-row-last {
  margin-right: 0;
}
.pane-events-panel-pane-3 .views-field-title a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  color: #000;
  line-height: 110%;
}
.pane-events-panel-pane-3 .event-date {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
  overflow: hidden;
  display: block;
}
.pane-events-panel-pane-3 .event-date span {
  float: left;
  display: inline-block;
}
.pane-events-panel-pane-3 .event-date span.date-display-single {
  margin-right: 5px;
}
.pane-events-panel-pane-3 .views-field-view-node a {
  color: #eb1c23;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
}
.pane-events-panel-pane-3 .view-footer {
  clear: both;
  display: block;
  text-align: center;
  margin-top: 50px;
}
.pane-events-panel-pane-3 .view-footer a {
  color: #000;
  text-decoration: none;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 22px;
  text-decoration: none;
  padding: 10px 23px;
  border: 2px solid #a6a3a3;
  display: inline-block;
  width: auto;  
}
.pane-events-panel-pane-3 .view-footer a:hover {
  color: #fff;
  background: #eb1c23;
  border: 2px solid #eb1c23;
}

/* Ministry Aggregation Section */
.pane-ministry-panel-pane-1 {
  max-width: 1200px;
  margin: 0 auto 55px auto;
}
.pane-ministry-panel-pane-1 .block-title {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 40px;
  display: block;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.pane-ministry-panel-pane-1 .ui-accordion-content {
  overflow: visible;
}
.pane-ministry-panel-pane-1 .views-row {
  margin-bottom: 18px;
  overflow: hidden;
}
.pane-ministry-panel-pane-1 .view-display-id-block_1 .views-row {
  margin-bottom: 5px;
}
.pane-ministry-panel-pane-1 .view-display-id-block_1 .views-row a {
  color: #222222;
}
.pane-ministry-panel-pane-1 .view-display-id-block_1 .views-row:hover a {
  color: #eb1c23;
}
.pane-ministry-panel-pane-1 .views-field-field-ministry-featured-image {
  width: 50%;
  float: left;
}
.pane-ministry-panel-pane-1 .views-field-nothing {
  width: 43%;
  float: left;
  padding-left: 40px;
  padding-right: 40px;
}
.pane-ministry-panel-pane-1 .views-accordion-header {
  border: none;
  border-radius: 0;
  background: #582c6a;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 12px;
  padding-left: 95px;
  background-image: url(../images/expand_icon-ministry.svg);
  background-repeat: no-repeat;
  background-position: 2.7% center;
  background-size: 26px 26px;  
}
.pane-ministry-panel-pane-1 .views-accordion-header.ui-state-active {
  background-image: url(../images/close_icon-ministry.svg);
  background-repeat: no-repeat;
  background-position: 2.7% center;
  background-size: 24px 24px;  
}
.pane-ministry-panel-pane-1 .ui-accordion-header-icon {
  display: none;
}
.pane-ministry-panel-pane-1 .views-accordion-header a {
  color: #fff;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 30px;
  line-height: 150%;
}
.pane-ministry-panel-pane-1 .ui-accordion-content {
  border: none;
  padding: 30px 0 0 0;
}
.view-ministry .views-field {
  font-family: 'Crimson Text', Georgia, "Times new roman";
  font-size: 17px;
}
.pane-ministry-panel-pane-1 .ministry-contact,
.pane-ministry-panel-pane-1 .ministry-upcoming,
.pane-ministry-panel-pane-1 .ministry-resources {
  margin-bottom: 20px;
  overflow: hidden;
}
.pane-ministry-panel-pane-1 .ministry-contact a {
  color: #000;
}
.pane-ministry-panel-pane-1 .ministry-contact a:hover {
  color: #eb1c23;
}
.pane-ministry-panel-pane-1 .ministry-resources ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}
.pane-ministry-panel-pane-1 .ministry-resources ul li {
  padding: 0;
  margin: 15px 0 10px 0;
}
.pane-ministry-panel-pane-1 .ministry-resources ul li a {
  color: #000;
}
.pane-ministry-panel-pane-1 .ministry-resources ul li a:hover {
  color: #eb1c23;
  background: url(../images/link-rollover.svg) no-repeat;
  background-position: left center;
}
.pane-ministry-panel-pane-1 .ministry-resources ul li a.pdf-file:hover {
  background: url(../images/pdf-rollover.svg) no-repeat;
  background-position: left center;
}

/* Event Calendar page */
.date-dropdown {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 15px 15px 15px 47px;
  line-height: 100%;
  font-size: 22px;
  font-family: 'Open Sans Condensed', Arial;
  text-transform: uppercase;
  background: url(../images/CL_calendar_icon_white.svg) no-repeat #000;
  background-position: 15px center;
  width: 206px;
  height: 20px;
}
.date-dropdown:after {
  content: "";
  display: inline-block;
  float: right;
  background: url(../images/filter-arrow-white.svg) no-repeat;
  width: 15px;
  height: 11px;
  margin-top: 6px;
  margin-right: 3px;
}
.date-dropdown.active:after {
  background: url(../images/filter-arrow-white-up.svg) no-repeat;
}
#mini-panel-calendar_header_area {
  marign-bottom: 5px;
}
.page-calendar .pane-panels-mini.pane-calendar-header-area,
.page-calendar .pane-panels-mini.pane-calendar-header-area-2,
.page-calendar .pane-page-content {
  margin: 0 auto;
  max-width: 838px;
}
.page-calendar .pane-panels-mini.pane-calendar-header-area .pane-inner {
  margin-left: 0;
  margin-right: 0;
}
.page-calendar .pane-custom.pane-1 {
  text-align: center;
  margin-top: 190px;
}
.page-calendar .pane-custom.pane-1 .pane-content h2 {
  font-size: 45px;
  margin-bottom: 33px;
  line-height: 120%;
  margin: 0 0 5px 0;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  padding: 0;
  clear: both;
  display: block;
}
.page-calendar .pane-views-exp-calendar-page-4 {
  max-width: 590px;
  float: right;
  width: 100%;
}
.page-calendar .pane-views-exp-calendar-page-5 {
  max-width: 552px;
  float: right;
  width: 100%;
  margin-bottom: 0;
}
.page-calendar .pane-views-exp-calendar-page-5 .views-exposed-widgets {
  margin-bottom: 0;  
}
.page-calendar .pane-events-panel-pane-5 {
  display: block;
  clear: both;
}
.page-calendar .pane-views-exp-calendar-page-6 {
  clear: both;
}
.page-calendar .pane-views-exp-calendar-page-6 .pane-inner {
  margin-left: 0;
  margin-right: 0;
}
#views-exposed-form-calendar-page-6,
#views-exposed-form-calendar-page-4 {
  position: relative;
}
#views-exposed-form-calendar-page-6 .views-widget-filter-combine,
#views-exposed-form-calendar-page-4 .views-widget-filter-combine {
  padding: 0;
  float: none;
  display: block;
  margin-bottom: 5px;
  display: none;
}
#views-exposed-form-calendar-page-6 .views-widget-filter-field_date_and_time_value {
  display: none;
}
.page-calendar .bef-select-as-links .form-type-bef-link {
  margin-bottom: 13px;
}
.page-calendar .bef-select-as-links .form-type-bef-link a {
  color: #000;
}
.page-calendar .bef-select-as-links .form-type-bef-link a:hover,
.page-calendar .bef-select-as-links .form-type-bef-link a.active {
  color: #fff;
}
.page-calendar .event-image {
  width: 26.5%;
  display: inline-block;
  float: left;
  margin-right: 3.5%;
  padding-top: 5px;
}
.page-calendar .event-info {
  width: 69%;
  display: inline-block;
  float: left;
}
.page-calendar .views-row {
  display: block;
  overflow: hidden;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #c5c5c5;  
}
.page-calendar .views-row.views-row-last {
  border-bottom: none;
}
.page-calendar .event-title {
  margin-bottom: 5px;
}
.page-calendar .event-title a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 20px;
  color: #000;
}
.page-calendar .event-date {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 5px;
}
.page-calendar .event-location {
  font-style: italic;
  font-size: 18px;
}
.page-calendar .event-link a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 15px;
}
.page-calendar .view-id-calendar.view-display-id-page_4 .view-header .pager {
  display: none;
}
.page-calendar .views-submit-button {
  position: absolute;
  top: 0;
  right: -5px;
  padding: 0;
}
.page-calendar #views-exposed-form-search-search-api-panel-pane-1 .views-submit-button {
  position: relative;
  right: 0;
}
.page-calendar .views-submit-button input {
  display: none;
}
.view.view-display-id-page_6 .view-header .date-heading,
.view.view-display-id-page_4 .date-nav-wrapper {
  background: none;
  display: block;
  overflow: hidden;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #c5c5c5;
}
.view.view-display-id-page_4 .date-nav-wrapper .date-nav {
  padding: 0;
  margin: 0;
  min-height: 0;
  line-height: 100%;
  text-transform: uppercase;
  font-size: 24px;
}
.view.view-display-id-page_6 .view-header .date-heading h3,
.view.view-display-id-page_4 .date-nav-wrapper .date-nav h3 {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 100%;
}
.view.view-display-id-page_6 .view-header .date-heading h3 {
  text-align: center;
  margin: 0;
}

/* Search Event Calendar page */
.page-search-calendar .pane-panels-mini.pane-calendar-header-area,
.page-search-calendar .pane-page-content {
  margin: 0 auto;
  max-width: 838px;
}
.page-search-calendar .pane-panels-mini.pane-calendar-header-area .pane-inner {
  margin-left: 0;
  margin-right: 0;
}
.page-search-calendar .pane-custom.pane-1 {
  text-align: center;
  margin-top: 190px;
}
.page-search-calendar .pane-custom.pane-1 .pane-content h2 {
  font-size: 45px;
  margin-bottom: 33px;
  line-height: 120%;
  margin: 0 0 5px 0;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  padding: 0;
  clear: both;
  display: block;
}
.page-search-calendar .pane-views-exp-calendar-page-5 {
  max-width: 590px;
  margin: 0 auto;
  width: 100%;
}
.page-search-calendar .pane-events-panel-pane-5 {
  display: block;
  clear: both;
}
#views-exposed-form-calendar-page-5 {
  position: relative;
}
#views-exposed-form-calendar-page-5 .views-widget-filter-combine {
  padding: 0;
  float: none;
  display: block;
  margin-bottom: 5px;
}
.page-search-calendar .event-image {
  width: 26.5%;
  display: inline-block;
  float: left;
  margin-right: 3.5%;
  padding-top: 5px;
}
.page-search-calendar .event-info {
  width: 69%;
  display: inline-block;
  float: left;
}
.page-search-calendar .views-row {
  display: block;
  overflow: hidden;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #c5c5c5;  
}
.page-search-calendar .views-row.views-row-last {
  border-bottom: none;
}
.page-search-calendar .event-title {
  margin-bottom: 5px;
}
.page-search-calendar .event-title a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 20px;
  color: #000;
}
.page-search-calendar .event-date {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 5px;
  overflow: hidden;
}
.page-search-calendar .event-time {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 5px;
}
.page-search-calendar .event-date span {
  display: inline-block;
  float: left;
  margin-right: 10px;
  width: 25%;
  margin-bottom: 10px;
}
.page-search-calendar .event-location {
  font-style: italic;
  font-size: 18px;
}
.page-search-calendar .event-link a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 15px;
}
.page-search-calendar .view-display-id-page_5 {
  margin-top: 25px;
}
.page-search-calendar .view-id-calendar.view-display-id-page_5 .view-header .pager {
  display: none;
}
.page-search-calendar .views-submit-button {
  position: absolute;
  top: 0;
  right: -5px;
  padding: 0;
}
.page-search-calendar .views-submit-button input {
  display: none;
}

.view-display-id-page_5 .date-heading {
  text-align: center;
  display: block;
  overflow: hidden;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #c5c5c5;  
}
.view-display-id-page_5 .date-heading h3 {
  text-transform: uppercase;
}
.view-display-id-page_5 .date-heading a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 15px;
}
.view-display-id-page_5 .date-nav-wrapper .date-nav h3 {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 100%;
}

/* Event page */
.node-type-event .pane-page-content {
  margin: 175px auto 0 auto;
  max-width: 838px;
}
.node-type-event .field-type-email a {
  color: #000;
}
.node-type-event .field-type-email a:hover {
  color: #eb1c23;
}
.node-type-event .pane-page-content .node,
.node-type-event .pane-page-content .field-type-image {
  margin-bottom: 0;
}
.node-type-event .pane-page-content .pane-custom.pane-1 {
  margin-bottom: 29px;
}
.node-type-event .pane-page-content .pane-custom.pane-1 .pane-content {
  text-align: right;
}
.node-type-event .pane-page-content .pane-custom.pane-1 .pane-content p {
  margin-bottom: 0;
}
.node-type-event .pane-page-content .pane-custom.pane-1 .pane-content a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 22px;
}
.node-type-event .pane-page-content .node-title {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 10px;
}
.node-type-event .pane-page-content .column-1,
.node-type-event .pane-page-content .column-2 {
  width: 45.5%;

  float: left;
  font-size: 20px;
  margin-bottom: 30px;
}
.node-type-event .pane-page-content .column-1 {
  margin-right: 4.4%;
}
.node-type-event .pane-page-content h2.field-label,
.node-type-event .pane-page-content label {
  display: inline-block;
  float: left;
  font-size: 20px;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  margin-right: 5px;
  text-transform: uppercase;
}
.node-type-event .pane-page-content .field-name-body {
  clear: both;
}
.node-type-event .pane-page-content .field-name-body p {
  font-size: 17px;
}
.node-type-event .pane-page-content .column-1 div,
.node-type-event .pane-page-content .column-2 div {
  margin-bottom: 10px;
}
.node-type-event .pane-page-content .column-1 div div {
  margin-bottom: 0;
}
.node-type-event .pane-page-content .column-1 .schedule-date {
  overflow: hidden;
  margin-bottom: 10px;
}
.node-type-event .pane-page-content .column-1 .schedule-date div {
  display: inline-block;
  float: left;
  margin-right: 10px;
}
.node-type-event .pane-page-content .column-1 .schedule-time {
  margin-bottom: 0;
}
.node-type-event .pane-page-content .field-type-taxonomy-term-reference {
  margin-bottom: 20px;
}
.field-name-field-registration-field .field-item a {
  padding: 16px 19px;
  background: #d4d4d4;
  line-height: 100%;
  display: inline-block;
  float: left;
  font-size: 22px;
  font-family: 'Open Sans Condensed', Arial;
  text-transform: uppercase;
  color: #000;
}
.field-name-field-registration-field .field-item a:hover {
  color: #fff;
  background: #eb1c23;
}
.node-type-event .pane-page-content .event-contact-phone a {
  color: #000;
}
.node-type-event .pane-page-content .event-contact-phone a:hover {
  color: #eb1c23;
}

/* Blog landing page */
.page-blog .pane-page-content {
  margin: 190px auto 0 auto;
}
#blog-landing-page .pane-custom.pane-1 {
  max-width: 990px;
  margin: 0 auto 33px auto;
  text-align: center;
}
#blog-landing-page .pane-custom.pane-1 .pane-content h2 {
  font-size: 45px;
  line-height: 120%;
  margin-top: 0;  
}
#blog-landing-page .pane-blog-panel-pane-1 {
  max-width: 1300px;
  margin: 0 auto;
}
#blog-landing-page .view-id-blog .views-row {
  overflow: hidden;
  margin-bottom: 35px;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 30px;
}
#blog-landing-page .view-id-blog .views-row.views-row-last {
  border: none;
}
#blog-landing-page .view-id-blog .blog-image {
  width: 50%;
  float: left;
  margin-right: 2.5%;
}
#blog-landing-page .view-id-blog .blog-info {
  width: 46%;
  float: left;
}
#blog-landing-page .view-id-blog .blog-title a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  color: #000;  
}
#blog-landing-page .view-id-blog .blog-title {
  margin-bottom: 20px;
}
#blog-landing-page .view-id-blog .blog-publish-info {
  display: inline-block;
  float: left;
  margin-top: 5px;
  margin-bottom: 15px;
  clear: right;
}
#blog-landing-page .view-id-blog .blog-publish-info .post-date {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 18px;
  display: inline-block;
  float: left;
  margin-right: 5px;
}
#blog-landing-page .view-id-blog .blog-publish-info .author {
  display: inline-block;
  float: left;
  margin-right: 5px;
  font-size: 22px;
}
#blog-landing-page .view-id-blog .blog-body {
  clear: both;
}
#blog-landing-page .view-id-blog .blog-link a {
  text-transform: uppercase;
  font-size: 22px;
  padding: 10px 16px;
  border: 2px solid #a6a3a3;
  display: inline-block;
  width: auto;
  color: #000;
  text-decoration: none;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
}
#blog-landing-page .view-id-blog .blog-link a:hover {
  color: #fff;
  background: #eb1c23;
  border: 2px solid #eb1c23;
}
#blog-landing-page .pane-views-exp-blog-panel-pane-1 {
  max-width: 820px;
  margin: 0 auto 60px auto;
  width: 100%;
}
#blog-landing-page .pane-views-exp-blog-panel-pane-1 #edit-combine-wrapper {
  width: 560px;
  padding: 0;
  margin-right: 4.5%;
  float: left;
}
#blog-landing-page .pane-views-exp-blog-panel-pane-1 .edit-field-blog-author-tid-wrapper {
  padding: 0;
}
#views-exposed-form-blog-panel-pane-1 {
  position: relative;
}
#blog-landing-page .pane-views-exp-blog-panel-pane-1 .views-submit-button {
  position: absolute;
  right: -10px;
  top: -10px;
}
#blog-landing-page .pane-views-exp-blog-panel-pane-1 .views-submit-button input {
  display: none;
}
#blog-landing-page .pane-views-exp-blog-panel-pane-1 #edit-field-blog-author-tid-wrapper {
  padding: 0;
  float: right;
}

/* Blog page */
.node-type-blog .pane-page-content {
  margin: 190px auto 0 auto;
}
.node-type-blog .field-name-field-featured-image,
.node-type-blog .node-title-display,
.node-type-blog .node-body-display {
  max-width: 836px;
  margin: 0 auto;
}
.node-type-blog .field-name-field-featured-image {
  margin-top: 15px;
}
.node-type-blog .publish-info {
  display: inline-block;
  float: left;
}
.node-type-blog .publish-date,
.node-type-blog .publish-author {
  display: inline-block;
  float: left;
  margin-right: 5px;
}
.node-type-blog .publish-author .field-name-field-blog-author li {
  font-size: 22px;
  margin-bottom: 0;
}
.node-type-blog .publish-author .field-name-field-blog-author {
  margin-bottom: 0;
}
.node-type-blog .field-name-field-blog-author ul li:first-child:before {
  content: "| ";
}
.node-type-blog .field-name-field-blog-author ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.node-type-blog .field-name-body {
  clear: both;
}
.node-type-blog .pane-custom.pane-1 {
  max-width: 725px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.node-type-blog .pane-custom.pane-1 h2.pane-title {
  font-size: 45px;
  margin-bottom: 33px;
  line-height: 120%;
}
.node-type-blog .pane-custom.pane-1 .pane-content a {
  text-transform: uppercase;
  font-size: 22px;
  padding: 10px 16px;
  border: 2px solid #a6a3a3;
  display: inline-block;
  width: auto;
  color: #000;
  text-decoration: none;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
}
.node-type-blog .pane-custom.pane-1 .pane-content a:hover {
  color: #fff;
  background: #eb1c23;
  border: 2px solid #eb1c23;
}
.node-type-blog .node-title-display h1 {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
}

/* News & Publication Landing Page */
.page-news-publication .pane-page-content {
  margin: 190px auto 0 auto;
  max-width: 838px;
}
#news-publications .pane-custom.pane-1 {
  text-align: center;
}
#news-publications .pane-custom.pane-1 .pane-content h2 {
  font-size: 45px;
  margin-bottom: 33px;
  line-height: 120%;
  margin-top: 0;
}
#news-publications #edit-combine-wrapper {
  width: 100%;
  max-width: 575px;
  padding: 0;
  float: none;
  clear: both;
  margin-bottom: 13px;
}
#news-publications .views-exposed-widget{
  text-align: left;
  padding-right: 0;
}
#news-publications #edit-submit-news {
  display: none;
}
#news-publications .pane-views-exp-news-panel-pane-1 {
  margin-bottom: 40px;
}
#news-publications .views-row {
  margin-bottom: 27px;
  overflow: hidden;
  padding-bottom: 15px;
  border-bottom: 1px solid #d4d4d4;
}
#news-publications .views-row:last-child {
  border: none;
}
#news-publications .news-image {
  width: 27%;
  display: inline-block;
  float: left;
  margin-right: 2%;
}
#news-publications .news-info {
  width: 70%;
  display: inline-block;
  float: left;
}
#news-publications .news-type {
  padding: 7px 11px;
  background: #d4d4d4;
  line-height: 100%;
  display: inline-block;
  font-size: 17px;
  font-family: 'Open Sans Condensed', Arial;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 10px 0;
}
#news-publications .news-title a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 20px;
  color: #000;
}
#news-publications .news-title {
  margin-bottom: 10px;  
}
#news-publications .news-post-date {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 10px;
}
#news-publications .news-body p {
  margin-bottom: 5px;
}
#news-publications .news-link {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 15px;
}

/* News & Publication Individual Page */
.node-type-news-publications .pane-page-content {
  margin: 175px auto 0 auto;
  max-width: 838px;
}
.node-type-news-publications .pane-page-content .pane-custom.pane-1 {
  margin-bottom: 5px;
}
.node-type-news-publications .pane-page-content .pane-custom.pane-1 .pane-content {
  text-align: right;
}
.node-type-news-publications .pane-page-content .pane-custom.pane-1 .pane-content a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 22px;
}
.node-type-news-publications .field-type-taxonomy-term-reference {
  margin-bottom: 5px;
}
.node-type-news-publications .node,
.node-type-news-publications .pane-page-content .pane-custom.pane-1 .pane-content p,
.node-type-news-publications .field-type-image {
  margin-bottom: 0;
}
.node-type-news-publications .pane-page-content .node-title {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 10px;
}
.node-type-news-publications .field-name-field-news-type ul {
  padding: 0;
  display: block;
  overflow: hidden;
  margin: 0;
}
.node-type-news-publications .field-name-field-news-type ul li {
  padding: 8px 10px;
  background: #d4d4d4;
  line-height: 100%;
  display: inline-block;
  float: left;
  font-size: 22px;
  font-family: 'Open Sans Condensed', Arial;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}
.node-type-news-publications .field-name-body {
  margin-bottom: 35px;
}
/* Member Stories Page */
.page-member-stories .pane-page-content {
  margin: 190px auto 0 auto;
}
#member-stories .pane-block-10,
#member-stories .view-id-member_story.view-display-id-panel_pane_1 .views_slideshow_cycle_main {
  max-width: 836px;
  margin: 0 auto;
}
#member-stories .pane-block-10 {
  text-align: center;
  margin-bottom: 45px;
}
#member-stories .pane-block-10 h2.pane-title.block-title {
  font-size: 45px;
  margin-bottom: 13px;
  line-height: 120%;
  margin-top: 0;
  text-transform: uppercase;
}
#member-stories .pane-block-10 .pane-content{
  font-size: 28px;
  line-height: 135%;
}
#member-stories .views-slideshow-controls-top {
  position: relative;
  display: block;
  border: none;
  border-radius: 0;
  width: 100%;
  height: 171px;
  margin-bottom: 75px;
  position: relative;
}
#member-stories .views-slideshow-controls-top:before {
  content: " ";
  display: block;
  background: #e8e7e7;
  height: 145px;
  position: absolute;
  width: 100%;
  margin-top: 15px;
}
#member-stories .views-slideshow-jcarousel-pager {
  position: relative;
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}
#member-stories .jcarousel-clip.jcarousel-clip-horizontal {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  height: 171px;
}
#member-stories ul.jcarousel-list {
  height: 171px !important;
}
#member-stories ul.jcarousel-list li {
  width: 171px !important;
  height: 171px;
}
#member-stories ul.jcarousel-list li:hover .views-field-field-story-thumbnail,
#member-stories ul.jcarousel-list li.active .views-field-field-story-thumbnail {
  padding: 0;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}
#member-stories ul.jcarousel-list li .views-field-field-story-thumbnail {
  padding: 15px 13px;
}
#member-stories .jcarousel-prev {
  display: block;
  background: url(../images/slideshow_arrow_alt_left.svg) no-repeat;
  width: 33px;
  height: 55px;
  z-index: 100;
  left: 8px;
  top: 55px;
}
#member-stories .jcarousel-next {
  display: block;
  background: url(../images/slideshow_arrow_alt_right.svg) no-repeat;
  width: 33px;
  height: 55px;
  z-index: 100;
  right: 8px;
  top: 55px;
}
#member-stories .views-field-view .views-slideshow-cycle-main-frame {
  overflow: hidden;
}
#member-stories .views-slideshow-cycle-main-frame-row {
  width: 100% !important;
}
#member-stories .views-field-field-quote{
  margin-top: 30px;
}
#member-stories .views-field-field-quote .field-content {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 28px;
  padding: 5px 25px 10px 132px;
  min-height: 100px;
  line-height: 130%;
  background: url('../images/quote-bg.png') no-repeat;
  background-position: 5px top;
}
#member-stories .views-field-body {
  border-top: 1px solid #d4d4d4;
  padding-top: 25px;
  margin-top: 30px;
}
#member-stories iframe {
  min-height: 503px;
}
#member-stories .views-slideshow-cycle-main-frame-row .views-field-view {
  position: relative;
}
#member-stories .views-slideshow-controls-text-next a {
  display: block;
  width: 33px;
  height: 55px;
  text-indent: -999999px;
  background: url(../images/slideshow_arrow_right.svg) no-repeat;
  position: absolute;
  margin-top: auto;
  margin-bottom: auto;
  bottom: 0;
  top: 0;
  z-index: 10;
  right: 20px;
}
#member-stories .views-slideshow-controls-text-previous a {
  display: block;
  width: 33px;
  height: 55px;
  text-indent: -999999px;
  background: url(../images/slideshow_arrow_left.svg) no-repeat;
  position: absolute;
  margin-top: auto;
  margin-bottom: auto;
  bottom: 0;
  top: 0;
  z-index: 10;
  left: 20px;
}
#member-stories .views-slideshow-controls-text-pause {
  display: none;
}
#member-stories .views-slideshow-pager-fields {
  width: auto;
  display: inline-block;
  z-index: 10;
  position: absolute;
  left: 0;
  right: 0;
  margin: -43px auto 0 auto;
  text-align: center;
}
#member-stories .views-slideshow-pager-field-item {
  border-radius: 50%;
  width: 18px;
  height: 17px;
  display: inline-block !important;
  padding: 0;
  border: 2px solid #fff;
  margin: 0 4px;
  cursor: pointer;
}
#member-stories .views-slideshow-pager-field-item.active {
  background: #fff;
}
#member-stories .views-slideshow-pager-fields > div {
  padding: 0;
}

/* Staff Bio Page */
#staff-bio-page {
  max-width: 838px;
  margin: 190px auto 0 auto;
}
#staff-bio-page .block {
  margin-bottom: 15px;
}
#staff-bio-page .region-two-33-66-second {
  width: 62.5%;
  float: right;
}
#staff-bio-page .pane-custom.pane-2,
#staff-bio-page .pane-custom.pane-1 {
  text-align: right;
}
#staff-bio-page .pane-custom.pane-1 .pane-content a,
#staff-bio-page .pane-custom.pane-2 .pane-content a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 22px;
  color: #eb1c23;
  text-decoration: none;
}
#staff-bio-page .pane-custom.pane-1 .pane-content a {
  display: none;
}
#staff-bio-page .pane-user-info-panel-pane-1 {
  border-bottom: 2px solid #d4d4d4;
  padding-bottom: 5px;
  margin-bottom: 13px;
}
#staff-bio-page .pane-user-info-panel-pane-1 .field-content {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  padding: 0;
  font-size: 26px;
  text-transform: uppercase;
}
#staff-bio-page .field-name-field-title .field-item {
  font-size: 24px;
  font-style: italic;  
}
#staff-bio-page .pane-entity-field .pane-title,
#staff-bio-page .views-label {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 8px;
  display: block;
}
#staff-bio-page .field-item,
#staff-bio-page .field-content a {
  font-size: 18px;
}
#staff-bio-page .field-content a:hover {
  color: #eb1c23;
}
#staff-bio-page .field-content a {
  color: #000;
}
#staff-bio-page .field-item p {
  font-size: 17px;  
}

/* Staff Landing Page */
.page-staff .pane-page-content {
  margin: 190px auto 0 auto;
}
#staff-landing-page h2.pane-title {
  font-size: 45px;
  margin-bottom: 52px;
  line-height: 120%;
  margin-top: 0;
  text-align: center;
}
#staff-landing-page .pane-staff-panel-pane-1 .pane-content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
#staff-landing-page .views-row {
  width: 33.333%;
  float: left;
  min-height: 195px;
  margin-bottom: 25px;
}
#staff-landing-page .views-row .user-headshot {
  width: 32%;
  float: left;
  margin-right: 6%;
  margin-top: 5px;
}
#staff-landing-page .views-row .user-info {
  width: 52%;
  float: left;
}
#staff-landing-page .views-row .user-full-name a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  padding: 0;
  font-size: 20px;
  color: #000;
  text-transform: uppercase;
}
#staff-landing-page .views-row .user-title {
  font-style: italic;
  font-size: 20px;
}
#staff-landing-page .views-row .user-info div {
  margin-bottom: 5px;
}
#staff-landing-page .views-row .user-mail a {
  font-size: 18px;
  color: #000;
}
#staff-landing-page .views-row .user-mail a:hover {
  color: #eb1c23;
}
#staff-landing-page .views-row .user-phone {
  font-size: 18px;
  color: #000;
}
#staff-landing-page .user-link a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 15px;
}

/* BEAN Header Slide*/
.view-bean-header-slide .views-slideshow-pager-fields {
  width: auto;
  display: inline-block;
  z-index: 10;
  position: absolute;
  left: 0;
  right: 0;
  margin: -120px auto 0 auto;
  text-align: center;
}
.view-bean-header-slide .views-slideshow-pager-fields .views-slideshow-pager-field-item {
    border-radius: 50%;
    width: 18px;
    height: 17px;
    display: inline-block !important;
    padding: 0;
    border: 2px solid #fff;
    margin: 0 4px;
    cursor: pointer;  
}
.view-bean-header-slide .views-slideshow-pager-field-item.active {
  background: #fff;
}
.view-bean-header-slide .views-field-title {
  position: absolute;
  margin-top: -75px;
  text-align: center;
  display: block;
  width: 100%;
}
.view-bean-header-slide .views-field-title .field-content {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-size: 45px;
}
.view-bean-header-slide .views-field-edit-link a {
  background: #fff;
  position: absolute;
  padding: 5px;
  right: 10px;
  outline: none;
  bottom: 0;
  margin-bottom: 10px;
}
.pane-bean-header-slide-panel-pane-1 {
  margin-bottom: 35px;
}
/* Religious Education Page */

.page-religious-education .pane-block-11 {
  max-width: 838px;
  margin: 0 auto 20px auto;
}
.page-religious-education .pane-quicktabs-resligious-education {
  margin-bottom: 40px;
}
.page-religious-education #quicktabs-container-resligious_education {
  padding-top: 43px;
  padding-bottom: 43px;
  background: #e8e7e7;
}
.page-religious-education #quicktabs-container-resligious_education .quicktabs-tabpage {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.page-religious-education #quicktabs-resligious_education .item-list {
  max-width: 651px;
  margin: 0 auto;
}
.page-religious-education #quicktabs-resligious_education a.quicktabs-tab {
  text-decoration: none;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  color: #000000;
  font-size: 22px;
  display: block;
  padding: 17px 17px;
}
.page-religious-education #quicktabs-resligious_education ul.quicktabs-tabs {
  margin-bottom: 0;
}
.page-religious-education #quicktabs-resligious_education ul.quicktabs-tabs li {
  display: inline-block;
  margin-bottom: 0;
  background: #e8e7e7;
  margin: 0 10px 0 0;
  position: relative;
}
.page-religious-education #quicktabs-resligious_education ul.quicktabs-tabs li.active {
  background: #eb1c23;
}
.page-religious-education #quicktabs-resligious_education ul.quicktabs-tabs li.active a {
  color: #fff;
}
.page-religious-education #quicktabs-resligious_education ul.quicktabs-tabs li.active:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 13.5px 0 13.5px;
  border-color: #eb1c23 transparent transparent transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto -13px auto;
}
.page-religious-education #quicktabs-resligious_education ul.quicktabs-tabs li.last {
  margin-right: 0;
}
#quicktabs-resligious_education .quicktabs-tabpage .panel-col-first {
  width: 50%;
  margin-right: 3.5%;
  margin-top: 4px;
}
#quicktabs-resligious_education .quicktabs-tabpage .panel-col-last {
  width: 45%;
}
#quicktabs-resligious_education .quicktabs-tabpage .panel-col-last .field-name-field-header-text .field-item {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 100%;
}
.field-name-field-bitrl-resource-file .field-item {
  margin: 15px 0 10px 0;
}
.field-name-field-bitrl-resource-file .field-item a {
  color: #000;
  font-size: 18px;
  line-height: 25px;
  display: block;
  padding-left: 35px;
  background: url(../images/link.svg) no-repeat;
  background-position: left center;
}
.field-name-field-bitrl-resource-file .field-item a:hover {
  background: url(../images/link-rollover.svg) no-repeat;
  background-position: left center;
}
.field-name-field-bitrl-resource-file .field-item a.pdf-file {
  background: url(../images/pdf.svg) no-repeat;  
}
.field-name-field-bitrl-resource-file .field-item a.pdf-file:hover {
  background: url(../images/pdf-rollover.svg) no-repeat; 
  background-position: left center;
}
.field-name-field-bitrl-resource-file .field-item a:hover {
  color: #eb1c23;
}
#jump-to-section {
  background: #582c6a;
  padding: 22px 0;
  margin-bottom: 0;
}
#jump-to-section .pane-content {
  max-width: 682px;
  width: 100%;
  margin: 0 auto;
}
#jump-to-section .pane-content ul {
  padding: 0;
  margin: 0;
  display: block;
  list-style-type: none;
}
#jump-to-section .pane-content ul li {
  display: inline-block;
  float: left;
  margin-bottom: 0;
  border-right: 1px solid #fff;
}
#jump-to-section .pane-content ul li:last-child {
  border-right: none;
}
#jump-to-section .pane-content ul li a {
  color: #fff;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
  padding: 0 15px 2px 15px;
  line-height: 100%;
  display: block;
}
#jump-to-section .pane-content ul li a.active {
  font-weight: 700;
}
.pane-religious-education-list-panel-pane-1 .pane-content,
.intro-block-section {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
.field-name-field-block-iti-header-text {
  margin-top: 100px;
}
.field-name-field-block-iti-header-text .field-item {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 36px;
  line-height: 120%;
}
.intro-block-section .panel-col-first {
  margin-right: 3.88%;
  overflow: hidden;
  max-height: 558px; 
}
.intro-block-section .panel-col-first img {
  max-width: 960px;
  width: 100%;
  display: block;
}
.intro-block-section .panel-col-first .field-name-field-block-iti-image {
  margin-bottom: 0;
}
.intro-block-section .panel-col-last {
  max-height: 558px;
  width: 36.333%;
}
.intro-block-section .panel-col-last .inside {
  margin: 0;
}
.field-name-field-block-iti-image {
  position: relative;
}
.intro-block-section .panel-col-first div.field-items:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 25px 25px 0;
  border-color: transparent #ffffff transparent transparent;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  margin-top: auto;
  margin-bottom: auto;
}
.intro-block-section .field-name-field-block-iti-link .field-item a:hover {
  color: #fff;
  background: #eb1c23;
  border: 2px solid #eb1c23;
}
.intro-block-section .field-name-field-block-iti-link .field-item a {
  color: #000;
  text-decoration: none;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 22px;
  padding: 6px 29px;
  border: 2px solid #a6a3a3;
  display: inline-block;
  width: auto;
  margin-top: 15px;
}
.pane-religious-education-list-panel-pane-1 {
  padding-bottom: 46px;
  margin-bottom: 46px;
  border-bottom: 2px solid #d4d4d4;
}
.pane-religious-education-list-panel-pane-1 .views-row {
  overflow: hidden;
  max-height: 558px;
}
.pane-religious-education-list-panel-pane-1 .section-image {
  width: 50%;
}
.pane-religious-education-list-panel-pane-1 .section-info {
  max-height: 436px;
  width: 36.333%;
}
.pane-religious-education-list-panel-pane-1 .views-row-odd .section-info {
  float: right;
}
.pane-religious-education-list-panel-pane-1 .views-row-odd .section-image {
  float: right;
  margin-left: 5.2222%;
  overflow: hidden;
}
.pane-religious-education-list-panel-pane-1 .views-row-odd .section-image img {
  max-width: 960px;
  width: 100%;
  display: block;
}
.pane-religious-education-list-panel-pane-1 .views-row-even .section-info {
  float: left;
}
.pane-religious-education-list-panel-pane-1 .views-row-even .section-image {
  float: left;
  margin-right: 3.888%;
}
.pane-religious-education-list-panel-pane-1 .views-row-even .section-image img {
  max-width: 960px;
  width: 100%;
}
.pane-religious-education-list-panel-pane-1 .section-info-title {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  margin-top: 110px;
  margin-bottom: 15px;
}
.pane-religious-education-list-panel-pane-1 .section-info-schedule-group {
  font-size: 24px;
  font-style: italic;
  margin-bottom: 5px;
}
.pane-religious-education-list-panel-pane-1 .section-info-schedule-date {
  font-size: 20px;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
}
.pane-religious-education-list-panel-pane-1 .section-info-schedule {
  margin-bottom: 10px;
  overflow: hidden;
}
.pane-religious-education-list-panel-pane-1 .section-info-schedule-first,
.pane-religious-education-list-panel-pane-1 .section-info-schedule-second {
  width: 50%;
  float: left;
}
.pane-religious-education-list-panel-pane-1 .section-info-body {
  clear: both;
}
.pane-religious-education-list-panel-pane-1 .section-image {
  position: relative;
}
.pane-religious-education-list-panel-pane-1 .views-row-even .section-image:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 25px 25px 0;
  border-color: transparent #ffffff transparent transparent;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  margin-top: auto;
  margin-bottom: auto;
}
.pane-religious-education-list-panel-pane-1 .views-row-odd .section-image:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 25px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  margin-top: auto;
  margin-bottom: auto;
}
.pane-religious-education-list-panel-pane-1 .views-row-odd .section-info-inner {
  float: right;
}

/* Multicultural, Multi-Faith Spirituality */
.page-multicultural-pluralistic-spirituality .pane-block-12 {
  max-width: 838px;
  margin: 0 auto 65px auto;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 25px;
  padding-left: 175px;
  padding-right: 175px;
}
.page-multicultural-pluralistic-spirituality .view-id-blog.view-display-id-panel_pane_2 {
  padding-top: 43px;
  padding-bottom: 43px;
  background: #e8e7e7;
}
.page-multicultural-pluralistic-spirituality .view-id-blog.view-display-id-panel_pane_2 .view-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.page-multicultural-pluralistic-spirituality .view-id-blog.view-display-id-panel_pane_2 .panel-2col .panel-col-first {
  float: left;
  width: 50%;
  margin-right: 3.5%;
  margin-top: 4px;  
}
.page-multicultural-pluralistic-spirituality .view-display-id-panel_pane_2 .panel-2col .panel-col-last {
  width: 45%;
}
.page-multicultural-pluralistic-spirituality .panel-2col .panel-col-last {
  float: left;
  width: 50%; 
}
.page-multicultural-pluralistic-spirituality .intro-image-left .panel-2col .panel-col-last {
  width: 36.5%;
}  
.page-multicultural-pluralistic-spirituality .intro-image-left .panel-2col .panel-col-first {
  margin-right: 2.333%;
}
.page-multicultural-pluralistic-spirituality .intro-image-right .panel-2col .panel-col-last .inside {
  width: 73%;
  float: right;
  margin: 0 14.333333% 0 0;
}
.page-multicultural-pluralistic-spirituality .intro-image-left .panel-2col .panel-col-first .inside {
  margin: 0;
}
.page-multicultural-pluralistic-spirituality .field-name-field-block-iti-description {
  margin-bottom: 5px;
}
.page-multicultural-pluralistic-spirituality .field-name-field-block-iti-link a {
 font-family: 'Open Sans Condensed', Arial;
 font-weight: 700;
 font-size: 15px;
 text-transform: uppercase;
}
.page-multicultural-pluralistic-spirituality .blog-title a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 100%;
  color: #000;
}
.page-multicultural-pluralistic-spirituality .blog-content-link a,
.page-multicultural-pluralistic-spirituality .blog-landing-page-link a {
  color: #000;
  text-decoration: none;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 22px;
  padding: 6px 25px;
  border: 2px solid #a6a3a3;
  display: inline-block;
  width: auto;
}
.page-multicultural-pluralistic-spirituality .blog-content-link a:hover,
.page-multicultural-pluralistic-spirituality .blog-landing-page-link a:hover {
  color: #fff;
  background: #eb1c23;
  border: 2px solid #eb1c23;
}
.page-multicultural-pluralistic-spirituality .blog-content-link,
.page-multicultural-pluralistic-spirituality .blog-landing-page-link {
  display: inline-block;
  float: left;
  margin-right: 25px;
}
.page-multicultural-pluralistic-spirituality .blog-header-text {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 16px;
  display: block;
}
.page-multicultural-pluralistic-spirituality .blog-title {
  margin-bottom: 25px;
}
.page-multicultural-pluralistic-spirituality .blog-date {
  font-size: 18px;
  float: left;
  display: inline-block;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  margin-right: 5px;
}
.page-multicultural-pluralistic-spirituality .blog-author {
  font-size: 22px;
  float: left;
  display: inline-block;
}
.page-multicultural-pluralistic-spirituality .blog-author-date {
  overflow: hidden;
  display: block;
  margin-bottom: 15px;
}
.page-multicultural-pluralistic-spirituality .pane-views-panes.pane-blog-panel-pane-2 {
  margin-bottom: 0;
}
.page-multicultural-pluralistic-spirituality .pane-spirit-experience-section {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
#mini-panel-spirit_experience_section .region-two-50-first .region-inner {
  margin-right: 15.5%;
  max-width: 73%;
  float: right;
  margin: 0 14.333333% 0 0;
}
#mini-panel-spirit_experience_section .pane-block-13 {
  margin-top: 60px;
  margin-bottom: 0;
}
#mini-panel-spirit_experience_section .pane-block-13 h2.pane-title.block-title {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 36px;
  line-height: 100%;
  text-transform: uppercase;
}
#mini-panel-spirit_experience_section .pane-block-13 p {
  margin-bottom: 13px;
}
#mini-panel-spirit_experience_section .upcoming-label {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 18px;
}
#mini-panel-spirit_experience_section .views-field-title,
#mini-panel-spirit_experience_section .views-field-nothing-1 {
  margin-bottom: 5px;
}
#mini-panel-spirit_experience_section .view-display-id-panel_pane_4 {
  margin-top: 15px;
}
#mini-panel-spirit_experience_section .views-field-title a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 20px;
  color: #000;
}
#mini-panel-spirit_experience_section .views-field-nothing {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
#mini-panel-spirit_experience_section .views-field-view-node {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}
#mini-panel-spirit_experience_section .field-type-image {
  margin-bottom: 0;
  position: relative;
}
#mini-panel-spirit_experience_section .field-type-image .field-item {
  line-height: 100%;
}
#mini-panel-spirit_experience_section .field-type-image .field-item img {
  display: block;
  width: 100%;
}
#mini-panel-spirit_experience_section .field-name-field-bis-image:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 25px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  margin-top: auto;
  margin-bottom: auto;  
}
#mini-panel-spirit_experience_section .pane-bean-spirit-experience-image {
  margin-bottom: 0;
}
.intro-image-left,
.intro-image-right {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto -1px auto;
  overflow: hidden;
}
.intro-image-left .field-type-image,
.intro-image-right .field-type-image {
  margin-bottom: 0;
}
.intro-image-left .field-name-field-block-iti-image .field-item,
.intro-image-right .field-name-field-block-iti-image .field-item {
  line-height: 100%;
}
.intro-image-left .field-type-image img,
.intro-image-right .field-type-image img,
.intro-image-left .field-name-field-block-iti-image .field-item img,
.intro-image-right .field-name-field-block-iti-image .field-item img {
  display: block;
  width: 100%;
}
.page-multicultural-pluralistic-spirituality .intro-image-right .panel-2col .panel-col-first  {
  float: right;
}
.page-multicultural-pluralistic-spirituality .field-name-field-block-iti-header-text {
  margin-top: 70px;
}
.intro-image-right .field-name-field-block-iti-image:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 25px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  margin-top: auto;
  margin-bottom: auto;
}
.intro-image-left .field-name-field-block-iti-image:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 25px 25px 0;
  border-color: transparent #ffffff transparent transparent;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  margin-top: auto;
  margin-bottom: auto;
}

/* Worhip and Sermons Page */
#worship-and-sermons .pane-block-14 {
  max-width: 838px;
  margin: 0 auto 20px auto;
}
#worship-and-sermons .pane-block-15 h2.block-title {
  margin-bottom: 10px;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 36px;
}
#worship-and-sermons .pane-block-15 {
  max-width: 718px;
  margin: 0px auto 55px auto;
  text-align: center;
  background: #e8e7e7;
  padding: 38px 60px 24px 60px;
}
#worship-and-sermons .pane-block-15 .pane-content {
  margin-bottom: 10px;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
}
#worship-and-sermons .pane-worship-and-sermons-panel-pane-1 {
  max-width: 838px;
  margin: 0 auto 85px auto;
}
#worship-and-sermons .pane-worship-and-sermons-panel-pane-1 h2.block-title {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 36px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #d4d4d4;
  margin-bottom: 25px;
}
#worship-and-sermons .views-field-field-sermon-title .field-content,
.pane-worship-and-sermons-panel-pane-4 .views-field-field-sermon-title .field-content {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 26px;
  line-height: 110%;
  margin-bottom: 5px;  
}
#worship-and-sermons .views-field-field-worship-sermon-date,
.pane-worship-and-sermons-panel-pane-4 .views-field-field-worship-sermon-date {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
  text-transform: uppercase;
}
#worship-and-sermons .views-field-field-speaker,
.pane-worship-and-sermons-panel-pane-4 .views-field-field-speaker {
  font-size: 26px;
  margin-bottom: 5px;
}
#worship-and-sermons .views-field-body {
  clear: both;
  display: block;
  overflow: hidden;
  margin-bottom: 10px;  
}
.view-worship-and-sermons .views-field-field-transcript a,
.view-worship-and-sermons .views-field-colorbox a,
.view-worship-and-sermons .views-field-field-sermon-audio-1 a,
.view-worship-and-sermons .views-field-field-worship-video-embed-url a,
.view-worship-and-sermons .views-field-field-order-of-worship a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 20px;
  color: #000;
  line-height: 110%;
}
.view-worship-and-sermons .views-field-field-transcript a:hover,
.view-worship-and-sermons .views-field-colorbox a:hover,
.view-worship-and-sermons .views-field-field-sermon-audio-1 a:hover,
.view-worship-and-sermons .views-field-field-worship-video-embed-url a:hover,
.view-worship-and-sermons .views-field-field-order-of-worship a:hover {
  color: #eb1c23;
}
.view-worship-and-sermons .views-field-field-transcript a,
.view-worship-and-sermons .views-field-field-sermon-audio-1 a,
.view-worship-and-sermons .views-field-field-worship-video-embed-url a,
.view-worship-and-sermons .views-field-field-order-of-worship a {
  margin-bottom: 15px;  
}
.view-worship-and-sermons .views-field-field-transcript,
.view-worship-and-sermons .views-field-colorbox,
.view-worship-and-sermons .views-field-field-sermon-audio-1,
.view-worship-and-sermons .views-field-field-order-of-worship,
.view-worship-and-sermons .views-field-field-worship-video-embed-url {
  display: inline-block;
  float: left;
}
.view-worship-and-sermons .views-field-field-transcript,
.view-worship-and-sermons .views-field-colorbox,
.view-worship-and-sermons .views-field-field-sermon-audio-1 {
  width: 13%;
}
.view-worship-and-sermons .views-field-field-worship-video-embed-url {
  width: 15%;
  margin-right: 2%;
}
.view-worship-and-sermons .views-field-field-order-of-worship {
  width: 10%;  
}
.view-worship-and-sermons .views-field-field-transcript,
.view-worship-and-sermons .views-field-colorbox,
.view-worship-and-sermons .views-field-field-sermon-audio-1, 
.view-worship-and-sermons .views-field-field-order-of-worship {
  padding-left: 35px;  
}
.view-worship-and-sermons .views-field-field-transcript,
.view-worship-and-sermons .views-field-colorbox,
.view-worship-and-sermons .views-field-field-sermon-audio-1 {
  margin-right: 1%;
}
.view-worship-and-sermons .views-field-field-worship-video-embed-url {
  padding-left: 47px;
}
.view-worship-and-sermons .views-field-field-order-of-worship,
.view-worship-and-sermons .views-field-field-transcript {
  background: url(../images/sermon-transcript.svg) no-repeat;
}
.view-worship-and-sermons .views-field-colorbox {
  background: url(../images/listen-to-sermon.svg) no-repeat;
}
.view-worship-and-sermons .views-field-field-sermon-audio-1 {
  background: url(../images/download-sermon.svg) no-repeat;
}
.view-worship-and-sermons .views-field-field-sermon-audio-1 .file-icon,
.view-worship-and-sermons .views-field-field-sermon-audio-1 .file-size {
  display: none;
}
.view-worship-and-sermons .views-field-field-worship-video-embed-url {
  background: url(../images/watch-worship-service.svg) no-repeat;  
}
#worship-and-sermons .view-display-id-panel_pane_1 .views-field.views-field-nothing {
  overflow: hidden;
  display: block;
  clear: both;
  padding-top: 35px;
}
#worship-and-sermons .sermon-cta-buttons a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 22px;
  text-decoration: none;
  padding: 6px 17px;
  display: inline-block;
  width: auto;
  margin-right: 15px;
  float: left;
}
#worship-and-sermons .sermon-cta-buttons a {
  background: #582c6a;
  color: #fff;
  border: 2px solid #582c6a;
}
#worship-and-sermons .sermon-cta-buttons a.itunes-btn {
  background: none;
  color: #000;
  border: 2px solid #a6a3a3;
}
#worship-and-sermons .sermon-cta-buttons a:hover {
  color: #fff;
  background: #eb1c23;
  border: 2px solid #eb1c23;
}
#worship-and-sermons .pane-worship-and-sermons-panel-pane-2 {
  background: #e8e7e7;
  padding: 35px 0 0 0;
}
#worship-and-sermons .pane-worship-and-sermons-panel-pane-2 .views_slideshow_cycle_main {
  max-width: 838px;
  margin: 0 auto 20px auto;
}
#worship-and-sermons .pane-worship-and-sermons-panel-pane-2 .views-slideshow-controls-bottom {
  max-width: 1200px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 10;
}
#worship-and-sermons .pane-worship-and-sermons-panel-pane-2 h2.pane-title.block-title {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 36px;
  text-align: center;
  margin-bottom: 25px;
}
#worship-and-sermons .pane-worship-and-sermons-panel-pane-2 .views-field-field-sermon-title {
  font-size: 26px;
  text-align: center;
}
#worship-and-sermons .pane-worship-and-sermons-panel-pane-2 .views-field-nothing {
  text-align: center;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  line-height: 110%;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#worship-and-sermons .pane-worship-and-sermons-panel-pane-2 .views-field-field-speaker {
  text-align: center;
  margin-bottom: 15px;
}
#worship-and-sermons .pane-worship-and-sermons-panel-pane-2 .views-field-field-sermon-title .field-content {
  margin-bottom: 12px;
}
#worship-and-sermons .pane-worship-and-sermons-panel-pane-2 .views-field-body {
  text-align: center;
}
.view-id-worship_and_sermons.view-display-id-panel_pane_2 .views-slideshow-controls-text-pause {
  display: none;
}
.view-id-worship_and_sermons.view-display-id-panel_pane_2 .views-slideshow-controls-text-previous a {
  float: left;
  background: url(../images/slideshow_arrow_alt_left.svg) no-repeat;
}
.view-id-worship_and_sermons.view-display-id-panel_pane_2 .views-slideshow-controls-text-next a {
  float: right;
  background: url(../images/slideshow_arrow_alt_right.svg) no-repeat;
}
.view-id-worship_and_sermons.view-display-id-panel_pane_2 .views-slideshow-controls-text-previous a,
.view-id-worship_and_sermons.view-display-id-panel_pane_2 .views-slideshow-controls-text-next a {
  display: block;
  width: 33px;
  height: 55px;
  text-indent: -999999px;
  top: 0;
  margin-top: 43px;
  position: relative;
}
#worship-and-sermons .pane-worship-and-sermons-panel-pane-2 .view-content {
  position: relative
}

/* Sermon Archive Page */
.page-worship-and-sermons-archive #views-exposed-form-worship-and-sermons-panel-pane-4,
.page-worship-and-sermons-archive .pane-worship-and-sermons-panel-pane-4 {
  max-width: 838px;
  margin: 0 auto;
}
.page-worship-and-sermons-archive #views-exposed-form-worship-and-sermons-panel-pane-4 {
  margin-top: 60px;
}
.pane-worship-and-sermons-panel-pane-4 .views-row {
  padding-bottom: 38px;
  overflow: hidden;
  margin-bottom: 38px;
  border-bottom: 2px solid #d4d4d4;
}
.pane-worship-and-sermons-panel-pane-4 .views-row.views-row-last {
  border-bottom: none;
}
.pane-worship-and-sermons-panel-pane-4 .views-field-body {
  clear: both;
  display: block;
  overflow: hidden;
  margin-bottom: 20px;  
}
#edit-submit-worship-and-sermons,
#edit-field-worship-sermon-date-value-value-wrapper .form-item-date-value-date input.date-date,
#edit-field-worship-sermon-date-value-value-wrapper .form-item-date-value-date .description {
  display: none;
}
#edit-field-worship-sermon-date-value-value-wrapper .ui-datepicker-trigger {
  border: none;
  color: #1f1e1d;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 22px;
  text-transform: uppercase;
  cursor: pointer;
  background: #d4d4d4;
  display: block;
  padding: 14px 23px;
  line-height: 100%;
}
#edit-field-worship-sermon-date-value-value-wrapper {
  float: left;
  display: inline-block;
}
#edit-field-speaker-tid-wrapper,
#edit-field-worship-sermon-date-value-value-wrapper .form-type-date-text.form-item-date-value {
  margin-right: 25px;
  padding-right: 0;
}
#edit-date-wrapper {
  padding-right: 0;
}
.feed-button {
  color: #000 !important;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 22px;
  padding: 12px 17px;
  border: 2px solid #a6a3a3;
  display: inline-block;
  width: auto;
  margin-right: 15px;
  float: left;
  line-height: 100%;
}
.feed-button:hover {
  color: #fff !important;
  background: #eb1c23;
  border: 2px solid #eb1c23;
}

#ui-datepicker-div {
  margin-top: 50px !important;
  border: none;
  background: #fff;
  padding: 0;
  max-width: 220px;
  border: 1px solid #d4d4d4;
  border-radius: 1px;
  padding-bottom: 10px;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block,
#mini-panel-calendar_header_area .pane-calendar.block {
  float: left;
  width: 100%;
  margin-top: 0 !important;
  padding: 0;
  max-width: 220px;
  border: 1px solid #d4d4d4;
  border-radius: 1px;
  background: #fff;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block {
  max-width: 267px;
  position: absolute;
  z-index: 10;
  border-top: 0;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .pane-inner,
#mini-panel-calendar_header_area .pane-calendar.block .pane-inner {
  margin-left: 0;
  margin-right: 0
}
#ui-datepicker-div .ui-datepicker-header,
.date-nav-wrapper {
  border: none;
  border-radius: 0;
  padding: 0;
  background: #d4d4d4;
}
#ui-datepicker-div .ui-datepicker-title {
  line-height: 100%;
  padding: 20px 0;
  color: #000;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 17px;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .date-nav-wrapper,
#mini-panel-calendar_header_area .pane-calendar.block .date-nav-wrapper {
  line-height: 100%;
  color: #000;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 17px;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .date-nav-wrapper {
  display: none;
}
#mini-panel-calendar_header_area_2.active-toggle .pane-calendar.block .view-header .date-nav-wrapper,
#mini-panel-calendar_header_area_2.active-toggle .pane-calendar.block .view-content {
  display: block;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .date-nav-wrapper,
#mini-panel-calendar_header_area .pane-calendar.block .date-nav-wrapper {
  padding: 0;
  margin: 0;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .date-nav-wrapper .date-nav,
#mini-panel-calendar_header_area .pane-calendar.block .date-nav-wrapper .date-nav {
  margin: 0;
  padding: 0;
}
#mini-panel-calendar_header_area .pane-calendar.block .view-header {
  height: 48px;
  background: #d4d4d4;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .view-header {
  height: auto;
  background: #d4d4d4;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .date-nav-wrapper .date-heading h3,
#mini-panel-calendar_header_area .pane-calendar.block .date-nav-wrapper .date-heading h3 {
  line-height: 100%;
  padding: 15px 0;
  color: #000;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 17px;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .date-nav-wrapper .date-heading,
#mini-panel-calendar_header_area .pane-calendar.block .date-nav-wrapper .date-heading {
  position: relative;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .date-nav-wrapper .date-prev,
#mini-panel-calendar_header_area .pane-calendar.block .date-nav-wrapper .date-prev {
  position: absolute;
  left: 0;
  top: 15px;
  display: inline-block;
  width: 1.8em;
  height: 1.8em;
  background: none;
  border: none;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .date-nav-wrapper .date-prev a,
#mini-panel-calendar_header_area .pane-calendar.block .date-nav-wrapper .date-prev a {
  background: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 12px 5.5px 0;
  border-color: transparent #000000 transparent transparent;
  display: block;
  text-indent: -99999px;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .date-nav-wrapper .date-next,
#mini-panel-calendar_header_area .pane-calendar.block .date-nav-wrapper .date-next {
  position: absolute;
  right: 0;
  top: 15px;
  display: inline-block;
  width: 1.8em;
  height: 1.8em;
  background: none;
  border: none;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .date-nav-wrapper .date-next a,
#mini-panel-calendar_header_area .pane-calendar.block .date-nav-wrapper .date-next a {
  background: none;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 12px;
  border-color: transparent transparent transparent #000000;
  text-indent: -99999px;
  display: block;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .date-nav-wrapper .date-next .ajax-progress,
#mini-panel-calendar_header_area_2 .pane-calendar.block .date-nav-wrapper .date-prev .ajax-progress,
#mini-panel-calendar_header_area .pane-calendar.block .date-nav-wrapper .date-next .ajax-progress,
#mini-panel-calendar_header_area .pane-calendar.block .date-nav-wrapper .date-prev .ajax-progress {
  display: none !important;
}
#mini-panel-calendar_header_area .pane-calendar.block .view-content {
  padding: 7px 0 10px 0;
  max-width: 180px;
  margin: 0 auto;
  border: none;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .view-content {
  max-width: 250px;
  padding: 7px 0 10px 0;
  margin: 0 auto;
  border: none;
  display: none;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block td,
#mini-panel-calendar_header_area .pane-calendar.block td {
  position: relative;
  text-align: center;
}
#mini-panel-calendar_header_area .pane-calendar.block td.active,
#mini-panel-calendar_header_area .pane-calendar.block .calendar-calendar tr td.today.active,
#mini-panel-calendar_header_area .pane-calendar.block tr:hover {
  background: #e6e6e6;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block td a,
#mini-panel-calendar_header_area .pane-calendar.block td a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 400;
  font-size: 13px;
  border: none;
  background: none;
  text-align: center;
  padding: 0;
  color: #000;
  display: block;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block td a:hover {
  background: #d4d4d4;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block td a:hover,
#mini-panel-calendar_header_area .pane-calendar.block td a:hover {
  text-decoration: none;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block td.empty:after,
#mini-panel-calendar_header_area .pane-calendar.block td.empty:after {
  content: "";
  height: 7px;
  width: 7px;
  background: #c5c5c5;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block td.empty a,
#mini-panel-calendar_header_area .pane-calendar.block td.empty a {
  display: none;
}
tr.even, tr.info, tr:nth-child(2n+2) {
  background: none;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .calendar-calendar tr td.today,
#mini-panel-calendar_header_area .pane-calendar.block .calendar-calendar tr td.today {
  background: none;
}
#mini-panel-calendar_header_area_2 .pane-calendar.block .calendar-calendar tr td.active {
  background: #c5c5c5;
}
#ui-datepicker-div thead {
  border: none;
  background: none;
}
#ui-datepicker-div thead tr,
#ui-datepicker-div tbody,
#ui-datepicker-div tr.even,
#ui-datepicker-div tr.info,
#ui-datepicker-div tr:nth-child(2n+2) {
  border: none;
  background: none;
}
#ui-datepicker-div thead th,
.calendar-calendar th.days {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  color: #000;
  padding: 7px 0 0px 0;
}
.calendar-calendar th.days {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
}
#ui-datepicker-div td a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 400;
  font-size: 13px;  
  border: none;
  background: none;
  text-align: center;
  padding: 0;
  color: #000;
}
#ui-datepicker-div td a.ui-state-default.ui-state-active {
  background: #eb1c23;
}
#ui-datepicker-div .ui-datepicker-next .ui-icon {
  background: none;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 12px;
  border-color: transparent transparent transparent #000000;
}
#ui-datepicker-div td.ui-state-disabled {
  position: relative;
}
#ui-datepicker-div td.ui-state-disabled:after {
  content: "";
  height: 7px;
  width: 7px;
  background: #c5c5c5;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#ui-datepicker-div .ui-datepicker-prev .ui-icon {
  background: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 12px 5.5px 0;
  border-color: transparent #000000 transparent transparent;
}
#ui-datepicker-div .ui-datepicker-next a,
#ui-datepicker-div .ui-datepicker-prev a {
  border: none !important;
  background: none !important;
  pointer: cursor;
}
#ui-datepicker-div .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-next {
  top: 15px;
}
#ui-datepicker-div .ui-datepicker-next {
  right: 2px !important;
}
#ui-datepicker-div .ui-datepicker-prev {
  left: 2px !important;
}
#ui-datepicker-div .ui-datepicker-prev.ui-state-hover,
#ui-datepicker-div .ui-datepicker-next.ui-state-hover {
  background: none !important;
  border: none !important;
}
#ui-datepicker-div table.ui-datepicker-calendar {
  max-width: 180px;
  margin: 0 auto;
  border: none;
}
.view-id-worship_and_sermons.view-display-id-panel_pane_4 .view-empty,
.speaker-filter {
  font-style: italic;
  font-size: 24px;
  padding-bottom: 28px;
  overflow: hidden;
  margin-bottom: 28px;
  border-bottom: 2px solid #d4d4d4;
  display: block;
  margin-top: 28px;
}

/* Page not found */
.page-page-not-found .pane-page-content {
  margin: 190px auto 0 auto;
  max-width: 838px;
  text-align: center;
}
.page-page-not-found .pane-page-content h2.pane-title.block-title {
  font-size: 45px;
  margin-bottom: 33px;
  line-height: 120%;
  margin-top: 0;
  margin: 5px 0 30px 0;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  padding: 0;
  clear: both;
  display: block;
}
.page-page-not-found .pane-page-content p {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
}
#page-not-found .pane-custom.pane-1 {
  margin-bottom: 0;
}

/* Search Page */
#page-search {
  position: relative;
}
.page-search #page-search{
  max-width: 838px;
  margin: 190px auto 0 auto;
}
.page-search .pane-custom.pane-1 h2 {
  font-size: 45px;
  margin-bottom: 55px;
  line-height: 120%;
  margin-top: 0;
  text-align: center;
}
.page-search .search-total {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
  text-align: right;
  margin-bottom: 13px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 85px;
}
#views-exposed-form-search-search-api-panel-pane-1 {
  border: 1px solid #d4d4d4;
}
#views-exposed-form-search-search-api-panel-pane-1 .views-exposed-widgets {
  margin-bottom: 0;
}
#views-exposed-form-search-search-api-panel-pane-1 #edit-keyword-wrapper {
  padding: 0;
  float: left;
  width: 93%;
}
#views-exposed-form-search-search-api-panel-pane-1 .views-exposed-widget {
  padding: 0;
  float: none;
}
#views-exposed-form-search-search-api-panel-pane-1 input#edit-keyword {
  width: 100%;
  border: none;
  padding: 9px 12px;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 22px;
  color: #000;
  text-transform: uppercase;
  outline: none;
}
#views-exposed-form-search-search-api-panel-pane-1 .views-submit-button {
  display: block;
  width: 50px;
  float: right;
}
#views-exposed-form-search-search-api-panel-pane-1 #edit-submit-search-search-api {
  margin: 0;
  height: 48px;
  display: block;
  box-shadow: none;
  border: none;
  width: 100%;
  background: url(../images/search_icon_alt.svg) no-repeat;
  background-position: center right 17px;
  text-indent: -9999px;
  outline: none;
}
.page-search .pane-search-search-api-panel-pane-1 {
  margin-top: 5px;
}
.page-search .views-row {
  margin-bottom: 27px;
  overflow: hidden;
  padding-bottom: 15px;
  border-bottom: 1px solid #d4d4d4;
}
.page-search .views-row.views-row-last {
  border-bottom: none;
}
.page-search .views-field-type {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 17px;
  color: #000;
  display: inline-block;
  text-transform: uppercase;
  padding: 7px 11px;
  background: #d4d4d4;
  margin-bottom: 10px;
}
.page-search .views-field-title a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 20px;
  color: #000;
}
.page-search .views-field-title {
  margin-bottom: 10px;
}
.page-search .views-field-created {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 5px;
}
.page-search .views-field-body p {
  margin-bottom: 0;
}
.page-search .views-field-view-node a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 15px;
}
.page-search .item-list-pager {
  margin-top: 55px;
}

/* Photo Gallery Page */
.page-photo-gallery #photo-gallery {
  margin-top: 190px;
}
.page-photo-gallery #photo-gallery .pane-custom.pane-1 {
  text-align: center;
}
.page-photo-gallery #photo-gallery .pane-photo-gallery-panel-pane-2 {
  width: 125px;
  margin: 0 auto 40px auto;
}
.page-photo-gallery #photo-gallery .pane-custom.pane-1 h2 {
  font-size: 45px;
  margin-bottom: 33px;
  line-height: 120%;
  margin: 0 0 5px 0;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  padding: 0;
  clear: both;
  display: block;
}
.page-photo-gallery #photo-gallery .view-display-id-panel_pane_2 {
  position: relative;
}
.page-photo-gallery #photo-gallery .view-display-id-panel_pane_2 .view-content {
  display: none;
  position: absolute;
  background: #d4d4d4;
  width: 100%;
  z-index: 10;
}
.page-photo-gallery #photo-gallery .view-display-id-panel_pane_2 .view-header .archive-cta {
  display: block;
  padding: 14px 18px 14px 44px;
  background: #d4d4d4;
  line-height: 100%;
  display: block;
  font-size: 22px;
  font-family: 'Open Sans Condensed', Arial;
  text-transform: uppercase;
  color: #000;
  margin: 0;
  text-decoration: none;
  outline: none;
  background-image: url(../images/filter-arrow.svg);
  background-repeat: no-repeat;
  background-position: center left 16px   
}
.page-photo-gallery #photo-gallery .view-display-id-panel_pane_2 .views-summary {
  margin: 0;
  list-style-type: none;
}
.page-photo-gallery #photo-gallery .view-display-id-panel_pane_2 .views-summary li {
  margin: 0;
}
.page-photo-gallery #photo-gallery .view-display-id-panel_pane_2 .views-summary li a {
  display: block;
  padding: 15px 0;
  text-align: center;
  font-size: 22px;
  font-family: 'Open Sans Condensed', Arial;
  color: #000;
  font-weight: 400;
}
.page-photo-gallery #photo-gallery .view-display-id-panel_pane_2 .views-summary li a:hover {
  color: #fff;
  background: #eb1c23;
}
.page-photo-gallery .pane-photo-gallery-panel-pane-3,
#photo-gallery .pane-photo-gallery-panel-pane-1 {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
.page-photo-gallery .pane-photo-gallery-panel-pane-3 {
	margin-top: 0 !important;
}
#photo-gallery .pane-photo-gallery-panel-pane-1 .view-content {
  overflow: hidden;
}
#photo-gallery .pane-photo-gallery-panel-pane-3 .views-row,
#photo-gallery .pane-photo-gallery-panel-pane-1 .views-row {
  width: 270px;
  display: inline-block;
  float: left;
  margin: 0 20px 25px 20px;
  min-height: 360px;
}
#photo-gallery .flickr-citation,
#photo-gallery .flickr-photoset {
  display: none;
}
#photo-gallery .gallery-title {
  display: block;
  margin-top: 8px;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 20px;
}
#photo-gallery .gallery-title a {
  color: #000;
}
#photo-gallery .gallery-date {
  margin-top: 8px;
  display: block;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase; 
}
#photo-gallery div.flickr-photoset-img,
#photo-gallery .open-gallery-cta {
  overflow: hidden;
}
#photo-gallery .open-gallery-cta {
  color: #000;
}
#photo-gallery div.flickr-photoset-img {
  width: 270px;
  height: 270px;
}
#photo-gallery img.flickr-photoset-img,
#photo-gallery img {
  max-width: 100%;
}
#photo-gallery .pager.pager-show-more {
  margin-top: 15px;
}
.flickr-credit {
  display: none !important;
}
span.flickr-wrap, span.flickr-photoset-single {
  margin: 0 1% 2% 1% !important;
}
.node-type-photo-gallery .panel-pane.pane-page-content {
  width: 100%;
  max-width: 1024px;
  margin: 190px auto 0 auto;
}
.node-type-photo-gallery .panel-pane.pane-page-content h1 {
  text-align: center;
}
.node-type-photo-gallery .pane-content h1 {
  font-size: 45px;
  margin-bottom: 33px;
  line-height: 120%;
  margin: 0 0 5px 0;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  padding: 0;
  clear: both;
  display: block;
  text-transform: uppercase;
}
.node-type-photo-gallery .pane-custom .pane-content {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 300;
  font-size: 22px;
  text-align: center;
}
/* User Login Page */
.not-logged-in.page-user .pane-page-content,
.not-logged-in.page-user .pane-pane-messages {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.not-logged-in.page-user .pane-pane-messages {
  margin-top: 250px;
}
.not-logged-in.page-user .pane-page-content {
  margin-top: 0;
}

/* Mobile and tablet side menu */
.sidr {
  right: 0px;
  background: #000;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  width: 275px;
}
.sidr ul li:hover>a,
.sidr ul li:hover>span,
.sidr ul li.active>a,
.sidr ul li.active>span,
.sidr ul li.sidr-class-active>a,
.sidr ul li.sidr-class-active>span,
.sidr ul li ul li:hover>a,
.sidr ul li ul li:hover>span,
.sidr ul li ul li.active>a,
.sidr ul li ul li.active>span,
.sidr ul li ul li.sidr-class-active>a,
.sidr ul li ul li.sidr-class-active>span {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.sidr ul {
  border-top: none;
  margin-bottom: 0;
}
.sidr ul li {
  border-bottom: 1px solid #fff;
  border-top: none;
}
.sidr ul li ul {
  display: none;
  border-top: 1px solid #fff;
}
.sidr ul li a {
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  line-height: 130%;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 75%;
}
.sidr ul li ul li a,
.sidr ul li ul li span {
  color: #fff;
  outline: none;
}
.sidr ul li:hover a.sidr-class-menu-minipanel,
.sidr ul li li:hover {
  background: #eb1c23;
}
.sidr ul li:hover a.menu-open-cta,
.sidr ul li:hover a.menu-open-cta.close {
  background-color: #eb1c23;
}
.sidr ul li li:hover a {
  color: #fff;
}
.sidr ul li a.menu-open-cta {
  width: 40px;
  height: 53px;
  background-image: url(../images/open-menu-drop-down-icon.svg);
  background-repeat: no-repeat;
  text-indent: -9999px;
  background-position: center center !important;
  padding: 0 !important;
  font-size: 16px;
  float: right;
  display: block;
}
.sidr ul li a.menu-open-cta.close {
  background: url(../images/close-menu-drop-down-icon.svg) no-repeat
}
#sidr-0-button {
  color: #fff;
  text-decoration: none;
  position: absolute;
  right: 25px;
  top: 23px;
  font-size: 25px;
}
#sidr-0-button.close {
  background: url(../images/close-menu-panel.svg) no-repeat;
  display: block;
  text-indent: -999999px;
  width: 22px;
  height: 24px;
  margin-top: 3px;
  margin-left: 3px;
}
.sidr-class-panel-pane .sidr-class-menu-block-6 li a {
  font-weight: 400;
}

/* Hide itunes subscribption temporarily */
.pane-page-content .pane-content a.feed-button,
#worship-and-sermons .sermon-cta-buttons a.itunes-btn {
  /* display: none; */
}

/* Prayer request form */
#block-webform-client-block-513 {
  margin-bottom: 35px;
}
#block-webform-client-block-513 .block-inner {
  margin-left: 0;
  margin-right: 0;
}
form.webform-client-form-513 {
  max-width: 840px;
  margin: 0 auto;
}
form.webform-client-form-513 .webform-component--name,
form.webform-client-form-513 .webform-component--email,
form.webform-client-form-513 .webform-component--phone {
  width: 32%;
  float: left;
  overflow: hidden;
  padding: 0;
}
form.webform-client-form-513 .webform-component--email,
form.webform-client-form-513 .webform-component--phone {
  margin-left: 2%;
}
form.webform-client-form-513 .form-item label {
  display: none;
}
form.webform-client-form-513 .form-item input[type="text"],
form.webform-client-form-513 .form-item input[type="email"] {
  width: auto;
  display: block;
  max-width: 90%;
  border: 2px solid #d4d4d4;
  height: 41px;
  padding: 5px 10px;
  font-family: 'Open Sans Condensed', Arial;
  font-size: 22px;
  line-height: 100%;
}
form.webform-client-form-513 input[type="submit"] {
  padding: 14px 35px;
  background: #eb1c23;
  line-height: 100%;
  display: inline-block;
  float: left;
  font-size: 22px;
  font-family: 'Open Sans Condensed', Arial;
  text-transform: uppercase;
  color: #FFF;
  border: none;
}
form.webform-client-form-513 .form-item textarea {
  border: 2px solid rgb(212, 212, 212);
  opacity: 1;
  min-height: 125px;
  padding: 10px 10px;
  font-family: 'Open Sans Condensed', Arial;
  font-size: 22px;
  line-height: 100%;
}
form.webform-client-form-513 .form-item .grippie {
  display: none;
}
.page-node-514 .field-name-body a {
  color: #eb1c23;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-family: 'Open Sans Condensed', Arial;
  font-weight: 700;
}
.page-node-514 .field-name-body {
  margin-top: 190px;
}

/* Pledge Form */
.page-node-864.not-logged-in .pane-page-content {
  margin-top: 225px;	
}
.page-node-864 .pane-page-content {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;  
}
.page-node-864 .webform-client-form label {
  font-family: 'Open Sans Condensed', Arial;
  font-size: 22px;
}
.page-node-864 .webform-client-form input {
  font-family: 'Crimson Text', Georgia, "Times new roman";
}
.page-node-864 .webform-client-form .styledSelect,
.custom-options li {
  padding: 8px 13px 8px 32px;
  font-size: 18px;
  font-weight: bold;
}
.page-node-864 .webform-client-form .styledSelect {
  border: 1px solid #A9A9A9;
  background-color: #fff;
}
.page-node-864 .webform-client-form .custom-options {
  max-height: 250px;
  overflow-y: scroll;
  border: 1px solid #A9A9A9;
  background-color: #fff;
}
.page-node-864 .form-type-radio {
  position: relative;
}
.page-node-864 .form-type-radio input[type="radio"] {
  margin-top: auto;
  margin-bottom: auto;
  display: inline-block;
  height: 13px;
  position: absolute;
  top: 0;
  bottom: 0;
}
.page-node-864 .form-type-radio label {
  margin-left: 20px;
  line-height: 100%;
}
.page-node-864 .webform-component--my-our-pledge-for-the-church-year-starting-july-1-2019-is label {
  margin-right: 0;
}
.page-node-864 .form-type-radio.form-item-submitted-increase-last-years-pledge-by:nth-child(5n) label,
.page-node-864 .form-type-radio.form-item-submitted-i-we-will-pay-this-pledge:nth-child(5n) label,
.page-node-864 .form-type-radio.form-item-submitted-auto-renew-increase-percentage:nth-child(5n) label {
  margin-right: 5px;
}
.page-node-864 .webform-client-form input[type="submit"] {
  padding: 14px 35px;
  background: #eb1c23;
  line-height: 100%;
  display: inline-block;
  float: left;
  font-size: 22px;
  font-family: 'Open Sans Condensed', Arial;
  text-transform: uppercase;
  color: #FFF;
  border: none;
}
.page-node-864 .webform-component--City,
.page-node-864 .webform-component--State,
.page-node-864 .webform-component--ZIP {
  display: inline-block;
  float: left;
  width: auto;
}
.page-node-864 .webform-component--State,
.page-node-864 .webform-component--ZIP {
  margin-left: 25px;
}
.page-node-864 .webform-component--Email-1 {
  clear: both;
}
.page-node-864 .webform-component--increase-last-years-pledge-by,
.page-node-864 .webform-component--other-percentage-increase-amount {
  display: inline-block;
  float: left;
}
.page-node-864 .webform-component--i-we-will-pay-this-pledge {
  clear: left;
}
.page-node-864 .webform-component--i-we-will-pay-this-pledge,
.page-node-864 .webform-component--payment-frequency-other {
  display: inline-block;
  float: left;
}
.page-node-864 .webform-component--payment-frequency-other {
  width: 75px;
}
.page-node-864 .webform-component--payment-frequency-other input {
  width: auto;
  max-width: 100%;
  display: block;
}
.page-node-864 .webform-component--auto-renew {
  clear: both;
  padding-top: 10px;
}
.page-node-864 .webform-component--auto-renew-other-percentage-increase-amount,
.page-node-864 .webform-component--auto-renew-increase-percentage {
  display: inline-block;
  float: left;
}
.page-node-864 .webform-component--auto-renew {
  clear: both;
}
.page-node-864 .webform-component--estate-plans {
  clear: left;
}
.page-node-864 .webform-component-radios.webform-component--estate-plans label {
  font-weight: bold;
}