/* base (all sizes) */
@media all {

	#centerFrame {
		padding-right: 10px;
		max-width: 1200px;
	}

	.intro {
		margin: 0px;
		padding: 0px;
		border: 0px solid var(--main-border-color);
	}

	.introHead {
		margin: 0px 0px 20px 0px;
		padding: 10px 10px 5px 10px;
		border: 0px solid var(--main-border-color);
		background-color: var(--main-background-color);
		border-radius: 10px 10px 10px 10px;
	}
	.introHead h1 { display: none; }
	.introHead h2 { margin: 0px 0px 10px 0px; }
	.introHead p { font-size: 120%; font-weight: bold; }
	.introHead img { margin: 0px; padding: 0px 0px 10px 10px; border: 0px solid var(--main-border-color); }

	.introText {
		margin: 0px 0px 20px 0px;
		padding: 0px;
		border: 0px solid var(--main-border-color);
	}

    #footer {
		max-width: 100vw;
	}

	.ttable_head {
		padding: 5px 10px 5px 10px;
		background-color: var(--main-background-color);
		font-weight: bold;
		font-size: 110%;
		border: 0px solid var(--main-border-color);
		border-radius: 5px;
	}
	.ttable_date { font-size: 100%; padding: 5px; }
	.ttable_type { font-size: 100%; padding: 5px; }
	.ttable_tour { font-size: 100%; padding: 5px; }
	.ttable_state { font-size: 100%; padding: 5px; }
	.ttable_space { border: 0px solid var(--main-border-color); height: 40px; }

	tr:nth-of-type(odd) { 
		background: #eeeeeef5; 
	}

	tr {
		cursor: pointer;
	}
	td {
		text-align: left;
	}

	tr:link { text-decoration: none; color: var(--main-text-color); }
	tr:visited { text-decoration: none; color: var(--main-text-color); }
	tr:active { text-decoration: none; color: var(--main-text-color); background-color: var(--link-background-color); }
	tr:hover { text-decoration: none; color: var(--main-text-color); background-color: var(--link-background-color); }


}


@media only screen and (max-width: 800px) {

	#centerFrame {
		padding-right: 0px;
	}

	#innerNavigation {
		/* width: 90%; */
		margin: 0px 10px 0px 10px;
		padding: 20px 10px 10px 10px;
		float: none;
		text-align: left;
		background-color: #ffffff;
		border: 0px solid var(--main-border-color);
	}

	.ttable_type { display: none; }

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}

	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}
	
	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	
	/*
	Label the data
	*/
	/* td:nth-of-type(1):before { content: "First Name"; }
	td:nth-of-type(2):before { content: "Last Name"; }
	td:nth-of-type(3):before { content: "Job Title"; }
	td:nth-of-type(4):before { content: "Favorite Color"; }
	td:nth-of-type(5):before { content: "Wars of Trek?"; }
	td:nth-of-type(6):before { content: "Secret Alias"; }
	td:nth-of-type(7):before { content: "Date of Birth"; }
	td:nth-of-type(8):before { content: "Dream Vacation City"; }
	td:nth-of-type(9):before { content: "GPA"; }
	td:nth-of-type(10):before { content: "Arbitrary Data"; } */

}
