
  
@font-face {
    font-family: 'Kaikoura';
    src: url('/fonts/custom/5001/Kaikoura-webfont.woff2') format('woff2'),
         url('/fonts/custom/5001/Kaikoura-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/***************MAIN STYLES (Code from Scratch)****************/

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

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-size: 16px;
}

body {
	font: 400 16px/1.5em 'futura-pt', sans-serif;
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	color: #666;
	background-color: #fff;
	background-color: #FBF8F7;
	overflow-x: hidden;
}

a, button {
	text-decoration: none;
	cursor: pointer;
}

a:focus {
	outline: thin dotted;
}

a img {
	border: 0 none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary, address {
	display: block;
	margin: 0;
	font-style: normal;
}

embed, iframe, object {
	max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
	font-family: inherit;
	line-height: 1.1em;
}

.clear {
	clear: both;
}

.menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.container {
	margin: 0 auto;
	max-width: 1229px;
	padding: 0 30px;
	width: 100%;
}

.row {
	margin: 0 -15px;
}

.container:after, .row:after {
	content: '';
	display: table;
	clear: both;
}

.hidden, .mobile_show, .phone_show, .lp_show, .tablet_show, .hide_for_intermediate {
	display: none !important;
}

/*.page_wrap {
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	max-width: 1600px;
	margin: 0 auto;
}*/

.masthead {
	font-family: 'futura-pt', sans-serif;
	background-color: #376775;
	padding: 16px 0;
	position: relative;
}

.masthead > .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.masthead > .container::after {
	display: none;
}

.masthead a {
	line-height: 1.2em;
	display: inline-block;
}

a.skip_nav {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	clip-path: inset(50%);
	-webkit-clip-path: inset(50%);
	height: 1px;
	width: 1px;
	overflow: hidden;
	margin: -1px;
	z-index: 5;
}

a.skip_nav:focus {
	background-color: #fff;
	height: auto;
	width: auto;
	color: #ad5757;
	display: block;
	font-size: 1em;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	z-index: 98;
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	border: 1px solid #ad5757;
	border-radius: 3px;
}

.gp {
	font-family: "Kaikoura", sans-serif;
	font-size: 1.375rem;
	font-weight: 400;
	text-transform: capitalize;
	letter-spacing: 1.75px;
	color: #fff;
}

.gp span {
	font-family: 'futura-pt', sans-serif;
	font-size: 0.864em;
	font-weight: 500;
	font-style: italic;
	text-transform: none;
	letter-spacing: 0px;
	margin-left: 15px;
}

.top_nav {
	padding-left: 15px;
}

.top_menu {
	display: flex;
	justify-content: flex-end;
}

.top_menu li {
	display: inline-block;
}

.top_menu li + li {
	border-left: 1px solid rgb(211, 221, 224);
	margin: 0 0 0 18px;
	padding: 0 0 0 18px;
}

.top_menu li a {
	font-size: 1.1875rem;
	font-weight: 500;
	color: #fff;
	padding: 0px 0px;
}

.top_menu li a:hover, .top_menu li a:focus {
	text-decoration: underline;
}

.main_nav_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #094456;
	position: relative;
}

.main_nav_wrap > .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logos {
	border-right: 1px solid rgba(255,255,255,0.25);
	padding-right: 30px;
	align-self: stretch;
	display: flex;
	align-items: center;
}

.header_logo {
	display: block;
	width: 100%;
	max-width: 224px;
	padding: 8px 0;
}

.header_logo a {
	display: block;
}

.header_logo img {
	width: 100%;
	max-width: 100%;
	display: block;
}

.main_nav {
	margin-left: auto;
	flex-grow: 1;
	padding-left: 30px;
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

a.nav_toggle {
	font-size: 1.625rem;
	line-height: 1.2em;
	font-weight: 500;
	display: none;
	position: relative;
	color: #fff;
}

a.nav_toggle::after, a.nav_toggle::before {
	content: '\ec6e';
	font-family: Icomoon;
	font-size: 1em;
	font-weight: normal;
	position: relative;
	top: 3px;
}

a.nav_toggle::after {
	display: inline-block;
	margin-left: 7px;
}

a.nav_toggle::before {
	display: none;
	margin-right: 7px;
}

a.nav_toggle.opened::after, a.nav_toggle.opened::before {
	content: '\ed6a';
}

.main_menu {
	text-align: right;
	padding-left: 15px;
}

.main_menu > li {
	display: inline-block;
	padding: 32px 0;
}

.main_menu > li + li{
	margin-left: 40px;
}

.main_menu > li.has_dropdown {
	position: relative;
}

.main_menu li a {
	font-size: 1.375rem;
	line-height: 1.2em;
	font-weight: 500;
}

.main_menu > li > a {
	padding: 5px 0;
	color: #fff;
	display: block;
}

.main_menu > li:hover > a, .main_menu > li > a:focus {
	text-decoration: underline;
}

/*.main_menu > li.active_parent > a {*/
/*	text-decoration: underline;*/
/*}*/

.has_dropdown > a::after {
	content: '\edbf';
	font-family: Icomoon;
	font-size: 0.682em;
	font-weight: normal;
	margin-left: 5px;
}

.dropdown_menu {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 95;
	background-color: rgb(251, 248, 247);
	box-shadow: 0 0 10px -4px #00000080;
	min-width: 200px;
	text-align: left;
	display: none;
	padding: 10px 0;
}

.main_menu > li:hover > .dropdown_menu, .main_menu > li.focused > .dropdown_menu {
	display: block;
}

.dropdown_menu a {
	color: #094456;
	padding: 10px 10px;
	display: block;
}

.dropdown_menu a:hover, .dropdown_menu a:focus {
	background-color: #e7ebec;
}

.cres_marketing {
	font-family: 'futura-pt', sans-serif;
	position: relative;
	padding: 32px 0 0;
}

.cres_marketing::before {
	content: '';
	background-color: #91cfcf;
	display: block;
	width: 100%;
	height: calc(100% - 60px);
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
}

.marketing_msg {
	position: relative;
	background-image: url('/org_files/5001/images/banners/homepage-hero.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	max-width: 100%;
	padding: 126px 0 163px;
}

.cres_marketing h1 {
	/*font-family: "poiret-one", sans-serif;*/
	font-family: "Kaikoura", sans-serif;
	font-size: 4.375rem;
	font-weight: 400;
	text-transform: capitalize;
	text-align: center;
	letter-spacing: 4px;
	margin: 0;
	color: #fff;
	background-image: linear-gradient(to top, rgba(9,68,86, 0.9), rgba(9,68,86, 0.9));
	padding: 38px 30px 19px;
}

.page_title_wrap {
	font-family: 'futura-pt', sans-serif;
	position: relative;
	padding: 32px 0 0;
}

.page_title_wrap::before {
	content: '';
	background-color: #91cfcf;
	display: block;
	width: 100%;
	height: calc(100% - 60px);
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
}

.page_msg {
	background-image: url('/org_files/5001/images/banners/homepage-hero.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

#page_title {
	/*font-family: "poiret-one", sans-serif;*/
	font-family: "Kaikoura", sans-serif;
	font-size: 3.75rem;
	font-weight: 400;
	text-transform: capitalize;
	text-align: center;
	letter-spacing: 3.5px;
	margin: 0;
	color: #fff;
	background-image: linear-gradient(to top, rgba(9,68,86, 0.5), rgba(9,68,86, 0.5));
	padding: 83px 30px 62px;
}

.cres_action_links {
	font-family: 'futura-pt', sans-serif;
	text-align: center;
	padding: 32px 0 41px;
}

.action_menu {
	display: flex;
	justify-content: space-around;
	max-width: 968px;
	margin: 0 auto;
}

.action_menu li {
	flex: 0 0 calc(33.333% - (20px*2)/3);
	display: flex;
}

.action_menu li + li {
	margin-left: 0px;
}

.action_menu a {
	font-size: 1.375rem;
	line-height: 1.28em;
	font-weight: 500;
	padding: 25px 25px;
	color: #094456;
	border: 1px solid #d3dde0;
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #FFF;
}

.action_menu a:hover, .action_menu a:focus {
	background-color: #d3dde0;
}

.cta_section {
	background-color: #fbf8f7;
	padding: 110px 0 113px;
	text-align: center;
}

.cta_section p {
	font-size: 1.5rem;
	line-height: 1.5;
	font-weight: 500;
	color: #404040;
	margin: 0;
	display: flex;
	align-items: center;
}

.cta_section p::before, .cta_section p::after {
	content: '';
	background-color: #094456;
	display: block;
	width: 100%;
	height: 2px;
}

.cta_section p .cta_text {
	flex: 0 0 auto;
	padding: 0 22px;
}

.cta_section p .cta_text .cta_color {
	color: #094456;
}

.footer {
    color: #fff;
    background: url(/org_files/5001/images/banners/footer-bg.png) no-repeat center top #fbf8f7;
    background-size: cover;
    clear: both;
    padding: 180px 0 40px;
}

.footer > .container {
	display: flex;
	justify-content: space-between;
}

.footer_left {
	flex: 0 0 209px;
}
.footer_mid {
	flex: 0 0 calc(100% - 209px - 133px);
	padding: 0 89px;
}
.footer_right {
	flex: 0 0 133px;
}

.footer_logo {
	display: block;
	width: 100%;
	max-width: 209px;
}

.footer_logo a {
	display: block;
}

.footer_logo img {
	width: 100%;
	max-width: 100%;
	display: block;
}

a.advisor_btn {
	font-family: 'futura-pt', sans-serif;
	font-size: 1.25rem;
	line-height: 1.5em;
	/*text-decoration: underline !important;*/
	display: inline-block;
	color: #fff;
	margin-bottom: 19px;
}

a.advisor_btn:hover, a.advisor_btn:focus {
	/*text-decoration-style: dashed !important;*/
}

p.cres_copyright {
	font-size: 1.25rem;
	line-height: 1.5em;
	margin: 0;
}

p.cres_copyright + p {
	margin-top: 21px;
}

p.cres_copyright a {
	/*text-decoration: underline;*/
	color: #fff;
}

p.cres_copyright a:hover, p.cres_copyright a:focus {
	/*text-decoration-style: dashed;*/
}

p.cres_copyright .privacy {
	display: inline-block;
	margin: 0px;
}

p.cres_copyright.small {
	font-size: 1.125rem;
	line-height: 1.64em;
}

.social_media {
	margin-top: 0px;
}

.social_title {
	font-size: 1.25rem;
	line-height: 1.2em;
	font-weight: 500;
	display: inline-block;
	margin: 3px 0 22px;
}

.social_menu li {
	display: block;
}

.social_menu li + li {
	margin-top: 19px;
}

.social_menu a {
	text-decoration: none !important;
	color: #fff;
	display: flex;
	align-items: center;
}

.social_icon {
	flex: 0 0 40px;
	font-size: 1.375rem;
	text-align: center;
	padding-right: 20px;
}

.social_menu svg {
	fill: #fff;
	width: 18px;
}

.social_menu a .social_text {
	font-size: 1.125rem;
}

.social_menu a:hover .social_text, .social_menu a:focus .social_text {
	text-decoration: underline;
}

/*****************CRESCENDO TEMPLATE STYLESHEET*****************/
.hide_for_intermediate {
	display: none;
}

#main_content {
	font-size: 1.375rem;
	padding: 0 0 67px;
	max-width: 100%;
	overflow: hidden;
	clear: both;
	background-color: #FBF8F7;
}

#cres_content {
	line-height: 1.5;
	padding: 0;
	margin: 0;
	width: 100%;
	background-color: #FBF8F7;
}

#cres_content img {
	border: none;
	width: auto;
	margin: auto;
	max-width: none;
}

#cres_content a {
	color: #094456;
	text-decoration: underline;
}

#cres_content a:visited {
	color: #64a5a5;
}

#cres_content a:hover, #cres_content a:focus {
	text-decoration-style: dashed;
}

#cres_content a[name] {
	text-decoration: none !important;
	border-bottom: 0 none !important;
}

#cres_content #mgr_login_getting_started {
	max-width: 100% !important;
}

#cres_content .breadcrumb {
	margin: 0;
	padding: 0 0 20px;
	font-size: 0.85em;
	background: none;
	float: none;
	border: 0 none;
}

#cres_content .breadcrumb strong {
	display: none;
}

#cres_content .breadcrumb em {
	font-style: normal;
}

#cres_content ul, #cres_content ol {
	padding: 0 0 0 40px;
	margin: 20px 0;
	font-size: inherit;
	width: auto;
	max-width: none;
}

#cres_content ul li {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-style: normal;
	color: inherit;
	list-style: disc;
	width: auto;
}

#cres_content ul li::before {
	display: none;
}

#cres_content ol li {
	list-style: decimal;
}

#cres_content ol.letters li {
	list-style: lower-alpha;
}

#cres_content .medTitle {
	font-size: 1.0em;
	font-weight: 400;
	margin: 0;
	padding: 5px 0;
	display: inline-block;
}

#cres_content .smallTitle {
	margin: 0;
	padding: 5px 0;
	font-size: 0.8em;
	font-weight: 400;
}

#cres_content .smallerTitle {
	font-size: 0.8em;
	margin: 0;
	padding: 5px 0;
}

#cres_content .lightColorDiv {
	background-color: #f5f5f5;
	border-color: #BBBBBB;
}

h1.cresPageHeader, #cres_content .bigTitle, h1.mgrHeaderTitle {
	font-family: 'futura-pt', sans-serif;
	font-size: 2.3em;
	font-weight: 700;
	font-style: normal;
	text-transform: none;
	margin: 0 0 20px;
	color: #000;
	padding: 0 0 10px;
	display: none;
}

h1.mgrHeaderTitle {
	font-family: "Kaikoura", sans-serif;
	font-size: 1.636em;
	line-height: 1.2em;
	font-weight: 400;
	text-transform: capitalize;
	letter-spacing: 2.25px;
	color: #666;
	margin: 0 0 25px;
	padding: 0;
	position: relative;
	display: block;
}

#cres_content h2, #cres_content h3 {
	/*font-family: "poiret-one", sans-serif;*/
	font-family: "Kaikoura", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-variant: normal;
	text-transform: capitalize;
}

h2.cresArticleTitle {
	font-family: "Kaikoura", sans-serif;
	font-size: 1.636em;
	line-height: 1.2em;
	font-weight: 400;
	text-transform: capitalize;
	letter-spacing: 2.25px;
	color: #666;
	margin: 0 0 25px;
	padding: 15px 0 0;
	position: relative;
	display: block;
}

h2.mgrSubHeaderTitle {
	font-size: 1.667em;
	font-weight: 400;
	margin: 5px 0;
	color: #000;
}

h2.mgrSubHeaderTitle_U {
	font-size: 1.667em;
	font-weight: 400;
	margin: 5px 0 0;
	color: #000;
	border-bottom: 1px solid #CCCCCC;
}

h2.mgrSubHeaderTitle_S {
	font-size: 1.667em;
	font-weight: 400;
	margin: 5px 0 0;
	color: #000;
	border-top: 1px solid #CCCCCC;
	background-color: #F3F3F3;
}

h3.mgrSubHeaderTitle {
	font-size: 1.1em;
	font-weight: 400;
	margin: 5px 0;
	color: #000;
}

h3.mgrSubHeaderTitle_U {
	font-size: 1.1em;
	font-weight: 400;
	margin: 5px 0 0;
	color: #000080;
	border-bottom: 1px solid #CCCCCC;
}

h3.mgrSubHeaderTitle_S {
	font-size: 1.1em;
	font-weight: 400;
	margin: 5px 0 0;
	color: #000080;
	border-top: 1px solid #CCCCCC;
	background-color: #F3F3F3;
}

span.cresDateHead {
	font-size: 1em;
	font-weight: 700;
	margin: 0 0 10px;
	padding: 5px 0;
	display: block;
}

#cres_content .mgrStrongTitle {
	font-size: 1.1em;
	font-weight: 400;
}

.mgr_user_estate_planning li, .mgr_user_settings li, .mgr_enews_settings li {
	font-size: 0.9em;
	font-weight: 400;
}

/* FORM CSS */
#cres_dafgift {
	position: relative;
	z-index: 1;
}

.radio, .checkbox {
	margin: 0;
}

#cres_content legend {
	border-bottom: 0 none;
	margin: 0;
	overflow: visible !important;
	font-size: inherit;
	width: auto;
}

form#mgr_login_frm {
	font-size: 0.9em;
}

input[type=radio] {
	-webkit-appearance: radio;
	position: static;
}

#cres_content input {
	float: left;
	border: 1px solid #CCCCCC;
	margin: 0 0 15px;
	text-shadow: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	height: auto;
	font-family: inherit !important;
	font-size: inherit;
}

#cres_content input:hover {
	border-color: #C0CCDA;
}

#cres_content input:focus {
	border-color: #c5c5c5;
	background-color: #ffffdd;
	background-image: none;
}

#cres_content input[type="radio"] {
	margin: 1px 5px 0 0 !important;
}

#cres_content input[type="button"] {
	font-size: 1em;
	text-transform: none;
	color: inherit;
	margin-top: 0;
}

#cres_content textarea {
	border: 1px solid #ccc !important;
	width: auto;
}

button, html [type="button"], [type="reset"], [type="submit"] {
	-webkit-appearance: none;
}

#cres_content .cres_mainbutton, 
#cres_content button, #cres_content input[value="Submit"], #cres_content input[type="button"], .cresbutton_create_account, .cresbutton_learn_more, .cresbutton_login {
	font-family: 'futura-pt', sans-serif;
	font-size: 1em !important;
	font-weight: 500 !important;
	line-height: 1.2em !important;
	text-transform: none !important;
	text-decoration: none !important;
	text-align: center;
	display: inline-block;
	position: relative;
	padding: 15px 25px;
	cursor: pointer;
	vertical-align: middle;
	color: #094456 !important;
	background: none;
	background-color: #d3dde0 !important;
	border: none;
	border-radius: 0px;
	margin-top: 0.35em !important;
	margin-bottom: 0.5em;
	-webkit-appearance: none;
	width: auto;
	box-shadow: none;
	/*transition: color ease-in 200ms, background-color ease-in 200ms;*/
	/*-webkit-transition: color ease-in 200ms, background-color ease-in 200ms;*/
}

#cres_content .cres_mainbutton:hover, #cres_content .cres_mainbutton:focus, 
#cres_content button:hover, #cres_content input[value="Submit"]:hover, #cres_content input[type="button"]:hover, .cresbutton_create_account:hover, .cresbutton_learn_more:hover, .cresbutton_login:hover, #cres_content button:focus, #cres_content input[value="Submit"]:focus, #cres_content input[type="button"]:focus, .cresbutton_create_account:focus, .cresbutton_learn_more:focus, .cresbutton_login:focus {
	background-color: #094456 !important;
	color: #fff !important;
	text-decoration: none !important;
}

#cres_content input[type="text"], #cres_content input[type="password"] {
	padding: 2px 4px;
	display: inline-block;
	background-color: #fff !important;
	width: auto;
}

#cres_content input[type="text"]:focus, #cres_content input[type="password"]:focus {
	border: 1px solid #000 !important;
}
.mgr_login_recover {
	text-align: left !important;
	padding-top: 7px !important;
}

#cres_content select {
	border: 1px solid #CCCCCC;
	margin-bottom: 15px;
	width: auto;
	padding: 2px 4px;
	line-height: 1em;
	display: inline-block;
	float: none;
	font-size: inherit;
	font-family: inherit;
	background-color: transparent;
}

#cres_content select:hover {
	border-color: #C0CCDA;
}

#cres_content select:focus {
	border-color: #C0CCDA;
	background-color: #ffffdd;
	background-image: none;
}

#cres_content .cres_calc_radio {
	background: none;
	border: none;
}

/* CALCULATORS */
#cres_calc {
	width: 99%;
	margin: auto;
	max-width: 650px;
	font-size: 0.9em;
	line-height: 1.1em;
}

#cres_calc > a {
	float: right;
	display: block;
}

#cres_calc > a:focus {
	outline: 1px dotted #000;
}

#cres_calc div {
	clear: both;
	float: left;
	margin: 5px;
	width: 100%;
}

#cres_calc fieldset {
	float: left;
	margin: 60px 0 0;
	padding: 10px;
	border: 1px solid #DDDDDD;
	width: 100%;
	position: relative;
	font-size: 1em;
	font-weight: 400;
}

#cres_calc fieldset > legend {
	position: absolute;
	top: -60px;
}

#cres_calc fieldset > legend .bigMedTitle {
	margin: 0;
}

#cres_calc label {
	float: left;
	width: 165px;
	text-align: right;
	margin-right: 10px;
	font-weight: 400;
}

#cres_calc label.radio {
	width: auto;
}

#cres_calc fieldset .radioFSet {
	width: 420px !important;
	margin-bottom: 15px !important;
}

.cres_calc_help {
	clear: both;
	padding: 5px;
	margin-bottom: 10px;
	background-color: #F3F3F3;
	border: 1px solid #CCCCCC;
	display: none;
}

#cres_calc img {
	float: left;
	margin-left: 5px;
}

#cres_calc span {
	float: left;
	margin: 0 5px 0 2px;
}

#cres_calc span.label {
	float: left;
	width: 165px;
	text-align: right;
	margin-right: 10px;
}

#cres_calc button {
	margin: 0 5px;
}

#cres_calc img#calc_help_btn {
	float: right;
}

#cres_calc #firstPerson {
	margin: 0;
	padding: 0;
}

#cres_calc #secondPerson {
	margin: 0;
	padding: 0;
}

#cres_calc .cc_small {
	width: 50px !important;
}

#cres_calc .cc_med {
	width: 125px !important;
}

#cres_calc .cc_large {
	width: 250px !important;
}

#cres_contact .cc_large {
	width: 250px !important;
}

#cres_contact em, #cres_calc em {
	color: #CC3330;
	margin: 0px 2px;
}

#cres_contact .required_fields, #cres_calc .required_fields {
	color: #CC3330;
	text-align: left;
}

/* TO FIX THE CALCULATOR LAYOUT */
#cres_calc fieldset .cres_calc_tax_rate_radio {
	width: auto !important;
}

/* TO FIX THE CALCULATOR LAYOUT IE 7 */
#cres_calc fieldset .cres_calc_tax_rate_radio span {
	margin-top: 0 !important;
}

/* ARTICLES */
#cres_articles_div {
	float: left;
	width: 100%;
	height: 170px;
	margin: 5px 0 10px 10px;
	background-image: url(../images/330x165_wide_img_bg.png);
	background-repeat: no-repeat;
}

#cres_articles_div img {
	width: 330px;
	height: 165px;
	border: none;
	padding: 0;
	margin: 0;
}

/* DONOR STORIES */
#cres_donor_story_div {
	float: left;
	width: 100%;
	height: 170px;
	margin: 5px 0px 10px 10px;
	background-image: url(../images/330x165_wide_img_bg.png);
	background-repeat: no-repeat;
	display: none;
}

#cres_donor_story_div img {
	width: 330px;
	height: 165px;
	border: none;
	padding: 0px;
	margin: 0px;
}

/* NEWS BOX GRID*/
#cres_content #cres_news_box_grid .cres_news_box_grid_wide > div {
	overflow: hidden;
	display: table;
	width: 100%;
	padding: 30px 0;
}

#cres_content #cres_news_box_grid .cres_left_column {
	display: table-cell;
	vertical-align: middle;
	width: 35%;
}

#cres_content #cres_news_box_grid .cres_left_column a {
	display: block;
}

#cres_content #cres_news_box_grid .cres_left_column img {
	display: block;
	position: relative;
}

#cres_content #cres_news_box_grid .cres_right_column {
	display: table-cell;
	vertical-align: middle;
	padding-left: 3%;
}

#cres_news_box_grid .cres_news_box_grid_wide > div p {
	margin: 0;
	padding: 0;
}

#cres_news_box_grid img {
	line-height: 1.0em;
	max-width: 100%;
}

#cres_news_box_grid ul {
	margin: 10px 0 0 0;
	padding: 0;
	list-style: none;
}

#cres_news_box_grid li {
	padding: 0;
	margin: 0 0 5px 0 !important;
	list-style: none;
	font-weight: 400;
}

div#cres_table1-r1-c1, div#cres_table1-r1-c2, div#cres_table1-r1-c3, div#cres_table1-r1-c4, div#cres_table1-r1-c5, div#cres_table1-r2-c1, div#cres_table1-r2-c2, div#cres_table1-r2-c3, div#cres_table1-r2-c4, div#cres_table1-r2-c5, div#cres_table1-r3-c1, div#cres_table1-r3-c2, div#cres_table1-r3-c3, div#cres_table1-r3-c4, div#cres_table1-r3-c5, div#cres_table1-r4-c1, div#cres_table1-r4-c2, div#cres_table1-r4-c3, div#cres_table1-r4-c4, div#cres_table1-r4-c5, div#cres_table1-r5-c1, div#cres_table1-r5-c2, div#cres_table1-r5-c3, div#cres_table1-r5-c4, div#cres_table1-r5-c5 {
	overflow: visible;
}

#cres_content table, .cres_table1 {
	font-size: inherit;
	line-height: inherit;
}

#cres_content .cres_table1 ul {
	margin: 0;
	padding: 0;
}

#cres_content .cres_table1 ul li {
	list-style: none;
}

#cres_content .cres_table1 img {
	display: block;
}

.cres_news_box_grid-SubTitle, .bigMedTitle, .bigMedTitle_NL {
	font-family: 'futura-pt', sans-serif;
	font-size: 1.636em;
	line-height: 1.2em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2.25px;
	color: #666;
	margin: 0 0 25px;
	padding: 0;
	position: relative;
	display: block;
}

#cres_content .cres_news_box_grid-SubTitle a, #cres_content a .cres_news_box_grid-SubTitle, #cres_content .bigMedTitle a {
	display: inline-block;
	text-decoration: none !important;
	color: #094456;
	font-family: "Kaikoura", sans-serif;
}

#cres_content .cres_news_box_grid-SubTitle a:visited, #cres_content a:visited .cres_news_box_grid-SubTitle, #cres_content .bigMedTitle a:visited {
	color: #63a4a4;
}

/*#cres_content .cres_news_box_grid-SubTitle a span, #cres_content a .cres_news_box_grid-SubTitle span, #cres_content .bigMedTitle a span {*/
/*	text-decoration: underline;*/
/*}*/

#cres_content .cres_news_box_grid-SubTitle a:hover span, #cres_content .cres_news_box_grid-SubTitle a:focus span, #cres_content a:hover .cres_news_box_grid-SubTitle span, #cres_content a:focus .cres_news_box_grid-SubTitle span, #cres_content .bigMedTitle a:hover span, #cres_content .bigMedTitle a:focus span {
	/*text-decoration-style: dashed;*/
}

/*#cres_content .cres_news_box_grid-SubTitle a::after, #cres_content a .cres_news_box_grid-SubTitle::after, #cres_content .bigMedTitle a::after {*/
/*	font-family: Icomoon;*/
/*	font-size: 0.8em;*/
/*	font-weight: normal;*/
/*	content: '\edb9';*/
/*	margin-left: 10px;*/
/*	display: none;*/
/*}*/

#cres_content a.bigMedTitle + br {
	display: none;
}

.cres_news_box_grid-Title {
	font-size: 1.2em;
	margin: 10px 0;
	padding: 0;
	text-transform: none !important;
	font-weight: 500 !important;
	color: #666;
	font-family: 'futura-pt', sans-serif !important;
}

#cres_content .cres_news_box_grid-Title a {
	color: inherit;
}

#cres_content span.bigMedTitle, #cres_content  h2.bigMedTitle {
	color: #666;
}

.cres_news_box_grid-Small-Title {
	font-size: .9em;
	color: #000;
	font-weight: normal;
	margin: 2px 0;
	padding: 0;
	text-transform: none;
}

#cres_news_article .cres_body_article h2 {
	font-family: 'futura-pt', sans-serif;
	font-size: 1.636em;
	line-height: 1.2em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2.25px;
	color: #666;
	margin: 0 0 0px;
	padding: 0;
	position: relative;
	display: block;
}

#cres_content .what_give_header, #cres_content .how_give_header, #cres_content .gift_calc_header, #cres_content .learn_wills_header, #cres_content .donor_story_main_header {
	display: none;
}

#cres_content #donor_story_main_ul, #cres_content #what_give_ul, #cres_content #learn_wills_ul, #cres_content #gift_calc_ul, #cres_content #how_give_ul {
	margin: 0;
	padding: 0;
	display: block;
	float: none;
}

#cres_content #donor_story_main_ul li, #cres_content #what_give_ul li, #cres_content #how_give_ul li, #cres_content #gift_calc_ul li, #cres_content #learn_wills_ul li {
	padding: 27px 0;
	list-style: none;
	float: none;
	width: auto;
	border-top: 0px solid #ccc;
	border-radius: 0px;
	background-color: transparent;
	clear: none;
	margin: 0;
	position: relative;
}

#cres_content #donor_story_main_ul li:first-child, #cres_content #what_give_ul li:first-child, #cres_content #how_give_ul li:first-child, #cres_content #gift_calc_ul li:first-child, #cres_content #learn_wills_ul li:first-child {
	border-top: 0;
}

#cres_content #donor_story_main_ul li + li, #cres_content #what_give_ul li + li, #cres_content #how_give_ul li + li, #cres_content #gift_calc_ul li + li, #cres_content #learn_wills_ul li + li {
	margin-top: 0px;
}

#cres_content #donor_story_main_ul li a.bigMedTitle, #cres_content #what_give_ul li a.bigMedTitle, #cres_content #how_give_ul li a.bigMedTitle, #cres_content #gift_calc_ul li a.bigMedTitle {
	display: inline-block;
	position: relative;
}

#cres_content #donor_story_main_ul li p, #cres_content #what_give_ul li p, #cres_content #how_give_ul li p, #cres_content #gift_calc_ul li p, #cres_content #learn_wills_ul li p {
	margin: 0;
	padding: 0;
}

#cres_content #gift_calc_ul li br {
	display: none;
}

/*#cres_content a.cres_more_link {
	margin-top: 1.125em !important;
	text-transform: none !important;
	font-weight: 700;
	color: #bf1a25;
	text-decoration: none !important;
	display: inline-block;
	line-height: 1.2em;
}

#cres_content a.cres_more_link::after {
	font-family: Icomoon;
	content: '\edd3';
	margin-left: 6px;
	font-size: 0.8em;
}*/

/* TO FIX THE POP OUT CALENDAR IN CALCULATOR PAGES */
div#cres_calendarDiv {
	background-color: #F8F8F8;
	border-color: #999999 #777777 #777777 #999999;
	border-style: solid;
	border-width: 1px 2px 2px 1px;
	display: none;
	font-family: inherit;
	font-size: 11px;
	height: 20.0em;
	line-height: 1.2em;
	margin: 0;
	padding: 0;
	position: absolute;
	width: 16.0em;
	z-index: 999;
}

div#cres_calendarDiv table, div#cres_calendarDiv tr {
	border-collapse: separate;
	border-spacing: 5px;
	border: 0 none;
	width: 100%;
	margin: 0;
	padding: 0.1em;
}

div#cres_calendarDiv table {
	height: 80%;
}

div#cres_calendarDiv td {
	text-align: right;
	border-collapse: separate;
	border-spacing: 5px;
	border: 0 none;
	width: 14%;
	height: 10%;
	margin: 0;
	padding: 0;
	font-size: 11px;
	line-height: normal;
}

div#cres_calendarDiv select {
	font-size: 0.9em;
	border: 1px solid #DDDDDD;
	margin-bottom: 5px;
	padding: 0.1em;
	width: auto;
	height: 22px;
	padding: 0 1px;
	line-height: 1em;
	display: inline-block;
}

#cres_calendarDiv a {
	font-size: inherit;
}

/* How to Give and What to Give pages */
#how_give_flow_wrapper {
	clear: both;
	color: #333333;
	display: block;
	width: 340px;
	margin: 0 0 20px;
	line-height: normal;
	position: relative;
}

#charity_img {
	background-image: url("../images/how_what_charity.png");
	background-repeat: no-repeat;
	width: 53px;
	height: 54px;
}

#charity_img_size {
	width: 53px;
	height: 54px;
}

#how_give_flow_wrapper .flow_title_top {
	font-family: inherit;
	font-size: 17px;
	color: #084A4B;
	text-transform: none;
	padding: 5px 0 0 0;
	text-align: center;
	display: none;
}

#how_give_flow_wrapper #gift_type_text, #how_give_flow_wrapper #gift_model_text, #how_give_flow_wrapper #donor_text, #how_give_flow_wrapper #org_text, #how_give_flow_wrapper #gift_text, #how_give_flow_wrapper #property_text, #how_give_flow_wrapper #gift_cash, #how_give_flow_wrapper #gift_model_life {
	font-family: inherit;
	font-size: 12px;
	font-weight: normal;
	text-transform: uppercase;
}

#how_give_flow_wrapper #gift_term, #how_give_flow_wrapper #gift_term_years {
	font-family: inherit;
	font-size: 10px;
	font-weight: normal;
	text-transform: uppercase;
}

/* How to Give and What to Give pages - Action bar (Run Illustration, eLiterature, Contact Us and View Video */
#cres_share_actions {
	width: 100%;
	height: 19px;
	margin: 0 0 20px 0;
}

#mobile_video_button {
	display: none;
}

#cres_share_actions_opts_illustration {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 113px;
	height: 19px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_calc_btn_v2.png);
}

#cres_share_actions_opts_illustration:hover {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 113px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_calc_over_btn_v2.png);
}

#cres_share_actions_opts_illustration img {
	width: 113px;
	height: 19px;
}

#cres_share_actions_opts_eLiterature {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 104px;
	height: 19px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_brochure_btn_v2.png);
}

#cres_share_actions_opts_eLiterature:hover {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 104px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_brochure_over_btn_v2.png);
}

#cres_share_actions_opts_eLiterature img {
	width: 104px;
	height: 19px;
}

#cres_share_actions_opts_contact_us {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 91px;
	height: 19px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_contact_btn_v2.png);
}

#cres_share_actions_opts_contact_us:hover {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 91px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_contact_over_btn_v2.png);
}

#cres_share_actions_opts_contact_us img {
	width: 91px;
	height: 19px;
}

#cres_share_actions_opts_video {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 75px;
	height: 19px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_video_btn_v2.png);
	display: none !important;
}

#cres_share_actions_opts_video:hover {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 75px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_video_over_btn_v2.png);
}

#cres_share_actions_opts_video  img {
	width: 75px;
	height: 19px;
}

#cres_share_actions_opts_print {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 68px;
	height: 19px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_print_btn_v2.png);
}

#cres_share_actions_opts_print:hover {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 68px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_print_over_btn_v2.png);
}

#cres_share_actions_opts_print img {
	width: 68px;
	height: 19px;
}

#cres_share_actions_opts_email {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 71px;
	height: 19px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_email_btn_v2.png);
}

#cres_share_actions_opts_email:hover {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 71px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_email_over_btn_v2.png);
}

#cres_share_actions_opts_email img {
	width: 71px;
	height: 19px;
}

#cres_share_action_top {
	display: block;
}

#cres_share_action_bottom {
	display: none;
}

/* Donor Story pages - Action bar (Print, Email, Contact, Calculator, eLiterature) */
#cres_ds_actions {
	width: 100%;
	height: 19px;
	margin: 0 0 20px 0;
}

#cres_ds_opts_print {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 68px;
	height: 19px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_print_btn_v2.png);
}

#cres_ds_opts_print:hover {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 68px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_print_over_btn_v2.png);
}

#cres_ds_opts_print img {
	width: 68px;
	height: 19px;
}

#cres_ds_opts_email {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 71px;
	height: 19px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_email_btn_v2.png);
}

#cres_ds_opts_email:hover {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 71px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_email_over_btn_v2.png);
}

#cres_ds_opts_email img {
	width: 71px;
	height: 19px;
}

#cres_ds_opts_contact {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 91px;
	height: 19px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_contact_btn_v2.png);
}

#cres_ds_opts_contact:hover {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 91px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_contact_over_btn_v2.png);
}

#cres_ds_opts_contact img {
	width: 91px;
	height: 19px;
}

#cres_ds_opts_illustration {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 113px;
	height: 19px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_calc_btn_v2.png);
}

#cres_ds_opts_illustration:hover {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 113px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_calc_over_btn_v2.png);
}

#cres_ds_opts_illustration img {
	width: 113px;
	height: 19px;
}

#cres_ds_opts_eLiterature {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 104px;
	height: 19px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_brochure_btn_v2.png);
}

#cres_ds_opts_eLiterature:hover {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 104px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_brochure_over_btn_v2.png);
}

#cres_ds_opts_eLiterature img {
	width: 104px;
	height: 19px;
}

#cres_ds_opts_top {
	display: block;
}

#cres_ds_opts_bottom {
	display: none;
}

/* Article pages - Action bar (Print, Email, Subscribe) */
#cres_article_actions {
	width: 100%;
	height: 19px;
	margin: 0 0 20px 0;
}

#cres_article_opts_print {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 68px;
	height: 19px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_print_btn_v2.png);
}

#cres_article_opts_print:hover {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 68px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_print_over_btn_v2.png);
}

#cres_article_opts_print img {
	width: 68px;
	height: 19px;
}

#cres_article_opts_email {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 71px;
	height: 19px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_email_btn_v2.png);
}

#cres_article_opts_email:hover {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 71px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_email_over_btn_v2.png);
}

#cres_article_opts_email img {
	width: 71px;
	height: 19px;
}

#cres_article_opts_subscribe {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 96px;
	height: 19px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_subscribe_btn_v2.png);
}

#cres_article_opts_subscribe:hover {
	float: left;
	padding: 0;
	margin: 0 -15px 0 0;
	width: 96px;
	background-repeat: no-repeat;
	background-image: url(../images/how_to_give/how_what_subscribe_over_btn_v2.png);
}

#cres_article_opts_subscribe img {
	width: 96px;
	height: 19px;
}

#cres_article_opts_top {
	display: block;
}

#cres_article_opts_bottom {
	display: none;
}

#cres_article_opts_bottom #cres_article_actions {
	margin: 20px 0 0 0;
}

#cres_news_box_about_us_org, #cres_news_box_about_us_gp {
	border-color: #CCCCCC;
	border-style: solid;
}

#cres_news_box_about_us_gp img {
	display: none;
}

.cres_indent_40 {
	padding-left: 40px;
}

.cres_what_how_give_open a {
	border: 1px solid #084A4B;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #084A4B;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#084A4B), to(#084A4B));
	background-image: -webkit-linear-gradient(top, #084A4B, #084A4B);
	background-image: -moz-linear-gradient(top, #084A4B, #084A4B);
	background-image: -ms-linear-gradient(top, #084A4B, #084A4B);
	background-image: -o-linear-gradient(top, #084A4B, #084A4B);
	background-image: linear-gradient(to bottom, #084A4B, #084A4B);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#084A4B, endColorstr=#084A4B);
	color: #FFFFFF;
	text-decoration: none !important;
	text-align: left;
	display: block;
	width: 100%;
	font-style: normal;
}

.cres_what_how_give_open a::after {
	display: none;
}

#cres_content .cres_what_how_give_open h2 {
	padding-left: .5em;
	color: #FFFFFF;
	clear: none;
	line-height: 40px;
	margin-bottom: 0;
	font-size: 20px;
	text-transform: none !important;
}

.cres_plus_icon {
	background: url("../images/what_to_give/white_plus.png") no-repeat scroll center transparent;
	display: block;
	float: left;
	padding: 6px 12px;
	height: 40px;
}

.cres_minus_icon {
	background: url("../images/what_to_give/white_minus.png") no-repeat scroll center transparent;
	display: block;
	float: left;
	padding: 6px 12px;
	height: 40px;
}

#cres_content .cres_what_how_give_open h2::after {
	display: none !important;
}

#cres_plus_minus_icon img {
	height: 16px;
	width: 16px;
}

#cres_what_how_more_text {
	padding-top: 1.0em;
}

/********** NEW ACTION BUTTONS **********/
#cres_share_actions_opts_print, #cres_share_actions_opts_print:hover, #cres_share_actions_opts_email, #cres_share_actions_opts_email:hover, #cres_share_actions_opts_illustration, #cres_share_actions_opts_illustration:hover, #cres_share_actions_opts_eLiterature, #cres_share_actions_opts_eLiterature:hover, #cres_share_actions_opts_contact_us, #cres_share_actions_opts_contact_us:hover, #cres_ds_opts_print, #cres_ds_opts_print:hover, #cres_ds_opts_email, #cres_ds_opts_email:hover, #cres_ds_opts_contact, #cres_ds_opts_contact:hover, #cres_ds_opts_eLiterature, #cres_ds_opts_eLiterature:hover, #cres_ds_opts_illustration, #cres_ds_opts_illustration:hover, #cres_article_opts_print, #cres_article_opts_print:hover, #cres_article_opts_email, #cres_article_opts_email:hover, #cres_article_opts_subscribe, #cres_article_opts_subscribe *:hover, #cres_article_opts_subscribe:hover {
	background-color: #000 !important;
	background-image: none !important;
	display: inline-block !important;
	float: none !important;
	height: auto !important;
	margin: 0 5px 0 0 !important;
	padding: 0px !important;
	width: auto !important;
}

#cres_article_opts_subscribe *:hover {
	padding: 0 !important;
	margin: 0 !important;
}

#cres_share_actions_opts_print:hover, #cres_share_actions_opts_email:hover, #cres_share_actions_opts_illustration:hover, #cres_share_actions_opts_eLiterature:hover, #cres_share_actions_opts_contact_us:hover, #cres_share_actions_opts_video:hover, #cres_ds_opts_print:hover, #cres_ds_opts_email:hover, #cres_ds_opts_contact:hover, #cres_ds_opts_eLiterature:hover, #cres_ds_opts_illustration:hover, #cres_article_opts_print:hover, #cres_article_opts_email:hover, #cres_article_opts_subscribe *:hover, #cres_article_opts_subscribe:hover {
	background-color: #000 !important;
}

#cres_share_actions_opts_video, #cres_share_actions_opts_video:hover, #cres_ds_opts_eLiterature, #cres_ds_opts_eLiterature:hover {
	padding: 5px 15px !important;
}

#cres_share_actions, #cres_ds_actions, #cres_article_actions {
	height: auto !important;
	margin: 10px 0 25px !important;
	width: auto !important;
	font: 16px/16px 'futura-pt' !important;
	font-weight: normal !important;
}

#cres_share_actions a, #cres_share_actions a:visited, #cres_share_actions a:hover, #cres_ds_actions a, #cres_ds_actions a:visited, #cres_ds_actions a:hover, #cres_article_actions a, #cres_article_actions a:visited, #cres_article_actions a:hover {
	text-decoration: none !important;
	color: #fff !important;
	font-weight: normal !important;
	padding: 5px 15px !important;
	display: inline-block;
}

#cres_share_actions a:hover, #cres_ds_actions a:hover, #cres_article_actions a:hover {
	background-color: #2b2b2b;
}

#cres_share_actions a:focus, #cres_ds_actions a:focus, #cres_article_actions a:focus {
	outline-color: #D24700;
}

#cres_share_actions a:after, #cres_ds_actions a:after, #cres_article_actions a:after {
	position: static;
	height: auto;
	width: auto;
	background: none;
}

#cres_share_actions_opts_print a:after, #cres_ds_opts_print a:after, #cres_article_opts_print a:after {
	content: "Print";
}

#cres_share_actions_opts_email a:after, #cres_ds_opts_email a:after, #cres_article_opts_email a:after {
	content: "Email";
}

#cres_share_actions_opts_illustration a:after, #cres_ds_opts_illustration a:after {
	content: "Calculator";
}

#cres_share_actions_opts_eLiterature a:after, #cres_ds_opts_eLiterature a:after {
	content: "Brochure";
}

#cres_share_actions_opts_contact_us a:after, #cres_ds_opts_contact a:after {
	content: "Contact";
}

#cres_share_actions_opts_video a:after {
	content: "Video";
}

#cres_article_opts_subscribe a:after {
	content: "Subscribe";
}

#cres_share_actions img, #cres_article_actions img, #cres_ds_actions img {
	display: none !important;
}

.cresfooterlink {
	text-decoration: underline !important;
}

#cres_calc fieldset .cres_calc_tax_rate_radio span {
	margin-right: 5px !important;
}

table#mgr_getting_started_body {
	margin-bottom: 30px !important;
}

#cres_content #cres_contact input[type='text'], #cres_content #cres_contact textarea {
	-webkit-appearance: none;
	float: none;
	border: 1px solid #ccc;
	background: #fff;
	background-image: none;
	width: 95% !important;
	margin: 5px 0 15px;
	padding: 5px 10px;
	font-size: 1em;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#cres_content #cres_contact input[type='text']:hover, #cres_content #cres_contact textarea:hover {
	background: #fff;
	background-image: none;
}

#cres_content #cres_contact .checkbox_list ul li:nth-child(2n+1) {
	clear: both;
}

/*****************END CRESCENDO TEMPLATE STYLES*******************/

/***************RESPONSIVE STYLES AND FIXES (Coder)****************/
@media screen and (max-width:1199px) {
	.tablet_show {
		display: block !important;
	}

	.tablet_hide {
		display: none !important;
	}

	.header_logo {
		max-width: 219px;
		padding: 16.5px 0;
	}

	a.nav_toggle {
		display: inline-block;
	}

	.main_menu {
		display: none;
		position: absolute;
		z-index: 95;
		top: 100%;
		left: 0;
		right: 0;
		text-align: left;
		background-color: #fff;
		padding: 0;
	}

	.main_menu > li {
		display: list-item;
		padding: 0;
		margin: 0;
	}

	.main_menu > li + li {
		margin-left: 0px;
	}

	.main_menu > li > a {
		padding: 10px 30px;
		color: #094456;
	}

	.main_menu > li.has_dropdown > a::after {
		display: none;
	}

	.dropdown_menu {
		position: static;
		white-space: normal;
		background-color: transparent;
		box-shadow: none;
		min-width: 100%;
		opacity: 1;
		visibility: visible;
		display: block;
	}
	
	.dropdown_menu li a {
		padding: 10px 30px 10px 45px;
	}

	.cres_marketing {
		padding: 31px 0 0;
	}
	
	.cres_marketing::before {
		height: calc(100% - 48px);
	}
	
	.marketing_msg {
		padding: 127px 0 164px;
	}
	
	.cres_action_links {
		padding: 31px 0 41px;
	}

	.footer {
		padding: 55px 0 60px;
	}
	
	.footer_left {
		flex: 0 0 197px;
	}
	.footer_mid {
		flex: 0 0 calc(100% - 197px - 122px);
		padding: 0 50px 0 89px;
	}
	.footer_right {
		flex: 0 0 122px;
	}
	
	.footer_logo {
		max-width: 197px;
	}

}

@media screen and (max-width:991px) {
	.mobile_show {
		display: block !important;
	}

	.mobile_hide {
		display: none !important;
	}

	.top_menu li + li {
		border-left: 0;
		margin: 0;
		padding: 0;
	}

	.marketing_msg {
		padding: 87px 0;
	}
	
	.cres_marketing h1 {
		font-size: 3rem;
		line-height: 1.2em;
		letter-spacing: 2.7px;
		padding: 36px 30px 22px;
	}

	#page_title {
		font-size: 3rem;
	}
	
	.cres_action_links {
		padding: 33px 0 39px;
	}
	
	.action_menu li {
		flex: 0 0 calc(45% - (15px*2)/3);
	}
	
	.action_menu a {
		padding: 10.5px 38px;
	}

	.cta_section {
		padding: 60px 0 63px;
	}

	.footer_left {
		flex: 0 0 109px;
	}
	.footer_mid {
		flex: 0 0 calc(100% - 109px - 106px);
		padding: 0 30px 0 45px;
	}
	.footer_right {
		flex: 0 0 106px;
	}
	
	.footer_logo {
		max-width: 109px;
	}
	
	.social_title {
		margin: 6px 0 22px;
	}

}

@media screen and (max-width:767px) {
	.phone_show {
		display: block !important;
	}

	.phone_hide {
		display: none !important;
	}

	.container {
		padding: 0 25px;
	}
	
	.masthead {
		padding: 9px 0;
	}
	
	.top_nav {
		padding-left: 0;
		width: 100%;
	}
	
	.top_menu {
		justify-content: center;
	}
	
	.main_nav_wrap > .container {
		flex-wrap: wrap;
	}
	
	.logos {
		flex: 0 0 100%;
		border-right: 0;
		padding-right: 0;
	}
	
	.header_logo {
		margin: 0 auto;
		padding: 15px 0;
	}
	
	.main_nav {
		flex: 0 0 100%;
		padding-left: 0;
	}
	
	a.nav_toggle {
		font-size: 1.5rem;
		margin: 2px auto 19px;
	}
	
	a.nav_toggle::before {
		display: inline-block;
	}
	
	a.nav_toggle::after {
		display: none;
	}

	.main_menu > li > a {
		padding: 10px 25px;
	}
	
	.dropdown_menu li a {
		padding: 10px 25px 10px 40px;
	}

	.cres_marketing {
		padding: 28px 0 0;
	}
	
	.cres_marketing::before {
		height: 100%;
	}
	
	.marketing_msg {
		padding: 0;
		max-width: calc(100% - 22px*2);
		margin: 0 auto;
	}
	
	.cres_marketing h1 {
		font-size: 2.125rem;
		line-height: 1.25em;
		letter-spacing: 2px;
		padding: 22px 10px 14px;
	}
	
	.page_title_wrap::before {
		height: 100%;
	}
	
	#page_title {
		font-size: 2.25rem;
		line-height: 1.25em;
		padding: 63px 15px 42px;
	}

	.cres_action_links {
		padding: 26px 0 29px;
	}
	
	.action_menu {
		flex-wrap: wrap;
		max-width: calc(100% - 15px);
	}
	
	.action_menu li {
		flex: 0 0 100%;
	}
	
	.action_menu li + li {
		margin-top: 9px;
	}
	
	.action_menu a {
		padding: 25px 15px;
	}
	
	#main_content {
		padding: 25px 0 47px;
	}

	.cta_section {
		padding: 40px 0 43px;
	}
	
	.cta_section > .container {
		padding: 0 30px;
	}
	
	.cta_section p .cta_text {
		max-width: 66%;
		padding: 0 15px;
	}

	.footer {
		padding: 55px 0 51px;
	}
	
	.footer > .container {
		flex-wrap: wrap;
	}
	
	.footer_left {
		flex: 0 0 100%;
	}
	.footer_mid {
		flex: 0 0 100%;
		padding: 53px 0 49px;
	}
	.footer_right {
		margin: 0 auto;
	}
	
	.footer_logo {
		max-width: 210px;
		margin: 0 auto;
	}
	
	p.cres_copyright.small {
		line-height: 1.65em;
	}

}

/************************PAGE FIXES (Coder)********************/

/***********Landing Page*************/


/***********Gift Options Page*************/


/***********News Page*************/


/***********News Page*************/


/*********Calc Fix************/


/**********PRINT STYLES************/
@media print {
}

/********************************************************************/
/* MA Desktop and Tablet Edits */

.cres_text_resize {
    display: none;
}

#cres_content p {
    margin-bottom: 1em;
    line-height: 1.5;
}

#cres_content ul, #cres_content ol {
      margin: 15px 0 30px 0;
}

#cres_content .cres_what_how_give_open {
    margin: 20px 0 10px;
}

#cres_content #cres_plus_minus_icon + h2.bigMedTitle {
    font-size: 1.25em;
    padding: 0;
    margin: 0;
    line-height: 2.1em;
}

#cres_content #cres_pp_img,
#cres_articles_div {
    margin: 15px 0;
}

#cres_pp_img, #cres_articles_div, #cres_donor_story_div {
    background-image: none !important;
    margin: 5px 0 15px 0; 
}

#cres_articles_div {
    float: none;
}

#cres_content h3.cresDateHead,
#cres_content .cresDateHead,
#cres_content .cresPublishDate {
    font-style: italic;
    color: #000;
    font-family: inherit;
    font-weight: normal;
    font-size: 1em;
    margin-bottom: 15px;
}

.cresPublishDate {
    text-align: center;
}

#cres_news_article a[name] {
    display: block;
    visibility: hidden;
    height: 0px;
}

#cres_content input[type='text'],
#cres_content input[type='password'],
#cres_content input[type='text']:hover,
#cres_content input[type='password']:hover {
    background-image: none;
    background: #fff
}

#cres_content select,
#cres_content select:hover {
    border: 1px solid #CCCCCC;
    background: #fff;
}

#cres_content #cres_contact input[type='text'],
#cres_content #cres_contact textarea {
    -webkit-appearance: none;
    float: none;
    border: 1px solid #ccc;
    background: #fff;
    background-image: none;
    width: 100%;
    margin: 5px 0 15px;
    padding: 5px 10px;
    font-size: 1em;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

#cres_content #cres_contact input[type='text']:hover,
#cres_content #cres_contact textarea:hover {
    background: #fff;
    background-image: none;
}

#cres_content #cres_contact button,
html #cres_content #cres_contact input[type=button],
#cres_content #cres_contact input[type=reset],
#cres_content #cres_contact input[type=submit] {
    -webkit-appearance: none;
    border: 1px solid #d3dde0 !important;
    background: #d3dde0 !important;
    background-image: none;
    border-radius: 0px;
    color: #094456 !important;
    padding: 15px 25px;
    margin: 0px 10px 20px 0px;
    display: inline-block;
    width: auto;
    font-weight: 500;
    font-size: 1em;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

#cres_content #cres_contact button:hover,
html #cres_content #cres_contact input[type=button]:hover,
#cres_content #cres_contact input[type=reset]:hover,
#cres_content #cres_contact input[type=submit]:hover {
    border: 1px solid #094456 !important;
    background: #094456 !important;
    color: #fff !important;
}

#cres_content #cres_dafgift button {
	background: #d3dde0 !important;
	color: #094456 !important;
}

#cres_content #cres_dafgift button:hover {
	background: #094456 !important;
	color: #fff !important;
}

#cres_content #cres_dafgift .cres_darkcolor {
	fill: #094456;
}

#cres_content .cres_dafmailtable button {
    font-size: 0.9em;
}

#cres_content #cres_calc {
	width: 100%;
	margin: 30px auto;
}

#cres_content #cres_calc:after {
    content: " ";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

#cres_content #cres_calc > fieldset {
	float: none;
	display: block;
	margin: 0;
	position: static;
	border: none;
}

#cres_content #cres_calc > fieldset > legend {
	position: static;
	display: block;
	top: auto;
	margin: 20px 0;
}

#cres_content #cres_calc > fieldset > legend > span {
	display: block;
	margin: 0;
	position: static;
	float: none;
}

@media screen and (max-width: 1199px) {
	
	.footer {
    	padding: 120px 0 40px;
	}
	
}



/* End MA Desktop and Tablet Edits */
/********************************************************************/
#cres_content a {
	text-decoration: none;
}

#cres_content .bigMedTitle a,
#cres_content .bigMedTitle a.title_link_widget,
a.advisor_btn,
p.cres_copyright a,
.breadcrumb a,
#cres_about_wills .uppercase_text a,
#what_give_container p a,
#how_give_container p a,
#cres_donor_story  a,
#cres_news_article a,
#cres_content .cres_news_box_grid-SubTitle a,
#cres_news_box_finances ul li a{
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size .15s ease;
}



#cres_content .bigMedTitle a:hover,
#cres_content .bigMedTitle a:focus,
#cres_content .bigMedTitle a.title_link_widget:hover,
#cres_content .cres_news_box_grid-SubTitle a:hover,
#cres_news_box_finances ul li a:hover,
#cres_news_box_finances ul li a:focus,
a.advisor_btn:hover,
a.advisor_btn:focus,
p.cres_copyright a:hover, 
p.cres_copyright a:focus, 
.breadcrumb a:hover, 
.breadcrumb a:focus, 
#cres_about_wills .uppercase_text a:hover, 
#cres_about_wills .uppercase_text a:focus,
#what_give_container p a:hover, 
#what_give_container p a:focus,
#how_give_container p a:hover,
#how_give_container a:focus,
#cres_donor_story  a:hover,
#cres_donor_story  a:focus,
#cres_news_article a:hover,
#cres_news_article a:focus{
  height: 3px;  
  background-size: 100% 3px;
}

#cres_content .bigMedTitle a,
a.advisor_btn, 
p.cres_copyright a, 
.cres_copyright big a, 
.breadcrumb a,#cres_content .cres_news_box_grid-SubTitle a {
  display: inline !important;
}

p.cres_copyright {
	margin-top: 19px;
}

.cta_section {
	padding: 0px 0 113px;
}


/************* DO DESIGN EDITS ****************/

#cres_content .half_widget .bigMedTitle a {
    line-height: 1.3em;
}

.cres_news_box_grid-SubTitle, .bigMedTitle, .bigMedTitle_NL {
    margin: 0 0 15px;
}




/*START_MOBILE_STYLES*/#what_give_container {
  width: 100%;
  float:left;     
}

#how_give_flow_wrapper {
  background-image: url(../images/what_to_give/retirement_assets_v3.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 125px;  
}

#how_give_flow_wrapper #gift_text {
  position: absolute;
  width: 120px;
  left: 40px;
  top: 100px;
  text-align: center;
}

#how_give_flow_wrapper #org_text {
  position: absolute;
  width: 130px;
  top: 100px;
  left: 169px;
  text-align: center;
}

#charity_img {
  position: absolute;
  top: 41px;
  left: 199px;
}

.page_msg {
	background-image: url("/org_files/5001/images/banners/banner-002%20(1).jpg");
}.cres_ebro_btn {
  width: 210px;
  height: 60px; 
  margin: 0px;
  background-color: #003366;
  background-color: #084A4B;
  background-image: url("../images/how_to_give/cres_ebro_what_give_btn.png");
  float: left;
}
.cres_ebro_btn img{
  width: 210px;
  height: 60px;
}.cres_accessible_hidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

#blanket_overlay {
  background-color: #000000;
  opacity: 0.65;
  filter: alpha(opacity = 65);
  position: absolute;
  z-index: 99;
  top: 0px;
  left: 0px;
  width: 100%;
  display: none;
}

#jw_wrapper_1 {
  position: absolute;
  top: 110px;
  left: 0px;
  display:none;
  z-index: 100;
}

#jw_container_1_jwplayer_controlbar {
  opacity: 1 !important;
}#cres_share_actions a:hover, #cres_share_actions a:active {
cursor: pointer;
}
  
