@charset "UTF-8";

@font-face {
	font-family: 'WorkSans';
	src: url('../fonts/WorkSans-VariableFont_wght.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'WorkSans-Italic';
	src: url('../fonts/WorkSans-Italic-VariableFont_wght.ttf') format('truetype');
	font-weight: normal;
	font-style: italic;
}

:root {
	--root-width: 100vw;
	--page-container-padding: 20px;
	--page-container-width: calc(var(--root-width) - var(--page-container-padding) * 2);
}

html {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	overflow-y: scroll;
	font-family: WorkSans, sans-serif;
}

body {
	font-family: 'WorkSans', sans-serif;
	margin: 0;
	padding: 0;
	color: #000;
	background-color: #ffffff;
}

.page-layout {
	/*width: var(--page-container-width);*/
	min-height: 100vh;
	margin: auto;
	background-color: #fff;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	display: block;
}


.header {
	padding-left: calc((var(--root-width) - var(--page-container-width)) / 2);
	padding-right: calc((var(--root-width) - var(--page-container-width)) / 2);
	max-width: 100%;
	padding-top: 2.25em;
	padding-bottom: 0.625em;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.brand-logo {
	float: left;
}

	.brand-logo img {
		width: 145px;
		height: auto;
	}

.metanav {
	margin-left: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	float: right;
	font: 300 0.8125em/1.23077 'WorkSans',sans-serif;
}

.metanav-item {
	float: left;
	/*border-right: 1px solid #ebebeb;*/
}

	.metanav-item:first-child {
		/*border-left: 1px solid #ebebeb;*/
	}

.metanav-link {
	padding: 5px 10px;
	float: left;
	text-decoration: none;
	line-height: 1;
	color: #1c1c1c;
}

	.metanav-link:hover {
		text-decoration: none !important;
	}

	.metanav-link.is-active {
		/*background-color: #f2f2f2;*/
		font-weight: bold;
	}

.menu-button {
	width: 24px;
	height: 24px;
	display: inline-block;
	text-indent: -9999em;
	background-image: url(../img/icon-menu.png);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: 24px;
}

	.menu-button:hover {
		background-image: url(../img/icon-menu.png);
	}

.menu-button--no-hover, .menu-button--no-hover:hover {
	background-image: url(../img/icon-menu.png);
}

.site-heading {
	margin-bottom: 1px;
	padding-top: 20px;
	padding-left: calc((var(--root-width) - var(--page-container-width)) / 2);
	padding-right: calc((var(--root-width) - var(--page-container-width)) / 2);
	max-width: 100%;
}

.site-title {
	margin-top: 0;
	margin-bottom: 0;
	padding: 0 0 7px;
	font-family: Frutiger Light,sans-serif;
	font-size: 1.71429em;
	font-weight: 300;
	line-height: 1;
	border-bottom: 1px solid #bebebe;
}

.sitenav {
	font: 300 1em/1.75 'WorkSans',sans-serif;
}

.sitenav-item {
	margin-right: 15px;
	float: left;
}

	.sitenav-item:last-child {
		margin-right: 0;
	}

.sitenav-link {
	padding: 8px 4px;
	display: block;
	text-decoration: none;
	color: #333;
	border-bottom: 2px solid transparent;
}

	.sitenav-link.is-active, .sitenav-link:hover {
		/*border-top: 5px solid #646464;*/
		border-bottom: 2px solid #0a4d85;
	}



.dropdown-icon:after {
	content: "▼";
	font-size: 10px;
	display: inline-block;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-panel {
	width: 28em;
	padding: 1px;
	max-height: 30vh;
	position: absolute;
	top: 100%;
	z-index: 2;
	background-color: #fff;
	border-bottom: 5px solid #585148;
	box-shadow: 0 2px 5px #717171;
	overflow-y: auto;
	display: none;
}

.dropdown-panel--right {
	right: 0;
}

.dropdown-link {
	padding: 5px;
	display: block;
	text-decoration: none;
	color: #333;
	border-bottom: 1px solid #efefef;
}

	.dropdown-link:hover {
		background-color: #dedede;
	}

.accordion-panel {
	padding: 5px;
	display: none;
}

.contents {
	margin: 20px 0;
	padding-left: calc((var(--root-width) - var(--page-container-width)) / 2);
	padding-right: calc((var(--root-width) - var(--page-container-width)) / 2);
	max-width: 100%;
}

	.contents a {
		text-decoration: none;
		color: #646464;
	}

		.contents a:hover {
			text-decoration: underline;
			color: #646464;
		}

	.contents h2, .banner h2 {
		margin: 1em 0 .5em;
		/*color: #003366;*/
		color: #000;
		font: 300 2.1em/1.25 "WorkSans",sans-serif;
		font-weight: bold;
	}

	.contents h3 {
		color: #0a4d85;
		margin: 0;
		padding-top: 4px;
		font: 300 2em/1.25 "WorkSans",sans-serif;
	}

		.contents h3 + h5 {
			margin-bottom: 0;
		}

	.contents h5 {
		margin: 0;
		font-weight: 300;
	}

	/*.contents .list, .contents p {
		margin: .85714em 0 1.71429em;
	}*/

	.contents .list {
		padding-left: 0;
		list-style: none;
	}

		.contents .list li {
			margin-top: 5px;
		}

	.contents .list-link {
		padding-left: 15px;
		padding-bottom: 5px;
		display: block;
		background-image: url(../img/list-link-bullet.png);
		background-position: left 3px;
		background-repeat: no-repeat;
	}

	.contents .responsive-image {
		width: 100%;
	}

	.contents .footnote {
		margin-top: 1.71429em;
		font-size: .85714em;
	}

.back-to-top {
	display: inline-block !important;
	padding: 7px 30px 5px 0 !important;
	background-image: url(../img/icon-back-to-top.png) !important;
	background-size: 12px !important;
	background-position: 100% !important;
	background-repeat: no-repeat !important;
	color: #000 !important;
	cursor: pointer !important;
	text-underline-offset: 0.3125rem !important;
}

	.back-to-top:hover, .back-to-top:focus {
		color: #000 !important;
		text-decoration: underline !important;
		text-decoration-color: #003366 !important;
		text-decoration-thickness: 0.0625rem !important;
	}

.contents table {
	width: 100%;
	margin: 1em 0;
	border-collapse: collapse;
}

	/*.contents table tr:nth-child(odd) {
		background-color: #f9f9f9;
	}

	.contents table tr:nth-child(even) {
		background-color: #f2f2f2;
	}*/

	.contents table tr {
		background: #fff;
	}

		.contents table tr:hover {
			background: #fff;
		}

	.contents table td, .contents table th {
		padding: 5px;
		border-top: 1px solid #222;
		border-bottom: 1px solid #222;
		border-right: 1px solid #fff;
		border-left: 1px solid #fff;
		vertical-align: middle;
	}





	.contents table th {
		text-align: right;
		vertical-align: bottom;
	}

		.contents table th:first-of-type {
			text-align: left;
		}



	.contents table .f {
		min-width: 40%;
	}

	.contents table .f, .contents table a {
		display: inline-block;
	}

.all-funds-table, .daily-yields-table {
	color: #646464 !important;
	font: 0.975rem / 1.25rem 'WorkSans', sans-serif;
}

	.all-funds-table .heading, .daily-yields-table .heading {
		color: #1c1c1c;
		font: bold 0.875rem / 1.25rem 'WorkSans', sans-serif;
	}

	.all-funds-table a {
		color: #646464 !important;
	}

		.all-funds-table a:hover, .daily-yields-table a:hover {
			color: #1c1c1c !important;
			background: transparent;
		}

.pagenav {
	margin: 40px 0 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: left;
	-webkit-justify-content: left;
	-ms-flex-pack: left;
	justify-content: left;
}

.pagenav-link {
	font: 300 1em/1.75 "WorkSans",sans-serif;
	color: #000 !important;
	padding-top: 0em;
	padding-bottom: 0.5em;
	margin-top: -0.03875em;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 0.625em;
	margin-right: 20px;
	max-width: 37.5em;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	outline: none;
	cursor: pointer;
	border-bottom: 2px solid transparent;
}

	.pagenav-link.is-active {
		text-decoration: none !important;
		font-weight: 600;
	}

	.pagenav-link.is-active, .pagenav-link:hover {
		border-bottom-color: #0a4d85;
		text-decoration: none !important;
	}

.inner-content {
	margin-left: 0em;
	padding-top: 2em !important;
	padding-bottom: 0em;
}

.disclaimer {
	padding-left: calc((var(--root-width) - var(--page-container-width)) / 2);
	padding-right: calc((var(--root-width) - var(--page-container-width)) / 2);
	max-width: 100%;
	margin-top: 80px;
	margin-bottom: auto;
	color: #000;
	font: 0.875rem / 1.25rem "WorkSans",sans-serif
}

hr {
	height: 1px;
	margin: 0;
	border: 0;
	background-color: #000;
}

.border-top {
	border-top: 1px solid #dedede;
}

.sep:before {
	content: "|";
	margin: 0 8px;
	display: inline-block;
}

.icon-dropdown:after {
	content: "▼";
	margin-left: 4px;
	font-size: 8px;
}

[align=right] {
	text-align: right !important;
}

[align=center] {
	text-align: center !important;
}

.tooltip {
	position: absolute !important;
	top: -9999em;
	left: -9999em;
}

.grid-row {
	margin: 0;
}

.grid-col {
	width: 100%;
	float: none;
}

.grid-col--one-half {
	width: calc(50% - 40px);
}

.grid-col--one-third {
	width: calc(33.3334% - 40px);
}

.grid-col--two-third {
	width: calc(66.6667% - 40px);
}

[class*=grid-col-] {
	margin: 20px;
	float: left;
}

.cf:after, .cf:before {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.show-on-mobile {
	display: none;
}

.show-values-mobile {
	display: none;
}

.daily-yield_unsubsidized {
	position: absolute;
	top: 22px;
	margin: 0 !important;
}

.pos-relative {
	position: relative !important;
}

.td-names {
	width: 50%;
	padding-left: 4px;
	margin-right: 0px !important;
}

.td-names_whitespaced {
	white-space: pre;
	width: 50%;
	padding-left: 4px;
	margin-right: 0px !important;
}


/*** JAV UPDATES ***/

.dropdown {
	position: relative;
	/*display: inline-block;*/
}

.dropdown-button {
	padding: 10px 20px;
	border-left: 0px;
	border-right: 0px;
	border-top: 0px;
	border-bottom: 1px solid #bebebe;
	background-color: transparent;
	cursor: pointer;
	width: 100%;
	text-align: left;
}

.dropdown-content {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
	height: auto;
	overflow-x: hidden;
	overflow-y: scroll;
	z-index: 1;
}

	.dropdown-content ul {
		margin: 0;
		padding: 0;
	}

		.dropdown-content ul li {
			list-style: none;
			color: #1c1c1c;
			font: 0.975rem / 1.25rem 'WorkSans',sans-serif;
			border-bottom: 1px solid #e6e6e6;
			background-color: #fff;
		}

			.dropdown-content ul li a {
				border: 0px;
				padding: 15px 20px;
				text-decoration: none;
				color: #333;
			}

.grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.grid-item {
	padding: 20px;
}

	.grid-item .dropdown {
		padding-top: 20px;
		width: 100%;
	}

.arrowicon {
	width: 16px;
	height: 16px;
	float: right;
	fill: rgb(230, 0, 0);
	transform: rotate(180deg);
	transition: transform 0.3s ease-in-out;
	margin-right: -10px;
}

/* Adjust the SVG icon rotation when dropdown is expanded */
.is-expanded .arrowicon {
	transform: rotate(360deg);
}

.header-underline {
	height: 4px;
	width: 40px;
	background-color: #e60000;
	display: block;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.container {
	max-width: var(--page-container-width);
	margin: 0 auto;
	padding: 15px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}

.col {
	flex: 1;
	padding: 15px;
	box-sizing: border-box;
}

/* Define responsive classes for columns from 1 to 12 */
.col-1 {
	flex: 0 0 8.33333%;
	max-width: 8.33333%;
}

.col-2 {
	flex: 0 0 16.66667%;
	max-width: 16.66667%;
}

.col-3 {
	flex: 0 0 25%;
	max-width: 25%;
}

.col-4 {
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
}

.col-5 {
	flex: 0 0 41.66667%;
	max-width: 41.66667%;
}

.col-6 {
	flex: 0 0 50%;
	max-width: 50%;
}

.col-7 {
	flex: 0 0 58.33333%;
	max-width: 58.33333%;
}

.col-8 {
	flex: 0 0 66.66667%;
	max-width: 66.66667%;
}

.col-9 {
	flex: 0 0 75%;
	max-width: 75%;
}

.col-10 {
	flex: 0 0 83.33333%;
	max-width: 83.33333%;
}

.col-11 {
	flex: 0 0 91.66667%;
	max-width: 91.66667%;
}

.col-12 {
	flex: 0 0 100%;
	max-width: 100%;
}

.text-wrapper {
	padding-top: 0.01294em;
	padding-bottom: 0em;
	margin-bottom: -0.01882em;
	margin-right: 30%;
	margin-left: 8%;
}

.contact-us-text-wrapper {
	font: 300 1.0625em/1.58824 'WorkSans',sans-serif;
}

.contact-us-get-in-touch {
	margin-top: 2.5rem;
}

	.contact-us-get-in-touch a {
		height: 3.125rem;
		border-radius: 0.125rem;
		padding: 0rem 24px;
		margin-right: 20px;
		margin-bottom: 1.25rem;
		display: inline-grid;
		grid-template: 'texts icon' auto / 1fr auto;
		align-items: center;
		box-sizing: border-box;
		background-color: rgba(0,0,0,0);
		max-width: 100%;
		box-shadow: 0 0 0 1px #1c1c1c inset;
		text-decoration: none;
	}

		.contact-us-get-in-touch a:hover, .contact-us-get-in-touch a:focus {
			box-shadow: 0 0 0 2px #1c1c1c inset;
			text-decoration: none;
		}

		.contact-us-get-in-touch a span.actionbtn__title {
			line-height: 1.125rem;
			text-align: left;
			grid-area: texts;
			color: #1c1c1c;
			text-overflow: ellipsis;
			white-space: nowrap;
			max-width: 100%;
			overflow: hidden;
			color: #1c1c1c;
			font: bold 0.875rem / 1rem 'WorkSans',sans-serif;
		}

/* Style for the user card container */
.profile-card {
	display: flex;
	padding: 10px;
	margin: 10px;
	/*border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
	background-color: #fff;
}

/* profile avatar */
.profile-avatar {
	flex: 1;
	margin-right: 20px;
	max-width: 100px;
}

	.profile-avatar img {
		padding-top: 4px;
		width: 100px; /* Fixed width */
		height: 100px; /* Fixed height */
		object-fit: cover; /* Maintain aspect ratio and cover the container */
		border-radius: 50%; /* Makes it a circle */
	}

/* Style for the user information (Name, Title, Phone, Email) */
.profile-info {
	flex: 3;
}

	/* Additional styles for text */
	.profile-info h3 {
		font-size: 1.5rem;
		margin: 0;
	}

	.profile-info p {
		margin: 15px 0;
	}

	.profile-info a {
		align-items: center;
		color: #da0000;
		cursor: pointer;
		text-underline-offset: 0.125rem;
	}

		.profile-info a:hover, .profile-info a:focus {
			color: #b30000;
			text-decoration: underline;
			text-decoration-thickness: 0.0625rem;
		}

.profile-contact-icon {
	margin-right: 10px;
	width: 20px;
	height: 15px;
	display: flex;
	align-items: center;
	color: #333;
}

.d-none {
	display: none !important;
}

.v-hidden {
	visibility: hidden;
}

/* Footer styles */
.footer {
	padding-top: 20px;
	padding-bottom: 20px;
	max-width: 100%;
	text-decoration: none;
	background-color: #f4f3ee;
	color: #646464;
	margin-top: 50px;
	border-top: 1px solid #ebebeb;
	font: .875rem / 1.25rem 'WorkSans',sans-serif;
}

.footer-content {
	margin: 0 auto;
	padding-left: calc((var(--root-width) - var(--page-container-width)) / 2);
	padding-right: calc((var(--root-width) - var(--page-container-width)) / 2);
}

.footer a {
	font: .875rem / 1.25rem 'WorkSans',sans-serif;
	color: #646464;
	/*padding-right: 10px;*/
	text-decoration: none;
	text-underline-offset: 0.3125rem;
}

	.footer a:not(:first-child) {
		color: #646464;
		/*padding-left: 10px;*/
		/*border-left: 1px solid #1c1c1c;*/
		content: '';
		margin-top: 0 !important;
	}

	.footer a:hover, .footer a:focus {
		color: #1c1c1c;
		text-decoration: underline;
		text-decoration-color: #003366;
		text-decoration-thickness: 0.0625rem;
	}

.footer-disclaimer {
	margin-top: 1.5rem;
	margin-bottom: .75rem;
}

	.footer-disclaimer p {
		margin-bottom: 5px;
		color: #646464;
		font: 300 0.75rem / 1.245rem 'WorkSans',sans-serif;
	}

.fund-details, .daily-fund-chart, .footnote-container {
	padding: 15px;
}

.copyright {
	color: #646464;
	font: 300 0.75rem / 1.245rem 'WorkSans',sans-serif;
	padding-top: 5px;
}


/* Default banner height */
.banner {
	position: relative;
	display: block;
	margin-top: 1px;
	padding-top: 0;
}

.banner-img-wrapper {
	margin-bottom: 0;
	overflow: hidden;
	width: 100%;
	padding-top: 0 !important;
	background: url("../img/rowers.jpg") no-repeat;
}

.banner-img {
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	width: 100%;
	object-fit: cover;
	font-family: "object-fit: cover";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	opacity: .9;
}

.banner-text-wrapper {
	padding-left: calc((var(--root-width) - var(--page-container-width)) / 2);
	padding-right: calc((var(--root-width) - var(--page-container-width)) / 2);
	max-width: 100%;
}

.banner-text {
	position: absolute;
	top: 60%;
	left: calc((var(--root-width) - var(--page-container-width)) / 2);
	transform: translate(-calc((var(--root-width) - var(--page-container-width)) / 2), -50%);
	text-align: center;
	padding: 30px 30px;
	background: #fff;
}

	.banner-text h2 {
		margin: 0px;
	}

.headline_hl_m {
	color: #1c1c1c;
	font: 300 2rem / 2.5rem 'WorkSans',sans-serif;
	margin: 0;
}

.headline_hl {
	display: block;
	word-break: break-word;
}

.headline-wrapper {
	background: linear-gradient(#da0000, #da0000) no-repeat left center;
	padding-left: 20px;
	background-size: 4px calc(100% - .9375rem);
	display: block;
	position: relative;
}

@media (max-width:1024px) {

	.metanav-item {
		border: 0 !important;
	}

	.site-heading {
		position: relative;
	}

		.site-heading .menu-button {
			position: absolute;
			z-index: 1;
		}

	.site-title {
		padding-left: 32px;
	}

	.sitenav-item {
		margin: 0;
		float: none !important;
		display: block;
		border-bottom: 1px solid #efefef;
	}

	.sitenav-link {
		display: block;
	}

		.sitenav-link, .sitenav-link:hover {
			border: 0 !important;
		}

			.sitenav-link.is-active {
				background-color: #646464;
				color: #fff;
			}

	.all-funds-table a.dropdown-link {
		font-weight: bold;
	}
}

@media screen and (max-width:737px) {
	.contents .responsive-image {
		width: auto;
		max-width: 100%;
	}
}

@media screen and (max-width:767px) {
	.daily-yields-table td:nth-child(2):before {
		content: "Ticker";
	}

	.pagenav {
		display: block;
		border: 0;
	}
}

@media (max-width:767px) {
	.pagenav-link {
		float: none;
		display: grid;
		border-bottom: 1px solid #000;
	}

		.pagenav-link:hover {
			border-bottom: 1px solid #000;
		}

		.pagenav-link.is-active {
			border-bottom: 2px solid #003366 !important;
		}
}

@media screen and (max-width:767px) {
	.daily-yields-table td:nth-child(1) {
		font-weight: bold;
		margin-top: 2rem;
	}

	.daily-yields-table td:nth-child(2):before {
		content: "Ticker";
	}

	.daily-yields-table td:nth-child(4):before {
		content: "Investor type";
	}

	.daily-yields-table td:nth-child(5):before {
		content: "Minimum initial investment";
	}

	.daily-yields-table td.hide-on-mobile {
		display: none;
	}

		.daily-yields-table td.hide-on-mobile:before {
			content: " ";
			display: none;
		}

	.all-funds-table tr:first-child, .daily-yields-table tr:first-child {
		display: none;
	}

	.all-funds-table td[colspan], .daily-funds-table td[colspan] {
		width: 100%;
		display: block;
	}

	.all-funds-table td, .daily-yields-table td {
		border: 0 !important;
		display: block;
	}

		.all-funds-table td:nth-child(2) > *, .all-funds-table td:nth-child(3) > *, .all-funds-table td:nth-child(4) > *, .all-funds-table td:nth-child(5) > *, .all-funds-table td:nth-child(6) > *, .all-funds-table td:nth-child(7) > *, .all-funds-table td:nth-child(8) > *, .all-funds-table td:nth-child(9) > *, .all-funds-table td:nth-child(10) > *, .all-funds-table td:nth-child(11) > *, .all-funds-table td:nth-child(12) > *, .all-funds-table td:nth-child(13) > *, .all-funds-table td:nth-child(14) > *,
		.daily-yields-table td:nth-child(2) > *, .daily-yields-table td:nth-child(3) > *, .daily-yields-table td:nth-child(4) > *, .daily-yields-table td:nth-child(5) > *, .daily-yields-table td:nth-child(6) > *, .daily-yields-table td:nth-child(7) > *, .daily-yields-table td:nth-child(8) > *, .daily-yields-table td:nth-child(9) > *, .daily-yields-table td:nth-child(10) > *, .daily-yields-table td:nth-child(11) > *, .daily-yields-table td:nth-child(12) > *, .daily-yields-table td:nth-child(13) > *, .daily-yields-table td:nth-child(14) > * {
			margin: 0 4px;
			display: inline-block;
			vertical-align: top;
		}

		.all-funds-table td:nth-child(2) br, .all-funds-table td:nth-child(3) br, .all-funds-table td:nth-child(4) br, .all-funds-table td:nth-child(5) br, .all-funds-table td:nth-child(6) br, .all-funds-table td:nth-child(7) br, .all-funds-table td:nth-child(8) br, .all-funds-table td:nth-child(9) br, .all-funds-table td:nth-child(10) br, .all-funds-table td:nth-child(11) br, .all-funds-table td:nth-child(12) br, .all-funds-table td:nth-child(13) br, .all-funds-table td:nth-child(14) br,
		.daily-yields-table td:nth-child(2) br, .daily-yields-table td:nth-child(3) br, .daily-yields-table td:nth-child(4) br, .daily-yields-table td:nth-child(5) br, .daily-yields-table td:nth-child(6) br, .daily-yields-table td:nth-child(7) br, .daily-yields-table td:nth-child(8) br, .daily-yields-table td:nth-child(9) br, .daily-yields-table td:nth-child(10) br, .daily-yields-table td:nth-child(11) br, .daily-yields-table td:nth-child(12) br, .daily-yields-table td:nth-child(13) br, .daily-yields-table td:nth-child(14) br {
			display: none;
		}

		.all-funds-table td:nth-child(2):before, .all-funds-table td:nth-child(3):before, .all-funds-table td:nth-child(4):before, .all-funds-table td:nth-child(5):before, .all-funds-table td:nth-child(6):before, .all-funds-table td:nth-child(7):before, .all-funds-table td:nth-child(8):before, .all-funds-table td:nth-child(9):before, .all-funds-table td:nth-child(10):before, .all-funds-table td:nth-child(11):before, .all-funds-table td:nth-child(12):before, .all-funds-table td:nth-child(13):before, .all-funds-table td:nth-child(14):before,
		.daily-yields-table td:nth-child(2):before, .daily-yields-table td:nth-child(3):before, .daily-yields-table td:nth-child(4):before, .daily-yields-table td:nth-child(5):before, .daily-yields-table td:nth-child(6):before, .daily-yields-table td:nth-child(7):before, .daily-yields-table td:nth-child(8):before, .daily-yields-table td:nth-child(9):before, .daily-yields-table td:nth-child(10):before, .daily-yields-table td:nth-child(11):before, .daily-yields-table td:nth-child(12):before, .daily-yields-table td:nth-child(13):before, .daily-yields-table td:nth-child(14):before {
			display: inline-block;
			width: 50%;
			padding-left: 8px;
		}

		.all-funds-table td:nth-child(1):before,
		.daily-yields-table td:nth-child(1):before {
			margin-top: 10px;
		}

		.all-funds-table td:nth-child(2):before {
			content: "Latest Monthly Holdings";
		}

		.all-funds-table td:nth-child(3):before {
			content: "Holdings History";
		}

		.all-funds-table td:nth-child(4):before {
			content: "Factsheet";
		}

		.all-funds-table td:nth-child(5):before {
			content: "Prospectus**";
		}

		.all-funds-table td:nth-child(6):before {
			content: "Statement of Additional Information";
		}

		.all-funds-table td:nth-child(7):before {
			content: "Annual Reports";
		}

		.all-funds-table td:nth-child(8):before {
			content: "Semi-Annual Reports";
		}

		.all-funds-table td:nth-child(9):before {
			content: "SEC Holdings Filings (N-MFP)";
		}

	.contents table td, .contents table th {
		text-align: left !important;
	}
}

@media (max-width:767px) {
	.grid-row {
		margin: 0;
	}

	.show-values-mobile {
		/*display: block;*/
		/* color:red; */
	}

	.hide-values-mobile {
		display: none;
	}
}

@media (max-device-width:737px) {
	[class*=grid-col-] {
		width: 100%;
		margin: 0;
		float: none;
	}
}

@media (max-width:1024px) {
	.show-on-mobile {
		display: block;
	}

	.hide-on-mobile {
		display: none;
	}

	.table-container {
		overflow-x: auto;
	}
}

@media screen and (max-width:767px) {
	.daily-yield {
		position: absolute;
	}
}

@media (max-width: 768px) {
	.grid-container {
		grid-template-columns: 1fr; /* Single column */
	}
}

@media (max-width: 768px) {
	.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
	.col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 1440px) {

	:root {
		--page-container-padding: 75px;
		--page-container-width: min( calc(var(--root-width) - var(--page-container-padding) * 2), 1290px );
	}

	.contents p {
		font: 300 1.0625em/1.58824 "WorkSans",sans-serif;
		font-weight: normal;
		padding-top: 0.01294em;
		padding-bottom: 0em;
		margin-bottom: -0.01882em;
	}
}

@media (max-width: 1280px) {
	.contents p {
		font: 300 1em/1.625 "WorkSans",sans-serif;
		font-weight: normal;
		padding-top: 0.0225em;
		padding-bottom: 0em;
		margin-bottom: -0.01em;
	}
}

@media (max-width: 1024px) {

	.contents p {
		font: 300 1em/1.625		, sans-serif;
		color: #1c1c1c;
		padding-top: 0.0225em;
		padding-bottom: 0em;
		margin-bottom: -0.01em;
	}
}


@media (max-width: 1290px) {
	.contents h2, .banner h2 {
		font-size: 3rem;
		line-height: 3.5625rem;
	}
}

@media (max-device-width:1024px) {
	.page-layout {
		width: 100%;
	}
}

@media (max-width:1024px) {

	:root {
		--root-width: calc(100vw - var(--page-container-padding) * 2);
		--page-padding: 20px; /* Adjust padding for smaller screens */
	}

	.page-layout {
		width: 100%;
	}

	.contents h2, .banner h2 {
		font: 500 1.8em/1.5 'WorkSans',sans-serif !important;
	}

	.banner-text {
		position: absolute;
		top: 50%;
		left: calc((var(--root-width) - var(--page-container-width)) / 2);
		transform: translate(-calc((var(--root-width) - var(--page-container-width)) / 2), -50%);
		text-align: center;
		padding: 15px;
	}
}

@media (max-width: 767px) {

	.banner-text {
		position: absolute;
		top: 35%;
		left: calc((var(--root-width) - var(--page-container-width)) / 2);
		transform: translate(-calc((var(--root-width) - var(--page-container-width)) / 2), -50%);
		text-align: center;
		padding: 10px 10px;
	}

	.banner-img-wrapper {
		height: 8rem !important;
	}

	.headline_hl_m {
		color: #1c1c1c;
		font: 300 1.5rem / 2rem 'WorkSans',sans-serif;
	}
}

@media (min-width: 768px) {
	.banner-img-wrapper {
		height: 14rem;
	}
}

@media (min-width: 1024px) {
	.banner-img-wrapper {
		height: 20rem;
	}

	.banner-text {
		position: absolute;
		top: 60%;
		left: calc((var(--root-width) - var(--page-container-width)) / 2);
		transform: translate(-calc((var(--root-width) - var(--page-container-width)) / 2), -50%);
		text-align: center;
		padding: 15px;
	}
}

@media (min-width: 1280px) {
	.banner-img-wrapper {
		height: 23rem;
	}

	.headline_hl_m {
		font-size: 3rem;
		line-height: 3.5625rem;
	}

	.banner-text {
		position: absolute;
		top: 50%;
		left: calc((var(--root-width) - var(--page-container-width)) / 2);
		transform: translate(-calc((var(--root-width) - var(--page-container-width)) / 2), -50%);
		text-align: center;
		padding: 20px 20px;
	}
}

@media (min-width: 1280px) and (max-width: 1600px) {
	.banner-text {
		position: absolute;
		top: 50%;
		left: calc((var(--root-width) - var(--page-container-width)) / 2);
		transform: translate(-calc((var(--root-width) - var(--page-container-width)) / 2), -50%);
		text-align: center;
	}
}


@media (min-width: 1440px) {
	.banner-img-wrapper {
		height: 31.25rem;
	}
}

@media (min-width: 1601px) {
	.banner-text {
		position: absolute;
		top: 50%;
		left: calc((var(--root-width) - var(--page-container-width)) / 2);
		transform: translate(-calc((var(--root-width) - var(--page-container-width)) / 2), -50%);
		text-align: center;
	}
}

.hidden {
	display: none !important;
}