/* Core styles can be used any where you need a generic HTML block */

body {
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    text-rendering: optimizeLegibility;
}

ul, ol, dl {
    margin-bottom: 0;
    text-rendering: optimizeLegibility;
}

body, h1, h2, h3, h4, h5, h6, p, button, input, select {
	font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
}

button {
	background-color: var(--dark-blue);
	color: var(--white);
}

a {
	color: var(--grey);
	text-decoration:underline;
    font-family: var(--sofia);
	font-weight: 700;
    transition: color ease 0.4s;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
	color:var(--grey-dark);
    font-family:var(--georgia);
    font-style: normal;
	font-weight: normal;
    font-size:32px; 
    line-height:1.25; 
    margin-bottom:25px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
	color:#494949;
    font-family:var(--sofia);
	font-weight: 600;
	font-size: 21px;
    line-height: 1.4;
    margin-bottom:15px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
    color:var(--grey-dark);
    font-family:var(--georgia);
    font-style: normal; 
    font-weight:normal; 
    font-size:23px; 
    line-height:1.1;
    margin-bottom:15px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
    color:var(--grey-dark);
    font-family:var(--sofia);
	font-weight: 700;
    font-size:19px; 
    line-height:1.3;
    margin-bottom:10px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
	color:var(--dark-blue);
    font-family:var(--sofia);
	font-weight: 700;
    font-size:21px; 
    line-height:1; 
    margin-bottom:10px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	color:var(--grey-dark);
    font-family:var(--sofia);
	font-weight: 700;
    font-size:18px; 
    line-height:1; 
    margin-bottom:10px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	color:var(--grey);
    font-family:var(--sofia);
    font-style: normal; 
    font-weight:normal; 
    font-size:var(--text-base); 
    line-height:1.4; 
    margin-bottom:15px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) blockquote {
	margin: var(--space-12) 0;
	padding: var(--space-6) var(--space-8);
	border-left: 4px solid var(--primary-color-500);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) blockquote > p {
	margin: 0;
	font-size: var(--text-2xl);
	font-style: italic;
	line-height: var(--leading-snug);
	color: var(--gray-600);
}

/* 602693 fix for HR being invisible */
:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(hr) {
	border-width: 1px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table) {
	margin-bottom:20px;
    border-collapse: collapse;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tbody tr td, table tr td):not(.cust-col) {
	border: 1px solid var(--black);
    padding: 5px 8px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr):not(.section-title, .group) {
	color:var(--grey-alt-2);
    font-family:var(--sofia);
    font-style: normal; 
    font-weight:normal; 
    font-size:var(--text-base); 
    line-height:1.8; 
    margin-bottom:20px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr):not(.section-title):nth-of-type(even){
	background-color: var(--grey-light);
}
:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol, dl) {
	color:var(--grey);
    font-family:var(--sofia);
    font-style: normal; 
    font-weight:normal; 
    font-size:var(--text-base); 
    line-height:1.8; 
    margin-bottom:20px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol) {
	margin: 1em 0;
	padding-left: var(--space-10);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
	color:var(--grey);
    font-family:var(--sofia);
    font-style: normal; 
    font-weight:normal; 
    font-size:var(--text-base); 
    line-height:1.8; 
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul) {
	list-style-type: disc;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ol) {
	list-style-type: decimal;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul li ul) {
	list-style-type: circle;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul ul ul) {
	list-style-type: square;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul li ul, ul li ol, ol li ol) {
	margin: 0;
}

:is(h1, h2, h3, h4, h5, h6) > a {
	font: inherit;
	color: inherit;
	text-decoration: none;
}

.contentRender_name_plugins_core_textbox img {
	margin-bottom: var(--space-4);
	display: inline-block;
}

@media (hover: hover) {
	button:hover {
		background-color: var(--dark-blue);
	}

	a:hover {
		color: var(--dark-blue);
	}

	:is(h1, h2, h3, h4, h5, h6) > a:hover {
		color: inherit;
	}
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
    	font-size:60px; 
    	margin-bottom:35px;
		line-height:1.1; 
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
        font-size:32px; 
    	line-height:1.2; 
    	margin-bottom:20px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
        font-size:27px; 
    	line-height:1; 
    	margin-bottom:12px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
        font-size: 23px;
    	line-height: 1.3; 
    	margin-bottom:10px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
        font-size:25px; 
    	line-height:1.2; 
    	margin-bottom:10px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
    	font-size:20px; 
    	line-height:1; 
    	margin-bottom:10px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) p {
        font-size:18px; 
        line-height:1.6; 
        margin-bottom:20px;
    }
    
	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol, dl) {
        font-size:18px; 
        line-height:1.5; 
        margin-bottom:15px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li { 
        font-size:18px; 
        line-height:1.5;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) table {
        margin-bottom:15px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr, table td) {
        font-size:18px;
        line-height:1.5;
    }
}