@import url(https://fonts.googleapis.com/css?family=Titillium+Web:200,400,700,900);
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500%7CZilla+Slab:400,500,800&display=swap');
/* Import bootstrap 3 mixins and variables so we can use them */
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #ffffff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #ffffff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #428bca;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #000000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
/* Import core mixins so we can use them */
.clear_float:before,
.clear_float:after {
  content: " ";
  display: table;
}
.clear_float:after {
  clear: both;
}
/* Import our theme variables. */
/*
 * The sections in this document roughly correspond to our theme style guide.
 */
/* Import our theme mixins */
/* Import our theme fonts */
/* Our style rules - namespace so as not to collide with the core app styles */
body {
  background: transparent url(/core-application/themes/medeor/images/background.png) repeat scroll;
}
div.ccm-page {
  position: relative;
}
div.ccm-page {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.42857143;
  -webkit-font-smoothing: antialiased;
}
div.ccm-page blockquote {
  padding-left: 60px;
  font-size: 1.46em;
  font-weight: 300;
  border-color: #bdcfd8;
  color: #5b676c;
  line-height: 1.42857143;
}
div.ccm-page h1 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2.1em;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.42857143;
  text-transform: none;
}
div.ccm-page h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.46em;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.42857143;
  text-transform: none;
}
div.ccm-page h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.25em;
  font-weight: 700;
  color: #75ca2a;
  line-height: 1.42857143;
  text-transform: none;
}
div.ccm-page h4 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.05em;
  font-weight: 700;
  color: #4f585c;
  line-height: 1.42857143;
  text-transform: none;
}
div.ccm-page h5 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.73em;
  font-weight: 700;
  color: #9fa9ad;
  line-height: 1.42857143;
  text-transform: uppercase;
}
div.ccm-page h6 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.73em;
  font-weight: 400;
  color: #a3db75;
  line-height: 1.42857143;
  text-transform: uppercase;
}
div.ccm-page img {
  max-width: 100%;
}
div.ccm-page hr {
  margin-top: 80px;
  margin-bottom: 80px;
  border-top: 1px solid #ececec;
}
div.ccm-page main {
  background-color: #ffffff;
  padding-bottom: 80px;
  /*
    div.container:last-child {
      padding-bottom: 80px;
    }
    */
}
div.ccm-page main p {
  margin-bottom: 30px;
}
div.ccm-page main a:not(.fa):not(.btn),
div.ccm-page footer a:not(.fa):not(.btn) {
  color: #20bde8;
}
div.ccm-page main a:not(.fa):not(.btn):hover,
div.ccm-page footer a:not(.fa):not(.btn):hover {
  color: #abddff;
  text-decoration: none;
}
div.ccm-page div[data-container=block] div.container:last-child {
  padding-bottom: 0px;
}
div.ccm-page.page-type-blog-entry div.col-sidebar {
  padding-top: 40px;
}
div.ccm-page div.col-sidebar hr {
  margin-top: 20px;
  margin-bottom: 20px;
}
div.ccm-page {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
}
div.ccm-page div.ccm-system-errors {
  margin-top: 40px;
}
div.ccm-page header {
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
}
div.ccm-page header #header-site-title {
  font-family: 'Titillium Web';
  font-weight: 400;
  color: #75ca2a;
  text-transform: none;
  line-height: 1.15em;
  font-size: 2.3em;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
div.ccm-page header #header-site-title:hover,
div.ccm-page header #header-site-title:focus,
div.ccm-page header #header-site-title:active {
  color: #447618;
  text-decoration: none !important;
}
div.ccm-page header .ccm-search-block-form {
  position: relative;
}
div.ccm-page header .ccm-search-block-form:before {
  content: "\f002";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  position: absolute;
  left: 14px;
  top: 9px;
  text-decoration: inherit;
  color: #cbcbcb;
}
div.ccm-page header .ccm-search-block-form .ccm-search-block-text {
  border: 1px solid #cbcbcb;
  color: #cbcbcb;
  border-radius: 30px;
  padding: 10px 20px 10px 35px;
  background-color: #ffffff;
}
div.ccm-page header .ccm-search-block-form .ccm-search-block-text:focus {
  outline: 0;
}
div.ccm-page header nav .dropdown:after {
  content: ' ▶';
}
div.ccm-page header nav .dropdown:hover:after {
  content: '\25bc';
}
div.ccm-page header nav ul {
  -webkit-font-smoothing: antialiased;
  list-style: none;
  margin-top: 10px !important;
  padding: 0px 0px 0px 0px;
  float: right;
}
div.ccm-page header nav ul a {
  padding-right: 40px;
  font-family: 'Titillium Web';
  font-size: 1em;
  font-weight: 700;
  color: #0099ff;
  text-transform: none;
}
div.ccm-page header nav ul a:hover {
  color: #abddff;
  text-decoration: none;
}
div.ccm-page header nav ul a.nav-path-selected {
  color: #0186a7;
}
div.ccm-page header nav ul li {
  margin: 0;
  padding: 0;
  padding-bottom: 10px;
  position: relative;
  display: inline-block;
}
div.ccm-page header nav ul li:hover ul {
  opacity: 1;
  top: 30px;
  visibility: visible;
}
div.ccm-page header nav ul li ul {
  cursor: pointer;
  padding: 15px;
  padding-bottom: 0px;
  float: left;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 20px;
  visibility: hidden;
  width: 200px;
  background-color: #ffffff;
  z-index: 99;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -ms-border-radius: 3px;
  border: 1px solid #edf2f3;
}
div.ccm-page header nav ul li ul li {
  float: none;
  width: 100%;
  padding-bottom: 0px;
}
div.ccm-page header nav ul li ul li:hover a {
  color: #0099ff;
}
div.ccm-page header nav ul li ul li a {
  display: block;
  padding-bottom: 15px;
  font-size: 1.0em;
  text-transform: none;
  color: #a2a2a2;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
  font-weight: normal;
}
div.ccm-page header nav ul li ul li a:hover {
  color: #0099ff;
}
div.ccm-page div.ccm-pagination-wrapper {
  text-align: center;
}
div.ccm-page .pagination > li.active span {
  background: none;
  color: #548627;
  border-color: #d4efbd;
}
div.ccm-page .pagination > li.next.disabled a,
div.ccm-page .pagination > li.next.disabled span {
  color: #b3beb8;
}
div.ccm-page .pagination > li.next a {
  border-right: 1px solid #d4efbd;
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
  padding-right: 25px;
}
div.ccm-page .pagination > li.next span {
  border-right: 1px solid #d4efbd;
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
  padding-right: 25px;
}
div.ccm-page .pagination > li.prev.disabled a,
div.ccm-page .pagination > li.prev.disabled span {
  color: #b3beb8;
}
div.ccm-page .pagination > li.prev span {
  border-left: 1px solid #d4efbd;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
  padding-left: 25px;
}
div.ccm-page .pagination > li.prev a {
  border-left: 1px solid #d4efbd;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
  padding-left: 25px;
}
div.ccm-page .pagination > li > a {
  font-size: 14px;
  border-left: 0;
  border-right: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  border-color: #d4efbd;
}
div.ccm-page .pagination > li > a:hover {
  background: none;
}
div.ccm-page .pagination > li > span {
  font-size: 14px;
  border-left: 0;
  border-right: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  border-color: #d4efbd;
}
div.ccm-page .breadcrumb {
  background-color: transparent;
  padding: 0px;
}
div.ccm-page .breadcrumb a {
  color: #75ca2a !important;
}
div.ccm-page .breadcrumb a:hover {
  text-decoration: none;
  color: #548627 !important;
}
div.ccm-page img.ccm-captcha-image {
  display: block;
  margin: 0px auto;
}
div.ccm-page main .ccm-search-block-form h3 {
  font-family: 'Titillium Web';
  font-size: 1.46em;
  text-transform: uppercase;
}
div.ccm-page main .ccm-search-block-form input.ccm-search-block-text {
  border: 1px solid #e6e6e6;
  margin-right: 15px;
  width: 50%;
  margin-bottom: 15px;
  padding: 10px;
}
div.ccm-page main .ccm-search-block-form input.ccm-search-block-submit:focus {
  outline: none;
}
div.ccm-page main .ccm-search-block-form #searchResults {
  margin-top: 15px;
  border-top: 1px solid #ececec;
}
div.ccm-page main .ccm-search-block-form #searchResults .searchResult {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 24px;
  padding-bottom: 7px;
  border-bottom: 1px solid #ececec;
}
div.ccm-page main .ccm-search-block-form #searchResults .searchResult p {
  color: #6e6e6e;
}
div.ccm-page main .ccm-search-block-form #searchResults .searchResult h3 {
  margin-top: 0px;
  text-transform: none;
  margin-bottom: 5px;
  font-family: inherit;
}
div.ccm-page main .ccm-search-block-form #searchResults .searchResult h3 a {
  font-weight: 400;
  font-size: 22px;
  color: #0099ff;
}
div.ccm-page main .ccm-search-block-form #searchResults .searchResult h3 a:hover {
  color: #abddff;
}
div.ccm-page .btn {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -ms-border-radius: 20px;
  padding: 10px 30px 10px 30px;
}
div.ccm-page .btn-success {
  color: #ffffff;
  background-color: #00cc66;
  border-color: #4cae4c;
}
div.ccm-page .btn-success:hover,
div.ccm-page .btn-success:focus,
div.ccm-page .btn-success:active,
div.ccm-page .btn-success.active,
.open > .dropdown-togglediv.ccm-page .btn-success {
  color: #ffffff;
  background-color: #00994d;
  border-color: #398439;
}
div.ccm-page .btn-success:active,
div.ccm-page .btn-success.active,
.open > .dropdown-togglediv.ccm-page .btn-success {
  background-image: none;
}
div.ccm-page .btn-success.disabled,
div.ccm-page .btn-success[disabled],
fieldset[disabled] div.ccm-page .btn-success,
div.ccm-page .btn-success.disabled:hover,
div.ccm-page .btn-success[disabled]:hover,
fieldset[disabled] div.ccm-page .btn-success:hover,
div.ccm-page .btn-success.disabled:focus,
div.ccm-page .btn-success[disabled]:focus,
fieldset[disabled] div.ccm-page .btn-success:focus,
div.ccm-page .btn-success.disabled:active,
div.ccm-page .btn-success[disabled]:active,
fieldset[disabled] div.ccm-page .btn-success:active,
div.ccm-page .btn-success.disabled.active,
div.ccm-page .btn-success[disabled].active,
fieldset[disabled] div.ccm-page .btn-success.active {
  background-color: #00cc66;
  border-color: #4cae4c;
}
div.ccm-page .btn-success .badge {
  color: #00cc66;
  background-color: #ffffff;
}
div.ccm-page .btn-default {
  color: #6e6e6e;
  background-color: #ffffff;
  border-color: #b7e390;
}
div.ccm-page .btn-default:hover,
div.ccm-page .btn-default:focus,
div.ccm-page .btn-default:active,
div.ccm-page .btn-default.active,
.open > .dropdown-togglediv.ccm-page .btn-default {
  color: #6e6e6e;
  background-color: #e6e6e6;
  border-color: #97d75f;
}
div.ccm-page .btn-default:active,
div.ccm-page .btn-default.active,
.open > .dropdown-togglediv.ccm-page .btn-default {
  background-image: none;
}
div.ccm-page .btn-default.disabled,
div.ccm-page .btn-default[disabled],
fieldset[disabled] div.ccm-page .btn-default,
div.ccm-page .btn-default.disabled:hover,
div.ccm-page .btn-default[disabled]:hover,
fieldset[disabled] div.ccm-page .btn-default:hover,
div.ccm-page .btn-default.disabled:focus,
div.ccm-page .btn-default[disabled]:focus,
fieldset[disabled] div.ccm-page .btn-default:focus,
div.ccm-page .btn-default.disabled:active,
div.ccm-page .btn-default[disabled]:active,
fieldset[disabled] div.ccm-page .btn-default:active,
div.ccm-page .btn-default.disabled.active,
div.ccm-page .btn-default[disabled].active,
fieldset[disabled] div.ccm-page .btn-default.active {
  background-color: #ffffff;
  border-color: #b7e390;
}
div.ccm-page .btn-default .badge {
  color: #ffffff;
  background-color: #6e6e6e;
}
div.ccm-page div.block-sidebar-padded {
  padding: 25px 40px 25px 40px;
}
div.ccm-page div.block-sidebar-padded p {
  font-size: 0.85em;
}
div.ccm-page div.block-sidebar-wrapped {
  padding: 25px 40px 25px 40px;
  background-color: #f8faf1;
  font-size: 0.85em;
}
div.ccm-page div.block-sidebar-wrapped h3 {
  margin: 0px;
  font-size: 14px;
  font-weight: normal;
}
div.ccm-page div.block-sidebar-wrapped a {
  color: #75ca2a !important;
}
div.ccm-page div.block-sidebar-wrapped a:hover {
  text-decoration: none;
  color: #548627 !important;
}
div.ccm-page div.block-sidebar-wrapped div.ccm-block-page-list-page-entry {
  padding-bottom: 0px;
  border-bottom: 0px;
  margin-bottom: 0px;
}
div.ccm-page div.block-sidebar-wrapped ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  color: #9fa9ad;
}
div.ccm-page div.block-sidebar-wrapped ul li {
  margin-bottom: 12px;
}
div.ccm-page div.block-sidebar-wrapped ul ul {
  padding-left: 20px;
  font-size: 1em;
}
div.ccm-page div.block-sidebar-wrapped + div.block-sidebar-wrapped {
  padding-top: 0px;
}
div.ccm-page div.block-sidebar-wrapped div.ccm-block-share-this-page {
  margin: -15px -40px -25px -40px;
  padding: 15px 40px 10px 40px;
  border-top: 1px solid #ececec;
  font-size: 1.25em;
}
div.ccm-page div.block-sidebar-wrapped div.ccm-block-share-this-page a {
  color: #d1d1d1 !important;
}
div.ccm-page div.block-sidebar-wrapped div.ccm-block-share-this-page a:hover {
  color: #75ca2a !important;
}
div.ccm-page div.blog-entry-list div.ccm-block-page-list-page-entry-horizontal {
  margin-left: -15px;
  margin-right: -15px;
}
div.ccm-page div.blog-entry-list div.ccm-block-page-list-page-entry-horizontal div.ccm-block-page-list-page-entry-thumbnail {
  position: relative;
  float: left;
  width: 16.66666667%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 7px;
}
div.ccm-page div.blog-entry-list div.ccm-block-page-list-page-entry-horizontal div.ccm-block-page-list-page-entry-thumbnail img {
  display: block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}
div.ccm-page div.blog-entry-list div.ccm-block-page-list-page-entry-horizontal div.ccm-block-page-list-page-entry-text {
  position: relative;
  float: left;
  width: 83.33333333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
div.ccm-page div.blog-entry-list div.ccm-block-page-list-date {
  color: #aeaeae;
  font-size: 0.8em;
  margin-bottom: 10px;
}
div.ccm-page div.blog-entry-list div.ccm-block-page-list-title {
  margin: 0px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.46em;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.42857143;
  text-transform: none;
}
div.ccm-page div.blog-entry-list div.ccm-block-page-list-title a {
  color: #1a1a1a;
}
div.ccm-page div.blog-entry-list div.ccm-block-page-list-title a:hover {
  text-decoration: none;
  color: #0099ff;
}
div.ccm-page div.recent-blog-entry div.ccm-block-page-list-title {
  margin-top: 0px;
  margin-bottom: 10px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.46em;
  font-weight: 700;
  color: #4f585c;
  line-height: 1.42857143;
  text-transform: none;
}
div.ccm-page div.recent-blog-entry div.ccm-block-page-list-title a {
  color: #4f585c;
}
div.ccm-page div.recent-blog-entry div.ccm-block-page-list-title a:hover {
  color: #428bca;
  text-decoration: none;
}
div.ccm-page div.recent-blog-entry div.ccm-block-page-list-page-entry {
  border-bottom: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
div.ccm-page div.area-content-accent {
  background-color: #f8faf1;
  margin-top: 80px;
  padding: 65px 0px 65px 0px;
  /*
  div.container:last-child {
    padding-bottom: 0px;
  }
  */
  margin-bottom: -80px;
}
div.ccm-page div.area-content-accent .title-caps,
div.ccm-page div.area-content-accent .title-caps-bold,
div.ccm-page div.area-content-accent h3 {
  color: #988e47 !important;
}
div.ccm-page div.testimonial-bio {
  margin-bottom: 60px;
}
div.ccm-page div.testimonial-bio div.ccm-block-testimonial-wrapper {
  margin-top: 0px;
  margin-bottom: 0px;
}
div.ccm-page div.testimonial-bio div.ccm-block-testimonial-wrapper div.ccm-block-testimonial {
  margin-left: 0px;
  margin-right: 0px;
}
div.ccm-page div.testimonial-bio div.ccm-block-testimonial-wrapper div.ccm-block-testimonial div.ccm-block-testimonial-image {
  width: auto;
  float: none;
  padding: 0px;
  margin-bottom: 30px;
}
div.ccm-page div.testimonial-bio div.ccm-block-testimonial-wrapper div.ccm-block-testimonial div.ccm-block-testimonial-image img {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -ms-border-radius: 0px;
}
div.ccm-page div.testimonial-bio div.ccm-block-testimonial-wrapper div.ccm-block-testimonial div.ccm-block-testimonial-text {
  float: none;
  padding: 0px;
}
div.ccm-page div.testimonial-bio + div.testimonial-bio {
  margin-bottom: 0px;
}
div.ccm-page div.testimonial-bio:only-child {
  margin-bottom: 0px;
}
div.ccm-page .ccm-faq-container {
  margin-left: -15px;
  margin-right: -15px;
}
div.ccm-page .ccm-faq-block-links {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1200px) {
  div.ccm-page .ccm-faq-block-links {
    float: left;
    width: 25%;
  }
}
div.ccm-page .ccm-faq-block-links a {
  display: block;
  margin-bottom: 10px;
}
div.ccm-page .ccm-faq-block-entries {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
div.ccm-page .ccm-faq-block-entries h3 {
  margin-top: 0px;
}
div.ccm-page .ccm-faq-block-entries div.faq-entry-content {
  margin-bottom: 50px;
}
@media (min-width: 1200px) {
  div.ccm-page .ccm-faq-block-entries {
    float: left;
    width: 66.66666667%;
  }
}
@media (min-width: 1200px) {
  div.ccm-page .ccm-faq-block-entries {
    margin-left: 8.33333333%;
  }
}
div.ccm-page div.ccm-block-feature-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 40px;
}
div.ccm-page div.ccm-block-feature-item h4,
div.ccm-page div.ccm-block-feature-item i {
  color: #75ca2a;
}
div.ccm-page div.ccm-block-feature-item i {
  position: absolute;
  top: 3px;
  left: 0px;
}
div.ccm-page div.feature-home-page div.ccm-block-feature-item h4,
div.ccm-page div.feature-home-page div.ccm-block-feature-item i {
  color: #1a1a1a;
}
div.ccm-page div.feature-home-page div.ccm-block-feature-item h4 {
  font-size: 1.5em;
}
div.ccm-page div.feature-home-page div.ccm-block-feature-item i {
  color: #1a1a1a;
  font-size: 1.3em;
  top: 1px;
}
div.ccm-page div.feature-home-page div.ccm-block-feature-item {
  padding-left: 45px;
}
div.ccm-page div.ccm-block-feature-item-hover-wrapper {
  text-align: center;
}
div.ccm-page div.ccm-block-feature-item-hover-wrapper div.ccm-block-feature-item-hover-title {
  color: #888888;
  font-size: 1.5em;
  font-weight: 400;
  margin-top: 20px;
}
div.ccm-page div.ccm-block-feature-item-hover {
  display: table;
  margin: 0px auto 0px auto;
}
div.ccm-page div.ccm-block-feature-item-hover div.ccm-block-feature-item-hover-icon {
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -ms-border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  margin: 0px auto 0px auto;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: help;
  width: 200px;
  height: 200px;
}
div.ccm-page div.ccm-block-feature-item-hover div.ccm-block-feature-item-hover-icon i {
  margin-top: 3px;
  color: #0099ff;
  font-size: 2.1em;
}
@media (min-width: 768px) {
  div.ccm-page div.ccm-block-feature-item-hover div.ccm-block-feature-item-hover-icon {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 992px) {
  div.ccm-page div.ccm-block-feature-item-hover div.ccm-block-feature-item-hover-icon {
    width: 110px;
    height: 110px;
  }
}
@media (min-width: 1200px) {
  div.ccm-page div.ccm-block-feature-item-hover div.ccm-block-feature-item-hover-icon {
    width: 134px;
    height: 134px;
  }
}
div.ccm-page div.ccm-block-feature-item-hover-wrapper:hover div.ccm-block-feature-item-hover-icon {
  background: #ccebff;
  border: 1px solid #99d6ff;
}
div.ccm-page .ccm-image-slider-container {
  border-bottom: 2px solid #f0eee1;
  padding-top: 20px;
  margin-bottom: 70px;
  background-color: transparent;
  background-repeat: repeat;
  /* background-image is moved to main.less because it needs to be in the theme root */
}
div.ccm-page .ccm-image-slider-container .ccm-image-slider {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
div.ccm-page .ccm-image-slider-container .ccm-image-slider .rslides li {
  max-height: 220px;
}
@media (min-width: 480px) and (max-width: 767px) {
  div.ccm-page .ccm-image-slider-container .ccm-image-slider {
    width: 100%;
  }
  div.ccm-page .ccm-image-slider-container .ccm-image-slider .rslides li {
    max-height: 320px;
  }
}
@media (min-width: 768px) {
  div.ccm-page .ccm-image-slider-container .ccm-image-slider {
    width: 750px;
  }
  div.ccm-page .ccm-image-slider-container .ccm-image-slider .rslides li {
    max-height: 350px;
  }
}
@media (min-width: 992px) {
  div.ccm-page .ccm-image-slider-container .ccm-image-slider {
    width: 970px;
  }
  div.ccm-page .ccm-image-slider-container .ccm-image-slider .rslides li {
    max-height: 429px;
  }
}
@media (min-width: 1200px) {
  div.ccm-page .ccm-image-slider-container .ccm-image-slider {
    width: 1170px;
  }
  div.ccm-page .ccm-image-slider-container .ccm-image-slider .rslides li {
    max-height: 480px;
  }
}
div.ccm-page .ccm-image-slider-container .ccm-image-slider:before,
div.ccm-page .ccm-image-slider-container .ccm-image-slider:after {
  content: " ";
  display: table;
}
div.ccm-page .ccm-image-slider-container .ccm-image-slider:after {
  clear: both;
}
div.ccm-page .ccm-image-slider-container .ccm-image-slider-inner {
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1200px) {
  div.ccm-page .ccm-image-slider-container .ccm-image-slider-inner {
    float: left;
    width: 100%;
  }
}
div.ccm-page .ccm-image-slider-container .rslides_nav {
  opacity: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -ms-border-radius: 4px;
  height: 38px;
  margin-top: -20px;
  width: 38px;
  background: rgba(0, 0, 0, 0.92);
}
div.ccm-page .ccm-image-slider-container .rslides_nav.next {
  color: white;
  -webkit-transition: background 0.35s ease-in-out;
  -o-transition: background 0.35s ease-in-out;
  transition: background 0.35s ease-in-out;
  right: 40px;
}
div.ccm-page .ccm-image-slider-container .rslides_nav.next:hover {
  text-decoration: none;
  color: black;
  background: white;
}
div.ccm-page .ccm-image-slider-container .rslides_nav.next:before {
  -webkit-transition: background 0.35s ease-in-out;
  -o-transition: background 0.35s ease-in-out;
  transition: background 0.35s ease-in-out;
  content: "\f054";
  font-family: FontAwesome;
  font-size: 16px;
  display: block;
  margin-top: 10px;
  margin-left: 14px;
}
div.ccm-page .ccm-image-slider-container .rslides_nav.prev {
  color: white;
  -webkit-transition: background 0.35s ease-in-out;
  -o-transition: background 0.35s ease-in-out;
  transition: background 0.35s ease-in-out;
  left: 40px;
}
div.ccm-page .ccm-image-slider-container .rslides_nav.prev:hover {
  text-decoration: none;
  color: black;
  background: white;
}
div.ccm-page .ccm-image-slider-container .rslides_nav.prev:after {
  -webkit-transition: background 0.35s ease-in-out;
  -o-transition: background 0.35s ease-in-out;
  transition: background 0.35s ease-in-out;
  content: "\f053";
  font-family: FontAwesome;
  font-size: 16px;
  display: block;
  margin-top: 10px;
  margin-left: 12px;
}
div.ccm-page .ccm-image-slider-container .rslides_tabs {
  padding-left: 0px;
  padding-top: 15px;
  padding-bottom: 10px;
}
div.ccm-page .ccm-image-slider-container .rslides_tabs li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}
div.ccm-page .ccm-image-slider-container .rslides_tabs li.rslides_here a {
  background: #75ca2a;
}
div.ccm-page .ccm-image-slider-container .rslides_tabs li a {
  overflow: hidden;
  text-indent: 99px;
  background: #ccccc9;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 10px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  -ms-border-radius: 30px;
}
div.ccm-page .ccm-image-slider-container .ccm-image-slider-text h2 {
  color: #75ca2a;
  font-family: 'Titillium Web';
  font-size: 3.2em;
  font-weight: 200;
  margin-bottom: 5%;
}
div.ccm-page .ccm-image-slider-container .ccm-image-slider-text p {
  color: #6e6e6e;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  width: 80%;
}
div.ccm-page .ccm-image-slider-container.ccm-block-image-slider-arrows .ccm-image-slider-inner {
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 60px;
}
@media (min-width: 1200px) {
  div.ccm-page .ccm-image-slider-container.ccm-block-image-slider-arrows .ccm-image-slider-inner {
    margin-left: 8.33333333%;
  }
}
@media (min-width: 1200px) {
  div.ccm-page .ccm-image-slider-container.ccm-block-image-slider-arrows .ccm-image-slider-inner {
    float: left;
    width: 83.33333333%;
  }
}
div.ccm-page .image-right-tilt .ccm-image-block {
  display: block;
  margin: 0px auto 0px auto;
  transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  /* IE 9 */
  -webkit-transform: rotate(3deg);
}
div.ccm-page .image-circle .ccm-image-block {
  border-radius: 50%;
}
div.ccm-page div.ccm-block-next-previous-header {
  font-size: 15px;
}
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #d9d9d9;
}
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry div.ccm-block-page-list-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.25em;
  font-weight: 700;
  color: #75ca2a;
  line-height: 1.42857143;
  text-transform: none;
}
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry:first-child {
  padding-top: 0px;
  border-top: none;
  margin-top: 0px;
}
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -ms-border-radius: 20px;
  padding: 10px 30px 10px 30px;
  border: 1px solid transparent;
  display: inline-block;
  color: #6e6e6e;
  background-color: #ffffff;
  border-color: #b7e390;
}
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more:hover,
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more:focus,
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more:active,
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more.active,
.open > .dropdown-togglediv.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more {
  color: #6e6e6e;
  background-color: #e6e6e6;
  border-color: #97d75f;
}
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more:active,
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more.active,
.open > .dropdown-togglediv.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more {
  background-image: none;
}
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more.disabled,
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more[disabled],
fieldset[disabled] div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more,
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more.disabled:hover,
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more[disabled]:hover,
fieldset[disabled] div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more:hover,
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more.disabled:focus,
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more[disabled]:focus,
fieldset[disabled] div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more:focus,
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more.disabled:active,
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more[disabled]:active,
fieldset[disabled] div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more:active,
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more.disabled.active,
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more[disabled].active,
fieldset[disabled] div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more.active {
  background-color: #ffffff;
  border-color: #b7e390;
}
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more .badge {
  color: #ffffff;
  background-color: #6e6e6e;
}
div.ccm-page div.page-list-with-buttons div.ccm-block-page-list-page-entry a.ccm-block-page-list-read-more:hover {
  text-decoration: none;
}
div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper {
  margin-left: -15px;
  margin-right: -15px;
}
div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
  overflow: hidden;
}
@media (min-width: 768px) {
  div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item {
    float: left;
    width: 33.33333333%;
  }
}
@media (min-width: 768px) {
  div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item {
    min-height: 147px;
  }
  div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item img {
    width: 100%;
    height: 147px;
  }
}
@media (min-width: 992px) {
  div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item {
    min-height: 193px;
  }
  div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item img {
    width: 100%;
    height: 193px;
  }
}
@media (min-width: 1200px) {
  div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item {
    min-height: 240px;
  }
  div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-item img {
    width: 100%;
    height: 240px;
  }
}
div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-page-entry-grid-thumbnail-hover {
  background-color: rgba(32, 189, 232, 0.7);
}
div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper i.ccm-block-page-list-page-entry-grid-thumbnail-icon {
  display: block;
  margin: 0px auto 10px auto;
}
div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper i.ccm-block-page-list-page-entry-grid-thumbnail-icon:before {
  font-family: FontAwesome;
  content: "\f064";
}
div.ccm-page div.ccm-block-page-list-thumbnail-grid-wrapper div.ccm-block-page-list-title {
  margin-top: 30px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.05em;
  font-weight: 700;
  color: #4f585c;
  line-height: 1.42857143;
  text-transform: none;
}
div.ccm-page a.ccm-block-page-list-rss-feed {
  font-size: 1.5em;
  color: #d1d1d1;
}
div.ccm-page a.ccm-block-page-list-rss-feed:hover {
  color: #75ca2a;
}
div.ccm-page div.ccm-block-page-list-page-entry-horizontal:before,
div.ccm-page div.ccm-block-page-list-page-entry-horizontal:after {
  content: " ";
  display: table;
}
div.ccm-page div.ccm-block-page-list-page-entry-horizontal:after {
  clear: both;
}
div.ccm-page div.ccm-block-page-list-page-entry-horizontal,
div.ccm-page div.ccm-block-page-list-page-entry {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ececec;
}
div.ccm-page div.ccm-block-page-list-page-entry-read-more {
  margin-top: 20px;
}
div.ccm-page div.ccm-block-page-list-no-pages {
  text-align: center;
  font-size: 1.25em;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #9fa9ad;
}
div.ccm-page div.col-sidebar div.block-sidebar-wrapped div.ccm-block-page-list-wrapper {
  margin: 0px;
}
div.ccm-page div.col-sidebar div.ccm-block-page-list-wrapper {
  margin: 25px 40px 25px 40px;
  font-size: .85em;
}
div.ccm-page div.col-sidebar div.ccm-block-page-list-wrapper a.ccm-block-page-list-rss-feed {
  font-size: .85em;
}
div.ccm-page div.col-sidebar div.ccm-block-page-list-wrapper div.ccm-block-page-list-page-entry {
  border: 0px;
  padding: 0px;
  margin-bottom: 10px;
}
div.ccm-page div.col-sidebar div.ccm-block-page-list-wrapper div.ccm-block-page-list-page-entry a {
  font-weight: normal;
}
div.ccm-page div.ccm-block-page-list-header {
  font-size: 15px;
}
div.ccm-page div.ccm-block-page-attribute-display-wrapper {
  border-top: 1px solid #ececec;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #aeaeae;
}
div.ccm-page div.ccm-block-page-attribute-display-wrapper .ccm-block-page-attribute-display-title {
  color: #75ca2a;
  display: block;
}
div.ccm-page div.ccm-block-page-attribute-display-wrapper:last-child {
  border-bottom: 1px solid #ececec;
}
div.ccm-page h1.page-title {
  color: #75ca2a;
  font-family: 'Titillium Web';
  font-size: 1.73em;
  line-height: 1.42857143;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 30px;
  padding-top: 30px;
}
div.ccm-page.page-type-portfolio-project h1.page-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2.1em;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.42857143;
  text-transform: none;
  border-bottom: 1px solid #ececec;
  margin-bottom: 40px;
}
div.ccm-page div.ccm-block-page-title-byline {
  padding-bottom: 40px;
  border-bottom: 1px solid #ececec;
  margin-bottom: 40px;
}
div.ccm-page div.ccm-block-page-title-byline h1.page-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2.1em;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.42857143;
  text-transform: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-top: 1em;
}
div.ccm-page div.ccm-block-page-title-byline span.page-date {
  margin-right: 2em;
}
div.ccm-page div.ccm-block-page-title-byline span.page-date,
div.ccm-page div.ccm-block-page-title-byline span.page-author {
  color: #9fa9ad;
  font-style: italic;
  font-size: 0.85em;
}
div.ccm-page div.ccm-block-testimonial {
  margin-left: -15px;
  margin-right: -15px;
}
div.ccm-page div.ccm-block-testimonial div.ccm-block-testimonial-image {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  div.ccm-page div.ccm-block-testimonial div.ccm-block-testimonial-image {
    float: left;
    width: 25%;
  }
}
div.ccm-page div.ccm-block-testimonial div.ccm-block-testimonial-text {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  div.ccm-page div.ccm-block-testimonial div.ccm-block-testimonial-text {
    float: left;
    width: 75%;
  }
}
div.ccm-page div.ccm-block-testimonial img {
  display: block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -ms-border-radius: 50%;
}
div.ccm-page div.ccm-block-testimonial div.ccm-block-testimonial-name {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.05em;
  font-weight: 700;
  color: #4f585c;
  line-height: 1.42857143;
  text-transform: none;
}
div.ccm-page div.ccm-block-testimonial div.ccm-block-testimonial-position {
  color: #75ca2a;
}
div.ccm-page div.ccm-block-testimonial div.ccm-block-testimonial-position a {
  color: #75ca2a;
  text-decoration: underline;
}
div.ccm-page div.ccm-block-testimonial div.ccm-block-testimonial-paragraph {
  margin-top: 20px;
}
div.ccm-page div.ccm-block-testimonial-wrapper {
  margin-top: 60px;
  margin-bottom: 60px;
}
div.ccm-page div.ccm-block-testimonial-wrapper:before,
div.ccm-page div.ccm-block-testimonial-wrapper:after {
  content: " ";
  display: table;
}
div.ccm-page div.ccm-block-testimonial-wrapper:after {
  clear: both;
}
@media all and (max-width: 767px) {
  div.ccm-page .ccm-block-testimonial-image img {
    margin: 10px auto;
  }
}
div.ccm-page div.col-sidebar div.ccm-block-tags-wrapper {
  margin: 25px 40px 25px 40px;
}
div.ccm-page div.ccm-block-tags-header {
  font-size: 15px;
}
div.ccm-page div.ccm-block-tags-wrapper a:hover {
  text-decoration: none;
}
div.ccm-page span.ccm-block-tags-tag {
  background-color: #ffffff;
  border-color: #d1d1d1;
  border-width: 1px;
  border-style: solid;
  color: #6e6e6e;
}
div.ccm-page div.ccm-block-tags-wrapper a:hover span.ccm-block-tags-tag {
  border-color: #75ca2a;
}
div.ccm-page div.col-sidebar div.ccm-block-topic-list-wrapper {
  margin: 25px 40px 25px 40px;
  font-size: .85em;
}
div.ccm-page div.ccm-block-topic-list-header {
  font-size: 15px;
}
div.ccm-page ul.ccm-block-topic-list-page-topics {
  list-style-type: none;
  padding-left: 0px;
  padding-bottom: 0px;
}
div.ccm-page ul.ccm-block-topic-list-page-topics li {
  margin-bottom: 10px;
  padding-bottom: 0px;
}
div.ccm-page .ccm-block-topic-list-topic-selected {
  font-weight: bold;
}
div.ccm-page div.col-sidebar div.ccm-block-date-navigation-wrapper {
  margin: 25px 40px 25px 40px;
  font-size: .85em;
}
div.ccm-page div.ccm-block-date-navigation-header {
  font-size: 15px;
}
div.ccm-page ul.ccm-block-date-navigation-dates {
  list-style-type: none;
  padding-left: 0px;
  padding-bottom: 0px;
}
div.ccm-page ul.ccm-block-date-navigation-dates li {
  margin-bottom: 10px;
  padding-bottom: 0px;
}
div.ccm-page .ccm-block-date-navigation-date-selected {
  font-weight: bold;
}
div.ccm-page div.ccm-block-calendar-wrapper a.fc-event,
div.ccm-page div.ccm-block-calendar-wrapper a.fc-event:hover {
  color: #fff;
}
div.ccm-page div.ccm-block-calendar-event-list,
div.ccm-page div.ccm-block-calendar-event-list-wrapper {
  margin-bottom: 10px;
  clear: both;
}
div.ccm-page div.ccm-block-calendar-event-list-event-date {
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 10px;
  border: 1px solid #f8faf1;
}
div.ccm-page div.ccm-block-calendar-event-list-event-date span {
  display: block;
  text-align: center;
}
div.ccm-page div.ccm-block-calendar-event-list-event-date span:first-child {
  font-weight: bold;
  background-color: #f8faf1;
  color: #988e47;
}
div.ccm-page div.ccm-block-calendar-event-list-event {
  padding-bottom: 10px;
  clear: both;
}
div.ccm-page h1 {
  font-family: "Zilla Slab", Times, serif;
  color: #0186a7;
  font-size: 3.71em;
  margin-top: -0.15em;
  margin-bottom: 0.5em;
  line-height: 1;
  font-weight: 500;
}
div.ccm-page h2 {
  font-family: "Zilla Slab", Times, serif;
  color: #0186a7;
  font-size: 2.06em;
  font-weight: 500;
}
div.ccm-page h3 {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #0186a7;
  font-weight: 500;
  font-size: 1.59em;
}
div.ccm-page h4 {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #686968;
  font-weight: 500;
  font-size: 1.29em;
}
div.ccm-page h5 {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #686968;
  font-weight: 500;
  font-size: 1.18em;
  text-transform: none;
}
div.ccm-page h6 {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #0186a7;
}
div.ccm-page main a:not(.fa):not(.btn) {
  color: #489e6e;
  text-decoration: underline;
  font-weight: 500;
}
div.ccm-page main a:not(.fa):not(.btn):hover {
  color: #0186a7;
}
div.ccm-page main .white a {
  color: white !important;
}
div.ccm-page strong,
div.ccm-page b,
div.ccm-page .bold {
  font-weight: 500;
  color: #686968;
}
div.ccm-page hr {
  margin-top: 50px;
  margin-bottom: 50px;
  border-top: 2px solid #e0e1e0;
}
div.ccm-page main ul {
  margin-bottom: 30px;
  padding-left: 20px;
}
div.ccm-page main ul li ul {
  margin-bottom: 0px;
}
div.ccm-page main ul li:before {
  content: '\2022';
  color: #0186a7;
  left: -21px;
  top: 12px;
  display: block;
  position: relative;
  font-size: 28px;
  line-height: 0;
}
div.ccm-page main ul > li {
  list-style: none;
}
div.ccm-page main ul > li > ul > li:before {
  content: '\2014';
  font-size: 16px;
  color: #686968;
}
div.ccm-page main ul > li > ul > li > ul > li:before {
  content: '\2022';
  font-size: 24px;
  color: #686968;
  left: -19px;
  top: 12px;
}
div.ccm-page main ul > li {
  margin-bottom: 10px;
}
div.ccm-page main ul > li ul li {
  margin-bottom: 0;
}
div.ccm-page .block-heading {
  background: #0186a7;
  color: #fff !important;
  margin: 30px 0 0;
  padding: 5px 10px;
  font-family: "Zilla Slab", Times, serif;
  font-weight: 500;
}
div.ccm-page span.white {
  color: #fff !important;
}
div.ccm-page span.blue {
  color: #0186a7 !important;
}
div.ccm-page span.green {
  color: #489e6e !important;
}
div.ccm-page span.arrow-link {
  cursor: pointer;
}
div.ccm-page span.arrow-link a:after {
  content: ' >';
}
@media (max-width: 767px) {
  div.ccm-page header {
    height: 80px;
  }
  div.ccm-page header:not(.active) {
    top: 30px;
  }
}
div.ccm-page header nav {
  flex-grow: 1;
}
div.ccm-page header nav > ul {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
div.ccm-page header nav > ul > li {
  padding: 50px 25px;
}
div.ccm-page header nav > ul > li:last-of-type {
  display: none;
}
div.ccm-page header nav ul {
  margin: 0 !important;
}
div.ccm-page header nav ul li {
  font-size: 16px;
}
@media (min-width: 1367px) and (max-width: 1199px) {
  div.ccm-page header nav ul li {
    font-size: 14px;
  }
  div.ccm-page header nav ul li:hover ul {
    top: 120px;
  }
}
div.ccm-page header nav ul li:hover ul {
  top: 122px;
}
div.ccm-page header nav ul li ul {
  top: 110px;
  left: 10px;
  border: none;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 0 15px 10px !important;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
div.ccm-page header nav ul li ul li a {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #686968;
  padding: 0 0 4px;
  cursor: pointer;
}
div.ccm-page header nav ul li ul li a:hover {
  color: #0186a7;
}
div.ccm-page header nav ul a {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #686968;
  padding: 0;
}
div.ccm-page header nav ul a:hover {
  color: #0186a7;
}
div.ccm-page header .site-nav {
  display: flex;
  align-items: center;
}
div.ccm-page header .site-nav p {
  margin-bottom: 0;
  margin-left: 20px;
}
div.ccm-page header .site-nav p .btn.btn-default {
  min-width: unset;
}
@media (max-width: 1366px) {
  div.ccm-page header .site-nav {
    justify-content: flex-end;
  }
  div.ccm-page header .site-nav p {
    display: none;
  }
}
@media (max-width: 1366px) {
  div.ccm-page header .ccm-responsive-navigation.original {
    display: none;
  }
  div.ccm-page header .ccm-responsive-menu-launch {
    display: block;
  }
  div.ccm-page header .site-logo img {
    max-height: 50px;
  }
}
/* miscellaneous-styles.less */
div.ccm-page main .jumbo {
  min-height: 300px;
}
div.ccm-page main .jumbo h1 {
  color: #75ca2a !important;
  font-family: 'Titillium Web' !important;
  font-size: 2.46em !important;
  line-height: 1.14285714;
  font-weight: 200 !important;
  display: block;
  padding-top: 40px;
  font-size: 3.69em;
  padding-bottom: 40px;
}
div.ccm-page main .jumbo p {
  font-size: 1.46em;
  color: #4f585c;
  font-weight: 200;
}
/* comes outside of main because we want to show it in redactor */
.title-thin {
  color: #75ca2a !important;
  font-family: 'Titillium Web' !important;
  font-size: 2.46em !important;
  line-height: 1.14285714;
  font-weight: 200 !important;
  display: block;
}
.title-caps-bold {
  color: #75ca2a !important;
  font-family: 'Titillium Web' !important;
  font-size: 1.73em !important;
  line-height: 2.47142857em !important;
  font-weight: 700 !important;
  text-transform: uppercase;
}
.title-caps {
  color: #75ca2a !important;
  font-family: 'Titillium Web' !important;
  font-size: 1.73em !important;
  line-height: 2.47142857em !important;
  font-weight: 400;
  text-transform: uppercase;
}
.image-caption {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #b8c4cd;
  font-size: 1em;
}
/* footer.less */
footer#footer-theme {
  color: #5b676c;
}
footer#footer-theme a {
  color: #489e6e;
  text-decoration: underline;
  font-weight: 500;
}
footer#footer-theme a:hover {
  color: #0186a7;
  text-decoration: none;
}
footer#footer-theme div.ccm-block-social-links {
  text-align: right;
}
footer#footer-theme div.ccm-block-social-links ul a {
  color: #d1d1d1;
}
footer#footer-theme div.ccm-block-social-links ul a:hover {
  color: #75ca2a;
}
footer#footer-theme section {
  border-top: 1px solid #d9d9d9;
  padding-top: 30px;
  padding-bottom: 30px;
}
footer#footer-theme section:first-child {
  background-color: #ffffff;
}
footer#footer-theme section:last-child {
  padding-bottom: 30px;
  background-color: transparent;
}
footer#footer-theme #footer-site-title {
  font-family: 'Titillium Web';
  font-weight: 900;
  color: #75ca2a;
  text-transform: uppercase;
  font-size: 1.2em;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
footer#footer-theme #footer-site-title:hover {
  color: #447618;
  text-decoration: none !important;
}
footer#concrete5-brand {
  background-color: rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  padding-bottom: 20px;
}
footer#concrete5-brand a.concrete5 {
  color: #00baff;
}
footer#concrete5-brand a.concrete5:hover {
  color: #008dc0;
}
footer#concrete5-brand a {
  color: #9fa7aa;
}
footer#concrete5-brand a:hover {
  color: #7B8083;
}
/* navigation.less */
.ccm-responsive-overlay {
  background: white;
  display: none;
  position: absolute;
  border-bottom: 5px solid #75ca2a;
  width: 100%;
  z-index: 99;
  top: 120px;
  left: 0px;
  padding-top: 15px;
  padding-left: 20px;
  -webkit-text-size-adjust: none;
  overflow: scroll;
}
.ccm-responsive-overlay ul {
  padding-left: 0;
}
.ccm-responsive-overlay ul li {
  list-style-type: none;
  display: block;
}
.ccm-responsive-overlay ul li.parent-ul a:after {
  padding-left: 7px;
  padding-top: 3px;
  font-size: 20px;
  content: "\f107";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  cursor: pointer;
  text-decoration: inherit;
}
.ccm-responsive-overlay ul li a {
  color: #0099ff;
  font-size: 18px;
  display: inline-block;
  width: 80%;
  padding: 7px 5% 7px 0px;
  margin: 0% 5% 0% 0;
  padding-left: 15px;
  height: 100%;
  font-weight: 200;
  text-decoration: none;
}
.ccm-responsive-overlay ul li a:hover {
  color: #abddff;
}
.ccm-responsive-overlay ul li ul li {
  padding-left: 10px;
}
.ccm-responsive-overlay ul li ul li.last-li a {
  padding-top: 0px;
  font-size: 15px;
}
.ccm-responsive-overlay ul li ul li.last-li a:after {
  content: '';
}
.ccm-responsive-menu-launch {
  display: none;
  cursor: pointer;
  margin-top: 10px;
  float: right;
}
.ccm-responsive-menu-launch.responsive-button-close i:after {
  font-size: 20px;
  color: #0099ff;
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  cursor: pointer;
  text-decoration: inherit;
}
.ccm-responsive-menu-launch i:after {
  font-size: 20px;
  content: "\f0c9";
  font-family: FontAwesome;
  color: #0099ff;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  cursor: pointer;
  text-decoration: inherit;
}
@media all and (max-width: 1366px) {
  .ccm-responsive-menu-launch {
    display: block;
  }
  .ccm-responsive-navigation.original {
    display: none;
  }
  header .ccm-search-block-form {
    margin-top: 20px;
  }
}
@media all and (min-width: 1367px) {
  .ccm-responsive-overlay {
    display: none !important;
  }
}
/* CSS with background images – we need these directives to be in the root of theme
 * otherwise we can't both map the stylesheet to them AND the customizer to them
 */
.ccm-image-slider-container {
  background-image: url('/core-application/themes/medeor/images/background-slider-default.png');
}
.ccm-notification-help-launcher {
  display: none;
}
/* page specific css */
.page-template-home .masthead .ccm-custom-style-masthead {
  padding: 300px 0 120px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .page-template-home .masthead .ccm-custom-style-masthead {
    padding: 120px 0 35%;
    background-image: url('/core-application/themes/medeor/images/medeor-masthead-mobile.jpg');
    background-position: center bottom;
    background-size: 100%;
  }
  .page-template-home .masthead .ccm-custom-style-masthead .col-sm-6 {
    width: 100%;
    float: none;
  }
}
.page-template-home main p:not(:last-of-type) {
  margin-bottom: 50px;
}
/* main.less */
/* MAIN CUSTOM CSS */
body {
  background: none;
}
div.ccm-page main {
  padding-bottom: 0;
}
div.ccm-page span.btn {
  margin-right: 5px;
  margin-bottom: 10px;
}
div.ccm-page .btn {
  padding: 4px 30px;
  cursor: pointer;
  transition: all 0.3s ease, color 0.6s ease, border-color 0.1s ease;
  border-width: 2px;
  min-width: 200px;
  font-size: 15px;
}
div.ccm-page .btn.btn-default {
  border-color: transparent;
  color: #fff;
  background-color: #f55c33;
}
div.ccm-page .btn.btn-default:hover {
  border-color: #0186a7;
  color: #0186a7;
  background-color: transparent;
  transition: all 0.3s ease;
}
div.ccm-page .btn.btn-secondary {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
div.ccm-page .btn.btn-secondary:hover {
  border-color: transparent;
  color: #f55c33;
  background-color: #fff;
  transition: all 0.3s ease;
}
div.ccm-page .form-control {
  border-color: #27a4c3;
}
div.ccm-page .control-label {
  color: #0186a7;
  font-weight: 500;
}
@media (max-width: 1199px) {
  div.ccm-page #contact-form-ct .col-sm-4,
  div.ccm-page #contact-form-ct .col-sm-6 {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  div.ccm-page #contact-form-ct .col-sm-2 {
    display: none;
  }
}
@media (min-width: 768px) {
  .timeline-group {
    width: 560px;
    margin: 0 auto;
  }
}
.timeline-block {
  padding: 40px 70px;
  border-top: 2px solid black;
  border-bottom-width: 0;
  border-image: linear-gradient(to right, #f55c33 0%, #0186a7 100%) 1 round;
  min-height: 155px;
  display: flex;
  position: relative;
  align-items: center;
}
.timeline-block:first-child {
  border-top: 0;
}
.timeline-block:nth-child(2n+1) {
  border-left: 2px solid #f55c33;
  border-right-width: 0;
  padding-right: 0;
}
.timeline-block:nth-child(2n+1) .timeline-date {
  left: -37px;
}
.timeline-block:nth-child(2n) {
  border-right: 2px solid #0186a7;
  border-left-width: 0;
  padding-left: 0;
}
.timeline-block:nth-child(2n) .timeline-date {
  right: -37px;
}
.timeline-block .timeline-date {
  position: absolute;
  background-color: #0186a7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Zilla Slab", Times, serif;
  height: 70px;
  width: 70px;
  font-weight: 800;
  font-size: 1.3em;
  border-radius: 50%;
  top: 40px;
}
.timeline-block .timeline-content p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .timeline-block {
    margin: 0 40px;
  }
}
.fa-linkedin-square {
  color: #0077b5 !important;
}
#hp-transplant {
  padding-bottom: 0;
}
#hp-transplant .ccm-custom-style-container.elevated-section.padded {
  margin-bottom: 0;
}
#hp-transplant .ccm-image-block {
  margin: 0 auto;
}
#hp-news {
  padding-top: 0px;
}
@media (max-width: 767px) {
  .mobile-center {
    text-align: center;
  }
}
html.ccm-edit-mode .page-template-type-home .masthead .ccm-custom-style-masthead {
  display: block;
}
html.ccm-edit-mode div.ccm-page header {
  background-color: #fff;
}
html.ccm-edit-mode div.ccm-page .page-section {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  padding-bottom: 50px;
}
html.ccm-edit-mode div.ccm-page .page-section .page-section-below {
  z-index: 0;
}
html.ccm-edit-mode div.ccm-page .elevated-section {
  padding: 40px 0;
}
html.ccm-toolbar-visible .ccm-responsive-overlay {
  height: calc(100vh - 128px);
}
html.ccm-toolbar-visible .ccm-responsive-overlay.mobile-active {
  top: 128px;
}
@media (max-width: 1366px) {
  html.ccm-toolbar-visible div.ccm-page header.mobile-active {
    top: 48px;
  }
}
.ccm-responsive-overlay {
  border-bottom: 0;
  top: 110px;
  background-color: rgba(255, 255, 255, 0.95);
  height: calc(100vh - 80px);
}
.ccm-responsive-overlay.mobile-active {
  position: fixed;
  top: 80px;
}
.ccm-responsive-overlay ul li a {
  color: #686968;
  font-size: 4vw;
}
.ccm-responsive-overlay ul li a:hover {
  color: #489e6e;
}
.ccm-responsive-overlay ul li a.nav-path-selected {
  color: #489e6e;
}
@media (max-width: 991px) {
  .ccm-responsive-overlay ul li a {
    font-size: 5vw;
  }
}
@media (max-width: 767px) {
  .ccm-responsive-overlay ul li a {
    font-size: 7vw;
  }
}
.ccm-responsive-overlay ul li.parent-ul a:after {
  content: '';
}
.ccm-responsive-overlay ul li ul li a,
.ccm-responsive-overlay ul li ul li.last-li a {
  font-size: 3vw;
  padding-left: 45px;
}
@media (max-width: 991px) {
  .ccm-responsive-overlay ul li ul li a,
  .ccm-responsive-overlay ul li ul li.last-li a {
    font-size: 4vw;
  }
}
@media (max-width: 767px) {
  .ccm-responsive-overlay ul li ul li a,
  .ccm-responsive-overlay ul li ul li.last-li a {
    font-size: 6vw;
  }
}
.ccm-responsive-overlay nav > ul > li {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.ccm-responsive-overlay.menu-open nav > ul > li {
  opacity: 1;
  transform: translateY(0px);
}
.ccm-responsive-overlay.menu-open nav > ul > li:nth-of-type(10) {
  transition-delay: 0.130s;
}
.ccm-responsive-overlay.menu-open nav > ul > li:nth-of-type(9) {
  transition-delay: 0.117s;
}
.ccm-responsive-overlay.menu-open nav > ul > li:nth-of-type(8) {
  transition-delay: 0.104s;
}
.ccm-responsive-overlay.menu-open nav > ul > li:nth-of-type(7) {
  transition-delay: 0.91s;
}
.ccm-responsive-overlay.menu-open nav > ul > li:nth-of-type(6) {
  transition-delay: 0.78s;
}
.ccm-responsive-overlay.menu-open nav > ul > li:nth-of-type(5) {
  transition-delay: 0.65s;
}
.ccm-responsive-overlay.menu-open nav > ul > li:nth-of-type(4) {
  transition-delay: 0.52s;
}
.ccm-responsive-overlay.menu-open nav > ul > li:nth-of-type(3) {
  transition-delay: 0.39s;
}
.ccm-responsive-overlay.menu-open nav > ul > li:nth-of-type(2) {
  transition-delay: 0.26s;
}
.ccm-responsive-overlay.menu-open nav > ul > li:nth-of-type(1) {
  transition-delay: 0.13s;
}
.ccm-responsive-menu-launch i {
  height: 5px;
  width: 40px;
  background-color: #489e6e;
  display: block;
  position: relative;
  top: -12px;
  transform-origin: center;
}
.ccm-responsive-menu-launch i:before,
.ccm-responsive-menu-launch i:after {
  content: '';
  height: 5px;
  width: 40px;
  background-color: #489e6e;
  display: block;
  top: 12px;
  position: absolute;
  transform-origin: center;
}
.ccm-responsive-menu-launch i:after {
  top: 24px;
}
.ccm-responsive-menu-launch:after {
  content: "Menu";
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #686968;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  top: 13px;
  display: block;
  width: 23px;
  text-align: center;
}
.ccm-responsive-menu-launch.responsive-button-close i {
  transform: rotate(45deg) translate(8px, 8px);
}
.ccm-responsive-menu-launch.responsive-button-close i:before {
  transform: rotate(-90deg) translate(12px, 0px);
}
.ccm-responsive-menu-launch.responsive-button-close i:after {
  content: '';
  display: none;
}
@media (max-width: 1366px) {
  div.ccm-page header.mobile-active {
    position: fixed;
    top: 0;
  }
  div.ccm-page header .container,
  div.ccm-page header .container > .row {
    height: 100%;
  }
  div.ccm-page header .row {
    display: flex;
    align-items: center;
  }
  div.ccm-page header .ccm-responsive-menu-launch {
    margin: 0;
    margin-right: 20px;
  }
}
html.ccm-toolbar-visible div.ccm-page header.active {
  top: 48px;
}
div.ccm-page header {
  padding: 0;
  border-bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 99;
  top: 100px;
  background-color: transparent;
  transform-origin: left;
}
div.ccm-page header .site-logo {
  z-index: 2;
}
div.ccm-page header .site-logo img {
  max-width: none;
  height: 65px;
}
div.ccm-page header.active {
  position: fixed;
  top: 0px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  left: 0;
  transform: translateX(0%);
}
div.ccm-page header.active > .container {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
div.ccm-page header > .container {
  transition: border-radius 0.5s ease;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 0 37px;
}
@media (min-width: 1367px) {
  div.ccm-page header > .container {
    border-radius: 20px;
  }
}
@media (min-width: 1367px) {
  div.ccm-page header > .container {
    width: 1000px;
    padding: 0 30px;
  }
}
@media (min-width: 1367px) {
  div.ccm-page header > .container {
    width: 1200px;
    padding: 0 30px;
  }
}
@media (min-width: 1367px) {
  div.ccm-page header > .container {
    width: 1300px;
    padding: 0 80px;
  }
}
@media (max-width: 1366px) {
  div.ccm-page header > .container {
    width: 100%;
    padding: 0 20px;
  }
}
div.ccm-page header > .container > .row {
  display: flex;
  align-items: center;
}
@media (max-width: 1366px) {
  div.ccm-page header > .container > .row {
    height: 80px;
  }
}
footer#footer-theme {
  padding: 62px 0px 0px 0px;
  background-color: #fff;
  /* background-image: url('../images/background-cells.png.html'); */
  background-image: url('/core-application/themes/medeor/images/footer-background-cells.png');
  background-position: center bottom;
  background-size: auto 120%;
}
footer#footer-theme section:last-child {
  padding: 30px 0 10px;
  background-color: rgba(255, 255, 255, 0.85);
  min-height: 100px;
  border-top: 0;
}
footer#footer-theme .footer-logo {
  margin-bottom: 20px;
}
footer#footer-theme .footer-logo img {
  margin: 0 auto;
}
.panel-group .panel {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.panel-group .panel + .panel {
  margin-top: 0;
}
.panel-default > .panel-heading {
  color: #fff;
  border-radius: 0;
  padding: 0;
}
.panel-default > .panel-heading .panel-title,
.panel-default > .panel-heading .panel-title a {
  color: #fff !important;
  width: 100%;
  font-weight: 400;
}
.panel-default > .panel-heading .panel-title:active,
.panel-default > .panel-heading .panel-title a:active,
.panel-default > .panel-heading .panel-title:focus,
.panel-default > .panel-heading .panel-title a:focus {
  text-decoration: none;
}
.panel-default > .panel-heading .panel-title .panel-subtitle,
.panel-default > .panel-heading .panel-title a .panel-subtitle {
  display: block;
  font-size: 1em;
}
.panel-default > .panel-heading:hover .panel-title a {
  background-color: rgba(1, 134, 167, 0.75);
}
.panel-default > .panel-heading .panel-title a {
  display: flex;
  padding: 8px 60px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #0186a7;
  cursor: pointer;
  text-decoration: none !important;
}
.panel-default > .panel-heading .panel-title a:before {
  content: '+';
  position: absolute;
  left: 40px;
}
.panel-default > .panel-heading .panel-title a[aria-expanded="true"] {
  background-color: #f55c33;
}
.panel-default > .panel-heading .panel-title a[aria-expanded="true"]:before {
  content: '-';
  font-size: 1.4em;
  left: 42px;
}
.page-section {
  padding: 100px 0;
}
.page-section.section-below {
  position: relative;
  z-index: 8;
}
.page-section.section-below + .page-section {
  background-position: center 200px;
}
.page-section:last-of-type {
  padding-bottom: 0;
}
div.ccm-page .elevated-section {
  background-color: #fff;
  min-height: 50px;
  width: 100%;
  position: relative;
  z-index: 9;
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.1);
  max-width: 1170px;
  margin: 0 auto 30px;
}
@media (max-width: 1199px) {
  div.ccm-page .elevated-section {
    max-width: 970px;
  }
}
@media (max-width: 991px) {
  div.ccm-page .elevated-section {
    max-width: 750px;
  }
}
div.ccm-page .elevated-section.padded {
  padding: 60px 50px;
}
@media (max-width: 767px) {
  div.ccm-page .elevated-section.padded {
    padding: 50px 30px;
  }
}
div.ccm-page .elevated-section > .container {
  width: 100%;
}
div.ccm-page .elevated-section p:last-child {
  margin-bottom: 0px;
}
div.ccm-page .elevated-section h2:first-child {
  margin-top: -13px;
}
div.ccm-page .elevated-section h4:first-child {
  margin-top: -8px;
}
div.ccm-page .elevated-section .ccm-block-express-form:first-child {
  margin-top: -6px;
}
div.ccm-page .elevated-section img {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  div.ccm-page .elevated-section#physician-layout-video-ct .col-sm-7 {
    width: 100%;
  }
  div.ccm-page .elevated-section#physician-layout-video-ct .col-sm-4 {
    width: 100%;
    margin-left: 0;
  }
}
div.ccm-page .elevated-section {
  min-height: 100px;
}
@media (max-width: 1199px) {
  div.ccm-page #hp-science-ct .col-sm-4 {
    width: 100%;
    padding-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  div.ccm-page #hp-science-ct .col-sm-4:nth-of-type(2) .ccm-image-block {
    object-position: top;
  }
}
@media (max-width: 1199px) {
  div.ccm-page #hp-science-ct.three-column-image-layout .ccm-image-block {
    height: 210px;
    object-position: center;
  }
}
@media (max-width: 1199px) {
  div.ccm-page #hp-science-ct.three-column-image-layout .icon .ccm-image-block {
    height: auto;
  }
}
div.ccm-page .three-column-image-layout > .row {
  margin: 0;
}
div.ccm-page .three-column-image-layout > .row div[class*="col"] {
  padding: 0;
}
div.ccm-page .three-column-image-layout .ccm-image-block {
  width: 100%;
  height: 128px;
  object-fit: cover;
  object-position: top;
}
@media (max-width: 767px) {
  div.ccm-page .three-column-image-layout .ccm-image-block {
    height: 210px;
  }
}
div.ccm-page .three-column-image-layout .icon .ccm-image-block {
  width: auto;
  height: auto;
  object-fit: none;
  margin: -25px auto 0;
}
div.ccm-page .three-column-image-layout h3 {
  font-family: "Zilla Slab", Times, serif;
}
div.ccm-page .three-column-image-layout p {
  padding: 0 30px;
  margin-bottom: 30px;
}
div.ccm-page .masthead {
  min-height: 420px;
  margin-bottom: 80px;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 767px) {
  div.ccm-page .masthead {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  div.ccm-page .enabling-layout {
    background-position: 86% top;
  }
}
@media (max-width: 991px) {
  div.ccm-page .enabling-layout {
    background-position: left bottom;
  }
}
@media (max-width: 991px) {
  div.ccm-page .enabling-layout .col-sm-4 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  div.ccm-page .blending-layout > .row {
    display: flex;
    flex-direction: column-reverse;
  }
}
