* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
    font-family: Arial, Helvetica, sans-serif;
	width:100%;
	height:100%;
	color:#333;
    position:relative;
    font-weight:400;
	-webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior:smooth;
    scroll-padding-top:0
}

body, html, h1, h2, h3, h4, h5, h6, p, blockquote, a, span, ol, ul, li, img {
	margin:0;
	padding:0;
}

body {
    background-color:#a0aca9;
    position:relative;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior:none;
}

a, a:hover, a:visited, a:active {
	text-decoration:none;
    cursor:pointer;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

*:hover {
	-webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

img, img:hover, img:focus {
	outline:none;
	border:0px none;
}
inner {
    display:block;
    margin:0 auto;
    width:70%;
    max-width:100%;
}

a.btn {
    display:block;
    width: 300px;
    max-width:100%;
    margin: 20px 0 30px;
    padding: 10px 20px;
    background-color: #555555;
    text-align: center;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
}
a.btn:hover {
    background-color: #d68438;
    color:#fff;
    text-decoration:none;
}
a.btn-reverse {
    display:block;
    width: 100%;
    max-width:100%;
    margin: 20px 0 10px;
    padding: 10px 20px;
    background-color: #d68438;
    text-align: center;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
}
a.btn-reverse:hover {
    background-color: #555555;
    color:#fff;
}

hr {
    border:0;
    border-top:2px dotted #bbb;
    margin:40px 0 30px;
}

iframe {
    float:left;
    width:100%;
    border:0;
    height:600px;
}

/*
#fade {
    opacity:0;
}
*/

header {
    float:left;
    width:100%;
    padding:0 40px;
    background-color:#fff;
    color:#333;
    position:relative;
    z-index:500;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
}
header inner {
    padding:0 40px;
}
.logo {
    float:left;
    background-image:url(/_assets/img/chs.svg);
    background-size:contain;
    background-repeat:no-repeat;
    background-position:left;
    width:270px;
    height:77px;
}

.nav-switch {
    opacity:0;
    float:left;
    width:100%;
    background-color:#f0f0f0;
    color:#D68438;
    text-align:left;
    font-weight:bold;
    padding:10px 10px 10px 30px;
    position:relative;
    cursor: pointer;
}
.hamburger {
  position: absolute;
  top: 12px;
  left:10px;
  list-style-type: none;
  width: 14px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.hamburger li {
  float: right;
  border-top: 2px solid #D68438;
  padding: 1px 0 0;
  margin: 1px 0 0;
  width: 100%;
}
.nav-close {
    opacity:0;
    position: absolute;
    left: 8px;
    top: 10px;
    width: 20px;
    height: 20px;
    z-index: 200;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.nav-close:before {
    content: '';
    height: 16px;
    border-left: 2px solid #D68438;
    position: absolute;
    transform: rotate(-45deg);
    left: 8px;
}
.nav-close:after {
    content: '';
    height: 16px;
    border-left: 2px solid #D68438;
    position: absolute;
    transform: rotate(45deg);
    left: 8px;
}
.show {
   opacity:1;
   -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.hide {
    opacity:0;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}


.header-menu {
    float:right;
    font-size:12px;
    list-style-type:none;
}
.header-menu a {
    color:#111;
    line-height:65px;
    padding:6px 14px 0;
    display:block;
}
.header-menu a:hover {
    color:#ea9629;
}
.header-menu li {
    display:inline-block;
    border-bottom:6px solid #fff;
}
.header-menu li:hover {
    border-bottom:6px solid #84938E;
}
.nav-parent, .sub-parent {
    position:relative;
}

.nav-parent ul {
    display:none;
    position:absolute;
    z-index:999;
    left:0;
    top:calc(100% + 6px);
    width:200px;
    list-style-type: none;
    border:1px solid #ccc;
    border-top:0;
}
.sub-parent ul {
    display:none;
    position:absolute;
    z-index:999;
    left:100%;
    top:0;
    width:200px;
    list-style-type: none;
    border:1px solid #ccc;
    border-top:0;
}
.nav-parent ul li {
    display:inline-block;
    width:100%;
    margin:0;
     border:0;
    border-top:1px solid #ccc;
}

.nav-parent ul li a {
    display:block;
    padding:18px 14px;
    line-height:normal;
    background-color:#f6f6f6;
}
.nav-parent ul li:hover {
    border:0;
    border-top:1px solid #ccc;
}
.nav-parent ul li:hover > a, .sub-parent ul li:hover a {
    color:#fff;
    background-color:#F6891E;
}
.nav-parent:hover > ul, .sub-parent:hover > ul {
    display:block;
}


banner {
    float:left;
    width:100%;
    background-size:cover;
    background-repeat:no-repeat;
    background-position: top;
    position:relative;
    z-index:10;
    padding:10px 0;
     box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.25);
-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.25);
}
.banner-home {
    background-image:url(/_assets/img/home/main-banner-collage.webp);
}

.banner-home::before {
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #f0f0f0 65%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-home inner {
    float: right;
    width: 950px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seal {
	 display:inline-block;
	width:50%;
	float:left;
	text-align:right;
	position:relative;
	margin-top:30px;
	margin-left:40px;
}
.anniversary {
	width:350px;
	height:auto;
	max-width:100%;
}

.banner-copy {
    float:right;
    width: 50%;
	padding:0 40px 0 0;
}

.banner-copy h1 {
     font-family: 'Open Sans', sans-serif;
		float:left;
	font-size: 28px;
	font-weight:600;
    line-height: 1.25;
    padding: 0;
    color: #0d507c;
    margin: 0 0 20px;
}
.banner-copy p {
    float:left;
    font-size: 14px;
    line-height:22px;
    margin:0 0 30px;
    color:#0d507c
}
.report-btn {
    font-size:14px;
    background-color:#0d507c;
    font-weight:bold;
    color:#fff !important;
    padding:10px 30px;
    text-align:center;
    display:inline-block;
    width:max-content;
    max-width:100%;
}
.report-btn:hover {
    background-color:#5a8ec5
}

content {
    float:left;
    width:100%;
    line-height: 1.5;
    font-size:12px;
}
content inner wrapper {
    float:left;
    width:100%;
    height:100%;
    background-color:#849794;
    padding:50px 40px;
}
content p {
    margin:0 0 14px;
}
content a {
    color:#D68438
}
content a:hover {
    color:#333;
}
entry a:hover {
    text-decoration:underline;
}
p.cta {
    margin:20px 0 0;
    padding:20px;
    background-color:#f0f0f0;
}

accent {
    float:left;
    width:100%;
    height:40px;
    background:#f8ab59;
    position:relative;
    z-index:1;
        box-shadow: 0px 3px 5px #0004;
    -webkit-box-shadow: 0px 3px 5px #0004;
    -moz-box-shadow: 0px 3px 5px #0004;
}
accent inner wrapper {
    float:left;
    width:100%;
    height:40px;
    background-color:#f6962f;
    padding:0
}

.featured-content {
    margin:-28px auto 0;
}

.home {
    color:#fff;
}
.home h2 {
    font-family: 'Open Sans', sans-serif;
    color:#fff;
    padding-bottom: 3px;
    margin:0 0 10px;
    border-bottom: 1px dotted #ccc;
    font-weight: 400;
    line-height: 1.5;
    font-size: 18px;
    width:max-content;
}
.splitter-home {
    border:0;
    border-top:2px dotted #777;
    background:transparent;
    height:1px;
    padding:0;
    margin:50px 0;
    float:left;
    width:100%;
}
.dark-btn {
    background-color:#6a7a77;
    color:#fff;
    text-transform: uppercase;
    padding:8px;
    border-radius:5px;
}
.dark-btn:hover {
    color:#fff;
}
.home column {
    float:left;
    width:45%;
    padding:0;
}
.home column.last {
    float:left;
    width:55%;
    padding:0 0 0 40px;
}
.map-home {
    width:100%;
    height:auto;
}
.home-featured {
    float:left;
    width:200px;
    height:auto;
    margin:-50px 0 0;
    position: relative;
    z-index:10;
      box-shadow: 0px 1px 3px #4e5c5a;
    -webkit-box-shadow: 0px 1px 3px #4e5c5a;
    -moz-box-shadow: 0px 1px 3px #4e5c5a;
}

.intro {
    display:flex;
    padding:6px 20px 0 30px;
}
.featured-menu {
    float:right;
    width:250px;
    list-style-type:none;
}
.featured-menu li {
    border-top:2px solid #6a7a77;
}
.featured-menu li:first-child {
    border:0;
}
.featured-menu a {
    color:#fff;
    display:block;
    padding:6px 10px;
}
.featured-menu a:hover {
    /*color:#f8ab59;*/
    color:#fff;
    background-color:#6a7a77;
    text-decoration:none;
}

sidebar {
    float:left;
    width:27%;
    background-color:#F6F6F6;
    height:100%;
    padding:20px;
    position:absolute;
    left:0;
    top:0;
}
.sidebar-menu {
    list-style-type:none;
    margin:0;
}
.sidebar-menu a {
    display:block;
    color:#D68438;
    padding:4px 10px;
}
.sidebar-menu a:hover {
    background-color:#eaeaea;
    color:#333;
    text-decoration:none;
}
.sidebar-menu li {
    border-bottom:1px dotted #0002;
    margin:0 
}
.sidebar-menu li ul {
    list-style-type:none;
    margin:0;
}
.sidebar-menu li ul li {
    margin:0
}
.sidebar-menu li ul li:last-child {
    border:0;
}
.sidebar-menu li ul a {
    padding-left:30px;
}
.sidebar-parent {
    border:0;
}
.sidebar-parent li:last-child a {
    border:0;
}
.sidebar-parent ul li:first-child a {
    border-top:1px dotted #0002
}
sidebar.locations {
    display:none;
}

.page-banner {
    float:left;
    width:110%;
    height:auto;
    margin:0 0 30px -5%;
}

page {
    float:left;
    width:100%;
    background-color:#fff;
    height:100%;
    padding:24px 60px 40px 32%;
    position:relative;
}

page h1, h2.chs-imap-header {
    display:block;
    font-family: 'Open Sans', sans-serif;
    font-size:32px;
    color:#597b7c;
    font-weight:400;
    margin:0 0 20px;
    line-height:1.25;
    width:100%;
}
page h2 {
    display:inline-block;
    font-family: 'Open Sans', sans-serif;
    color:#597b7c;
    font-weight:400;
    margin: 10px 0 10px;
    font-size: 20px;
}
page h3 {
    display:inline-block;
    font-family: 'Open Sans', sans-serif;
    color:#597b7c;
    font-weight:400;
    margin: 10px 0 10px;
    font-size: 16px;
}

page ul, page ol {
    margin:0 0 20px 40px;
}
page ul li, page ol li {
    margin:0 0 10px;
}
page ul a:hover, page ol a:hover {
    color:#333;
}

.loc-map {
    padding:0;
}

p.callout {
    float: right;
    width: 40%;
    padding: 20px;
    background: #f6f6f6;
    border-left: 10px solid #F6891E;
    margin: 0px 0px 20px 20px;
}

grid-set {
    float:left;
    width:100%;
    margin:20px 0 10px;
}
grid {
    float:left;
    width:50%;
    border-right:2px solid #fff;
}
grid img {
    margin:0;
    width:100%;
    height:auto;
}
grid a {
    float: left;
    width: 100%;
    margin: -5px 0 10px 0;
    padding: 10px 20px;
    background-color: #F6891E;
    color: #fff;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height:1.25
}
grid a:hover {
     text-decoration:none;
}
grid:last-child a {
    background-color:#9CABA9;
}
grid p {
    padding:0 10px 0 0;
}

h2.box-link {
    padding: 0;
    margin: 0;
    line-height: 100%;
    float: left;
    width: 100%;
    border-bottom: 1px dotted #ddd;
    padding: 10px 15px;
    font-weight: 300;
    font-size: 14px;
    line-height:1.5
}
h2.box-link:first-of-type {
    border-top: 1px dotted #ddd;
    margin-top: 20px;
}
h2.box-link:hover {
    background: #f6f6f6;
}
h2.box-link a {
    display:inline-block;
    font-size: 18px;
    font-weight: 300;
    margin: 0px;
    color: #C76000;
    border-right:1px solid #ddd;
    padding:0 10px 0 10px;
}
h2.box-link a:first-child {
    padding:0 10px 0 0;
}
h2.box-link a:last-child {
    border:0;
}
h2.box-link a:hover {
    color:#333;
    text-decoration:none;
}

img.right {
    float:right;
    width:30%;
    max-width:100%;
    margin:4px 0 20px 20px;
}
img.left {
    float:left;
    width:30%;
    max-width:100%;
    margin:4px 20px 20px 0;
}
img.right-expanded {
    float:right;
    width:45%;
    max-width:100%;
    margin:4px 0 20px 20px;
    /*padding:5px;
    border:1px solid #d0d0d0;*/
}
img.left-expanded {
    float:left;
    width:45%;
    max-width:100%;
    margin:4px 20px 20px 0;
    /*padding:5px;
    border:1px solid #d0d0d0;*/
}
img.headshot {
    float:left;
    width:25%;
    max-width:100%;
    margin:4px 20px 20px 0;

}
h1.leadership-title {
    font-size:18px;
}

.governance-menu {
    float:right;
    width:40%;
    margin:0 0 10px 20px;
    list-style-type:none;
}
.governance-menu li {
    margin:0;
}
.governance-menu li a {
    display:block;
    padding: 3px 10px;
    border-bottom: 1px dotted #ddd;
}
.governance-menu li a:hover {
    background-color:#f0f0f0;
    text-decoration:none;
}

.overview-map-details {
    font-family:'Open Sans', sans-serif;
    float:right;
    width:45%;
    aspect-ratio: 6 / 4;
    background-image:url(../../_assets/img/home/chs-locations-map.webp);
    background-position:center;
    background-repeat:no-repeat;
    background-size:95%;
    position:relative;
    border-bottom:10px solid #f4a100;
    margin:0 0 10px 20px
}
.overview-map-details::after {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:#0008;
    z-index:1
}
.count {
    float:right;
    font-size:60px;
    font-weight:700;
    text-align:center;
    line-height:1;
    position:relative;
    z-index:5;
    padding:10px;
}
.count span {
    display:block;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px !important
}
.hospital-count {
    color:#fff;
    letter-spacing:-2px;
}
.hospital-count span {
     color:#f4a100;
}
.state-count {
    color:#f4a100;
    letter-spacing:-6px;
    padding:10px 30px 10px 0px
}
.state-count span {
    color:#fff;
    margin:0 -12px 0 0
}


/* LEADERSHIP */

.col-3 {
    float:left;
    width:33.333%;
    padding:20px 40px 0;
    text-align:center;
    min-height:340px
}
.col-5 {
    float:left;
    width:20%;
    padding:10px;
    text-align:center;
    min-height:300px;

}
.col-3 img, .col-5 img {
    float:none;
    display:block;
    margin:0 auto 10px;
    width:100%;
    padding:0;
    height:auto;
}


/* INVESTOR TOOLS */

.investor-tools-menu {
    float:left;
    width:100%;
    list-style-type:none;
    margin:20px 0 40px;
}
.investor-tools-menu li {
    float:left;
    width:25%;
    border-left:2px solid #fff;
    padding:14px 10px;
    color:#fff;
    text-align:center;
    margin:0;
    line-height:1.5
}
.investor-tools-menu li:first-child {
    border:0;
}
.investor-tools-menu li:first-child, .investor-tools-menu li:last-child {
    background-color:#D68438
}
.investor-tools-menu li:nth-child(2) {
    background-color:#555
}
.investor-tools-menu li:nth-child(3) {
    background-color:#619c9c
}
.investor-tools-menu li span {
    display:block;
}
.investor-tools-menu li span a {
    color:#fff;
    font-weight:bold;
    font-size:15px;
    text-transform:uppercase;
    line-height:1;
}
.investor-tools-menu li span a:hover {
    text-decoration:underline;
}

.webcast-img, .investor-img {
    float:left;
    margin: 5px 20px 5px 0
}
.webcast-splitter {
    border:0;
    border-top:2px dotted #bbb;
    margin:20px 0 15px;
}


/* ANALYST COVERAGE */

ul.ac-list {
    padding: 0;
    margin: 0;
    border-bottom: 1px dotted #ddd;
    float: left;
    width: 100%;
}
ul.ac-title {
    border-bottom: none;
    font-weight: 400;
}
ul.ac-title li {
    background: #5A7B7C;
    color: #fff;
    border-right: 1px solid #fff;
    margin:0;
}
ul.ac-list li {
    list-style: none;
    float: left;
    padding: 5px 0 5px 10px;
    margin:0;
}
li.ac-1 {
    width: 50%;
    margin:0;
}
li.ac-2 {
    width: 25%;
    text-align: left;
    margin:0;
}
li.ac-3 {
    width: 25%;
    text-align: left;
    margin:0;
}
ul.ac-list:hover {
    background: #f6f6f6;
}

/* RECRUITMENT TEAM */

h3.pr-links {
    float:left;
    width: 30%;
    font-weight: 400;
    font-size: 14px;
    margin: 10px 0 0 0;
    padding: 25px 0 0 20px;
    border-top: 1px dotted #ddd;
    text-transform: uppercase;
    border-bottom: none;
}
ul.pr-links {
    width: 70%;
    float: left;
    margin: 10px 0 0 0;
    padding: 10px 0 0 0;
    border-top: 1px dotted #ddd;
}
.pr-links li {
    float:left;
    padding-bottom:10px;
    list-style: none;
    width: 50%;
}


/* FOOTER */

footer {
    float:left;
    width:100%;
    padding:0;
    background-color:#5c5c5c;
    color:#fff;
    position:relative;
    z-index:1;
 box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75) inset;
-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75) inset;
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75) inset;
}
footer inner wrapper {
    float:left;
    width:100%;
    height:100%;
    background-color:#333;
    padding:40px;
}
.footer-menu {
    font-size:13px;
    list-style-type:none;
    margin:0 0 20px;
}
.footer-menu li {
    padding:0 0 0 20px;
    line-height:1.5
}
.footer-menu li:first-child {
    padding:0;
}
.footer-menu a {
    color:#fff
}
.footer-menu a:hover {
    text-decoration:underline;
}
footer column {
    float:left;
    width:24%;
    padding:0 20px;
}
.imprint {
    font-size:11px;
    line-height:1.5;
    border-left:1px solid #fff2;
    padding:0 20px 0 40px;
    width:28%;
}


/* EXIT POPUP */
#ln-blackout {position:fixed; top:0; left:0; width:100%; height:100%; background-color:#fff;z-index:999}
#ln-messageHolder {position:fixed;width:100%;height:100%;padding:20px;z-index:99999;display: flex;align-items: center;}
#ln-messageBox {font-size:13px;line-height:1.5;width:500px; margin:0 auto; height:max-content; background-color:#fff; border:5px solid #e6e6e6; -moz-box-shadow:0 0 20px 10px #666; -webkit-box-shadow:0 0 20px #666; text-align:left; padding:20px;}
a#ln-link {
    display:block;
    width: 100%;
    max-width:100%;
    margin: 20px 0 10px;
    padding: 10px 20px;
    background-color: #d68438;
    text-align: center;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
}
a#ln-link:hover {
    background-color: #555555;
    color:#fff;
}
#ln-cancelMessage {text-align:center;}
a#ln-cancelLink {background-color:#fff; font-weight:bold; padding:5px; color:#d68438; text-decoration:none; text-transform:uppercase}
a#ln-cancelLink:hover {background-color:#fff; color:#333;}


/* SCREEN BREAKPOINTS */

@media screen and (max-width:1520px) {
    header inner {
        padding:0;
    }
    inner {
        width:80%;
    }
}

@media screen and (max-width:1280px) {
    inner {
        width:90%;
    }
}

@media screen and (max-width:1100px) {
    header inner {
        width:100%;
    }
}

@media screen and (max-width:990px) {
    inner {
        width:100%;
    }
         header inner {
        width:100%;
        padding:0;
    }
    .logo {
        width:100%;
        height:50px;
        background-position:center;
        margin-top:20px;
    }
    .header-menu {
        width: 100%;
        text-align: center;
        margin:10px 0 0;
    }
    .header-menu li {
        text-align:left;
    }
    .header-menu li a {
        line-height:50px;
    }
}

@media screen and (max-width:900px) {
	
	.banner-home inner, .seal, .banner-copy {
			width:100%;
	}
	.banner-home inner {
		display:block;
	}
	.banner-home::before {
		content: "";
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #f0f0f0 45%);
	}
	.seal {
		text-align:center;
		padding: 30px 0 0 10px;
        margin:0;
	}
	.anniversary {
		width:300px;
	}
	.banner-copy {
		padding:0 40px 20px;
		text-align:center;
	}
	.banner-copy h1 {
		width:100%;
		text-align:center;
	}
	.banner-copy p {
		float:none;
		width:100%;
	}
	.report-btn {
		margin:0 auto;
		float:none;
	}
    footer column {
        width:33%;
    }
    .imprint {
        float:left;
        width:100%;
        border-left:0;
        border-top:1px dotted #555;
        padding:20px;
        margin:40px 0 0;
    }
       .col-5 {
        width:33%;
        min-height:;
        padding:20px 20px 0
    }
    .home-featured {
        float:left;
        margin:0;
    }
    .featured-menu {
        float:right;
        width:auto;
        margin:0 0 0 30px;
        font-size:20px;
    }
   .intro {
  display: inline-block;
  padding: 30px 0 0;
  margin: 0;
}

	
}

@media screen and (min-width:761px) {
    .nav-switch, .nav-close {
        display:none;
    }
    .header-menu {
        display:block !important;
    }
}

@media screen and (max-width:760px) {
  
    entry {
        float:left;
        padding:20px 50px;
    }
    sidebar {
        position:static;
        width:100%;
        margin:20px 0 0;
        font-size:16px;
    }
    .error-sidebar, .profile sidebar, .legal sidebar {
        display:none;
    }
    page {
        width:100%;
        padding:0;
    }
    sidebar.locations {
    display:block;
}
    .investor-tools-menu li {
        width:50%;
        border:1px solid #fff !important;
    }

    .header-menu {
        display:none;
        font-size:16px;
        background-color:#f0f0f0;
        margin:0;
    }
    .header-menu *:hover {
        background-color:#f0f0f0 !important;
    }
    .header-menu li {
        width:100%;
        text-align:left;
        border:0;
    }
    .header-menu li:hover {
        border:0;
    }
  
    .header-menu li a {
        padding:6px 10px;
        line-height:1.5;
        background-color:#f0f0f0 !important;
    }
    .header-menu li > a {
       font-weight:bold;
       padding-top:10px;
    }

    .header-menu li a:hover, .nav-parent li a:hover, .sub-parent a:hover, .sub-parent li a:hover {
        border-bottom:0;
        color:#D68438 !important;
    }
    .sub-parent:hover > ul li:hover a {
        color:#333;
    }
   
    .nav-parent ul li:hover > a {
        color:#333;
    }
    .nav-parent ul {
        display:block;
        position:static;
        width:100%;
        border:0;
    }
    .nav-parent ul li a {
        padding:5px 10px 5px 50px;
        font-weight:normal;
    }
       .nav-parent {
        padding: 0 0 10px;
        border-bottom:1px solid #ccc !important;
    }
.nav-parent ul li {
    border:0;
}
.nav-parent ul li:hover {
    border: 0;
}
 .sub-parent ul {
        display:none !important;
    }

   
    header {
        padding:0;
    }
    .logo {
        margin-bottom:20px;
    }
    .nav-switch {
        opacity:1;
    }
}


@media screen and (max-width:720px) {

    .col-3 {
        width:50%;
        min-height:430px;
        padding:20px 20px 0
    }
 
    
}


@media screen and (max-width:640px) {
  .overview-map-details {
    width:100%;
    margin:0 0 20px
}
    a.btn {
        width: 100%;
    }
    content {
    font-size:14px;
}
    .logo {
        height:40px;
    }
	.anniversary {
		width:200px;
	}
	.banner-home {
		padding:50px 0 20px;
	}
    .ac-list li {
        width: 33%;
    }
    .webcast-img, .investor-img {
        width:auto;
        float:none;
        display:block;
        margin:20px auto 5px;
    }
     footer column {
        width:50%;
    }
 
    .governance-menu {
        width:50%;
        font-size:12px;
    }
    .featured-menu {
        width:100%;
        padding:0;
        margin:0 0 20px;
        font-size:16px;
    }
    .home-featured {
        width:150px;
    }
    .dark-btn {
        float:left;
        font-size:12px;
        margin:10px 0 0;
    }
  
      .col-3 {
        width:50%;
        min-height:440px;
    }
     .col-5 {
        width:50%;
        min-height:380px;
    }
    .home column, .home column.last {
        width:100%;
        padding:0;
    }
    .home column.last {
        padding:10px 0 0;
    }
    p.callout {
        width:50%;
    }
    grid-set {
        margin:20px 0 0;
    }
    grid {
        width:100%;
        margin:0 0 20px;
        border:0;
    }
    h3.pr-links {
        width:100%;
        padding:25px 0 0;
    }
    ul.pr-links {
        width: 100%;
        border:0;
    }
    .pr-links li {
        padding:0 10px 0 0;
    }
    .page-banner {
        width:100%;
        margin:0 0 20px;
    }
    entry {
        padding:20px 20px 0;
    }
     .banner-copy h1 {
        font-size:32px;
    }
    .report-btn {
    padding:10px;
    }
    img.headshot {
        width:40%;
    }
    h1.leadership-title {
        font-size:20px
    }

    #chs-hospital-map.chs-imap-is-mobile .chs-imap-header {
        margin:0 !important;
        padding: 0 0 10px 10px;
        box-sizing: border-box;
        width:100%;
    }
    #chs-hospital-map.chs-imap-is-mobile .chs-imap-list-container .chs-imap-list-header {
        width:100% !important;
        box-sizing: border-box;
        height:auto !important;
        padding:10px !important;
    }
    #chs-hospital-map.chs-imap-is-mobile .chs-imap-list-container .chs-imap-list-header .chs-imap-list-header-arrow {
        height:43px !important;
    }
    entry {
        padding:20px 30px;
        overflow-x:hidden;
    }
     .page-banner {
    width: 120%;
    margin: -20px 0 20px -10%;
  }
  .officers {
    float:left;
    margin-top:-60px;
}

}

@media screen and (max-width:460px) {
   .investor-tools-menu li span a {
    font-size:12px;
}
    .seal {
		padding: 30px 0 0 15px;
	}
    .col-3 {
        min-height:330px;
    }
        .col-5 {
        min-height:320px;
    }
    p.callout {
        width:100%;
        margin:0 0 20px 0
    }
   footer column {
    width:100%;
    }  
    img.right, img.left, img.right-expanded, img.left-expanded {
        width:50%;
    }
    .featured-content {
        padding: 50px 20px
    }
    .footer-menu {
        font-size:14px;
    }
    .footer-menu a {
        padding: 4px 0;
        display: block;
    }
    footer inner wrapper {
        padding:30px 30px
    }
    footer column {
        padding:0;
    }
    
}