html {
	background: #fff;
	}
body {
	font: 14px/140% 'Oxygen', Helvetica, Arial, sans-serif;
	font-weight: 400;
	color: #555;
	background: #222; /* Same color as your menu */
	margin: 0;
	text-align: center;
	}
main {
	background: #fff;
	position: relative; /* Set the position property so z-index will apply */
	z-index: 2; /* Make sure this is higher than #menu */
	height: 100%;
	transform: translate3d( 0, 0, 0 ); /* X, Y, Z */
	-webkit-transform: translate3d( 0, 0, 0 );
	box-shadow: 0 0 1em #000;
	}
body > nav {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	width: 190px;
	padding: 15px 25px;
	margin: 0;
	list-style: none;
	/*background: #333;*/
	z-index: 1; /* Make sure the z-index is lower than the #page */
	text-align: left;
	font-size: 1.05em;
	}
body > nav a {
	color: #fff;
	}
body > nav > a > img {
	display: block;
	text-align: center;
	width: 70%;
	margin: 0 auto 1em auto;
	opacity: .7;
	}
body > nav ul li {
	border-top: 1px solid rgba(255, 255, 255, .2);
	padding: .6em 0;
	line-height: 110%;
	}
body > nav ul li:first-of-type {
	border-top: none;
	}
body > nav ul ul {
	font-size: .85em;
	padding: .5em 0 0 1em;
	}
body > nav ul ul li {
	border-top: none;
	padding: .45em 0;
	width: 175px; /*this is to smooth out the animations*/
	}




/* http://apeatling.com/2014/building-smooth-sliding-mobile-menu/ */
body.animating > nav, body.menu-visible > nav {
	display: block;
	}
body.animating main {
	transition: transform .25s ease-in-out;
	-webkit-transition: -webkit-transform .25s ease-in-out;
	}
body.animating.left main {
	transform: translate3d( -240px, 0, 0 );
	-webkit-transform: translate3d( -240px, 0, 0 );
	}
body.animating.right main {
	transform: translate3d( 240px, 0, 0 );
	-webkit-transform: translate3d( 240px, 0, 0 );
	}
body.menu-visible main {
	right: 240px;
	}





a {
	text-decoration: none;
	color: inherit;
	}
	.content p a,
	.content li a {
		text-decoration: underline;
		color: #214758;
		}
	.content p a:visited,
	.content li a:visited {
		text-decoration: underline;
		color: purple;
		}
address {
	font-style: normal;
	}
	address br {
		clear: none;
		}
img {
	width: 100%;
	border-radius: .4em;
	}
strong, b {
	font-weight: 700;
	}
p {
	margin: 0;
	padding: .1em 0 .7em 0;
	}
h1, h2, h3, h4 {
	margin: 0;
	padding: .7em 0 .3em 0;
	line-height: 120%;
	}
h1, h2, h3 {
	font-weight: normal;
	}
h2, h3 {
	text-transform: uppercase;
	font-weight: 700;
	}
	.content .thirds h2,
	.content .thirds h3 {
		text-transform: none;
		}
h1 {
	font-size: 1.8em;
	}
h2 {
	font-size: 1.3em;
	}
h3 {
	font-size: 1.1em;
	padding-bottom: .1em;
	}
h4 {
	font-size: 1em;
	font-weight: 700;
	}
a h3 {
	/*text-transform: uppercase;*/
	padding-bottom: .6em;
	}
a h3 small {
	float: right;
	font-weight: normal;
	opacity: .5;
	font-size: .7em;
	text-decoration: underline;
	}
a h4 small {
	opacity: .5;
	font-size: .7em;
	display: block;
	}
.underline {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	}


main > section {
	margin: 0;
	padding: 0;
	background: pink;
	}
.clearfix,
main > section > header,
main > section > section,
main > section > article,
main > section > footer {
	width: 100%;
	max-width: 1000px;
	overflow: hidden;
	margin: 0 auto;
	padding: 0 1.5em;
	box-sizing: border-box;
	text-align: left;
	zoom: 1; /* For IE 6/7 (trigger hasLayout) */
	}
/* https://css-tricks.com/snippets/css/clear-fix/ */
.clearfix:before,
.vpad:before,
main:before,
main > section > header:before,
main > section > section:before,
main > section > article:before,
main > section > footer:before {
	content: "";
	display: table;
	}
.clearfix:after,
.vpad:after,
main:after,
main > section > header:after,
main > section > section:after,
main > section > article:after,
main > section > footer:after {
	content: "";
	display: table;
	clear: both;
	}
br {
	clear: both;
	}

section.inverse {
	background: #ABA545;
	color: #fff;
	}

.mobilesubnav {
	display: none;
	}
/*
.half {
	display: block;
	width: 50%;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	float: left;
	}
.third {
	display: block;
	width: 33%;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	float: left;
	}
.fourth {
	display: block;
	width: 25%;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	float: left;
	}
.fifth {
	display: block;
	width: 20%;
	box-sizing: border-box;
	margin: 0;
	padding: 0 1em 0 0;
	float: left;
	}
*/

.content {
	background: #fff;
	padding-top: 2em;
	padding-bottom: 2em;
	}

.whole,
.half,
.third,
.thirds,
.fourth,
.fourth,
.fourths,
.fifth,
.gallery {
	display: block;
	width: 50%;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	float: left;
	padding-left: 1.5em;
	padding-right: 1.5em;
	}
.whole {
	width: 100%;
	}
.third {
	width: 33%;
	}
.thirds {
	width: 66%;
	}
.fourth {
	width: 25%;
	}
.fourths {
	width: 75%;
	}
.fifth {
	width: 20%;
	}
.gallery {
	padding-right: 1.5em;
	padding-bottom: 1.5em;
	padding-left: 0;
	width: 25%;
/*	min-height: 8em;*/
	text-align: center;
	font-weight: 700;
	}
.half:first-of-type,
.third:first-of-type,
.thirds:first-of-type,
.fourth:first-of-type,
.fourths:first-of-type,
.fifth:first-of-type {
	/*padding-left: 0;*/
	}
.half:last-child,
.third:last-child,
.thirds:last-child,
.fourth:last-child,
.fourths:last-child,
.fifth:last-child {
	/*padding-right: 0;*/
	}

.gallery:nth-of-type(4n+1) {
	/*border: 1px solid red;*/
	clear: left;
	}

.half.divided,
.third.divided,
.thirds.divided,
.fourth.divided,
.fourths.divided,
.fifth.divided {
	/*margin: 2em 0;*/
	/*padding-left: 2em;*/
	border-left: 1px solid rgba(0, 0, 0, .1);
	}
.half.divided.inverted,
.third.divided.inverted,
.thirds.divided.inverted,
.fourth.divided.inverted,
.fourths.divided.inverted,
.fifth.divided.inverted {
	/*margin: 2em 0;*/
	/*padding-left: 2em;*/
	border-left: 1px solid rgba(255, 255, 255, .3);
	}
.half.divided:first-child,
.third.divided:first-child,
.thirds.divided:first-child,
.fourth.divided:first-child,
.fourths.divided:first-child,
.fifth.divided:first-child {
	/*padding-left: 0em;*/
	border-left: 0 solid transparent !important;
	}


.vpad {
	padding-top: 2.5em;
	padding-bottom: 2.5em;
	}

.slider {
	padding-left: 2em;
	}
.slider .third {
	text-align: center;
	}
.slider .third img {
	display: block;
	width: 100%;
	border-radius: 10px;
	background: #ddd;
	}




nav {
	}
nav a {
	color: inherit;
	text-decoration: none;
	}
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	}


header > nav {
	text-align: right;
	padding-top: 0em;
	}
header > nav a {
	display: inline-block;
	padding: .8em;
	text-transform: uppercase;
	font-weight: bold;
	font-size: .9em;
	}





header > nav a.circle {
	background: #214758 url('../@img/icon.search.png') no-repeat 50% 50%;
	background-size: contain;
	background-size: 80%;
	height: .65em;
	width: .65em;
	border-radius: 50%;
	overflow: hidden;
	text-indent: -99999em;
	text-align: left;
	}
	header > nav a.circle.highlight {
		background-color: #ABA545;
		}
header > nav a.sizer {
	padding-left: 0;
	padding-right: 0;
	font-size: 1.1em;
	padding-top: 0;
	padding-bottom: 0;
	vertical-align: baseline;
	position: relative;
	bottom: -.1em;
	}
header > nav a.sizer.small {
	font-size: .8em;
	padding-left: 1em;
	}
header > nav a.sizer.large {
	font-size: 1.3em;
	}

/* dropdown navigation */
/* http://csswizardry.com/2011/02/creating-a-pure-css-dropdown-menu/ */

header + nav {
	text-transform: uppercase;
	color: rgb(33, 71, 88);
	padding-bottom: 0;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	}
header + nav ul {
	list-style: none;
	font-weight: 700;
	text-align: justify;
	padding-left: .5em;
	}
header + nav ul li {
	display: inline-block;
	position: relative;
	text-align: justify;
	border-top-left-radius: .3em;
	border-top-right-radius: .3em;
	}
header + nav ul a {
	display: block;
	padding: 1em 15px;
	}
header + nav ul a:hover {
	}
header + nav ul ul {
	background: #fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background: rgba(255,255,255,.95); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	position: absolute;
	width: auto;
	left: -9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	overflow: auto;
	box-shadow: 0px 1px 1px rgba(0,0,0,.3);
	font-weight: normal;
	font-size: .95em;
	line-height: 100%;
	text-transform: none;
	padding-left: 0;
	}
header + nav ul ul li {
	display: block;
	}
header + nav ul ul a {
	white-space: nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	padding: 1em 15px;
	color: #333;
	border-bottom: 1px solid rgba(0,0,0,.1);
	}
header + nav ul li:hover ul { /* Display the dropdown on hover */
	left: 0; /* Bring back on-screen when needed */
	z-index:99999;
	}
header + nav ul li:hover a { /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	/*background: #fff;*/
	}
header + nav ul li:hover ul a { /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	/*text-decoration:none;*/
	}
header + nav ul li:hover ul li a:hover { /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background: rgba(0, 0, 0,.05);
	border-bottom: 1px solid transparent;
	}





header {
	padding-top: 1.8em !important;
	padding-bottom: 1.8em !important;
	vertical-align: middle;
	}
header * {
	vertical-align: middle;
	}
header > a address {
	width: 50%;
	height: 3.5em;
	float: left;
	background: transparent url('../@img/extendicare.png?2') no-repeat left 50%;
	background-size: contain;
	overflow: hidden;
	text-indent: -99999em;
	}







section.banner {
	background: #ccc url(none) no-repeat 50% 50%;
	background-size: cover;
	border-bottom: 6px solid #326e82;
	}
section.banner article {
	text-align: left;
	background: transparent url(none) no-repeat 50% 50%;
	background-size: contain;
	overflow: visible;
	color: #fff;
	padding-bottom: 2em;
	}

section.banner.b1			{ background-image: url('../@img/banner.1.bg.jpg?2'); }
section.banner.b1 article	{ background-image: url('../@img/banner.1.fg.png?2'); }
section.banner.b2			{ background-image: url('../@img/banner.2.bg.jpg?2'); }
section.banner.b2 article	{ background-image: url('../@img/banner.2.fg.png?2'); }
section.banner.b3			{ background-image: url('../@img/banner.3.bg.jpg?2'); }
section.banner.b3 article	{ background-image: url('../@img/banner.3.fg.png?2'); }
section.banner.b4			{ background-image: url('../@img/banner.4.bg.jpg?2'); }
section.banner.b4 article	{ background-image: url('../@img/banner.4.fg.png?2'); }
section.banner.b5			{ background-image: url('../@img/banner.5.bg.jpg?2'); }
section.banner.b5 article	{ background-image: url('../@img/banner.5.fg.png?2'); }
section.banner.b6			{ background-image: url('../@img/banner.6.bg.jpg?2'); }
section.banner.b6 article	{ background-image: url('../@img/banner.6.fg.png?2'); }

section.banner.investor {
	background: #ccc url('../@img/banner.investor.jpg?2') no-repeat 50% 50%;
	background-size: cover;
	}

a.inline-circle {
	background: rgba(255,255,255,.2) url('../@img/icon.search.png') no-repeat 50% 50%;
	/*background-size: contain;*/
	background-size: 90%;
	display: inline-block;
	margin-right: .2em;
	height: 25px;
	width: 25px;
	border-radius: 50%;
	overflow: hidden;
	text-indent: -99999em;
	text-align: left;
	}


section.banner article * {
	clear: both;
	padding-left: 55%;
	text-shadow: 0 1px 1px rgba(0,0,0,.4);
	}
section.banner article h1 {
	font-size: 2em;
	line-height: 120%;
	font-weight: normal;
	font-weight: 600;
	margin-bottom: 1.5em;
	}
	section.banner article h1 small {
		display: block;
		font-size: .6em;
		line-height: 120%;
		padding: .2em 0 0 0;
		}
section.banner article p {
	font-size: 1.3em;
	line-height: 120%;
	}
section.banner article div {
	margin-top: -3em;
	}
section.banner img.leaf {
	padding-left: 1em;
	width: 220px;
	margin-bottom: -130px;
	}

/*section.banner article */
a#find,
a#investorkit {
	float: right;
	display: inline-block;
	width: 7em;
	position: relative;
	padding: 45px 1em .5em 1em;
	margin-bottom: 2em;
	text-align: center;
	color: #fff;
	font-size: .8em;
	text-transform: uppercase;
	line-height: 110%;
	background: rgba(0,0,0,.6);
	background: #ABA545 url('../@img/icon.calendar.png') no-repeat 50% top;
	background-size: 50%;
	}
	a#investorkit {
		background-image: url('../@img/icon.investor.png');
		}
a#find:after,
a#investorkit:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent;
	border-top-color: rgba(0,0,0,.6);
	border-top-color: #ABA545;
	border-width: 1em 4.5em 0 4.5em;
	margin-left: -4.5em;
	}



a.button {
	/*font-weight: 700;*/
	display: inline-block;
	text-transform: uppercase;
	/*background: rgba(0,0,0,.05);*/
	background: #214758;
	/*color: rgba(0,0,0,.4);*/
	color: #fff !important;
	/*border: 1px solid rgba(0,0,0,.4);*/
	border: 1px solid #214758;
	border-radius: .4em;
	padding: .5em .8em !important;
	width: auto !important;
	text-decoration: none !important;
	}
a.button.negative {
	background: rgba(0,0,0,.1);
	color: #fff !important;
	border: 1px solid rgba(255,255,255,.4);
	}


footer {
	text-transform: uppercase;
	font-size: .8em;
	line-height: 120%;
	padding-top: 3em !important;
	padding-bottom: 3em;
	}
	footer h4, 
	footer ul {
		margin: 0;
		padding: 0;
		}
		footer ul li {
			margin: 0;
			padding: .3em 0;
			}
	footer h4 {
		font-size: 1.2em;
		padding-bottom: .4em;
		}
	


img.inset {
	width: 40%;
	display: inline-block;
	max-width: 240px;
	overflow: hidden;
	border-radius: .4em !important;
	margin: .2em 2em 2em 2em;
	box-shadow: 0px 0 8px rgba(50, 110, 130, 1);
	}
img.inset.s {
	border-radius: 0 !important;
	box-shadow: none !important;
	}
img.inset.full {
	width: 100%;
	display: block;
	max-width: 100%;
	margin: .2em 0 2em 0;
	}
img.inset.left {
	float: left;
	clear: left;
	margin-left: 0;
	}
img.inset.right {
	float: right;
	clear: right;
	margin-right: 1em;
	}

blockquote.inset {
	color: #ABA545;
	font: inherit;
	background: transparent !important;
	border: 1px solid #eee;
	padding: 1em 1.4em;
	float: right;
	width: 35%;
	margin: 0 0 2em 2em;
	clear: right;
	}
blockquote.inset p {
	padding: 0;
	border: none !important;
	}
blockquote.inset cite {
	line-height: 120%;
	margin-top: 1em;
	}


.photoassets {
	float: right;
	width: 40%;
	display: inline-block;
	max-width: 240px;
	margin: .8em 0 1em 2em;
	}
.photoassets img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
	border-radius: .4em !important;
	margin-bottom: .2em;
	box-shadow: 0px 0 8px rgba(50, 110, 130, 1);
	}




blockquote {
	background: blue url('../@img/quote.jpg?2') no-repeat left top;
	background-size: cover;
	/*border-radius: .4em;*/
	color: #fff;
	font-family: Georgia, serif;
	font-style: italic;
	font-size: 1.8em;
	line-height: 140%;
	clear: both;
	margin: 1em 0;
	padding: 1.5em 1.5em;
	}
blockquote p {
	margin: 0;
	padding: 1em 0 1em 1em;
	border-left: 2px solid #fff;
	}
blockquote ul {
	margin: -.8em 0 1em 0;
	padding: 0 0 0 1em;
	border-left: 2px solid #fff;
	font-size: .9em;
	line-height: 120%;
	}
	blockquote ul li {
		margin: 0 0 0 1em;
		padding: .25em 0;
		}
blockquote cite {
	display: block;
	text-align: right;
	font-style: normal;
	font-family: 'Oxygen', Helvetica, Arial, sans-serif;
	font-size: .7em;
	font-weight: 700;
	}



blockquote.moments {
	background: #999 url('../@img/quote.bg.1.jpg') no-repeat left top;
	background-size: cover;
	color: #fff;
	font-family: Georgia, serif;
	font-style: italic;
	font-size: 1em;
	line-height: 140%;
	clear: both;
	margin: 1em 0;
	padding: 2em;
	}
blockquote.moments p {
	margin: 0;
	padding: .5em 0;
	text-align: left;
	font-style: normal;
	font-family: 'Oxygen', Helvetica, Arial, sans-serif;
	font-size: 1em;
	font-weight: 500;
	border: none;
	}
blockquote.moments ul {
	margin: -.8em 0 1em 0;
	padding: 0 0 0 1em;
	border-left: none;
	font-size: 1em;
	line-height: 120%;
	}
	blockquote.moments ul li {
		margin: 0 0 0 1em;
		padding: .25em 0;
		}
blockquote.moments cite {
	font-size: 1em;
	}
blockquote.moments:nth-child(4n+1) {
	background-image: url('../@img/quote.bg.1.jpg');
	}
blockquote.moments:nth-child(4n+2) {
	background-image: url('../@img/quote.bg.2.jpg');
	}
blockquote.moments:nth-child(4n+3) {
	background-image: url('../@img/quote.bg.4.jpg');
	}
blockquote.moments:nth-child(4n+4) {
	background-image: url('../@img/quote.bg.3.jpg');
	}
	
	
	
blockquote.quoted {
	background-color: transparent;
	background-image: url('../@img/quote.left.png?2'), url('../@img/quote.right.png?2');
	background-repeat: no-repeat;
	background-position: left top, right bottom;
	background-size: 20%;
	color: #222;
	padding: 1em 2.0em;
	}
blockquote.quoted p {
	margin: 0;
	padding: .5em 0;
	border: none;
	text-shadow: -1px 1px 1px white;
	}

.centered {
	text-align: center;
	}

.fancy {
    overflow: hidden;
    text-align: center;
    margin: 1em 0;
	}

.fancy:before,
.fancy:after {
    background-color: rgba(0, 0, 0, .1);
    content: "";
    display: inline-block;
    *display: inline;
    zoom: 1;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
	}

.fancy:before {
    right: 0.5em;
    margin-left: -50%;
	}

.fancy:after {
    left: 0.5em;
    margin-right: -50%;
	}


ul.childnav {
	clear: both;
	list-style: none;
	margin: 1em 0;
	padding: 1em 0 1em 1em;
	border-left: 1px solid rgba(0,0,0, .3) !important;
	}
	ul.childnav a,
	ul.childnav a:visited {
		color: #214758;
		}
	ul.childnav ul {
		list-style: none;
		font-size: .9em;
		margin: 0 0 0 0;
		padding: .2em 0 0 1em;
		}
		ul.childnav ul a,
		ul.childnav ul a:visited {
			color: #ABA545;
			}
		
ul.childnav li {
	margin: 0;
	padding: .2em 0 .2em 1em;
	}
ul.childnav li a {
	text-decoration: none;
	}
ul.childnav a.active {
	font-weight: 700;
	}
ul.childnav a.active::before {
	content: '•';
	position: absolute;
	margin-left: -.7em;
	}
	
	



a.linkblock,
div.linkblock {
	display: block;
	clear: both;
	/*padding-left: 80px !important;*/
	/*margin: .6em 0 1.5em 0;*/
	padding: 1em 0 1em 80px;
	padding-left: 80px !important;
	}
a.linkblock img,
div.linkblock img {
	display: block;
	float: left;
	margin-left: -80px;
	margin-top: .2em;
	width: 70px;
	text-align: center;
	text-transform: uppercase;
	box-sizing: border-box;
	border-radius: .4em;
	}
a.linkblock time,
div.linkblock time {
	display: block;
	float: left;
	margin-left: -80px;
	margin-top: .3em;
	width: 70px;
	background: #ABA545;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	box-sizing: border-box;
	padding: 1.3em .2em;
	border-radius: .4em;
	font-weight: bold;
	font-size: .8em;
	line-height: 120%;
	}
	a.linkblock.inverted time,
	div.linkblock.inverted time {
		background: #fff;
		color: #214758;
		}
	a.linkblock time strong,
	div.linkblock time strong {
		display: block;
		font-size: 2.2em;
		font-weight: 700;
		padding: .1em 0 .2em 0;
		}
a.linkblock h4,
a.linkblock p,
div.linkblock h4,
div.linkblock p {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-size: .95em;
	line-height: 130%;
	}
div.linkblock h4,
div.linkblock p {
	font-size: inherit;
	}
div.linkblock p {
	padding-bottom: .5em;
	}





section.content ul li {
	margin-bottom: .5em;
	}


h3 span {
	display: inline-block;
	background: #ABA545 url('../@img/icon.search.png') no-repeat 50% 50%;
	background-size: cover;
	height: 1.7em;
	width: 1.7em;
	border-radius: 50%;
	overflow: hidden;
	text-indent: -99999em;
	text-align: left;
	position: relative;
	top: -.25em;
	margin-right: .3em;
	}
.inverted h3 span {
	background-color: #214758;
	}

h1.amazing {
	background-color: #214758;
	color: #fff;
	padding: 1.2em 1em 1em 290px;
	}
	h1.amazing br {
		clear: none;
		}
	h1.amazing img {
		float: left;
		width: 280px;
		margin-top: -1.2em;
		margin-bottom: -1em;
		margin-left: -290px;
		border-radius: 0;
		}

table.bland {
	border-collapse: collapse;
	width: 100%;
	margin: 1em 0 1em;
	}
table.bland caption {
	text-align: center;
	font-size: 1.3em;
	font-weight: 700;
	}
table.bland tbody td, 
table.bland th {
	padding: .3em .5em 1.5em;
	text-align: left;
	vertical-align: top;
	}

ol.boop li {
	margin-bottom: .8em;
	font-weight: 700;
	font-size: 1.1em;
	}
ol.boop li::after {
	content: ' →';
	}

ol.boop a,
ol.boop a:visited {
	text-decoration: none;
	color: inherit;
	}


table.docs {
	border-collapse: collapse;
	width: 100%;
	margin: 1em 0 3em;
	}
table.docs caption {
	text-align: center;
	font-size: 1.3em;
	font-weight: 700;
	}
table.docs tbody td, 
table.docs th {
	border-bottom: 1px solid #ccc;
	padding: .3em .9em;
	text-align: left;
	vertical-align: top;
	}
table.docs tbody td {
	border-bottom: 1px solid #eee;
	}
table.docs tbody tr:nth-child(odd) {
	background: #f5f5f5;
	background: rgba(33, 71, 88, .1);
	}

table.docs tr.archived {
	opacity: .6;
	}
table.docs tfoot * {
	text-align: left;
	}
table.docs tfoot a.toggle {
	cursor: pointer;
	display: inline-block;
	background: #ABA545;
	color: #fff;
	font-size: .9em;
	text-transform: uppercase;
	border-radius: .3em;
	margin: .7em .5em;
	padding: .2em .5em;
	}
td.year {
	text-align: center;
	font-family: Georgia, sans-serif;
	font-size: 1.3em;
	vertical-align: middle;
	}
table.maptable {
	background: #214758;
	}
table.maptable tr,
table.maptable th,
table.maptable td {
	background: #214758 !important;
	color: #fff;
	}
table.maptable th,
table.maptable td {
	width: 25%;
	padding: 1em;
	}
table.maptable td input,
table.maptable td select {
	display: block;
	width: 100%;
	}
	

table.maptableacc {
	width: 100%;
	background: #214758;
	border-top: 1em solid #214758;
	border-bottom: 1em solid #214758;
	}
table.maptableacc tr,
table.maptableacc th,
table.maptableacc td {
	background: #214758 !important;
	color: #fff;
	}
table.maptableacc th {
	padding: .2em .5em;
	text-align: right;
	}
table.maptableacc td {
	padding: .2em .5em;
	text-align: left;
	}
table.maptableacc td input {
	font: inherit;
	}
table.maptableacc td input,
table.maptableacc td select {
	display: block;
	width: 75%;
	box-sizing: border-box;
	}


h2.ispecial {
	background: #ABA545;
	color: #fff;
	margin: .7em 0 .2em 0;
	padding: .4em .2em .4em 70px;
	text-transform: uppercase !important;
	border-radius: .3em;
	background-position: 0% 50%;
	background-repeat: no-repeat;
	background-size: 4em;
	}
h2.ispecial[role='stock'] {
	background-image: url('../@img/icon.stock.png');
	}
h2.ispecial[role='latest-docs'] {
	background-image: url('../@img/icon.latest_docs.png');
	}
h2.ispecial[role='newsrelease'] {
	background-image: url('../@img/icon.newsrelease.png');
	}


.breadcrumbs {
	padding: .5em 1em;
	margin: 0;
	list-style: none;
	}
	.breadcrumbs > li {
		display: inline-block;
		}
	.breadcrumbs > li + li:before{
		content: "/\00a0";
		padding: 0;
		padding-left: .8em;
		opacity: .7;
		}
	.breadcrumbs a {
		display: inline-block;
		padding-left: .6em;
		color: inherit !important;
		text-decoration: none !important;
		opacity: .7;
		}
	.breadcrumbs a:hover,
	.breadcrumbs a.active {
		opacity: 1;
		}





form {
	margin: .5em 0 1em 0;
	padding: 0;
	border: 0;
	width: 100%;
	font-family: inherit;
	}
form fieldset {
	margin: 1.9em 0;
	padding: 0;
	/*padding: .9em 1.1em;*/
	position: relative;
	border: 0;
	clear: both;
	}
	form fieldset:focus {
		background: green;
		}
	fieldset.side-by-side {
		margin: 0;
		}
form label {
	display: block;
	font-family: inherit;
	font-weight: 400;
	padding: 0 0 1em 0;
	}
	form label small.note {
		color: rgba(0,0,0,.4);
/*		display: block;
		line-height: 110%;
		margin: 0;
		padding: 0;*/
		}
p.bad, 
form label.bad {
	color: #a30000;
	}
	form label.bad input {
		border-color: #a30000;
		}


 input[type="text"],
 select,
 input[type="password"], 
 textarea {
	-webkit-appearance: none;
	border: 1.5px solid rgba(0,0,0,.1);
	padding: .25em .7em .2em .7em;
	color: rgba(0,0,0,.8);
	display: block;
	position: relative;
	width: 100%;
	font-family: inherit;
	font-size: 1.1em;
	line-height: 120%;
	border-radius: .3em;
	box-sizing: border-box;
	outline: none;
	-webkit-transition: all .2s ease-in-out 0s;
	-moz-transition: all .2s ease-in-out 0s;
	-ms-transition: all .2s ease-in-out 0s;
	transition: all .2s ease-in-out 0s;
	}
 input[type="text"]:focus,
 input[type="password"]:focus, 
 textarea:focus {
	border-color: rgba(0,0,0,.2);
	box-shadow: 0 0 1em rgba(0,0,0, .15);
	}
 textarea {
	height: 7em;
	}
 textarea:focus {
	/*height: 14em;*/
	}

fieldset.big label {
	font-size: 1.3em;
	}
fieldset.big input {
	font-size: 1.9em;
	padding: .13em .5em;
	}
/*
label input {
	width: auto !important; 
	display: inline !important;
	}
*/
fieldset input.short {
	width: 100px;
	}
fieldset.error input[type="text"],
fieldset.error input[type="password"], 
fieldset.error textarea {
	border-color: red;
	}
fieldset.error label {
	color: red;
	}

fieldset.sort div {
	cursor: move;
	}
fieldset div,
fieldset.photoAsset {
	padding: 0 0;
	margin: 0 0 1.2em 0;
	line-height: 120%;
	}
	fieldset[data-type="photo"] div,
	fieldset.photoAsset {
		padding-left: 100px;
		}
	fieldset[data-type="photo"] div img,
	fieldset.photoAsset img {
		width: 80px;
		display: block;
		float: left;
		margin-left: -100px;
		border-radius: .3em;
		box-shadow: 0 0 .3em rgba(0,0,0, .15);
		}
	fieldset div h4 {
		margin: 0;
		padding: 0;
		}
fieldset>input[type="submit"] {
	display: block;
	text-align: center;
	width: auto;
	margin: 0;
	padding: .4em 1.2em;
	border: 0;
	text-transform: uppercase;
	color: #fff;
	background: rgba(171, 165, 69, .4);
	border: 1px solid rgba(171, 165, 69, .4);
	cursor: pointer;
	font-family: inherit;
	font-size: 1.5em;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: -1px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-webkit-transition-property: color;
	-webkit-transition-duration: .3s;
	}
fieldset>input[type="submit"]:hover {
	color: rgb(171, 165, 69);
	text-decoration: none;
	}



img.play-button {
	background: #555 url(none) no-repeat 50% 50%;
	background-size: cover;
	}



.togglenext {
	cursor: pointer;
	color: #214758;
	}
.togglenext:after {
	content: '↓';
	}


form.search,
form.search fieldset {
	margin: 0;
	padding: 0;
	border: 0;
	display: inline-block;
	width: auto;
	}
form.search.invisible {
	/* initial state */
	display: none;
	}
form.search input {
	font-size: 1em;
	font-weight: normal;
	/*text-transform: none;*/
	letter-spacing: 0;
	line-height: 110%;
	padding: .2em .6em;
	border-radius: .4em;
	}
form.search input[type="text"] {
	font-size: 1em;
	display: inline-block;
	width: 14em;
	border-radius: .4em;
	}
form.search input[type="submit"] {
	border-radius: .4em;
	font-size: 1em;
	display: inline-block;
	margin-left: .5em;
	margin-right: 1.5em;
	padding: .3em .6em;
	background-color: #ABA545;
	}
.gsc-control-cse,
.gsc-thumbnail-inside,
.gsc-url-top,
.gsc-table-result {
	padding: 0 !important;
	}
.gsc-result-info {
	display: none;
	}







body > nav form.search fieldset {
	padding: 0 0 1em 0;
	}
body > nav form.search.invisible {
	display: block;
	}
body > nav form.search input[type="text"] {
	border-color: #fff;
	box-sizing: border-box;
	width: 70%;
	}
body > nav form.search input[type="submit"] {
	-webkit-appearance: none;
	margin-left: .5em;
	margin-right: 0;
	padding: .3em .3em;
	width: 25%;
	box-sizing: border-box;
	background-color: #ABA545;
	}

strong.proxy {
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: underline;
	}

.proxy-homepage .button {
	background: #ABA545 !important;
	border-color: #fff !important;
	width: 48% !important;
	margin-right: 1%;
	font-weight: bold;
	box-sizing: border-box;
	}

.proxy-homepage {
	background: #214758 url(../@img/proxy-leaf.png) no-repeat 50% 50% !important;
	background-size: contain !important;
	}
.proxy-side-a {
	background: #214758;
	color: #fff;
	border-top-left-radius: .3em;
	border-top-right-radius: .3em;
	padding: .6em 1em;
	margin: 1em 0 0 0;
	}
.proxy-side-b {
	background: #ABA545;
	color: #fff;
	border-bottom-left-radius: .3em;
	border-bottom-right-radius: .3em;
	padding: .6em 1em;
	margin: 0 0 1em 0;
	text-align: center;
	}
.proxy-side-b .button {
	display: block;
	margin: .4em 0;
	background: #214758 !important;
	border-color: #fff !important;
	font-weight: bold;
	}
.proxy-side-a a,
.proxy-side-b a {
	color: #fff !important;
	}



@media screen and (-webkit-min-device-pixel-ratio: 2) {
	body { text-rendering: optimizeLegibility; }
}



/*
@media screen and (min-width:1078px) {

}

@media screen and (min-width:756px) and (max-width:1077px) {

}

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

}

@media screen and (min-width:480px) and (max-width:755px) {

}

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

}
*/





@media screen and (max-width:799px) {
	section.banner article {
		background-size: cover;
		}
	h1.amazing {
		padding: 0;
		background: transparent;
		color: #214758;
		border-bottom: 1px solid rgba(32, 70, 88, 0.4);
		font-size: 1.3em;
		padding-bottom: 1em;
		margin-bottom: 1em;
		text-align: right;
		}
		h1.amazing br {
			clear: none;
			}
		h1.amazing img {
			float: none;
			display: block;
			width: 100%;
			margin: 0 !important;
			padding-bottom: 1em;
			}
}

@media screen and (max-width:550px) {
	section.banner {
		background: none !important;
		background-color: #214758 !important;
		}
	section.banner article {
		background: none !important;
		text-align: center;
		}
	section.banner article * {
		padding-left: 0;
		}
	section.banner article h1 {
		clear: both;
		padding: .4em 0 0 0;
		margin: 0;
		font-size: 1.6em;
		}
	section.banner article h1 br {
		display: none;
		}
	section.banner article div {
		margin-top: .4em;
		}
	section.banner article div img {
		display: none;
		}
	.half,
	.third,
	.thirds,
	.fourth,
	.fourths,
	.fifth {
		width: 100%;
		padding: 0;
		float: none;
		}
	.divided {
		border: none !important;
		}
	footer nav {
		display: none !important;
		}
	.breadcrumbs {
		display: none;
		}
	ul.mobilesubnav {
		display: block;
		margin: 0;
		padding: .4em .2em;
		background: #f3f3f3;
		list-style: none;
		border-radius: .3em;
		overflow: hidden;
		}
		ul.mobilesubnav li {
			margin: 0;
			padding: 0;
			}
		ul.mobilesubnav a,
		ul.mobilesubnav a:visited {
			display: block;
			padding: .2em 1em;
			color: inherit;
			text-decoration: none;
			}
		ul.mobilesubnav a.active {
			font-weight: 700;
			}
		ul.mobilesubnav a.active::before {
			content: '•';
			position: absolute;
			margin-left: -.6em;
			}
		
	
	
	aside.third {
		display: none;
		}
	
	.slider .third h3 {
		font-size: .85em;
		}
	
	.maptable th:first-of-type {
		display: none;
		}
	.maptable td {
		width: auto;
		padding: .3em .1em;
		}
	#locationTable tr th:last-of-type,
	#locationTable tr td:last-of-type {
		display: none;
		}
	footer img {
		display: block;
		width: 50%;
		margin: .2em auto;
		}
	
	
	/*section.banner article */
	a#find,
	a#investorkit {
		float: right;
		display: inline-block;
		width: auto;
		position: relative;
		padding: .75em 1em .75em 3em;
		margin-bottom: 1em;
		text-align: center;
		color: #fff;
		font-size: .8em;
		text-transform: uppercase;
		line-height: 110%;
		background: rgba(0,0,0,.6);
		background: #ABA545 url('../@img/icon.calendar.png') no-repeat .2em 50%;
		background-size: 2.6em;
		}
		a#investorkit {
			background-image: url('../@img/icon.investor.png');
			}
	a#find:after,
	a#investorkit:after {
		display: none;
		}
	
	.sl .third img {
		margin: .5em 0 0 0;
		}
	.sl .third h3 {
		padding: 0 0 .5em 0;
		}
	.sl .third {
		padding: 0 0 1.5em 0;
		}
	
	
	table.maptableacc td input,
	table.maptableacc td select {
		width: 100%;
		}
	
	
}

@media screen and (min-width:650px) {
	.mobileno { display: block }
	.desktopno { display: none }
}
@media screen and (max-width:649px) {
	.mobileno { display: none }
	.desktopno { display: block }
}

