@charset "UTF-8";

* {
    box-sizing: border-box;
}
html {
    position: relative;
    height: 100%;
    min-height: 100%;
}
body {
	width: 100%;
	background-color: #808080;
	margin: 0px;
	color: #222;
	font-size: 100%;
	font-family: Arial, Helvetica, Verdana, Univers, sans-serif;
	text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}
#wrapper { 
	width: 100%; /*85%*/
	/*max-width: 980px;*/
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100vh;
}
h1 {
	font-size: clamp(2.4rem, 2.052rem + 1.548vw, 3rem);
	line-height: 1.1;
	margin: 0;
}
h2 {
	color: #2B2B2B;
	font-size: 1.6rem;
	margin: 0;
}
h3 {
	font-size: 1.2rem;
	color: #666666;
	margin-top: 0;
	margin-bottom: 0;
}
	h3.hdr-table {
		margin-top: 1.5rem;
		margin-bottom: 0.3rem;
	}
	h3.hdr-sect {
		margin-top: 2.2rem;
	}
a.btn-skiptocontent {
    position: absolute;
    left: 3px;
    top: 0;
    width: auto;
    height: auto;
    overflow: hidden;
    background-color: #f3f3f3;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    font-size: 1rem;
    color: #000;
    padding: 8px 13px 9px 13px;
    transform: translateY(-100%);
    transition: transform 0.2s;
}
    a.btn-skiptocontent:focus {
        transform: translateY(0%);
        z-index: 10000;
    }

.toggle-button {
	display: none;
}

main {
	flex-grow: 1;
}


/* -------- BANNER AREA -------- */
.ctnr-banner {
	width: 100%;
	background-color: #000;
	border-bottom: 3px solid #fe0000;
}

/* -------- TOP NAVIGATION AREA -------- */
nav {
	width: 100%;
	background-color: #000;
    transition: transform 0.3s;
    transition-timing-function: ease;
}
    nav:has(.navbar-links.expanded) {
        transform: translateY(0%);
        z-index: 10000;
		margin-top: 10px;
    }
	.navbar-links {
		display: flex;
		width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
	}
		.navbar-links.expanded {
			display: flex;
			flex-direction: row;
			justify-content: space-between;
			align-items: flex-start;
		}
		.navbar-links > ul {
			display: flex;
			width: auto;
			flex-direction: row;
			margin: 0;
			padding: 0;
		}
		.navbar-links ul li {
			list-style: none;
			text-align: left;
		}
			.navbar-links ul li a, .navbar-links ul li a:link, .navbar-links ul li a:visited, .navbar-links ul li a:hover, .navbar-links ul li a:focus, .navbar-links ul li a:active {
				display: block;
				width: auto;
				font-size: 1rem;
				font-weight: bold;
				text-decoration: none;
				color: #dfdfdf;
				line-height: 1.2;
				padding: 1rem;
			}
			.navbar-links ul li a:hover, .navbar-links ul li a:focus {
				background-color: #555;
				color: #fff
			}

/* ----- BEGIN Drop-down menu from W3C ARIA Authoring Practices Guide ----- */
.disclosure-nav {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.disclosure-nav ul {
    background-color: #000;
    border: 1px solid #777;
    border-radius: 0;
    display: block;
    list-style-type: none;
    margin: 0;
    min-width: 200px;
    padding: 0;
    position: absolute;
    top: 100%;
    right: auto;
    left: 0;
    z-index: 9999;
}
.disclosure-nav > li {
    display: flex;
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
}
    .disclosure-nav > li:hover, .disclosure-nav > li:focus {
        background-color: var(--color-primary-lightp3);
        color: #000;
    }
.disclosure-nav ul a {
    border: 0;
    color: #000;
    display: block;
    margin: 0;
    padding: 0.5em 1em;
}
.disclosure-nav ul a:hover, .disclosure-nav ul a:focus {
    margin-bottom: 0;
}
.disclosure-nav ul a:focus {
    position: relative;
}
ul.disclosure-nav > li > ul > li > a, ul.disclosure-nav > li > ul > li > a:link, ul.disclosure-nav > li > ul > li > a:visited, ul.disclosure-nav > li > ul > li > a:link:hover, ul.disclosure-nav > li > ul > li > a:link:active {
	padding: 0.75rem 1.2rem;
}
.disclosure-nav button {
    width: auto;
    display: flex;
    align-items: center;
    background-color: transparent;
    border-width: 0px;
    border-radius: 0;
	font-size: 1rem;
	font-weight: bold;
	color: #dfdfdf;
	line-height: 1.2;
    padding: 1rem;
    cursor: pointer;
}
.disclosure-nav button::after {
    content: "";
    border-bottom: 2px solid #dfdfdf;
    border-right: 2px solid #dfdfdf;
    color: #dfdfdf;
    width: 0.4em;
    height: 0.4em;
    margin-left: 0.5em;
    transform: rotate(45deg);
}
.disclosure-nav button:focus {
    border-color: transparent;
    position: relative;
}
.disclosure-nav button:hover,
.disclosure-nav button[aria-expanded="true"], .disclosure-nav button:focus {
	color: #fff;
    background-color: #555;
}
	.disclosure-nav li:hover button, .disclosure-nav li:focus-within button {
		color: #fff;
	}
		.disclosure-nav li:hover button::after, .disclosure-nav li:focus-within button::after {
			border-bottom: 2px solid #fff;
			border-right: 2px solid #fff;
		}
/* ----- END Drop-down menu from W3C ARIA Authoring Practices Guide ----- */

.banner-contact a, .banner-contact a:link, .banner-contact a:visited, .banner-contact a:hover, .banner-contact a:active {
	display: block;
	font-size: 1rem;
	font-weight: bold;
	text-decoration: none;
	color: #dfdfdf;
	line-height: 1.2;
	padding: 1rem;
}
	.banner-contact a:hover, .banner-contact a:focus {
		background-color: #555;
		color: #fff;
	}

.ctnr-siteheader {
	background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(243,243,243,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding: 1.05rem;
}
.ctnr-siteheader div.ctnr-sitetitle {
	width: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	order: 2;
	padding: 0 0.5rem;
}
.ctnr-siteheader div.tkd-seal {
	width: auto;
	text-align: center;
}
.ctnr-siteheader div.tkd-seal img {
	width: 100%;
	min-width: 100px;
    max-width: 175px;
	height: auto;
}
.ctnr-siteheader div.tecumseh-seal {
	order: 1;
}
.ctnr-siteheader div.chinook-seal {
	order: 3;
}
.ctnr-siteheader h1 {
	color: #fff;
	text-transform: uppercase;
	font-weight: normal;
	text-align: center;
}
	.ctnr-siteheader h1 span {
		font-size: clamp(1.95rem, 1.631rem + 1.419vw, 2.5rem);
		color: #fff;
	}
	.ctnr-siteheader p {
		font-size: clamp(1.2rem, 0.91rem + 1.29vw, 1.7rem);
		color: #222;
		text-align: center;
		margin: 0;
	}

.topnavigationArea {
	background-repeat: repeat-x;
	background-color: grey;
}
.topnavigationArea .container {
	background-repeat: repeat-x;
	background-color: #000000;
	width: 980px;
}

.topnavigationgroup {
	margin: 0px;
	float: right;
	padding-right: 1px;
}
.topnavigationgroup ul {
	margin: 0px;
}

.topnavigationitem {
	max-width: 167px;
	margin-left: 0px;
	padding-left: 10px;
	padding-top: 9px;
	padding-right: 10px;
	padding-bottom: 9px;
	border-left-style: solid;
	border-left-width: 1px;
	border-right-style: none;
	border-right-width: 1px;
	color: white;
	font-size: 14px;
	font-weight: bold;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	float: left;
}

/* -------- CONTENT AREA -------- */
#pagecontent {
	width: 100%;
	background-color: #f3f3f3;
}

.ctnr-homecontent, .ctnr-maincontent {
	padding: 2.2rem 2rem 2rem 2rem;
}

	.ctnr-homecontent p {
        width: 75%;
        margin-left: auto;
        margin-right: auto;
    }

.contentleft {
	width: 600px;
	padding-left: 70px;
	padding-right: 40px;
	float: left;
	border-right-style: none;
	border-right-width: 0px;
	font-size: 14px;
	color: #404040;
	background-color: #f3f3f3;
}

.contentright {
	padding-top: 20px;
	float: left;
	padding-left: 30px;

	width: 210px;
}

.imageright {	
	margin-left: 5px;
	float: right;
}
	
.ctnr-homecontent h2 {
	text-align: center;
}
.ctnr-video-home {
	width: 100%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
	.ctnr-video-home video {
		width: 100%;
		height: auto;
		max-width: 450px;
	}

table.tbl-sched {
	width: 100%;
	border: none;
	border-spacing: 0.25rem;
}
	table.tbl-sched tr {
		vertical-align: top;
	}
	table.tbl-sched th, table.tbl-sched td {
		width: 50%;
		text-align: left;
		padding: 0.4rem 0.5rem;
	}
th {
	background-color: #666666;
	color: #fff;
}
.ctnr-instructor {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
}
	.ctnr-instructor > div {
		flex-grow: 1;
	}
		.ctnr-instructor > div:first-child {
			margin-right: 2rem;
			flex-grow: 2;
		}
.img-instructor {
	width: 222px;
	height: auto;
}
ul.std-bullet li {
	margin-bottom: 1rem;
}
.ctnr-contactinfo {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
	.ctnr-contactinfo > div:first-child {
		margin-right: 2rem;
	}
	.ctnr-contactinfo > iframe {
		margin-top: 1em;
	}
table.tbl-fees {
	width: 70%;
    background-color: #f3f3f3;
	border: 2px solid #666666;
	border-spacing: 0;
}
	table.tbl-fees th, table.tbl-fees td {
		padding: 0.6rem 0.5rem;
        font-weight: bold;
        text-align: center;
	}
	table.tbl-fees th[scope="col"] {
		vertical-align: middle;
        font-size: 1.1em;
        line-height: 1;
	}
	table.tbl-fees th[scope="row"] {
        width: 30%;
		background-color: #fe0000;
		color: #fff;
		text-align: left;
	}
    table.tbl-fees tr.bdr-bot-red td {
        border-bottom: 2px solid #fe0000;
    }
	table.tbl-fees td {
		width: 17.5%;
	}
        table.tbl-fees td span {
            font-weight: normal;
        }
	table.tbl-fees th.tbl-subhead {
		font-weight: bold;
	}
		table.tbl-fees th.tbl-subhead[scope="col"] {
			font-size: 1.1em;
		}
    table.tbl-fees th.hdr-lg[scope="col"] {
        font-size: 1.35em;
    }
    table.tbl-fees .hdr-age {
        display: table-cell;
		border-right: 2px solid #fff;
    }
    table.tbl-fees .hdr-agegroup {
        display: none;
    }
.ctnr-img-adam {
	width: auto;
	max-width: 800px;
}
	.ctnr-img-adam img {
		width: 100%;
	}


/* -------- FOOTER AREA -------- */
.footerArea {
	width: 100%;
	background-color: #000;
	border-top: 3px solid #fe0000;
}

.ctnr-footercontent {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap-reverse;
	padding: 1rem 1rem 1.2rem 1rem;
}

.copyright {
	color: #dfdfdf;
	font-size: 0.95rem;
	margin-right: 10px;
}

.ftr-memberships {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: nowrap;
	color: #dfdfdf;
	font-size: 0.95rem;
	height: 50px;
}
	.ftr-memberships img {
		width: auto;
		height: 100%;
		margin-left: 7px;
	}

.Sidebar {
	float: right;
	height: 400px;
	width: 225px;
	margin-right: 20px;
}


/* -------- MODULAR STYLES -------- */
.align-c {
	text-align: center;
}
.align-r {
	text-align: right;
}
.w-25pct {
	width: 25%;
}
.bdr-bot-white {
	border-bottom: 2px solid #fff;
}

/* -------- MEDIA QUERIES -------- */
@media screen and (max-width: 991px) {
	#wrapper { 
		width: 100%;
	}
    .ctnr-homecontent p {
        width: 85%;
    }
	table.tbl-fees {
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.navbar-links {
        display: none;
    }
        .navbar-links.expanded {
            flex-direction: column;
        }
        .navbar-links > ul {
            width: 100%;
            flex-direction: column;
        }
        .navbar-links ul li a, .navbar-links ul li a:link, .navbar-links ul li a:visited, .navbar-links ul li a:hover, .navbar-links ul li a:focus, .navbar-links ul li a:active {
            padding: 1rem 1.5rem;
        }
        .disclosure-nav ul {
            margin: 0 0 0 1.5rem;
        }
            .disclosure-nav button {
                width: 100%;
                padding: 1rem 1.5rem;
            }
            ul.disclosure-nav > li > ul > li > a, ul.disclosure-nav > li > ul > li > a:link, ul.disclosure-nav > li > ul > li > a:visited, ul.disclosure-nav > li > ul > li > a:link:hover, ul.disclosure-nav > li > ul > li > a:link:active {
                padding: 0.75rem 1.5rem;
            }
    .banner-contact {
        width: 100%;
    }
        .banner-contact a, .banner-contact a:link, .banner-contact a:visited, .banner-contact a:hover, .banner-contact a:active {
            padding: 1rem 1.5rem;
        }
	.toggle-button {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 30px;
		height: 21px;
        margin: 1.2rem 1.5rem;
	}
		.toggle-button .bar {
			height: 3px;
			width: 100%;
			background-color: #dfdfdf;
			border-radius: 10px;
		}
	.ctnr-siteheader div.tkd-seal {
		width: 25%;
	}
}

@media screen and (max-width: 710px) {
	.ftr-memberships {
		margin-bottom: 15px;
	}
}

@media screen and (max-width: 575px) {
	.ctnr-homecontent, .ctnr-maincontent {
		padding: 1.8rem 1.2rem 1.2rem 1.2rem;
	}
    table.tbl-fees {
        font-size: 0.9rem;
    }
        table.tbl-fees .hdr-age, table.tbl-fees th.tbl-subhead {
            display: none;
        }
        table.tbl-fees .hdr-agegroup {
            display: table-cell;
            background-color: #fe0000;
            color: #fff;
            font-weight: bold;
            line-height: 1.1;
        }
        table.tbl-fees th, table.tbl-fees td {
            width: 25%;
            padding: 0.6rem 0.4rem;
        }
        table.tbl-fees tr.bdr-bot-red td {
            border-bottom: none;
        }
		table.tbl-fees th.hdr-lg[scope="col"] {
			font-size: 1.25em;
		}
}

@media screen and (max-width: 556px) {
	.ctnr-siteheader div.ctnr-sitetitle {
		width: 100%;
		order: 1;
	}
	.ctnr-siteheader p {
		color: #fff;
	}
	.ctnr-siteheader div.tkd-seal {
		width: 45%;
		margin-top: 0.5rem
	}
		.ctnr-siteheader div.tkd-seal img {
			width: 55%;
		}
	.ctnr-siteheader div.tecumseh-seal {
		order: 2;
		text-align: right;
	}
	.ctnr-siteheader div.chinook-seal {
		order: 3;
		text-align: left;
	}
    .ctnr-homecontent p {
        width: 95%;
    }
}

@media screen and (max-width: 540px) {
	.ctnr-instructor {
		flex-wrap: wrap;
	}
}
