/* Core styles can be used any where you need a generic HTML block */
body, p, button, input, select {
	font-family: var(--font-body);
}

button {
	background-color: var(--dark-blue);
	color: var(--white);
	transition: all ease 0.4s;
}

hr {
	height: 1px;
	border-bottom: 1px solid var(--black);
}

@media (hover: hover) {
	button:hover {
		background-color: var(--light-green);
	}
}

a {
	color: var(--black);
	text-decoration: underline;
    font-weight: 700;
    transition: color ease 0.4s;
}

@media (hover: hover) {
	a:hover {
		color: var(--green);
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
	font-family: var(--font-mencken);
	font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 1.25em;
    margin-bottom: 25px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
	font-family: var(--font-body-condensed);
	font-weight: 400;
    font-size: 28px;
    line-height: 1.2em;
    margin-bottom: 15px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
	font-family: var(--font-body-condensed);
	font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 1em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
	font-family: var(--font-mencken);
	font-style: normal;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.1em;
    margin-bottom: 10px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
	font-family: var(--font-body);
	font-weight: 500;
    font-size: 22px;
    line-height: 1em;
    margin-bottom: 10px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	font-family: var(--font-body-condensed);
	font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 1em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	font-family: var(--font-body);
	font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4em;
    margin-bottom: 15px;
	font-variant-ligatures: no-common-ligatures;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) a {
	text-decoration: underline;
}

: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(--black);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) blockquote > p {
	margin: 0;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table) {
	background: #fff;
	margin-bottom: var(--space-5);
	table-layout: auto;
	padding: var(--space-2);
	color: var(--black);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tbody tr td, table tr td) {
	display: table-cell;
	padding: 5px 8px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
	font-family: var(--font-body);
	font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.8em;
    margin-bottom: 20px;
	border: 1px solid var(--black);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr):nth-of-type(even){
	background-color: #f7f3ed;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol, dl) {
	font-family: var(--font-body);
	font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.8em;
    margin-bottom: 20px;
	padding-left: 40px;
}

: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) {
	padding-left: 30px;
}

: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);
	margin-left: var(--space-6);
	margin-right: var(--space-6);
	display: inline-block;
}

@media (min-width: 64em) {
	h1,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
		font-size: 50px;
		margin-bottom: 35px;
		line-height: 1.25em;
	}

	h2,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
		font-size: 41px;
		line-height: 1.2em;
		margin-bottom: 20px;
	}

	h3,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
		font-size: 30px;
		line-height: 1em;
		margin-bottom: 12px;
	}

	h4,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
		font-size: 29px;
		line-height: 1em;
		margin-bottom: 10px;
	}

	h5,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
		font-size: 24px;
		line-height: 1.1em;
		margin-bottom: 10px;
	}

	h6,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
		font-size: 19px;
		line-height: 1em;
		margin-bottom: 10px;
	}

	p,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
		font-size: 19px;
		line-height: 1.8em;
		margin-bottom: 20px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul),
	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ol) {
		font-size: 18px;
		line-height: 1.5em;
		margin-bottom: 15px;
	}
}
