/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/**
 * @file
 * Presentation styles for your site theme.
 */
/**
 * Dependencies ===============================================================
 */
/**
 * Colors =====================================================================
 */
/**
 * Typography =================================================================
 */
/**
 * Breakpoints ================================================================
 */
/**
 * Design Settings ============================================================
 */
/**
 * @file
 * Icon sprite styles
 */
/* HTML element (SMACSS base) rules */
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  font-size: 0;
}

.element-invisible {
  margin: 0;
  padding: 0;
}

/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

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

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

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden], template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 * 3.Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/**
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:focus {
  outline: thin dotted;
}
a:active, a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Addresses font sizes and margins set differently in IE 6/7.
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

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

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

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

/**
 * Addresses margins set differently in IE 6/7.
 */
/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

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

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

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

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

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

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

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

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

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

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

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

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

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

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

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

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

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

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

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

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

  /* Hide sidebars and nav elements. */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/**
 * @file
 * Common Elements
 */
h1 {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.5em;
  color: #000000;
  font-weight: normal;
  margin: 0.8em 0;
  line-height: 1.2;
}

h2 {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.75em;
  color: #000000;
  font-weight: normal;
  line-height: 1.2;
}

h3, .h3 {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.375em;
  color: #000000;
  font-weight: normal;
  line-height: 1.2;
}

h4 {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
  color: #3c3c3c;
  font-weight: bold;
  line-height: 1.2;
}

a,
a:visited, a h3 {
  text-decoration: none;
  color: #3371be;
  font-weight: normal;
}
a:hover,
a:visited:hover, a h3:hover {
  color: #3371be;
  text-decoration: underline;
}
a:active,
a:visited:active, a h3:active {
  color: #002b54;
}
a:focus,
a:visited:focus, a h3:focus {
  outline: none;
}

hr {
  border: 1px solid #3371be;
  margin: 1em;
}

figcaption {
  background-color: #ebebeb;
  font-size: 0.875em;
  font-style: italic;
  padding: 0.25em;
}

div.panel-pane div.view-mode-ascrs_members_restricted.node, .view-mode-ascrs_members_restricted {
  background-color: #ebebeb;
  background-color: #3C3C3C;
  padding: .5em 1.5em;
}

ul.inline-list {
  list-style-type: none;
  padding-left: 0;
}
ul.inline-list li {
  display: inline-block;
}

.node-teaser > ul.links.inline {
  padding-left: 0;
}
.node-teaser li.node-readmore {
  list-style-type: none;
}

.img-float-left {
  padding: 1em 1em 1em 0;
  float: left;
}

.img-float-right {
  padding: 1em 0em 1em 1em;
  float: right;
}

/**
 * @file
 * Default page layout
 */
.page-constrained {
  -webkit-transition: width .3s;
  transition: width .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  width: 320px;
  overflow: auto;
}
.page-constrained .ascrs-ctools-col.ascrs-two-one-left {
  float: left;
  width: 100%;
}
.page-constrained .ascrs-ctools-col.ascrs-two-one-right {
  float: left;
  width: 100%;
}
@media (min-width: 768px) {
  .page-constrained {
    width: 768px;
  }
}
@media (min-width: 1024px) {
  .page-constrained {
    width: 1024px;
  }
  .page-constrained .ascrs-ctools-col.ascrs-two-one-left {
    float: left;
    width: 66.666%;
  }
  .page-constrained .ascrs-ctools-col.ascrs-two-one-right {
    float: left;
    width: 33.334%;
  }
}

/**
 * @file
 * Default page theming
 */
/**
 * Layout =====================================================================
 */
.ascrs-two-one, .panel-pane {
  overflow: hidden;
}

.pane-menuzord-menuzord-megamenu, .pane-page-header {
  overflow: visible;
}

.panel-body {
  padding-top: 112px;
}
@media (min-width: 768px) {
  .panel-body {
    padding-top: 127px;
  }
}
@media (min-width: 1024px) {
  .panel-body {
    padding-top: 140px;
  }
}

.pane-page-messages,
.breadcrumb,
.ascrs-front-content-blocks,
.pane-page-title,
.pane-page-content,
.pane-page-tabs {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .pane-page-messages,
  .breadcrumb,
  .ascrs-front-content-blocks,
  .pane-page-title,
  .pane-page-content,
  .pane-page-tabs {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 1024px) {
  .pane-page-messages,
  .breadcrumb,
  .ascrs-front-content-blocks,
  .pane-page-title,
  .pane-page-content,
  .pane-page-tabs {
    padding-left: 30px;
    padding-right: 30px;
  }
  .pane-page-messages .ascrs-ctools-col.ascrs-two-one-right,
  .breadcrumb .ascrs-ctools-col.ascrs-two-one-right,
  .ascrs-front-content-blocks .ascrs-ctools-col.ascrs-two-one-right,
  .pane-page-title .ascrs-ctools-col.ascrs-two-one-right,
  .pane-page-content .ascrs-ctools-col.ascrs-two-one-right,
  .pane-page-tabs .ascrs-ctools-col.ascrs-two-one-right {
    padding-left: 30px;
  }
  .pane-page-messages .ascrs-ctools-col.ascrs-two-one-right,
  .breadcrumb .ascrs-ctools-col.ascrs-two-one-right,
  .ascrs-front-content-blocks .ascrs-ctools-col.ascrs-two-one-right,
  .pane-page-title .ascrs-ctools-col.ascrs-two-one-right,
  .pane-page-content .ascrs-ctools-col.ascrs-two-one-right,
  .pane-page-tabs .ascrs-ctools-col.ascrs-two-one-right {
    padding-left: 30px;
  }
}

.page-landing-page .pane-page-content,
.landing-page-no-margin .pane-page-content,
.page-with-slideshow .pane-page-content,
.page-patients-resources-resource-library .pane-page-content,
.page-members-resources-resource-library .pane-page-content {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .page-landing-page .pane-page-content,
  .landing-page-no-margin .pane-page-content,
  .page-with-slideshow .pane-page-content,
  .page-patients-resources-resource-library .pane-page-content,
  .page-members-resources-resource-library .pane-page-content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  .page-landing-page .pane-page-content,
  .landing-page-no-margin .pane-page-content,
  .page-with-slideshow .pane-page-content,
  .page-patients-resources-resource-library .pane-page-content,
  .page-members-resources-resource-library .pane-page-content {
    padding-left: 0;
    padding-right: 0;
  }
}

.pane-page-content {
  padding-bottom: 6em;
}

.landing-page-no-margin .pane-page-content,
.page-with-slideshow .pane-page-content {
  padding-bottom: 0;
}

/**
 * Paint ======================================================================
 */
body {
  background-color: #3c3c3c;
}

.panel-body {
  background-color: #ebebeb;
}

.pane-page-content,
.pane-page-title,
.pane-page-tabs {
  background-color: #ffffff;
}

/**
 * Page Title =================================================================
 */
.pane-page-content > .pane-title {
  display: none;
}

.pane-page-title h1 {
  font-size: 2.5em;
  margin: 0;
  padding-top: 0.75em;
  padding-bottom: 0.5em;
}
@media (min-width: 768px) {
  .pane-page-title h1 {
    padding-top: 1em;
    padding-bottom: 0.75em;
  }
}
@media (min-width: 1024px) {
  .pane-page-title h1 {
    padding-top: 1.25em;
    padding-bottom: 1em;
  }
}

/**
 * Typography =================================================================
 */
body {
  color: #3c3c3c;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

/**
 * Breadcrumbs ================================================================
 */
.breadcrumb {
  background-color: #70a7eb;
  padding-top: 1em;
  padding-bottom: 1em;
}
.breadcrumb a {
  color: #ffffff;
}
.breadcrumb .sep {
  padding: 0 0.25em;
}

.messages {
  padding: 1em;
}
.messages.status {
  background-color: #ebebeb;
}
.messages.warning {
  background-color: #70a7eb;
  color: #ffffff;
}
.messages.error {
  background-color: #004990;
  background-color: #cf545c;
  color: #ffffff;
}
.messages.error a{
	color: #fff;
	opacity: .8;
}

.menu,
.menuzord-menu,
.item-list > ul,
.tabs {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu li,
.menuzord-menu li,
.item-list > ul li,
.tabs li {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .page-with-slideshow .panel-body, .landing-page-no-margin .panel-body {
    padding-top: 0;
  }
  .page-with-slideshow .panel-header, .landing-page-no-margin .panel-header {
    background-color: transparent;
  }
}

/**
 * Blocks in the right column of detail pages
 */
.ascrs-two-one-right .view-id-diseases_conditions.view-display-id-default .views-row,
.ascrs-two-one-right .pane-node-menu li.item-main-menu {
  padding-bottom: 1.3em;
}

.sidebar-link-spacing ul, .sidebar-link-spacing .view-content {
  padding-top: 1.3em;
}
.sidebar-link-spacing .views-row, .sidebar-link-spacing li {
  padding-bottom: 1.3em;
}

/**
 * @file
 * Media Region Definition
 */
/**
 * @file
 * Slideshows
 */
/**
 * @file
 * Header
 */
/**
 * Layout =====================================================================
 */
#mini-panel-page_header {
  position: relative;
}

.panel-header {
  position: absolute;
  z-index: 3;
  left: 50%;
  width: 320px;
  margin-left: -160px;
}
@media (min-width: 768px) {
  .panel-header {
    width: 768px;
    margin-left: -384px;
  }
}
@media (min-width: 1024px) {
  .panel-header {
    width: 1024px;
    margin-left: -512px;
  }
}
.panel-header .page-constrained {
  overflow: visible;
}

.ascrs-header-primary {
  position: relative;
  top: 40px;
  height: 72px;
}
.ascrs-header-primary.ascrs-region {
  overflow: initial;
}
@media (min-width: 768px) {
  .ascrs-header-primary {
    top: 40px;
    height: 87px;
  }
}
@media (min-width: 1024px) {
  .ascrs-header-primary {
    top: 40px;
    height: 100px;
  }
}

.ascrs-header-secondary {
  position: relative;
  overflow: initial;
  top: -72px;
  height: 40px;
  clear: both;
  padding: 0 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .ascrs-header-secondary {
    top: -87px;
    height: 40px;
    padding: 0 10px;
    text-align: right;
  }
}
@media (min-width: 1024px) {
  .ascrs-header-secondary {
    top: -100px;
    height: 40px;
    padding: 0 30px;
  }
}
.ascrs-header-secondary > .panel-pane {
  display: inline-block;
}
@media (min-width: 768px) {
  .ascrs-header-secondary > .panel-pane {
    margin-right: 2.5em;
  }
  .ascrs-header-secondary > .panel-pane:last-of-type {
    margin-right: 0;
  }
}
.ascrs-header-secondary .pane-views-1f98eb5af5b35b87a2e5321f8814a63d, .ascrs-header-secondary .pane-search-form {
  height: 40px;
  vertical-align: top;
  padding-top: 6px;
}
.ascrs-header-secondary .pane-system-user-menu {
  display: none;
}
@media (min-width: 768px) {
  .ascrs-header-secondary .pane-system-user-menu {
    display: inline-block;
  }
}

/**
 * Elements ===================================================================
 */
.ascrs-header-secondary a,
.ascrs-header-secondary a:visited {
  color: #ffffff;
}

/**
 * Paint ======================================================================
 */
.panel-header {
  background-color: #737373;
  box-shadow: 0px 4px 5px -4px rgba(0, 0, 0, 0.2);
}

.ascrs-header-primary {
  background-color: rgba(255, 255, 255, 0.95);
}

.ascrs-header-secondary {
  background-color: rgba(0, 0, 0, 0.5);
  background: linear-gradient(rgba(0, 0, 0, 0.5), transparent);
}

/**
 * Logo =======================================================================
 */
.menuzord-brand {
  position: absolute;
  top: 5px;
  left: 10px;
  display: block;
  width: 212px;
  height: 62px;
  background-image: url("../images/logo.png");
  background-size: 100%;
  text-indent: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .menuzord-brand {
    top: 10px;
    left: 40px;
    width: 238px;
    height: 68px;
  }
}
@media (min-width: 1024px) {
  .menuzord-brand {
    top: 10px;
    left: 30px;
    width: 279px;
    height: 80px;
  }
}

/**
 * Search Form ================================================================
 */
.ascrs-header-secondary .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form div,
.ascrs-header-secondary .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form label {
  display: inline-block;
}
.ascrs-header-secondary .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-widget-filter-search_api_views_fulltext {
  margin-right: 0.5em;
}
.ascrs-header-secondary .pane-views-1f98eb5af5b35b87a2e5321f8814a63d input.field-search_api_views_fulltext-textfield,
.page-search .ascrs-header-secondary .pane-views-1f98eb5af5b35b87a2e5321f8814a63d input.field-search_api_views_fulltext-textfield {
  border-color: rgba(0, 0, 0, 0.8);
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 0.25em 0.5em;
  width: 150px;
  line-height: 21px;
}
.page-search .ascrs-header-secondary .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form{
	width: auto;
}
.ascrs-header-secondary .pane-views-1f98eb5af5b35b87a2e5321f8814a63d input.form-submit {
  border: none;
  background: none;
  box-shadow: none;
  width: 20px;
  height: 20px;
  padding: 0;
  text-indent: 100%;
  overflow: hidden;
  background-image: url("../images/icon-sprite.png");
  background-repeat: no-repeat;
  background-position: 0 -80px;
}
.ascrs-header-secondary .pane-views-1f98eb5af5b35b87a2e5321f8814a63d input.form-submit:hover {
  background-image: url("../images/icon-sprite.png");
  background-repeat: no-repeat;
  background-position: -20px -80px;
}
.ascrs-header-secondary .pane-views-1f98eb5af5b35b87a2e5321f8814a63d input.form-submit:active {
  background-image: url("../images/icon-sprite.png");
  background-repeat: no-repeat;
  background-position: -40px -80px;
}

/**
 * User Menu ==================================================================
 */
.menu-user-menu .leaf {
  display: block;
  float: left;
  padding: 0 0.5em;
}
.menu-user-menu .leaf.first {
  padding-left: 0;
}
.menu-user-menu .leaf.last {
  padding-right: 0;
}
.menu-user-menu a {
  line-height: 40px;
}

/**
 * Surgeon Locator Link =======================================================
 */
.ascrs-header-secondary .pane-surgeon-locator-link {
  display: none;
}
@media (min-width: 768px) {
  .ascrs-header-secondary .pane-surgeon-locator-link {
    display: inline-block;
    vertical-align: top;
  }
}
.ascrs-header-secondary .pane-surgeon-locator-link .pane-content a {
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  background-color: #3371be;
  border-radius: 6px;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: normal;
}
.ascrs-header-secondary .pane-surgeon-locator-link .pane-content a:hover {
  background-color: #004990;
  color: #ffffff;
  text-decoration: none;
}
.ascrs-header-secondary .pane-surgeon-locator-link .pane-content a:active {
  background-color: #002b54;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
.ascrs-header-secondary .pane-surgeon-locator-link .pane-content a:focus, .ascrs-header-secondary .pane-surgeon-locator-link .pane-content a:target {
  outline: none;
  background-color: #002b54;
  color: #ffffff;
}
.ascrs-header-secondary .pane-surgeon-locator-link .pane-content a {
  border-radius: 0;
  display: block;
  background-color: #3371be;
  padding: 0 1.25em;
  line-height: 40px;
}
@media (min-width: 768px) {
  .ascrs-header-secondary .pane-surgeon-locator-link .pane-content a {
    line-height: 40px;
  }
}
@media (min-width: 1024px) {
  .ascrs-header-secondary .pane-surgeon-locator-link .pane-content a {
    line-height: 40px;
  }
}

/**
 * @file
 * Footer
 */
/**
 * Paint ======================================================================
 */
.panel-footer {
  background-color: #3c3c3c;
}

/**
 * Elements ===================================================================
 */
.panel-footer {
  color: #737373;
}
.panel-footer a,
.panel-footer a:visited {
  color: #ffffff;
}

/**
 * Layout =====================================================================
 */
.panel-footer .panel-content {
  padding: 2.25em 0 1.75em 0;
}
@media (min-width: 768px) {
  .panel-footer .panel-content {
    padding: 2.25em 0 4em 0;
  }
}
@media (min-width: 1024px) {
  .panel-footer .panel-content {
    padding: 2.75em 0 3.25em 0;
  }
}

.ascrs-footer-primary {
  margin-bottom: 2em;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .ascrs-footer-primary {
    width: 41.666667%;
    float: left;
    padding-left: 74px;
    padding-right: 10px;
  }
}
@media (min-width: 1024px) {
  .ascrs-footer-primary {
    width: 66.666667%;
    float: left;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.ascrs-footer-secondary {
  margin-top: 1em;
  margin-bottom: 1.5em;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .ascrs-footer-secondary {
    width: 58.333333%;
    float: left;
    margin-top: 0;
    margin-bottom: 2em;
    padding-left: 10px;
    padding-right: 74px;
  }
}
@media (min-width: 1024px) {
  .ascrs-footer-secondary {
    width: 33.333333%;
    float: left;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.ascrs-footer-tertiary {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .ascrs-footer-tertiary {
    width: 58.333333%;
    float: left;
    padding-left: 10px;
    padding-right: 74px;
  }
}
@media (min-width: 1024px) {
  .ascrs-footer-tertiary {
    width: auto;
    float: none;
    clear: both;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/**
 * Menus ======================================================================
 */
.pane-menu-menu-footer-1 .leaf,
.pane-menu-menu-footer-2 .leaf {
  font-size: 1.125em;
  text-align: center;
  margin: 1em 0;
}
.pane-menu-menu-footer-1 .leaf.first,
.pane-menu-menu-footer-2 .leaf.first {
  margin-top: 0;
}
.pane-menu-menu-footer-1 .leaf.last,
.pane-menu-menu-footer-2 .leaf.last {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .pane-menu-menu-footer-1 .leaf,
  .pane-menu-menu-footer-2 .leaf {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .pane-menu-menu-footer-1,
  .pane-menu-menu-footer-2 {
    width: 50%;
    float: left;
  }
}

.pane-menu-menu-footer-1 .leaf.last {
  margin-bottom: 1em;
}
@media (min-width: 1024px) {
  .pane-menu-menu-footer-1 .leaf.last {
    margin-bottom: 0;
  }
}

ul.menu-menu-footer-featured {
  overflow: visible;
  padding-bottom: 1em;
  border-bottom: 1px solid #737373;
}
ul.menu-menu-footer-featured .leaf {
  margin: 1em 0;
}
ul.menu-menu-footer-featured .leaf.first {
  margin-top: 0;
}
ul.menu-menu-footer-featured .leaf.last {
  margin-bottom: 0;
}

a.link-menu-footer-featured {
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  background-color: #3371be;
  border-radius: 6px;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: normal;
  padding: 1em;
}
a.link-menu-footer-featured:hover {
  background-color: #004990;
  color: #ffffff;
  text-decoration: none;
}
a.link-menu-footer-featured:active {
  background-color: #002b54;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
a.link-menu-footer-featured:focus, a.link-menu-footer-featured:target {
  outline: none;
  background-color: #002b54;
  color: #ffffff;
}

/**
 * Social Media ===============================================================
 */
.footer-social-icons .pane-content {
  padding-top: 1em;
}
.footer-social-icons .pane-content ul {
  padding: 0;
  list-style: none;
  text-align: justify;
  font-size: 0;
}
.footer-social-icons .pane-content ul:after {
  content: "";
  display: inline-block;
  width: 100%;
}
.footer-social-icons .pane-content ul li {
  margin: 0;
  padding: 0;
  display: inline-block;
}
.footer-social-icons .pane-content ul li a {
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  background-color: #3371be;
  border-radius: 6px;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: normal;
  width: 48px;
  height: 48px;
  text-indent: 100%;
  overflow: hidden;
  margin-bottom: 3px;
}
.footer-social-icons .pane-content ul li a:hover {
  background-color: #004990;
  color: #ffffff;
  text-decoration: none;
}
.footer-social-icons .pane-content ul li a:active {
  background-color: #002b54;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
.footer-social-icons .pane-content ul li a:focus, .footer-social-icons .pane-content ul li a:target {
  outline: none;
  background-color: #002b54;
  color: #ffffff;
}
.footer-social-icons .pane-content ul li.facebook a {
  background-image: url("../images/icon-sprite.png");
  background-repeat: no-repeat;
  background-position: 0 0;
}
.footer-social-icons .pane-content ul li.twitter a {
  background-image: url("../images/icon-sprite.png");
  background-repeat: no-repeat;
  background-position: -48px 0;
}
.footer-social-icons .pane-content ul li.linkedin a {
  background-image: url("../images/icon-sprite.png");
  background-repeat: no-repeat;
  background-position: -96px 0;
}
.footer-social-icons .pane-content ul li.email a {
  background-image: url("../images/icon-sprite.png");
  background-repeat: no-repeat;
  background-position: -144px 0;
}

/**
 * Disclaimer =================================================================
 */
.block-disclaimer-notice .pane-content p {
  font-size: 0.75em;
  margin: 0;
}

/**
 * @file
 * Front Page
 */
/**
 * Layout =====================================================================
 */
.ascrs-front-slideshow.ascrs-region {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .ascrs-front-slideshow {
    display: none;
  }
}

.ascrs-front-audience-categories {
  padding-top: 1em;
  padding-bottom: 1em;
}
@media (min-width: 768px) {
  .ascrs-front-audience-categories {
    padding-top: 1.25em;
    padding-bottom: 1.25em;
  }
}

.ascrs-front-content-blocks {
  overflow: auto;
  width: 100%;
}
.ascrs-front-content-blocks .panel-pane .pane-content {
  padding-bottom: 2em;
  border-bottom: 1px solid #ebebeb;
}
.ascrs-front-content-blocks .panel-pane:last-of-type .pane-content {
  border-bottom: none;
}
@media (min-width: 768px) {
  .ascrs-front-content-blocks .panel-pane .pane-content {
    padding-bottom: 4em;
    margin-left: 4em;
    margin-right: 4em;
  }
}
@media (min-width: 1024px) {
  .ascrs-front-content-blocks .panel-pane {
    width: 50%;
    float: left;
  }
  .ascrs-front-content-blocks .panel-pane:nth-child(odd) {
    padding-right: 30px;
  }
  .ascrs-front-content-blocks .panel-pane:nth-child(even) {
    padding-left: 30px;
  }
  .ascrs-front-content-blocks .panel-pane .pane-content {
    border-bottom: none;
    padding-bottom: 3em;
    margin-left: 0;
    margin-right: 0;
  }
}

.ascrs-front-content-media {
  overflow: auto;
}
@media (min-width: 768px) {
  .ascrs-front-content-media .panel-pane {
    margin-left: 4em;
    margin-right: 4em;
  }
}
@media (min-width: 1024px) {
  .ascrs-front-content-media .panel-pane {
    margin-left: 0;
    margin-right: 0;
  }
}

/**
 * Paint ======================================================================
 */
.ascrs-front-audience-categories {
  background-color: #ebebeb;
}

.ascrs-front-content-media {
  background-color: #ebebeb;
}

/**
 * Slideshow ==================================================================
 */
.ascrs-front-slideshow.ascrs-region {
  overflow: initial;
}

.view-slideshow.view-display-id-panel_pane_1 .flexslider {
  margin: 0;
  background: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.view-slideshow.view-display-id-panel_pane_1 .slides .entity-ascrs-slide .content {
  position: relative;
}
.view-slideshow.view-display-id-panel_pane_1 .slides .entity-ascrs-slide .field-name-field-image .field-item {
  position: relative;
}
.view-slideshow.view-display-id-panel_pane_1 .slides .entity-ascrs-slide .field-name-field-image .field-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(transparent, black);
  opacity: 0.8;
}
.view-slideshow.view-display-id-panel_pane_1 .slides .entity-ascrs-slide .field-name-field-caption {
  position: absolute;
  bottom: 44px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 3em;
}
.view-slideshow.view-display-id-panel_pane_1 .flex-control-nav {
  z-index: 2;
  background-color: rgba(115, 115, 115, 0.25);
  bottom: 0px;
  height: 40px;
  padding-top: 10px;
}
.view-slideshow.view-display-id-panel_pane_1 .flex-control-nav li {
  margin: 0 1em;
}
.view-slideshow.view-display-id-panel_pane_1 .flex-direction-nav {
  display: none;
}
.view-slideshow.view-display-id-panel_pane_1 .flex-control-paging li a {
  position: relative;
  width: 20px;
  height: 20px;
  text-indent: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: inset 1px 1px 3px 0px #000000;
  -moz-box-shadow: inset 1px 1px 3px 0px #000000;
  -o-box-shadow: inset 1px 1px 3px 0px #000000;
  box-shadow: inset 1px 1px 3px 0px #000000;
}
.view-slideshow.view-display-id-panel_pane_1 .flex-control-paging li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 13px;
  height: 13px;
  background: transparent;
  opacity: 0;
  border-radius: 100%;
  transition: opacity 0.3s;
}
.view-slideshow.view-display-id-panel_pane_1 .flex-control-paging li a.flex-active::after, .view-slideshow.view-display-id-panel_pane_1 .flex-control-paging li a.flex-active:hover::after {
  background: #ffffff;
  opacity: 1;
}
.view-slideshow.view-display-id-panel_pane_1 .flex-control-paging li a:hover::after {
  background: #3c3c3c;
  opacity: 1;
}

/**
 * Audience Categories ========================================================
 */
.audience-category-list {
  margin: 0;
  padding: 0 0 3px 0;
  list-style: none;
  overflow: hidden;
}
.audience-category-list li {
  margin-bottom: 5px;
}
.audience-category-list li:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .audience-category-list li {
    margin-bottom: 0;
    width: 33.3334%;
    float: left;
    padding: 0 5px;
  }
  .audience-category-list li:first-of-type {
    padding-left: 0;
    padding-right: 10px;
  }
  .audience-category-list li:last-of-type {
    padding-left: 10px;
    padding-right: 0px;
  }
}
.audience-category-list a {
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  background-color: #3371be;
  border-radius: 6px;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: normal;
  padding: 1em;
  font-size: 1.5em;
  border-radius: 0;
}
.audience-category-list a:hover {
  background-color: #004990;
  color: #ffffff;
  text-decoration: none;
}
.audience-category-list a:active {
  background-color: #002b54;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
.audience-category-list a:focus, .audience-category-list a:target {
  outline: none;
  background-color: #002b54;
  color: #ffffff;
}

/**
 * Content Blocks =============================================================
 */
.ascrs-front-content-blocks .pane-title {
  font-size: 2em;
  text-align: center;
  margin: 0.75em 0 0.5em 0;
}

/**
 * News =======================================================================
 */
.view-news-listing.view-display-id-panel_pane_front .views-row {
  background-color: #ebebeb;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  padding: 1em;
  margin-bottom: 0.75em;
}
.view-news-listing.view-display-id-panel_pane_front .views-row:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .view-news-listing.view-display-id-panel_pane_front .views-row {
    padding: 1.5em;
  }
}
.view-news-listing.view-display-id-panel_pane_front .views-field-title a {
  font-weight: bold;
}
.view-news-listing.view-display-id-panel_pane_front .view-content {
  margin-bottom: 1em;
}
.view-news-listing.view-display-id-panel_pane_front .view-footer a {
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  background-color: #3371be;
  border-radius: 6px;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: normal;
}
.view-news-listing.view-display-id-panel_pane_front .view-footer a:hover {
  background-color: #004990;
  color: #ffffff;
  text-decoration: none;
}
.view-news-listing.view-display-id-panel_pane_front .view-footer a:active {
  background-color: #002b54;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
.view-news-listing.view-display-id-panel_pane_front .view-footer a:focus, .view-news-listing.view-display-id-panel_pane_front .view-footer a:target {
  outline: none;
  background-color: #002b54;
  color: #ffffff;
}
.view-news-listing.view-display-id-panel_pane_front .view-footer a::before {
  content: "";
  display: inline-block;
  margin-right: 0.75em;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  background-image: url("../images/icon-sprite.png");
  background-repeat: no-repeat;
  background-position: -32px -48px;
}

/**
 * Events =====================================================================
 */
.view-event-listing.view-display-id-panel_pane_front .views-row {
  overflow: auto;
  border-bottom: 2px solid #ebebeb;
  padding: 0.5em 0;
}
.view-event-listing.view-display-id-panel_pane_front .views-field-title a {
  font-weight: bold;
}
.view-event-listing.view-display-id-panel_pane_front .views-field-field-date a {
  display: block;
  float: left;
  width: 100px;
  height: 80px;
  margin-right: 1em;
  background-color: #3371be;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  padding-top: 0.375em;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  background-color: #3371be;
  border-radius: 6px;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: normal;
  border-radius: 0;
}
.view-event-listing.view-display-id-panel_pane_front .views-field-field-date a .day {
  display: block;
  font-size: 2.5em;
}
.view-event-listing.view-display-id-panel_pane_front .views-field-field-date a .mon {
  display: block;
  font-size: 1.5em;
  text-transform: uppercase;
}
.view-event-listing.view-display-id-panel_pane_front .views-field-field-date a:hover {
  background-color: #004990;
  color: #ffffff;
  text-decoration: none;
}
.view-event-listing.view-display-id-panel_pane_front .views-field-field-date a:active {
  background-color: #002b54;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
.view-event-listing.view-display-id-panel_pane_front .views-field-field-date a:focus, .view-event-listing.view-display-id-panel_pane_front .views-field-field-date a:target {
  outline: none;
  background-color: #002b54;
  color: #ffffff;
}
.view-event-listing.view-display-id-panel_pane_front .view-content {
  margin-bottom: 1em;
}
.view-event-listing.view-display-id-panel_pane_front .view-footer a {
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  background-color: #3371be;
  border-radius: 6px;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: normal;
}
.view-event-listing.view-display-id-panel_pane_front .view-footer a:hover {
  background-color: #004990;
  color: #ffffff;
  text-decoration: none;
}
.view-event-listing.view-display-id-panel_pane_front .view-footer a:active {
  background-color: #002b54;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
.view-event-listing.view-display-id-panel_pane_front .view-footer a:focus, .view-event-listing.view-display-id-panel_pane_front .view-footer a:target {
  outline: none;
  background-color: #002b54;
  color: #ffffff;
}
.view-event-listing.view-display-id-panel_pane_front .view-footer a::before {
  content: "";
  display: inline-block;
  margin-right: 0.75em;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  background-image: url("../images/icon-sprite.png");
  background-repeat: no-repeat;
  background-position: -96px -48px;
}

/**
 * Media ======================================================================
 */
.ascrs-front-content-media .pane-views-panes {
  position: relative;
}
.ascrs-front-content-media .pane-title {
  text-align: center;
}
@media (min-width: 768px) {
  .ascrs-front-content-media .pane-title {
    text-align: left;
    margin-bottom: 0;
    padding-top: 0.75em;
    padding-bottom: 0.125em;
  }
}
.ascrs-front-content-media .pane-content {
  position: relative;
}
@media (min-width: 768px) {
  .ascrs-front-content-media .pane-content {
    top: -3.75em;
  }
}
.ascrs-front-content-media .view-header {
  padding: 0 2.75em 1em 2.75em;
}
@media (min-width: 768px) {
  .ascrs-front-content-media .view-header {
    width: 200px;
    float: right;
    padding: 0;
    margin-bottom: 1em;
  }
}
.ascrs-front-content-media .view-header a {
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  background-color: #3371be;
  border-radius: 6px;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: normal;
}
.ascrs-front-content-media .view-header a:hover {
  background-color: #004990;
  color: #ffffff;
  text-decoration: none;
}
.ascrs-front-content-media .view-header a:active {
  background-color: #002b54;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
.ascrs-front-content-media .view-header a:focus, .ascrs-front-content-media .view-header a:target {
  outline: none;
  background-color: #002b54;
  color: #ffffff;
}
.ascrs-front-content-media .view-header a::after {
  content: "";
  display: inline-block;
  margin-left: 0.75em;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  background-image: url("../images/icon-sprite.png");
  background-repeat: no-repeat;
  background-position: -160px -48px;
}
.ascrs-front-content-media .view-content {
  border-top: 1px solid #ffffff;
  padding-top: 1em;
}
@media (min-width: 768px) {
  .ascrs-front-content-media .view-content {
    clear: both;
  }
}
.ascrs-front-content-media .views-field-title a {
  font-weight: bold;
}
@media (min-width: 1024px) {
  .ascrs-front-content-media .pane-paired-video-home-page-individual-slides {
    display: none;
  }
}
.ascrs-front-content-media .pane-paired-video-home-page-paired-slides {
  display: none;
}
@media (min-width: 1024px) {
  .ascrs-front-content-media .pane-paired-video-home-page-paired-slides {
    display: block;
  }
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_individual_slides .item-list > ul {
  overflow: visible;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_individual_slides .views-row {
  background-color: #ffffff;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  padding: 0.375em;
  margin-bottom: 1.25em;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_individual_slides .views-row.views-row-list {
  margin-bottom: 0;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_individual_slides .views-field-title .field-content {
  display: block;
  padding: 0.5em 0;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_individual_slides .views-field-title .field-content a {
  display: block;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_individual_slides .views-field-field-video .field-content a {
  display: block;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_individual_slides .views-field-field-video .field-content img {
  display: block;
  width: 100%;
  height: auto;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flexslider {
  margin: 0;
  background: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -wekbit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flexslider .flex-direction-nav a {
  display: block;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-control-nav {
  height: 3.5em;
  padding-top: 1.125em;
  background-color: rgba(115, 115, 115, 0.25);
  position: relative;
  bottom: auto;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-control-nav li {
  margin: 0 1em;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-control-paging li a {
  position: relative;
  width: 20px;
  height: 20px;
  text-indent: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: inset 1px 1px 3px 0px #000000;
  -moz-box-shadow: inset 1px 1px 3px 0px #000000;
  -o-box-shadow: inset 1px 1px 3px 0px #000000;
  box-shadow: inset 1px 1px 3px 0px #000000;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-control-paging li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 13px;
  height: 13px;
  background: transparent;
  opacity: 0;
  border-radius: 100%;
  transition: opacity 0.3s;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-control-paging li a.flex-active::after, .ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-control-paging li a.flex-active:hover::after {
  background: #3371be;
  opacity: 1;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-control-paging li a:hover::after {
  background: #ffffff;
  opacity: 1;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-direction-nav a {
  width: 40px;
  height: 40px;
  margin: 0;
  position: absolute;
  top: auto;
  opacity: 1;
  text-shadow: none;
  transition: none;
  background-color: #ebebeb;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  text-indent: 100%;
  font-size: 0;
  overflow: hidden;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-direction-nav a:hover {
  background-color: #ffffff;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-direction-nav a:before {
  font-family: inherit;
  font-size: 30px;
  line-height: 1;
  display: block;
  content: "<";
  width: 100%;
  height: 100%;
  color: rgba(115, 115, 115, 0.25);
  text-indent: 0;
  text-align: center;
  transform: scaleY(1.5);
  position: absolute;
  top: 2px;
  left: 0;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-direction-nav a:before {
    top: 7px;
  }
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-direction-nav a.flex-next:before {
  content: ">";
  left: 2px;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-direction-nav a.flex-prev {
  bottom: 8px;
  left: 25%;
  margin-left: -20px;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-direction-nav a.flex-next {
  bottom: 8px;
  right: 25%;
  margin-right: -20px;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-direction-nav .flex-prev {
  left: auto;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .flex-direction-nav .flex-next {
  right: auto;
  text-align: inherit;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .slides {
  margin-bottom: 1.125em;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .slides li .ascrs-ctools-paired-slide {
  width: 50%;
  float: left;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .slides li .ascrs-ctools-paired-slide .paired-slide-first {
  margin-right: 0.625em;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .slides li .ascrs-ctools-paired-slide .paired-slide-second {
  margin-left: 0.625em;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .slides li .ascrs-ctools-paired-slide .slide-contents {
  background-color: #ffffff;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  padding: 1.25em 1.25em 1.875em 1.25em;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .views-field-field-video .field-content a {
  display: block;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .views-field-field-video .field-content img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .views-field-field-video .field-content img {
    max-height: 246px;
  }
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .views-field-title .field-content {
  display: block;
  padding: 0.5em 0;
}
.ascrs-front-content-media .view-paired-video.view-display-id-home_page_paired_slides .views-field-title .field-content a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/**
 * @file
 * Landing Page
 */
/**
 * Layout =====================================================================
 */
.ascrs-landing-slides.ascrs-region {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .ascrs-landing-slides {
    display: none;
  }
}

.ascrs-landing-links {
  padding: 2em 0;
}

.ascrs-landing-media {
  overflow: auto;
}

/**
 * Paint ======================================================================
 */
.ascrs-landing-links {
  background-color: #3371be;
}

.ascrs-landing-media {
  background-color: #ebebeb;
}

/**
 * Slideshow ==================================================================
 */
.ascrs-landing-slides.ascrs-region {
  overflow: initial;
}

.pane-taxonomy-term-field-slides .flexslider {
  margin: 0;
  background: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.pane-taxonomy-term-field-slides .slides .entity-ascrs-slide .content {
  position: relative;
}
.pane-taxonomy-term-field-slides .slides .entity-ascrs-slide .field-name-field-image .field-item {
  position: relative;
}
.pane-taxonomy-term-field-slides .slides .entity-ascrs-slide .field-name-field-image .field-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(transparent, black);
  opacity: 0.8;
}
.pane-taxonomy-term-field-slides .slides .entity-ascrs-slide .field-name-field-caption {
  position: absolute;
  bottom: 44px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 3em;
}
.pane-taxonomy-term-field-slides .flex-control-nav {
  z-index: 2;
  background-color: rgba(115, 115, 115, 0.25);
  bottom: 0px;
  height: 40px;
  padding-top: 10px;
}
.pane-taxonomy-term-field-slides .flex-control-nav li {
  margin: 0 1em;
}
.pane-taxonomy-term-field-slides .flex-direction-nav {
  display: none;
}
.pane-taxonomy-term-field-slides .flex-control-paging li a {
  position: relative;
  width: 20px;
  height: 20px;
  text-indent: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: inset 1px 1px 3px 0px #000000;
  -moz-box-shadow: inset 1px 1px 3px 0px #000000;
  -o-box-shadow: inset 1px 1px 3px 0px #000000;
  box-shadow: inset 1px 1px 3px 0px #000000;
}
.pane-taxonomy-term-field-slides .flex-control-paging li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 13px;
  height: 13px;
  background: transparent;
  opacity: 0;
  border-radius: 100%;
  transition: opacity 0.3s;
}
.pane-taxonomy-term-field-slides .flex-control-paging li a.flex-active::after, .pane-taxonomy-term-field-slides .flex-control-paging li a.flex-active:hover::after {
  background: #ffffff;
  opacity: 1;
}
.pane-taxonomy-term-field-slides .flex-control-paging li a:hover::after {
  background: #3c3c3c;
  opacity: 1;
}

/**
 * Media ======================================================================
 */
.ascrs-landing-media .pane-views-panes {
  position: relative;
}
.ascrs-landing-media .pane-title {
  text-align: center;
}
@media (min-width: 768px) {
  .ascrs-landing-media .pane-title {
    text-align: left;
    margin-bottom: 0;
    padding-top: 0.75em;
    padding-bottom: 0.125em;
  }
}
.ascrs-landing-media .pane-content {
  position: relative;
}
@media (min-width: 768px) {
  .ascrs-landing-media .pane-content {
    top: -3.75em;
  }
}
.ascrs-landing-media .view-header {
  padding: 0 2.75em 1em 2.75em;
}
@media (min-width: 768px) {
  .ascrs-landing-media .view-header {
    width: 200px;
    float: right;
    padding: 0;
    margin-bottom: 1em;
  }
}
.ascrs-landing-media .view-header a {
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  background-color: #3371be;
  border-radius: 6px;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: normal;
}
.ascrs-landing-media .view-header a:hover {
  background-color: #004990;
  color: #ffffff;
  text-decoration: none;
}
.ascrs-landing-media .view-header a:active {
  background-color: #002b54;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
.ascrs-landing-media .view-header a:focus, .ascrs-landing-media .view-header a:target {
  outline: none;
  background-color: #002b54;
  color: #ffffff;
}
.ascrs-landing-media .view-header a::after {
  content: "";
  display: inline-block;
  margin-left: 0.75em;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  background-image: url("../images/icon-sprite.png");
  background-repeat: no-repeat;
  background-position: -160px -48px;
}
.ascrs-landing-media .view-content {
  border-top: 1px solid #ffffff;
  padding-top: 1em;
}
@media (min-width: 768px) {
  .ascrs-landing-media .view-content {
    clear: both;
  }
}
.ascrs-landing-media .views-field-title a {
  font-weight: bold;
}
@media (min-width: 1024px) {
  .ascrs-landing-media .pane-paired-video-landing-page-individual-slides {
    display: none;
  }
}
.ascrs-landing-media .pane-paired-video-landing-page-paired-slides {
  display: none;
}
@media (min-width: 1024px) {
  .ascrs-landing-media .pane-paired-video-landing-page-paired-slides {
    display: block;
  }
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_individual_slides .item-list > ul {
  overflow: visible;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_individual_slides .views-row {
  background-color: #ffffff;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  padding: 0.375em;
  margin-bottom: 1.25em;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_individual_slides .views-row.views-row-list {
  margin-bottom: 0;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_individual_slides .views-field-title .field-content {
  display: block;
  padding: 0.5em 0;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_individual_slides .views-field-title .field-content a {
  display: block;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_individual_slides .views-field-field-video .field-content a {
  display: block;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_individual_slides .views-field-field-video .field-content img {
  display: block;
  width: 100%;
  height: auto;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flexslider {
  margin: 0;
  background: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -wekbit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flexslider .flex-direction-nav a {
  display: block;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-control-nav {
  height: 3.5em;
  padding-top: 1.125em;
  background-color: rgba(115, 115, 115, 0.25);
  position: relative;
  bottom: auto;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-control-nav li {
  margin: 0 1em;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-control-paging li a {
  position: relative;
  width: 20px;
  height: 20px;
  text-indent: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: inset 1px 1px 3px 0px #000000;
  -moz-box-shadow: inset 1px 1px 3px 0px #000000;
  -o-box-shadow: inset 1px 1px 3px 0px #000000;
  box-shadow: inset 1px 1px 3px 0px #000000;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-control-paging li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 13px;
  height: 13px;
  background: transparent;
  opacity: 0;
  border-radius: 100%;
  transition: opacity 0.3s;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-control-paging li a.flex-active::after, .ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-control-paging li a.flex-active:hover::after {
  background: #3371be;
  opacity: 1;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-control-paging li a:hover::after {
  background: #ffffff;
  opacity: 1;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-direction-nav a {
  width: 40px;
  height: 40px;
  margin: 0;
  position: absolute;
  top: auto;
  opacity: 1;
  text-shadow: none;
  transition: none;
  background-color: #ebebeb;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  text-indent: 100%;
  font-size: 0;
  overflow: hidden;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-direction-nav a:hover {
  background-color: #ffffff;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-direction-nav a:before {
  font-family: inherit;
  font-size: 30px;
  line-height: 1;
  display: block;
  content: "<";
  width: 100%;
  height: 100%;
  color: rgba(115, 115, 115, 0.25);
  text-indent: 0;
  text-align: center;
  transform: scaleY(1.5);
  position: absolute;
  top: 2px;
  left: 0;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-direction-nav a:before {
    top: 7px;
  }
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-direction-nav a.flex-next:before {
  content: ">";
  left: 2px;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-direction-nav a.flex-prev {
  bottom: 8px;
  left: 25%;
  margin-left: -20px;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-direction-nav a.flex-next {
  bottom: 8px;
  right: 25%;
  margin-right: -20px;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-direction-nav .flex-prev {
  left: auto;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .flex-direction-nav .flex-next {
  right: auto;
  text-align: inherit;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .slides {
  margin-bottom: 1.125em;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .slides li .ascrs-ctools-paired-slide {
  width: 50%;
  float: left;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .slides li .ascrs-ctools-paired-slide .paired-slide-first {
  margin-right: 0.625em;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .slides li .ascrs-ctools-paired-slide .paired-slide-second {
  margin-left: 0.625em;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .slides li .ascrs-ctools-paired-slide .slide-contents {
  background-color: #ffffff;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  padding: 1.25em 1.25em 1.875em 1.25em;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .views-field-field-video .field-content a {
  display: block;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .views-field-field-video .field-content img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .views-field-field-video .field-content img {
    max-height: 246px;
  }
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .views-field-title .field-content {
  display: block;
  padding: 0.5em 0;
}
.ascrs-landing-media .view-paired-video.view-display-id-landing_page_paired_slides .views-field-title .field-content a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pane-news-listing-panel-pane-front .pane-title a,
.pane-event-listing-panel-pane-front .pane-title a {
  background-image: url("../images/icon-sprite.png");
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  height: 32px;
  vertical-align: middle;
  width: 57px;
  position: relative;
  left: 20px;
}
.pane-news-listing-panel-pane-front .pane-title a:hover,
.pane-event-listing-panel-pane-front .pane-title a:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}

.pane-event-listing-panel-pane-front .pane-title a {
  background-position: -138px -112px;
}

.pane-news-listing-panel-pane-front .pane-title a {
  background-position: -82px -112px;
}

.entity-ascrs-slide .arrow {
  border-bottom: 18px solid transparent;
  border-left: 18px solid #fff;
  border-top: 18px solid transparent;
  height: 0;
  width: 0;
  font-size: 20px;
  display: inline-block;
  color: transparent;
  line-height: 1;
}

.flex-control-paging:empty {
  display: none;
}

.ascrs-ctools-col.ascrs-two-one-right .buttons .pane-content a {
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  background-color: #3371be;
  border-radius: 6px;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: normal;
}
.ascrs-ctools-col.ascrs-two-one-right .buttons .pane-content a:hover {
  background-color: #004990;
  color: #ffffff;
  text-decoration: none;
}
.ascrs-ctools-col.ascrs-two-one-right .buttons .pane-content a:active {
  background-color: #002b54;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
.ascrs-ctools-col.ascrs-two-one-right .buttons .pane-content a:focus, .ascrs-ctools-col.ascrs-two-one-right .buttons .pane-content a:target {
  outline: none;
  background-color: #002b54;
  color: #ffffff;
}

.ascrs-landing-tabs .ascrs-ctools-col.ascrs-two-one-right .buttons .pane-content a {
  color: #3371be;
  background-color: #ffffff;
  border: 2px solid #ebebeb;
  box-shadow: 1px 3px 3px 0 rgba(0, 0, 0, 0.2);
  display: block;
  font-weight: normal;
  padding: 1em;
  text-align: center;
  text-decoration: none;
}
.ascrs-landing-tabs .ascrs-ctools-col.ascrs-two-one-right .buttons .pane-content a:hover {
  background-color: #ebebeb;
}
.ascrs-landing-tabs .ascrs-ctools-col.ascrs-two-one-right .buttons .pane-content a:focus, .ascrs-landing-tabs .ascrs-ctools-col.ascrs-two-one-right .buttons .pane-content a:target {
  color: #004990;
  background-color: #ebebeb;
}

/**
 * @file
 * Resource Library
 */
/**
 * Layout
 */
.page-patients-resources-resource-library .resource-library .view-content, .page-patients-resources-resource-library .resource-library .view-filters, .page-patients-resources-resource-library .pane-custom.pane-1,
.page-members-resources-resource-library .resource-library .view-content,
.page-members-resources-resource-library .resource-library .view-filters,
.page-members-resources-resource-library .pane-custom.pane-1 {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .page-patients-resources-resource-library .ascrs-tabs-wrapper label:nth-child(2),
  .page-members-resources-resource-library .ascrs-tabs-wrapper label:nth-child(2) {
    margin-left: 10px;
  }
  .page-patients-resources-resource-library .resource-library .view-filters, .page-patients-resources-resource-library .pane-custom.pane-1,
  .page-members-resources-resource-library .resource-library .view-filters,
  .page-members-resources-resource-library .pane-custom.pane-1 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-patients-resources-resource-library .resource-library .view-content,
  .page-members-resources-resource-library .resource-library .view-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-patients-resources-resource-library .border-bar,
  .page-members-resources-resource-library .border-bar {
    border-top: 4px solid #3371be;
    position: relative;
    bottom: -55px;
    margin: 0 10px;
  }
}
@media (min-width: 1024px) {
  .page-patients-resources-resource-library .ascrs-tabs-wrapper label:nth-child(2),
  .page-members-resources-resource-library .ascrs-tabs-wrapper label:nth-child(2) {
    margin-left: 30px;
  }
  .page-patients-resources-resource-library .resource-library .view-filters, .page-patients-resources-resource-library .pane-custom.pane-1,
  .page-members-resources-resource-library .resource-library .view-filters,
  .page-members-resources-resource-library .pane-custom.pane-1 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .page-patients-resources-resource-library .resource-library .view-content,
  .page-members-resources-resource-library .resource-library .view-content {
    padding-left: 60px;
    padding-right: 60px;
  }
  .page-patients-resources-resource-library .border-bar,
  .page-members-resources-resource-library .border-bar {
    margin: 0 30px;
  }
}
.page-patients-resources-resource-library .pane-page-content, .page-patients-resources-resource-library .ascrs-tabs-wrapper .ascrs-tabs-body,
.page-members-resources-resource-library .pane-page-content,
.page-members-resources-resource-library .ascrs-tabs-wrapper .ascrs-tabs-body {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.page-patients-resources-resource-library .ascrs-tabs-wrapper .ascrs-tabs-body-wrapper,
.page-members-resources-resource-library .ascrs-tabs-wrapper .ascrs-tabs-body-wrapper {
  border-top: none;
}

/**
 * Exposed Filters ============================================================
 */
.view.resource-library.resource-library-publications .view-filters, .view.resource-library.resource-library-images .view-filters, .view.resource-library.resource-library-video .view-filters {
  margin-top: 2em;
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  .view.resource-library.resource-library-publications .view-filters, .view.resource-library.resource-library-images .view-filters, .view.resource-library.resource-library-video .view-filters {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}
.view.resource-library.resource-library-publications .views-exposed-widgets, .view.resource-library.resource-library-images .views-exposed-widgets, .view.resource-library.resource-library-video .views-exposed-widgets {
  display: table;
}
@media (min-width: 320px) and (max-width: 767px) {
  .view.resource-library.resource-library-publications .views-exposed-widgets, .view.resource-library.resource-library-images .views-exposed-widgets, .view.resource-library.resource-library-video .views-exposed-widgets {
    width: 100%;
  }
  .view.resource-library.resource-library-publications .views-exposed-widgets .form-item-tid > select,
  .view.resource-library.resource-library-publications .views-exposed-widgets .form-item-filter-publications > select,
  .view.resource-library.resource-library-publications .views-exposed-widgets .form-item-filter-images > select, .view.resource-library.resource-library-images .views-exposed-widgets .form-item-tid > select,
  .view.resource-library.resource-library-images .views-exposed-widgets .form-item-filter-publications > select,
  .view.resource-library.resource-library-images .views-exposed-widgets .form-item-filter-images > select, .view.resource-library.resource-library-video .views-exposed-widgets .form-item-tid > select,
  .view.resource-library.resource-library-video .views-exposed-widgets .form-item-filter-publications > select,
  .view.resource-library.resource-library-video .views-exposed-widgets .form-item-filter-images > select {
    width: 100%;
  }
  .view.resource-library.resource-library-publications .views-exposed-widgets .views-submit-button, .view.resource-library.resource-library-images .views-exposed-widgets .views-submit-button, .view.resource-library.resource-library-video .views-exposed-widgets .views-submit-button {
    text-align: right;
  }
}
.view.resource-library.resource-library-publications .views-exposed-form .views-exposed-widget, .view.resource-library.resource-library-images .views-exposed-form .views-exposed-widget, .view.resource-library.resource-library-video .views-exposed-form .views-exposed-widget {
  display: table-cell;
  vertical-align: middle;
  padding-right: 1em;
}
.view.resource-library.resource-library-publications .views-exposed-form .views-exposed-widget:last-of-type, .view.resource-library.resource-library-images .views-exposed-form .views-exposed-widget:last-of-type, .view.resource-library.resource-library-video .views-exposed-form .views-exposed-widget:last-of-type {
  padding-right: 0;
}

/**
 * Pager ======================================================================
 */
.view.resource-library.resource-library-publications > .item-list, .view.resource-library.resource-library-images > .item-list, .view.resource-library.resource-library-video > .item-list {
  text-align: center;
  padding-top: 4em;
  padding-bottom: 4em;
}
.view.resource-library.resource-library-publications > .item-list ul.pager, .view.resource-library.resource-library-images > .item-list ul.pager, .view.resource-library.resource-library-video > .item-list ul.pager {
  display: inline-block;
}

/**
 * Result List Views ==========================================================
 */
.resource-library.resource-library-video > .view-content {
  background-color: #ebebeb;
  overflow: visible;
  padding-top: 2.5em;
  float: left;
  position: relative;
}
.resource-library.resource-library-video > .view-content .views-row {
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .resource-library.resource-library-video > .view-content .views-row {
    float: left;
    width: 50%;
    padding: 0 0.5em 2em 0.5em;
  }
  .resource-library.resource-library-video > .view-content .views-row:nth-child(2n+1) {
    clear: both;
  }
}
@media (min-width: 1024px) {
  .resource-library.resource-library-video > .view-content .views-row {
    float: left;
    width: 33.33334%;
    padding: 0 0.5em 2em 0.5em;
  }
  .resource-library.resource-library-video > .view-content .views-row:nth-child(3n+1) {
    clear: both;
  }
}
.resource-library.resource-library-video > .view-content .views-field-field-video {
  margin-bottom: 0.5em;
}
@media (min-width: 1024px) {
  .resource-library.resource-library-video > .view-content .views-field-field-video {
    margin-bottom: 1em;
  }
}
.resource-library.resource-library-video > .view-content .views-field-field-video a, .resource-library.resource-library-video > .view-content .views-field-field-video img {
  display: block;
  width: 100%;
}
.resource-library.resource-library-video > .view-content .views-field-title {
  margin-bottom: 0.5em;
}
.resource-library.resource-library-video > .view-content .views-field-title .field-content,
.resource-library.resource-library-video > .view-content .views-field-title .field-content * {
  font-weight: bold;
}
.resource-library.resource-library-video > .view-content .views-field-body {
  margin-bottom: 0.5em;
}
@media (min-width: 1024px) {
  .resource-library.resource-library-video > .view-content .views-field-body {
    margin-bottom: 1em;
  }
}
.resource-library.resource-library-video > .view-content .views-field-body p {
  margin: 0;
}
.resource-library.resource-library-video > .view-content .views-field-field-members-only .field-content {
  font-weight: bold;
}
.resource-library.resource-library-video > .item-list {
  background-color: #ebebeb;
  clear: both;
}
.resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement {
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement {
    margin-bottom: 2.5em;
  }
}
.resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement .view-content {
  overflow: auto;
}
.resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement .views-field-field-video {
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement .views-field-field-video {
    margin-bottom: 1em;
    width: 60%;
  }
}
@media (min-width: 1024px) {
  .resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement .views-field-field-video {
    margin-right: 2.25em;
    margin-bottom: 0;
    width: 40%;
  }
}
.resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement .views-field-field-video .field-content a, .resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement .views-field-field-video .field-content img {
  display: block;
}
.resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement .views-field-field-video .field-content img {
  width: 100%;
  height: auto;
}
.resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement .views-field-title {
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement .views-field-title {
    margin-bottom: 1em;
    max-width: 60%;
  }
}
@media (min-width: 1024px) {
  .resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement .views-field-title {
    margin-right: 2.25em;
    margin-bottom: 0;
    max-width: 40%;
  }
}
.resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement .views-field-field-members-only {
  font-weight: bold;
}
.resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement .views-field-title {
  font-size: 1.375em;
  margin-bottom: 0.5em;
}
@media (min-width: 1024px) {
  .resource-library.resource-library-video .attachment .view.resource-library.resource-library-video-attachement .views-field-title {
    margin-bottom: 1em;
  }
}

.view.resource-library.resource-library-publications > .view-content .views-row {
  border-bottom: 2px solid #ebebeb;
  padding-top: 2.5em;
  padding-bottom: 1em;
}
.view.resource-library.resource-library-publications > .view-content .views-row.views-row-first {
  padding-top: 0;
}
@media (min-width: 768px) {
  .view.resource-library.resource-library-publications > .view-content .views-row {
    padding-bottom: 0.5em;
  }
}
@media (min-width: 1024px) {
  .view.resource-library.resource-library-publications > .view-content .views-row {
    margin-right: 33.33334%;
  }
}
.view.resource-library.resource-library-publications > .view-content .views-field-title {
  margin-bottom: 0.5em;
}
.view.resource-library.resource-library-publications > .view-content .views-field-title .field-content {
  font-size: 1.375em;
}
.view.resource-library.resource-library-publications > .view-content .views-field-body {
  margin-bottom: 0.5em;
}
.view.resource-library.resource-library-publications > .view-content .views-field-body .field-content p {
  margin: 0;
}
@media (min-width: 768px) {
  .view.resource-library.resource-library-publications > .view-content .views-field-field-download {
    width: 200px;
    margin-right: 2em;
  }
}
.view.resource-library.resource-library-publications > .view-content .views-field-field-download .field-content {
  padding: 0.5em 0 1em 0;
}
@media (min-width: 768px) {
  .view.resource-library.resource-library-publications > .view-content .views-field-field-download .field-content {
    padding: 1em 0;
  }
}
.view.resource-library.resource-library-publications > .view-content .views-field-field-download .field-content a {
  font-weight: bold;
}
.view.resource-library.resource-library-publications > .view-content .views-field-field-download .field-content a::before {
  content: "";
  width: 45px;
  height: 45px;
  background-image: url("../images/icon-sprite.png");
  background-repeat: no-repeat;
  background-position: 0px -100px;
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  background-color: #3371be;
  border-radius: 6px;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: normal;
  padding: 0;
  margin-right: 1em;
  display: inline-block;
  vertical-align: middle;
}
.view.resource-library.resource-library-publications > .view-content .views-field-field-download .field-content a::before:hover {
  background-color: #004990;
  color: #ffffff;
  text-decoration: none;
}
.view.resource-library.resource-library-publications > .view-content .views-field-field-download .field-content a::before:active {
  background-color: #002b54;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
.view.resource-library.resource-library-publications > .view-content .views-field-field-download .field-content a::before:focus, .view.resource-library.resource-library-publications > .view-content .views-field-field-download .field-content a::before:target {
  outline: none;
  background-color: #002b54;
  color: #ffffff;
}
.view.resource-library.resource-library-publications > .view-content .views-field-field-download .field-content a:hover::before, .view.resource-library.resource-library-publications > .view-content .views-field-field-download .field-content a:focus::before {
  background-color: #004990;
}
.view.resource-library.resource-library-publications > .view-content .views-field-field-download .field-content a:active::before {
  background-color: #002b54;
}
.view.resource-library.resource-library-publications > .view-content .views-field-field-members-only .field-content {
  font-weight: bold;
}
@media (min-width: 768px) {
  .view.resource-library.resource-library-publications > .view-content .views-field-field-members-only .field-content {
    padding: 1em 0;
    line-height: 45px;
  }
}
.view.resource-library.resource-library-publications > .item-list {
  clear: both;
}
@media (min-width: 1024px) {
  .view.resource-library.resource-library-publications > .item-list ul.pager {
    margin-right: 33.33334%;
  }
}

.view.resource-library.resource-library-images > .view-content {
  padding-top: 1em;
}
.view.resource-library.resource-library-images > .view-content .views-row {
  margin-bottom: 2em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .view.resource-library.resource-library-images > .view-content .views-row {
    float: left;
    width: 50%;
    padding: 0 0.5em 2em 0.5em;
  }
  .view.resource-library.resource-library-images > .view-content .views-row:nth-child(2n+1) {
    clear: both;
  }
}
@media (min-width: 1024px) {
  .view.resource-library.resource-library-images > .view-content .views-row {
    float: left;
    width: 33.33334%;
    padding: 0 0.5em 2em 0.5em;
  }
  .view.resource-library.resource-library-images > .view-content .views-row:nth-child(3n+1) {
    clear: both;
  }
}
.view.resource-library.resource-library-images > .view-content .views-field-field-image .field-content {
  text-align: center;
}
.view.resource-library.resource-library-images > .view-content .views-field-field-image .field-content a,
.view.resource-library.resource-library-images > .view-content .views-field-field-image .field-content img {
  display: inline-block;
}
.view.resource-library.resource-library-images > .view-content .views-field-field-image .field-content img {
  max-width: 100%;
  height: auto;
}
.view.resource-library.resource-library-images > .view-content .views-field-title .field-content {
  display: block;
  margin-bottom: 0.5em;
  text-align: center;
}
.view.resource-library.resource-library-images > .view-content .views-field-title .field-content a {
  font-weight: bold;
}
.view.resource-library.resource-library-images > .view-content .views-field-field-members-only .field-content {
  text-align: center;
  font-weight: bold;
}
.view.resource-library.resource-library-images > .item-list {
  clear: both;
  text-align: center;
}

/**
 * @file
 * Search Page
 */
/**
 * Keyword Search Form ========================================================
 */
.page-search .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form {
  width: 500px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.page-search .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form .views-header {
  padding-bottom: 1em;
  font-weight: bold;
}
.page-search .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form .field-search_api_views_fulltext-textfield {
  width: 200px;
}
@media (min-width: 768px) {
  .page-search .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form .field-search_api_views_fulltext-textfield {
    width: 650px;
  }
}
@media (min-width: 1024px) {
  .page-search .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form .field-search_api_views_fulltext-textfield {
    width: 400px;
  }
}
@media (min-width: 1024px) {
  .page-search .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form > div {
    text-align: center;
  }
}
.page-search .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form .form-wrapper {
  overflow: auto;
}
@media (min-width: 1024px) {
  .page-search .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form .form-wrapper {
    overflow: visible;
    display: inline-block;
    text-align: left;
  }
}
.page-search .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form .form-item-keys {
  display: block;
  float: left;
  margin-right: 1em;
}
.page-search .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form .form-submit {
  display: block;
  float: right;
}
.page-search .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form .views-exposed-widget {
  float: left;
}
.page-search .pane-views-1f98eb5af5b35b87a2e5321f8814a63d .views-exposed-form .views-submit-button {
  padding-left: 1em;
}

/**
 * Search Results =============================================================
 */
.page-search .view-id-site_wide_search {
  margin: 0;
  padding: 0 0 0 1.5em;
}
.page-search .view-id-site_wide_search .views-row {
  list-style-position: inside;
  border-bottom: 1px solid #dedede;
  padding-bottom: 2em;
}
.page-search .view-id-site_wide_search .views-row .search-snippet-info {
  padding-left: 1.5em;
}

/**
 * Pager ======================================================================
 */
.page-search .panel-content .pane-content .block > .item-list {
  text-align: center;
  padding-top: 2em;
  padding-bottom: 4em;
}
.page-search .panel-content .pane-content .block > .item-list ul.pager {
  display: inline-block;
}

/**
 * @file
 * Form Elements
 */
input[type="email"],
input[type="url"],
input[type="text"],
input[type="tel"],
input[type="search"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  background: none;
  border: none;
  border-radius: 2px;
  border-width: 1px;
  border-style: solid;
  border-color: #ebebeb;
  padding: 0.5em;
}
input[type="email"]:hover,
input[type="url"]:hover,
input[type="text"]:hover,
input[type="tel"]:hover,
input[type="search"]:hover,
input[type="password"]:hover,
textarea:hover {
  border-color: #dedede;
}
input[type="email"]:active, input[type="email"]:focus,
input[type="url"]:active,
input[type="url"]:focus,
input[type="text"]:active,
input[type="text"]:focus,
input[type="tel"]:active,
input[type="tel"]:focus,
input[type="search"]:active,
input[type="search"]:focus,
input[type="password"]:active,
input[type="password"]:focus,
textarea:active,
textarea:focus {
  background-color: #f5f5f5;
  border-color: #dedede;
  outline: none;
}

input[type="submit"],
input[type="reset"],
button {
  -webkit-appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  background-color: #3371be;
  border-radius: 6px;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-weight: normal;
  display: inline-block;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
  background-color: #004990;
  color: #ffffff;
  text-decoration: none;
}
input[type="submit"]:active,
input[type="reset"]:active,
button:active {
  background-color: #002b54;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
input[type="submit"]:focus, input[type="submit"]:target,
input[type="reset"]:focus,
input[type="reset"]:target,
button:focus,
button:target {
  outline: none;
  background-color: #002b54;
  color: #ffffff;
}

fieldset {
  margin: 0.5em 0.5em 1em;
  border: 1px solid #ebebeb;
  border-radius: 2px;
}

.form-item {
  padding-bottom: .75em;
}

.views-exposed-form .views-exposed-widget {
  padding: 0;
  margin: 0;
  float: none;
}
.views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 0;
}

.views-exposed-widgets {
  margin: 0;
  overflow: hidden;
}

ul.pager li {
  display: block;
  float: left;
  margin-right: 1em;
}
ul.pager li:last-of-type {
  margin-right: 0;
}

/**
 * @file
 * Mega Menu
 */
.menuzord-mega {
  position: relative;
}
@media (min-width: 320px) and (max-width: 767px) {
  .menuzord-mega .showhide {
    display: block;
    float: right;
    width: 72px;
    height: 72px;
    padding: 22px 24px;
  }
  .menuzord-mega .showhide em {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #3371be;
    margin: 5px 0;
  }
  .menuzord-mega .showhide:hover {
    background-color: #3371be;
  }
  .menuzord-mega .showhide:hover::after {
    color: #ffffff;
  }
  .menuzord-mega .showhide:hover em {
    background-color: #ffffff;
  }
  .menuzord-mega .showhide:active {
    background-color: #004990;
  }
  .menuzord-mega .showhide:active::after {
    color: #ffffff;
  }
  .menuzord-mega .showhide:active em {
    background-color: #ffffff;
  }
  .menuzord-mega .menuzord-menu {
    position: absolute;
    top: 72px;
    width: 100%;
    background-color: #ffffff;
  }
  .menuzord-mega .menuzord-menu > li > a {
    display: block;
    position: relative;
    width: 80%;
    padding: 24px 36px;
    font-size: 1.25em;
    border-bottom: 1px solid #ebebeb;
  }
  .menuzord-mega .menuzord-menu > li > a .indicator {
    display: block;
    position: absolute;
    right: -25%;
    top: 1px;
    width: 25%;
    height: 100%;
    border-left: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    font-size: 2.25em;
    font-weight: bold;
    text-align: center;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu {
    overflow: auto;
    padding: 2em 0;
    border-bottom: 1px solid #ebebeb;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .megamenu-row > div {
    padding: 0 2em 2em 2em;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .megamenu-row > div:last-of-type {
    padding-bottom: 0;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .megamenu-row h4 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .item-list li {
    margin: 0.75em 0;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .item-list li.last {
    margin-bottom: 0;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .item-list a {
    color: #000000;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .item-list a:hover {
    color: #000000;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .item-list a:active {
    color: #000000;
  }
	.menuzord-mega .menuzord-menu {
    overflow-y: scroll;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .menuzord-mega .showhide {
    display: block;
    float: right;
    position: relative;
    margin-top: 16px;
    margin-right: 26px;
    height: 55px;
    width: 125px;
    padding-top: 13px;
    padding-left: 20px;
  }
  .menuzord-mega .showhide::after {
    content: "Menu";
    font-size: 1.5em;
    position: absolute;
    top: 9px;
    right: 14px;
  }
  .menuzord-mega .showhide em {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #3371be;
    margin: 5px 0;
  }
  .menuzord-mega .showhide:hover {
    background-color: #3371be;
  }
  .menuzord-mega .showhide:hover::after {
    color: #ffffff;
  }
  .menuzord-mega .showhide:hover em {
    background-color: #ffffff;
  }
  .menuzord-mega .showhide:active {
    background-color: #004990;
  }
  .menuzord-mega .showhide:active::after {
    color: #ffffff;
  }
  .menuzord-mega .showhide:active em {
    background-color: #ffffff;
  }
  .menuzord-mega .menuzord-menu {
    position: absolute;
    top: 87px;
    width: 100%;
    background-color: #ffffff;
    overflow-y: scroll;
  }
  .menuzord-mega .menuzord-menu > li > a {
    display: block;
    position: relative;
    width: 88%;
    padding: 24px 36px;
    font-size: 1.25em;
    border-bottom: 1px solid #ebebeb;
  }
  .menuzord-mega .menuzord-menu > li > a .indicator {
    display: block;
    position: absolute;
    right: -13.75%;
    top: 1px;
    width: 13.75%;
    height: 100%;
    border-left: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    font-size: 2.25em;
    font-weight: bold;
    text-align: center;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu {
    overflow: auto;
    padding: 2em 0;
    border-bottom: 1px solid #ebebeb;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .megamenu-row > div {
    float: left;
    width: 50%;
    padding: 0 2em;
    border-right: 1px solid #737373;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .megamenu-row > div:nth-child(even) {
    border-right: none;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .megamenu-row h4 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .item-list li {
    margin: 0.75em 0;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .item-list li.last {
    margin-bottom: 0;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .item-list a {
    color: #000000;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .item-list a:hover {
    color: #000000;
  }
  .menuzord-mega .menuzord-menu > li > .megamenu .item-list a:active {
    color: #000000;
  }
}
@media (min-width: 1024px) {
  .menuzord-menu {
    float: right;
    margin-right: 30px;
  }
  .menuzord-menu > li {
    display: block;
    float: left;
  }
  .menuzord-menu > li > a {
    font-size: 1.25em;
    display: block;
    line-height: 100px;
    padding: 0 0.7em;
  }
  .menuzord-menu > li > a:hover {
    background-color: #3371be;
    color: #ffffff;
    text-decoration: none;
  }
  .menuzord-menu > li > a:active {
    background-color: #004990;
    color: #ffffff;
    text-decoration: none;
  }
  .menuzord-menu > li .indicator {
    display: none;
  }
  .menuzord-menu > li > .megamenu {
    position: absolute;
    right: 0 !important;
    box-shadow: 0px 4px 5px -4px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    padding: 2em 0;
    min-width: 690px;
  }
  .menuzord-menu > li > .megamenu .megamenu-row > div {
    float: left;
    padding: 0 2em;
    border-right: 1px solid #737373;
  }
  .menuzord-menu > li > .megamenu .megamenu-row > div:last-of-type {
    border-right: none;
  }
  .menuzord-menu > li > .megamenu .megamenu-row h4 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
  }
  .menuzord-menu > li > .megamenu .item-list li {
    margin: 0.75em 0;
  }
  .menuzord-menu > li > .megamenu .item-list li.last {
    margin-bottom: 0;
  }
  .menuzord-menu > li > .megamenu .item-list a {
    color: #000000;
  }
  .menuzord-menu > li > .megamenu .item-list a:hover {
    color: #000000;
  }
  .menuzord-menu > li > .megamenu .item-list a:active {
    color: #000000;
  }
}
/**
 * @file
 * Content Tabs
 */
.ascrs-tabs-wrapper .ascrs-tabs-head + label {
  background-color: #ebebeb;
  color: #3371be;
  text-align: center;
  font-size: 1.125em;
  padding: 0.88em;
  border-top: 1px solid #3371be;
}
.ascrs-tabs-wrapper .ascrs-tabs-head + label:last-of-type {
  border-bottom: 1px solid #3371be;
}
.ascrs-tabs-wrapper .ascrs-tabs-head + label:hover {
  background-color: #dedede;
  color: #004990;
}
@media (min-width: 768px) {
  .ascrs-tabs-wrapper .ascrs-tabs-head + label {
    float: left;
    margin-right: 0.3125em;
    padding: 0.88em 2em;
    border-top: none;
  }
  .ascrs-tabs-wrapper .ascrs-tabs-head + label:last-of-type {
    margin-right: 0;
    border-bottom: none;
  }
}
.ascrs-tabs-wrapper .ascrs-tabs-head:checked + label {
  background-color: #3371be;
  color: #ffffff;
}
@media (min-width: 768px) {
  .ascrs-tabs-wrapper .ascrs-tabs-body-wrapper {
    border-top: 4px solid #3371be;
  }
}
.ascrs-tabs-wrapper .ascrs-tabs-body {
  padding: 1em 0;
}

.ascrs-landing-tabs .ascrs-tabs-wrapper .ascrs-tabs-body {
  margin-left: 10px;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .ascrs-landing-tabs .ascrs-tabs-wrapper {
    margin-left: 10px;
    margin-right: 10px;
  }
  .ascrs-landing-tabs .ascrs-tabs-wrapper .ascrs-tabs-body {
    margin-left: 10px;
  }
}
@media (min-width: 1024px) {
  .ascrs-landing-tabs .ascrs-tabs-wrapper {
    margin-left: 30px;
    margin-right: 30px;
  }
  .ascrs-landing-tabs .ascrs-tabs-wrapper .ascrs-tabs-body {
    margin-left: 30px;
  }
}
.page-members-resources-resource-library .ascrs-tabs-wrapper .ascrs-tabs-body {
  padding-left: 0;
  padding-right: 0;
}

/**
 * @file
 * Quick Links
 */
.ascrs-quick-links .item-list ul li {
  display: table;
  padding: 0.5em;
  height: 5.125em;
  text-align: center;
  float: left;
  width: 100%;
}
@media (min-width: 768px) {
  .ascrs-quick-links .item-list ul li {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .ascrs-quick-links .item-list ul li {
    width: 33.3334%;
  }
}
.ascrs-quick-links a {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding: 0 1em;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.2;
  border: 2px solid #ffffff;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
}
.ascrs-quick-links a:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: #004990;
}
.ascrs-quick-links a:target, .ascrs-quick-links a:focus {
  background-color: #002b54;
  color: #ffffff;
}

@media (min-width: 768px) {
  .ascrs-quick-links {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (min-width: 1024px) {
  .ascrs-quick-links {
    margin-right: 22px;
    margin-left: 22px;
  }
}
/* Ctools modal beautifier */
#modalBackdrop {
  background: #002b54 !important;
}

#modalContent .ctools-modal-content .modal-header {
  display: block;
  text-align: center;
  padding: 0.5em 1em;
  border-radius: 6px;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  font-weight: normal;
  background-color: #002b54;
  color: #ffffff;
  text-decoration: none;
  outline: none;
  margin: 5px 5px 0px 5px;
}
#modalContent .ctools-modal-content .modal-header a.close img {
  margin-left: 5px;
}

/**
 * @file : Contains SCSS pertaining to views pages
 */
/**
 * Common styles
 */
.standard-view-pane .view-grouping-content {
  padding-top: 1em;
}
.standard-view-pane .view-grouping-content > h3 {
  margin-bottom: 1em;
  border-bottom: 4px solid #3371be;
}
.standard-view-pane .edit-field-location-administrative-area-wrapper {
  float: right;
}
.standard-view-pane .views-row,
.view-past-presidents .views-row {
  border-bottom: 2px solid #dedede;
  padding-bottom: 2em;
  margin-bottom: 2em;
}
.standard-view-pane .views-row .panel-col-first {
  width: auto;
}
.standard-view-pane .views-row .panel-col-first img {
  max-width: 100%;
  height: auto;
}
.standard-view-pane .views-row .panel-col-last {
  width: auto;
  max-width: 100%;
}
.standard-view-pane .views-row h3,
.view-past-presidents .views-row h3 {
  margin-top: 0;
  margin-bottom: 0em;
}
.standard-view-pane .views-row .panel-2col .inside {
  margin: 0;
}
.standard-view-pane .views-row .views-field,
.view-past-presidents .views-row .views-field {
  padding-bottom: .5em;
}
@media (min-width: 768px) {
  .standard-view-pane .views-row .panel-col-first {
    width: 33%;
  }
  .standard-view-pane .views-row .panel-col-first img {
    margin-top: .25em;
    padding-right: 30px;
  }
  .standard-view-pane .views-row .panel-col-last {
    width: 66%;
  }
  .standard-view-pane .views-row .panel-col-last.column-one-no-image {
    width: 100%;
  }
}

.image-video-grid-view-pane .view-filters {
  margin-bottom: 1em;
  border-bottom: 4px solid #3371be;
}
.image-video-grid-view-pane .view-content {
  padding-top: 2.5em;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 768px) {
  .image-video-grid-view-pane .view-content {
    padding-left: 12px;
    padding-right: 12px;
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (min-width: 1024px) {
  .image-video-grid-view-pane .view-content {
    padding-left: 52px;
    padding-right: 52px;
    margin-left: -30px;
    margin-right: -30px;
  }
}
.image-video-grid-view-pane .view-content .views-row {
  margin-bottom: 3em;
}
.image-video-grid-view-pane .view-content .views-row .views-field {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .image-video-grid-view-pane .view-content .views-row {
    float: left;
    width: 50%;
    padding: 0 0.5em 2em 0.5em;
  }
  .image-video-grid-view-pane .view-content .views-row:nth-child(2n+1) {
    clear: both;
  }
}
@media (min-width: 1024px) {
  .image-video-grid-view-pane .view-content .views-row {
    float: left;
    width: 33.33334%;
    padding: 0 0.5em 2em 0.5em;
  }
  .image-video-grid-view-pane .view-content .views-row:nth-child(3n+1) {
    clear: both;
  }
}
.image-video-grid-view-pane .view-content .views-field-field-video {
  margin-bottom: 0.5em;
}
@media (min-width: 1024px) {
  .image-video-grid-view-pane .view-content .views-field-field-video {
    margin-bottom: 1em;
  }
}
.image-video-grid-view-pane .view-content .views-field-field-video a, .image-video-grid-view-pane .view-content .views-field-field-video img {
  display: block;
  width: 100%;
}
.image-video-grid-view-pane .view-content .views-field-title {
  margin-bottom: 0.5em;
}
.image-video-grid-view-pane .view-content .views-field-title .field-content,
.image-video-grid-view-pane .view-content .views-field-title .field-content * {
  font-weight: bold;
}
.image-video-grid-view-pane .view-content .views-field-body {
  margin-bottom: 0.5em;
}
@media (min-width: 1024px) {
  .image-video-grid-view-pane .view-content .views-field-body {
    margin-bottom: 1em;
  }
}
.image-video-grid-view-pane .view-content .views-field-body p {
  margin: 0;
}
.image-video-grid-view-pane .view-content .views-field-field-members-only .field-content {
  font-weight: bold;
}
.image-video-grid-view-pane .item-list {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 768px) {
  .image-video-grid-view-pane .item-list {
    padding-left: 12px;
    padding-right: 12px;
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (min-width: 1024px) {
  .image-video-grid-view-pane .item-list {
    padding-left: 52px;
    padding-right: 52px;
    margin-left: -30px;
    margin-right: -30px;
  }
}

/**
 * Styles for particular views
 */
.view-residency-programs .views-exposed-widgets {
  float: right;
}
.view-residency-programs .view-grouping-header {
  display: none;
}
.view-residency-programs .view-grouping-content > h3 {
  margin-bottom: 2em;
}

.view-ascrs-events .views-field-field-date, .view-ascrs-events .views-field-field-location-text {
  font-weight: bold;
}

.node-surgeon.view-mode-surgeon_locator > * > .column {
  float: left;
  min-height: 1px;
  width: 20%;
}

.node-surgeon.view-mode-surgeon_locator > * > .column > * {
  padding: .2em;
}

.node-surgeon.view-mode-surgeon_locator > .header {
  background-color: #DDDDDD;
}

.node-surgeon.view-mode-surgeon_locator > .content > .col2 {
  width: 40%;
}

.view-surgeon-locator.view-display-id-page .view-header {
  margin-bottom: 2.5em;
}
.view-surgeon-locator.view-display-id-page .field-item {
  overflow-wrap: break-word;
}
.view-surgeon-locator.view-display-id-page .field-type-addressfield .field-item {
  margin-bottom: 1.5em;
}

/**
 * @file Stylings for disease and condition list view
 */
.pane-ascrs-disease-list {
  overflow: visible;
}
.pane-ascrs-disease-list .disease-list-item {
  padding-bottom: 1.75em;
}
.pane-ascrs-disease-list .disease-list-item span.spacer {
  font-size: 1.5em;
  color: #004990;
}
.pane-ascrs-disease-list .disease-list-item h3 {
  display: inline;
}
.pane-ascrs-disease-list .alphabet-nav {
  min-height: 68px;
  background-color: #f5f5f5;
  margin-left: -30px;
  margin-right: -30px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 3em;
}
.pane-ascrs-disease-list .alphabet-nav li {
  vertical-align: middle;
  font-size: 1.75em;
  color: #737373;
  padding-right: .63em;
  line-height: 1.2;
}
.pane-ascrs-disease-list .alphabet-nav li a {
  text-decoration: none;
}
.pane-ascrs-disease-list .alphabet-nav li a.active {
  font-size: 2.25em;
  position: relative;
}
.pane-ascrs-disease-list .alphabet-nav li a:hover {
  color: #004990;
}
.pane-ascrs-disease-list .alphabet-nav li:last-child {
  padding-right: 0;
}

#views-exposed-form-resource-library-search-panel-pane-1 .views-exposed-widget, #views-exposed-form-disease-condition-search-panel-pane-1 .views-exposed-widget {
  float: left;
}
#views-exposed-form-resource-library-search-panel-pane-1 select, #views-exposed-form-disease-condition-search-panel-pane-1 select {
  height: 39px;
}
#views-exposed-form-resource-library-search-panel-pane-1 .views-submit-button, #views-exposed-form-disease-condition-search-panel-pane-1 .views-submit-button {
  padding-left: 1em;
}
#views-exposed-form-resource-library-search-panel-pane-1 .views-submit-button input, #views-exposed-form-disease-condition-search-panel-pane-1 .views-submit-button input {
  height: 39px;
}
#views-exposed-form-resource-library-search-panel-pane-1 .form-type-textfield input, #views-exposed-form-disease-condition-search-panel-pane-1 .form-type-textfield input {
  height: 39px;
}

.page-members-resources-resource-library-search-results .pane-page-content,
.page-members-resources .pane-views-9f7a0414340bac2c312448847d59be84 {
  padding-left: 10px;
  padding-right: 10px;
}
.page-members-resources-resource-library-search-results .pane-page-content .view-header,
.page-members-resources .pane-views-9f7a0414340bac2c312448847d59be84 .view-header {
  padding-bottom: 1em;
  font-weight: bold;
  font-size: 1.5em;
}
.page-members-resources-resource-library-search-results .pane-page-content h2,
.page-members-resources .pane-views-9f7a0414340bac2c312448847d59be84 h2 {
  margin-top: 0;
}
.page-members-resources-resource-library-search-results .pane-page-content img,
.page-members-resources .pane-views-9f7a0414340bac2c312448847d59be84 img {
  width: 100%;
  height: auto;
}
.page-members-resources-resource-library-search-results .pane-page-content .views-row,
.page-members-resources .pane-views-9f7a0414340bac2c312448847d59be84 .views-row {
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 1em;
  margin-bottom: 2em;
}
.page-members-resources-resource-library-search-results .pane-page-content .views-row .view-mode-ascrs_members_restricted,
.page-members-resources .pane-views-9f7a0414340bac2c312448847d59be84 .views-row .view-mode-ascrs_members_restricted {
  background-color: transparent !important;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .page-members-resources-resource-library-search-results .pane-page-content,
  .page-members-resources .pane-views-9f7a0414340bac2c312448847d59be84 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-members-resources-resource-library-search-results .pane-page-content .search-result-left,
  .page-members-resources .pane-views-9f7a0414340bac2c312448847d59be84 .search-result-left {
    padding-right: 20px;
    width: 33%;
    float: left;
  }
  .page-members-resources-resource-library-search-results .pane-page-content .search-result-right,
  .page-members-resources .pane-views-9f7a0414340bac2c312448847d59be84 .search-result-right {
    padding-left: 20px;
    width: 67%;
    float: left;
  }
}
@media (min-width: 1024px) {
  .page-members-resources-resource-library-search-results .pane-page-content,
  .page-members-resources .pane-views-9f7a0414340bac2c312448847d59be84 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.page-members-resources-resource-library-search-results .pane-page-content #views-exposed-form-resource-library-search-panel-pane-1,
.page-patients-disease-condition-search-results .pane-page-content #views-exposed-form-disease-condition-search-panel-pane-1 {
  margin-right: auto;
  margin-left: auto;
  display: block;
  width: 400px;
}

.page-members-resources-resource-library-search-results .pane-page-content #views-exposed-form-resource-library-search-panel-pane-1 {
  width: 525px;
}

.page-members-resources .pane-views-9f7a0414340bac2c312448847d59be84 {
  padding-bottom: 3em;
}

.view-disease-condition-search .views-row {
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 1em;
  margin-bottom: 2em;
}
.view-disease-condition-search .view-header {
  padding-bottom: 1em;
  font-weight: bold;
  font-size: 1.5em;
}

/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */

/* WEBSITE UPDATES 2/2016 - BMD */

/* FIXES IMAGE CUT OFF AND RESPONSIVE ISSUES - 
BANNER IMAGE EX: https://www.fascrs.org/2016-annual-scientific-meeting */
img {
    height: auto !important;
    max-width: 100%;
}

/* RESPONSIVE VIMEO VIDEOS */
.videowrap,
.embedded-video { 
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%; 
} 
.videowrap iframe, 
.videowrap object, 
.videowrap embed,
.embedded-video iframe{ 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}

/* FLUID RESPONSIVE UPDATE & FIXING ABSOLUTELY POSITIONED HEADER */
.page-constrained, .panel-header {
    left: 0;
    margin: 0 auto;
    max-width: 1024px;
    max-width: 1170px; /* ALLOW FOR LARGER RESOURCE LIBRARY WIDTH*/
    position: relative;
    width: 100%;
}
.page-constrained, .panel-header {
    max-width: 1170px;
}
.front .panel-header,
.landing-page-no-margin .panel-header {
    position: absolute;
    right: 0;
}
@media screen and (max-width:767px){
	.front .panel-header,
	.landing-page-no-margin .panel-header {
		position: relative;
	}
}
.panel-body {
    background-color: #ebebeb;
    padding-top: 0;
}
body {
    background-color: #ebebeb;
}
@media screen and (max-width:1024px){
	.pane-page-messages, 
	.breadcrumb, 
	.ascrs-front-content-blocks, 
	.pane-page-title, 
	.pane-page-content, 
	.pane-page-tabs{
		padding-left: 4%;
		padding-right: 4%;
	}
}

/* IMAGE STYLING FOR WYSIWYG  */
span.floatright50 img,
span.floatright25 img,
span.floatleft50 img,
span.floatleft25 img,
span.fullwidth img,
span.centered50 img{
	width: 100% !important;
	height: auto !important;	
}
span.floatright50,
span.floatright25,
span.floatleft50,
span.floatleft25,
span.fullwidth,
span.centered50{
	margin-bottom: 16px;
}
span.floatright50,
span.floatright25{
	float: right;
	margin-left: 16px;
}
span.floatleft50,
span.floatleft25{
	float: left;
	margin-right: 16px;
}
span.floatright50,
span.floatleft50,
span.centered50{
	width: 50%;
}
span.floatright25,
span.floatleft25{
	width: 25%;
}
span.fullwidth{
	width: 100%;
}
span.centered50{
	margin: 0 auto 16px;
	display: block;
}
@media screen and (max-width:640px){
	span.floatright50,
	span.floatright25,
	span.floatleft50,
	span.floatleft25,
	span.fullwidth,
	span.centered50{
		width: 100%;
	}
}

/* BLOCKQUOTE */
blockquote {
    background-color: #ebebeb;
    border-radius: 5px;
    color: gray;
    font-size: 115%;
    font-style: italic;
    line-height: 1.75;
    margin: 16px 0;
    padding: 5%;
}
blockquote p {
    margin: 0 0 16px;
}
blockquote p:last-child {
    margin: 0;
}
blockquote p:first-child::before {
    content: '\201c';
}
blockquote p:last-child::after {
    content: '\201d';
    position: relative;
}

/* LIST STYLES */
ol[type="ua"]{
	list-style: outside none upper-alpha;
}
ol[type="la"]{
	list-style: outside none lower-alpha;
}
ol[type="ur"]{
	list-style: outside none upper-roman;
}
ol[type="lr"]{
	list-style: outside none lower-roman;
}

/* SEARCH BAR - HEADER */
header .pane-views-1f98eb5af5b35b87a2e5321f8814a63d {
    float: left;
}

/* RESPONSIVE TABLES */
div.responsivetable,
table.data{
	display: block;
	overflow-x: auto;
}
table { 
	border-collapse: collapse; 
	margin:50px auto;
	border-spacing: 0;
}
/* Zebra striping */
table.data tr:nth-of-type(odd) { 
	background: #eee; 
}
table.data th { 
	background: #3498db; 
	color: white; 
	font-weight: bold; 
}
table.data td, 
table.data th { 
	padding: 8px; 
	border: 1px solid #ccc; 
	text-align: left; 
}
table.data  tr td{
	min-width: 90px;
}
@media screen and (max-width:540px){
	table.data:before {
		color: gray;
		content: "scroll right for more data - >";
		font-size: 10px;
		text-transform: uppercase;
	}
}

/* RESOURCE LIBRARY 4/2016 - BMD */
.page-search-resource-library .pane-page-breadcrumb,
.page-search-resource-library .pane-page-title,
.page-search-resource-library .pane-page-tabs {
    display: none;
}
.page-search-resource-library .pane-page-content{
	padding-left: 0;
	padding-right: 0;
}

#search-section {
    background: #8395a9 url("/sites/all/themes/ascrs_theme/images/bg-blue-bokeh.jpg") repeat scroll 0 0;
    clear: both;
    color: #fff;
    display: block;
    overflow: hidden;
    padding: 35px 30px;
    text-align: center;
}
#search-section h1 {
    color: #fff;
    margin: 0 0 20px;
}
#search-section input[type="submit"] {
    background: #ebebeb none repeat scroll 0 0;
    box-shadow: none;
    color: #3371be;
    height: 40px;
    vertical-align: top;
    margin-left: 4px;
}
#search-section input[type="submit"]:hover {
    background: #3371be none repeat scroll 0 0;
    color: #fff;
}
#search-section input[type="submit"]:active {
    background: #004990 none repeat scroll 0 0;
    color: #fff;
}
#search-section .form-type-textfield label{
	display: none;
}
#search-section input[type="text"] {
    background: #fff none repeat scroll 0 0;
    border: medium none;
    border-radius: 5px;
    font-size: 14px;
    height: 40px;
    padding: 0 10px;
    width: 350px;
}
.page-search-resource-library .pane-page-content .pane-content {
    padding: 30px;
}
.page-search-resource-library .panel-content .pane-content .block-facetapi > .item-list{
	text-align: left;
	padding: 20px 0;
	background: #ebebeb none repeat scroll 0 0;
}
.page-search-resource-library .block-facetapi:last-child .item-list {
    border-radius: 0 0 5px 5px;
}
.block-facetapi .item-list .item-list {
	display:block !important;
}
.block-facetapi input[type="checkbox"] {
    height: 20px;
    width: 20px;
    position: absolute;
    top: 4px;
    left: 20px;
    display: none;
}
.block-facetapi ul li{
	padding: 0;
	position: relative;
}
.facetapi-checkbox {
    font-size: 14.5px;
    font-weight: bold;
    margin-right: 0.5em;
    vertical-align: top;
}
.block-facetapi header {
    display: block;
    overflow: hidden;
    padding: 0 22px;
}
.block-facetapi h2 {
    font-size: 16px;
    margin: 15px 0;
}
.block-facetapi header{
	border: 2px solid #ebebeb;
	position: relative;
}
.page-search .pane-content .block-facetapi > header {
    border-radius: 0;
    border-bottom: none;
    padding: 0 44px 0 22px;
}
.page-search .pane-content .block-facetapi:first-child > header {
    border-radius: 5px 5px 0 0;
}
.page-search .pane-content .block-facetapi:last-child > header {
    border-bottom: 2px solid #ebebeb;
}
a.facetapi-checkbox, .block-facetapi .is-active{
	display: inline-block;
	padding: 5px 75px 5px 42px;
	margin: 0;
	line-height: 1.2;
	width: 100%;
	color: #111;
	font-size: 14.5px;
	font-weight: bold;
	cursor: pointer;
}
a.facetapi-checkbox:hover{
	background-color: #dfdfdf;
	text-decoration: none;	
}
.sidebar-facet .count {
    color: #989898;
    display: inline-block;
    float: right;
    font-size: 12px;
    position: absolute;
    right: 20px;
    top: 5px;
}
.block-facetapi ul li ul.expanded li a,
.block-facetapi ul li ul.expanded li div.is-active {
    padding-left: 65px;
}
.block-facetapi ul li ul.expanded li a:before,
.block-facetapi ul li ul.expanded li div.is-active:before {
    left: 44px;
}
.icon-alt {
    display: none;
}
.sort-controls {
    display: block;
    float: left;
    padding: 5px 20px;
    text-align: right;
    width: 100%;
}
.results-display {
    overflow: hidden;
    width: 100%;
}
ul.results-list {
    border: 2px solid #ebebeb;
    border-radius: 5px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
li.search-result {
    border-bottom: 2px solid #ebebeb;
    list-style: outside none none;
    padding: 20px;
    width: 100%;
    overflow: hidden;
    display: block;
}
.grid li.search-result{
	min-height: 230px;
}
li.search-result:last-child {
    border: medium none;
}
.results-display .column{
	float: left;
	padding-right: 20px;
	box-sizing: border-box;
}
.results-display .column:last-child{
	padding-right: 0
}
.results-display .column-thumb, 
.results-display.list .column-thumb{
	width: 22%;
}
.results-display .column-detail, 
.results-display.list .column-detail{
	width: 56%;
}
.results-display .column-member, 
.results-display.list .column-member{
	width: auto;
	float: right;
}
.results-display.grid .column-member {
    bottom: 12px;
    position: absolute;
    right: 20px;
    width: inherit;
}
li.search-result{
	position: relative;
}
h3.results-list-title, h3.results-list-title a {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px;
}
p.resource-type {
    color: #989898;
    font-size: 14px;
    margin: 0;
}
p.excerpt {
    margin: 15px 0 0;
    font-size: 14px;
    color: #4d4d4d;
    line-height: 1.5;
}
.is-member {
    background: #ebebeb none repeat scroll 0 0;
    border-radius: 5px;
    color: #6c6c6c;
    font-size: 10px;
    padding: 5px 10px;
}
.is-member .fa {
    margin-right: 5px;
}
.sort-controls a.btn {
    background: transparent none repeat scroll 0 0;
    color: #111;
    display: inline;
    padding: 0 0 0 5px;
}
.sort-controls a:first-child {
    padding-left: 0;
}
.sort-controls .fa {
    font-size: 18px;
}
.sort-controls a.btn.is-active, 
.sort-controls a.btn:hover, 
.sort-controls a.btn:active {
    background: transparent none repeat scroll 0 0;
    color: #3371be;
    text-decoration: none;
}
.grid li.search-result {
    float: left;
    width: 33.33%;
}
.grid .column-detail .excerpt {
    display: none;
}
.results-display.grid .column-thumb, .results-display.grid .column-detail {
    padding-right: 0;
    width: 100%;
}
.grid h3.results-list-title a, .grid h3.results-list-title {
    color: #3371be;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    font-size: 14px;
}
.grid .column-thumb img {
    height: 115px !important;
    object-fit: cover;
    width: 100% !important;
}
a.facetapi-inactive:before,
.facetapi-facetapi-checkbox-links li .is-active:before{
	position: absolute;
	left: 20px;
}

a.facetapi-inactive:before {
	content: "\f0c8";
    font-family: fontawesome;
    color: #c2c2c2;
    margin-right: 10px;
    font-weight: normal;
}
.facetapi-facetapi-checkbox-links li .is-active:before{
	content: "\f14a";
    font-family: fontawesome;
    color: #3371be;
    margin-right: 10px;
    font-weight: normal;
}




/* TEMPORARY */
.sidebar-facet {
    float: left;
    width: 330px;
    margin-right: 30px
}
.page-search-resource-library .block.block-system {
    float: right;
    width: calc(100% - 360px);
}
/* END TEMPORARY */

/* VIDEO NODE UPDATES */
.node-type-video .ascrs-two-one-right {
    display: none;
}
.node-type-video .page-constrained .ascrs-ctools-col.ascrs-two-one-left {
    width: 100%;
}
.node-type-video .pane-page-title,
.node-type-video .pane-page-tabs {
    background: #313131 none repeat scroll 0 0;
    padding: 0 10%;
}
.node-type-video h1 {
    color: #fff;
    font-size: 20px;
}
.node-type-video .pane-page-content {
    padding: 0;
}
.node-type-video .pane-page-tabs,
.node-type-video .messages.status{
	display: block;
}
.group-video-top,
.node-type-video .pane-page-tabs,
.node-type-video .messages.status,
.node-type-video .pane-page-messages{
    background: #313131 none repeat scroll 0 0;
    color: #fff;
}
.group-video-top .field-name-field-video {
    margin-bottom: 20px;
}
.group-video-top,
.group-video-bottom,
.node-type-video div.panel-pane div.view-mode-ascrs_members_restricted {
    padding: 40px 10%;
    overflow: hidden;
}
.node-type-video .block-user {
    padding: 0 10% 40px;
    overflow: hidden;
}
.group-video-bottom .field-name-body {
    max-width: 740px;
}
.group-video-bottom p {
    line-height: 1.5;
}
.group-video-top .field-label {
    color: #989898;
    display: inline;
    font-weight: normal;
}
.group-video-top .field-name-field-author .field-items, .group-video-top .field-name-field-author .field-item {
    display: inline;
}
.group-video-top .field-name-field-author, .group-video-top .field-type-taxonomy-term-reference {
    font-size: 14px;
    float: left;
    margin-right: 15px;
}
.group-video-top a {
    color: #fff;
}
.group-video-top a:hover {
    color: #3371BE;
    text-decoration: none;
}
a.mrl {
    background: #313131 none repeat scroll 0 0;
    display: block;
    padding: 30px 10% 0;
    color: #989898;
    font-size: 14px;
}
a.mrl:before {
    content: "\f112";
    font-family: fontawesome;
    margin-right: 10px;
}
a.mrl:hover{
	text-decoration: none;
	color: #3371BE;
}
a.mrl + .content > .group-video-top {
    padding-top: 10px;
}
.node-type-video .pane-page-tabs {
    padding-top: 30px;
}
.facet-toggle {
    border: 0 none;
    cursor: pointer;
    display: block;
    float: right;
    height: 52px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 0;
    width: 100%;
}
.facet-toggle .fa {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
p.form-note {
    margin-bottom: 0;
}
.node-type-video .field-name-field-members-only {
    float: right;
}
.block-user {
    text-align: center;
}
.node-type-video div.panel-pane div.view-mode-ascrs_members_restricted.node {
    background: #313131 none repeat scroll 0 0;
    color: #fff;
    padding-top: 0;
}
#user-login-form {
    background: #eee none repeat scroll 0 0;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
    max-width: 600px;
    padding: 30px;
}
.user-login-form input.form-text {
    background-color: #fff;
}


/* END VIDEO NODE UPDATES */

@media screen and (max-width: 1023px){
	.grid li.search-result {
		width: 50%;
	}
}

@media screen and (max-width: 900px){
	.grid li.search-result {
		width: 100%;
	}
	.grid .column-thumb img{
		height: auto !important;
	}
	.results-display.list .column-thumb,
	.results-display .column-thumb {
		display: none;
	}
	.results-display.list .column-detail,
	.results-display .column-detail {
		width: 100%;
	}
	.results-display.grid .column-thumb{
		display: block;
	}
	.results-display .column-member, .results-display.list .column-member{
		float: left;
	}
	.column-detail + .column-member {
		margin-top: 15px;
	}	
}

@media screen and (max-width:767px){
	#search-section input[type="submit"]{
		width: 90px;
	}
	#search-section .form-type-textfield {
		box-sizing: border-box;
		float: left;
		width: calc(100% - 94px);
	}
	#search-section input[type="text"] {
		width: 100%;
	}
	#search-section .search-form {
		margin: 0 auto;
		max-width: 480px;
	}
	.sidebar-facet,
	.page-search-resource-library .block.block-system{
		width: 100%;
	}
	.grid li.search-result {
		width: 50%;
	}
	.grid .column-thumb img{
		height: 115px !important;
	}
	.group-video-top, 
	.group-video-bottom,
	.node-type-video div.panel-pane div.view-mode-ascrs_members_restricted,
	.node-type-video .pane-page-tabs{
		padding: 30px;
	}
	.node-type-video .block-user{
		padding: 0 30px 40px;
	}
	.node-type-video .pane-page-title{
		padding-left: 30px;
		padding-right: 30px;
	}
	a.mrl{
		padding: 25px 30px 0;
	}
	.block-facetapi h2{
		margin: 10px 0;
	}
	.facet-toggle{
		height: 39px;
	}
	#search-section h1{
		font-size: 2em;
	}
	.grid li.search-result{
		min-height: 250px;
	}
	.node-type-video .field-name-field-members-only {
		float: left;
		width: 100%;
	}
	.node-type-video .is-member{
		display: inline-block;
		margin-bottom: 5px;
	}
}

@media screen and (max-width: 580px){
	.grid li.search-result {
		width: 100%;
	}
	.grid .column-thumb img{
		height: auto !important;
	}
	#search-section h1{
		font-size: 1.5em;
	}
	#search-section{
		padding: 25px 20px;
	}
	.grid li.search-result{
		min-height: 0;
	}
}

.not-logged-in .results-display .search-result-image .column-thumb img {
  visibility: hidden;
  filter: alpha(opacity=0);
  -webkit-opacity: 0.0;
  -moz-opacity: 0.0;
  opacity: 0;
}

.not-logged-in .search-result-image .column-thumb a {
  background: url(/sites/all/themes/ascrs_theme/images/thumb-img-lock.jpg) no-repeat center center;
  height: 70px;
  background-size: cover;
  display: block;
}
.not-logged-in .grid .search-result-image .column-thumb a{
  height: 115px;
  margin-bottom: 4px;	
}
.pillar-taxonomy {
    color: #3371be;
    font-weight: bold;
    text-transform: capitalize;
}
a.clear-link {
    display: block;
    margin-bottom: 10px;
}
/* END RESOURCE LIBRARY 4/2016 - BMD */
/* END WEBSITE UPDATES 2/2016 - BRENT */

/* BOT #5523 SLIDESHOW HEIGHT UPDATES 4/1 - BRENT */
.not-front .ascrs-landing-slides .field.field-name-field-image.field-type-image.field-label-hidden {
    height: 460px;
    position: relative;
}
.not-front .ascrs-landing-slides .field.field-name-field-image.field-type-image.field-label-hidden:after {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent, black) repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 35%;
    left: 0;
    position: absolute;
    width: 100%;
}
/*
.flexslider .slides img{
	height: 480px !important;
	object-fit: cover;
	width: 100% !important;
}
*/
.not-front .entity-ascrs-slide .field-type-image .field-item {
    margin-top: -70px;
    position: relative;
}
/* END BOT #5523 SLIDESHOW HEIGHT UPDATES 4/1 - BRENT *//* END WEBSITE UPDATES 2/2016 - BRENT */

/* FIND A SURGEON 4/2016 - BD */
.page-find-a-surgeon h1 {
    color: #fff;
}
.page-find-a-surgeon .pane-page-title {
    padding: 0;
}
.page-find-a-surgeon .pane-page-title h1 {
    box-sizing: border-box;
    padding: 35px 0 0;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 2;
}
.page-find-a-surgeon .pane-page-content {
    padding: 0;
}
.page-find-a-surgeon .pane-page-breadcrumb {
    display: none;
}
.view-surgeon-locator .view-filters {
    background: #8395A9 url("/sites/all/themes/ascrs_theme/images/find-surgeon-bg.jpg") repeat scroll 0 0;
    padding: 100px 30px 35px;
    text-align: center;
    height: 220px;
}
.view-surgeon-locator .view-filters label {
	color: #a3a3a3;
	font-size: 11px;
	font-weight: normal;
	left: 7px;
	position: absolute;
	text-transform: uppercase;
	top: 3px;
}
/*.view-surgeon-locator .form-item-query-name::after {
    color: #fff;
    content: "or";
    display: block;
    height: 50px;
    line-height: 50px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 8px;
    top: 0;
} */
.view-surgeon-locator .form-item-query-name {
    padding-bottom: 0;
    padding-right: 4px;
}
.view-surgeon-locator input[type="text"] {
    background: #fff;
    border: medium none;
    border-radius: 5px;
    font-size: 14px;
    height: 50px;
    padding: 10px 35px 0 10px;
    width: 220px;
}
.view-surgeon-locator .form-item-query input[type="text"] {
    width: 360px;
}
.wrapper-location > span {
    position: absolute;
    right: 10px;
    top: 13px;
    cursor: pointer;
}
.page-find-a-surgeon .pane-page-messages{
	padding-left: 0;
	padding-right: 0;
}
.view-surgeon-locator select {
	background: #fff url("/sites/all/themes/ascrs_theme/images/icon-select-arrow.png") no-repeat scroll right 10px center;
	border: 0 !important;
    border-radius: 5px;
    height: 50px;
    padding: 0;
    font-size: 14px;
    padding: 10px 30px 0 3px;
	-webkit-appearance: none;  /*Removes default chrome and safari style*/
	-moz-appearance: none; /* Removes Default Firefox style*/
	appearance:none;
	width: 120px; /*Width of select dropdown to give space for arrow image*/
	text-indent: 0.01px; /* Removes default arrow from firefox*/
	text-overflow: "";  /*Removes default arrow from firefox*/ /*My custom style for fonts*/
}
.views-exposed-form-surgeon-locator-page .views-exposed-form .views-exposed-widget .form-submit,
.views-exposed-form-surgeon-locator-page .views-exposed-form .views-exposed-widget .form-submit + a{
	margin: 0 0 0 4px;
	line-height: 50px;
	height: 50px;
	padding: 0 15px;
}
.views-exposed-form-surgeon-locator-page .views-exposed-form .views-exposed-widget .form-submit + a {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #EBEBEB;
    border-radius: 5px;
    color: #EBEBEB;
    display: inline-block;
    line-height: 46px;
}
.views-exposed-form-surgeon-locator-page .views-exposed-form .views-exposed-widget .form-submit + a:hover {
    text-decoration: none;
    background: #EBEBEB;
    color: #3371be;
}


.view-surgeon-locator .views-exposed-widget .form-item,
.wrapper-location {
    display: inline-block;
    vertical-align: top;
    position: relative;
}
.view-surgeon-locator .view-filters:after {
    color: #fff;
    content: "Enter a zip code, city, or country to find a surgeon near you";
}
.view-surgeon-locator input[type="submit"] {
    background: #ebebeb none repeat scroll 0 0;
    color: #3371be;
}
.view-surgeon-locator input[type="submit"] {
    background: #ebebeb none repeat scroll 0 0;
    box-shadow: none;
    color: #3371be;
    height: 40px;
    vertical-align: top;
}
.view-surgeon-locator input[type="submit"]:hover {
    background: #3371be none repeat scroll 0 0;
    color: #fff;
}
.view-surgeon-locator input[type="submit"]:active {
	background: #004990 none repeat scroll 0 0;
	color: #fff;
}
.view-surgeon-locator .view-content {
    background: #fff none repeat scroll 0 0;
    height: 600px;
    overflow-y: scroll;
    position: absolute;
    right: 0;
    top: 220px;
    width: 400px;
    z-index: 2;
    padding: 0 25px;
}
.view-surgeon-locator .view-empty{
    background: #fef5f1 none repeat scroll 0 0 !important;
    color: #ef7a7a !important;
    height: 600px;
    position: absolute;
    right: 0;
    top: 220px;
    width: 400px;
    z-index: 2;
    padding: 25px !important;
    border: 4px solid #ef7a7a !important;
}
.view-surgeon-locator *::-moz-placeholder {
    color: #fff;
    opacity: 0;
}
.view-surgeon-locator *:-moz-placeholder {
    color: #fff;
    opacity: 0;
}
.view-surgeon-locator *::-webkit-input-placeholder {
    color: #fff;
    opacity: 0;
}
.view-surgeon-locator *:-ms-input-placeholder {
    color: #fff;
    opacity: 0;
}
.view-surgeon-locator .views-reset-button {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 5;
}
.view-surgeon-locator .views-reset-button a {
    color: #fff;
    opacity: 0.6;
}
.view-surgeon-locator .views-reset-button a:after {
    content: "\f057";
    margin-left: 5px;
    font-family: fontawesome;
}
.view-surgeon-locator .views-reset-button a:hover {
    opacity: 1;
    text-decoration: none;
}
@media screen and (max-width:1080px){
	.view-surgeon-locator input[type="text"],
	.view-surgeon-locator .form-type-textfield,
	.view-surgeon-locator .form-item-query input[type="text"],
	.wrapper-location {
		width: 100%;
	}
	.view-surgeon-locator .views-exposed-widget {
		margin: 0 auto;
		max-width: 480px;
	}
	.view-surgeon-locator .views-exposed-widget .form-item {
		margin-bottom: 4px;
		padding: 0;
	}
	.view-surgeon-locator .form-type-select {
		width: calc(100% - 266px);
	}
	.view-surgeon-locator input[type="submit"] {
		text-align: center;
		width: 130px;
	}
	.view-surgeon-locator select {
		width: 100%;
	}
	.view-surgeon-locator .view-filters{
		height: 330px;
	}
	.view-surgeon-locator .view-content,
	.view-surgeon-locator .view-empty{
		top: 330px;
	}
}
.view-surgeon-locator.view-display-id-page .view-header{
	margin: 0;
}
.view, .view-surgeon-locator {
    position: relative;
}
.view-surgeon-locator .view-header #map-canvas {
    min-height: 600px !important;
    width: 770px !important;
}
.view-surgeon-locator .view-content > .views-row {
    border-bottom: 8px solid #ebebeb;
    margin: 15px 0;
    padding-bottom: 15px;
}
.view-surgeon-locator .surgeon-title {
    color: #000;
    font-size: 16px;
    margin-bottom: 8px;
}
.view-surgeon-locator .field-name-field-offices,
.view-surgeon-locator .field-name-field-certified {
    color: #5d5d5d;
    font-size: 12px;
    line-height: 1.5;
}
.view-surgeon-locator .field-name-field-offices > .field-items > .field-item {
    margin-bottom: 8px;
}
.view-surgeon-locator .field-name-field-offices > .field-items > .field-item:last-child {
    margin: 0;
}
.view-surgeon-locator .view-content > .views-row-last:after {
    color: #c5c5c5;
    content: "END";
    display: block;
    float: right;
    font-size: 11px;
    margin: 35px 0 15px;
    text-align: center;
    width: 100%;
}
.view-surgeon-locator .left-col {
    float: left;
    width: 49%;
}
.view-surgeon-locator .right-col {
    float: right;
    text-align: right;
    width: 49%;
}
.view-surgeon-locator .field-name-field-certified .field-item:before {
    content: "\f00c";
    margin-right: 5px;
    font-family: fontawesome;
}
.view-surgeon-locator .field-name-field-certified {
    float: right;
}
@media screen and (max-width:800px){
	.view-surgeon-locator .left-col {
		float: left;
		width: 49%;
	}
	.view-surgeon-locator .right-col {
		float: right;
		text-align: right;
		width: 49%;
	}
	.view-surgeon-locator .view-content,
	.view-surgeon-locator .view-empty {
		height: auto;
		overflow-y: inherit;
		position: relative;
		top: 0;
		width: 100%;
	}
	.view-surgeon-locator.view-display-id-page .view-header {
		border: 30px solid #ebebeb;
	}
	.view-surgeon-locator .view-header #map-canvas {
		height: 0 !important;
		min-height: 0 !important;
		padding-bottom: 61.25%;
		position: relative;
		width: 100% !important;
	}
}
@media screen and (max-width: 480px){
	.view-surgeon-locator .form-type-select{
		width: 100%;
	}
	.view-surgeon-locator .view-filters{
		height: 400px;
	}
	.views-exposed-form-surgeon-locator-page .views-exposed-form .views-exposed-widget .form-submit, 
	.views-exposed-form-surgeon-locator-page .views-exposed-form .views-exposed-widget .form-submit + a {
		margin: 0;
		width: calc(50% - 2px);
	}
	.views-exposed-form-surgeon-locator-page .views-exposed-form .views-exposed-widget .form-submit{
		float: left;
	}
	.views-exposed-form-surgeon-locator-page .views-exposed-form .views-exposed-widget .form-submit + a {
		float: right;
	}

}
a.btn {
    background-color: #3371be;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    padding: 8px 15px;
    margin-bottom: 8px;
}
a.btn:hover {
    background-color: #004990;
    text-decoration: none;
    color: #fff;
}
a.btn:active {
    background-color: #002b54;
    color: #fff;
}
body::-webkit-scrollbar {
    width: 1em;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
.office-map .field-name-field-name {
    font-weight: bold;
    margin-bottom: 8px;
}
.office-map .field-name-field-address, .office-map .field-name-field-phone-text {
    color: #5d5d5d;
    font-size: 12px;
    line-height: 1.5;
}
.office-map .field-name-field-link {
    margin-top: 8px;
}


/* END FIND A SURGEON 4/2016 - BD */

/* SURGEON LISTING WITH PHOTOS STYLING */
.surgeon-photo {
    width: 75px;
    height: 75px;
    border-radius: 50%;
	overflow: hidden;
	margin-right: 20px;
	margin-bottom: 5px;
}
.surgeon-list-info {
    overflow: hidden;
}
@media screen and (min-width: 540px){
	.surgeon-list-info {
		float: left;
		width: calc(100% - 100px);
	}
	.surgeon-photo {
		float: left;
	}
}
@media screen and (min-width: 801px){
	.view-surgeon-locator .view-content{
		width: 450px;
	}
}

/* TOP SITEWIDE SEARCH BAR */
.search-block-form input.apachesolr-autocomplete {
    background-color: #252525;
    border: medium none;
    color: #fff;
    margin-right: 10px;
}
html.js input.apachesolr-autocomplete {
    background-image: none;
}
header .ascrs-header-secondary .pane-search-form {
    float: left;
    padding: 2px 0 0;
}
.ascrs-header-secondary input.form-submit {
    background: rgba(0, 0, 0, 0) url("/sites/all/themes/ascrs_theme/images/icon-sprite.png") no-repeat scroll 0 -80px;
    border: medium none;
    box-shadow: none;
    height: 20px;
    overflow: hidden;
    padding: 0;
    text-indent: 100%;
    width: 20px;
}
.ascrs-header-secondary input.form-submit:hover {
    background-image: url("/sites/all/themes/ascrs_theme/images/icon-sprite.png");
    background-position: -20px -80px;
    background-repeat: no-repeat;
}
/* END TOP SITEWIDE SEARCH BAR */

/* SITEWIDE SEARCH RESULS PAGE */
.page-search-site .pane-page-tabs {
    display: none;
}
.page-search-site .field-keys-label {
    display: none;
}
.page-search-site .search-form + h2 {
    display: none;
}
.page-search-site .search-form {
    text-align: center;
    margin-bottom: 60px;
}
.page-search-site .search-form input.apachesolr-autocomplete {
    width: 400px;
}
.page-search-site .search-form input.form-submit {
    margin-left: 1em;
}
.page-search-site h1 {
    text-align: center;
}
ol.apachesolr_search-results {
    padding: 0;
}
ol.apachesolr_search-results li {
    transition: all 0.25s ease 0s;
}
.page-search-site .apachesolr_search-results li.search-result:first-child {
    border-top: 2px solid #ebebeb;
}
.page-search-site .results-list-column-container .column-thumb {
    float: left;
    height: auto;
    width: 32%;
}
.page-search-site .results-list-column-container .column-detail, 
.page-search-site .results-list-column-container .column-member {
    float: right;
    width: 66%;
    clear: right;
}
.results-list-column-container .is-member {
    display: inline-block;
}
.results-list-column-container .column-member {
    margin-top: 20px;
}
.not-logged-in .search-result-image .column-thumb img {
    display: none;
}
.not-logged-in.page-search-site .search-result-image .column-thumb a {
    height: 130px;
}

@media all and (max-width:767px){
	.page-search-site .search-form input.apachesolr-autocomplete {
		width: 200px;
	}
	.results-list-column-container .column-thumb,
	.results-list-column-container .column-detail, 
	.results-list-column-container .column-member {
		width: 48%;
	}
}
@media all and (max-width:540px){
	.page-search-site .search-form input.apachesolr-autocomplete {
		width: 180px;
	}
	.results-list-column-container .column-thumb,
	.results-list-column-container .column-detail, 
	.results-list-column-container .column-member {
		width: 100%;
	}
	.results-list-column-container .column-thumb{
		margin-bottom: 20px;
	}
}
/* END SITEWIDE SEARCH RESULS PAGE */

/* SITEWIDE SEARCH BAR */
.search-block-form input.apachesolr-autocomplete {
    background-color: #939393;
    border: medium none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3) inset;
    color: #fff;
    margin-right: 0;
    width: 300px;
}
.container-inline .form-item-search-block-form{
	display: inline-block;
}
#search-block-form {
    position: relative;
}
.ascrs-header-secondary input.form-submit:hover{
	background-position: 0 -80px;
}
.search-block-form .form-actions{
	position: absolute;
	right: 10px;
	top: 7px;
}
@media screen and (max-width:540px){
	.search-block-form input.apachesolr-autocomplete{
		width: 200px;
	}
}
.ui-autocomplete li a {
    font-family: arial,sans-serif;
    font-size: 16px;
    cursor: pointer;
    height: 30px;
}
.not-logged-in .mentor-match-menu {
    display: none;
}
.ui-autocomplete.ui-corner-all {
    border-radius: 5px
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
    background: #eee none repeat scroll 0 0;
    border: medium none;
}
.ui-menu .ui-menu-item a.ui-state-hover, .ui-menu .ui-menu-item a.ui-state-active {
    margin: inherit;
}
/* END SITEWIDE SEARCH BAR */

/* SPECIAL MENU BUTTON 10.20.16 */
/*
@media screen and (min-width: 1024px) {
ul.menuzord-menu.menuzord-indented.scrollable > li:nth-last-child(2) {
    margin-top: 13px;
    margin-left: 5px;
    margin-right: 0;
    position: absolute;
    right: 10px;
    top: 92px;
}
ul.menuzord-menu.menuzord-indented.scrollable > li:nth-last-child(2) a {
    line-height: 1.3;
    text-align: center;
    background-color: #3371be;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    color: #ffffff;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    text-transform: uppercase;
}
ul.menuzord-menu.menuzord-indented.scrollable > li:nth-last-child(2) a:hover {
    background-color: orangered;
}
.megamenu {
    z-index: 10000;
}
}

@media screen and (max-width: 1024px) {
ul.menuzord-menu.menuzord-indented.scrollable > li:nth-last-child(2) a {
    background-color: #3371be;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    color: #fff;
    width: auto;
    max-width: 50%;
    margin: 10px auto;
    text-align: center;
}
ul.menuzord-menu.menuzord-indented.scrollable > li:nth-last-child(2) a:hover {
    background-color: orangered;
    text-decoration: none;
}
}
*/
/* END SPECIAL MENU BUTTON 10.20.16 */

.page-node-49161 .hideme{
	display: none;
}