:root {
	--table-background-color:
	rgba(255, 255, 255, 0.87);
	--primary-font-family:
	"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	--table-font-size-mobile: 18px !important;
	--table-width-mobile: 100%;
}

.gshlogo-parent {
	position: relative;
	top: 0;
	left: 0;
}

.gshlogo-image1 {
	position: relative;
	top: 0;
	left: 0;
}

.gshlogo-image2 {
	position: absolute;
	top: 0px;
	left: 0px;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@-moz-keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.fade-in {
	opacity: 0; /* make things invisible upon start */
	-webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation: fadeIn ease-in 1;
	animation: fadeIn ease-in 1;
	-webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 1s;
}

.fade-in2 {
	opacity: 0; /* make things invisible upon start */
	-webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation: fadeIn ease-in 1;
	animation: fadeIn ease-in 1;
	-webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 3s;
	-moz-animation-duration: 3s;
	animation-duration: 3s;
}

.fade-out {
	opacity: 1; /* make things invisible upon start */
	-webkit-animation: fadeOut ease-in 0; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation: fadeOut ease-in 0;
	animation: fadeOut ease-in 0;
	-webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 1s;
}

.fade-in.one {
	-webkit-animation-delay: 0.7s;
	-moz-anima tion-delay: 0.7s;
	animation-delay: 0.7s;
}

.fade-in2.two {
	-webkit-animation-delay: 0.7s;
	-moz-animation-delay: 0.7s;
	animation-delay: 0.7s;
}

.banner-back {
	background: hsla(228, 71%, 67%, 1);
	background: hsla(228, 96%, 50%, 1);
	background: linear-gradient(180deg, hsla(228, 71%, 67%, 1) 12%, hsla(216, 65%, 61%, 1) 46%, hsla(201, 88%, 56%, 1) 81%);
	background: -moz-linear-gradient(180deg, hsla(228, 71%, 67%, 1) 12%, hsla(216, 65%, 61%, 1) 46%, hsla(201, 88%, 56%, 1) 81%);
	background: -webkit-linear-gradient(180deg, hsla(228, 71%, 67%, 1) 12%, hsla(216, 65%, 61%, 1) 46%, hsla(201, 88%, 56%, 1) 81%);
	filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#7189E7", endColorstr="#5C8FDC", GradientType=1 );
}


.style6 {
	margin-right: 33px;
}

.style22 {
	text-align: right;
}

.style59 {
	font-weight: bold;
}

.style80 {
	text-align: left;
}

.style49 {
	color: #13138B;
}

.style54 {
}

.style46 {
	text-align: right;
}

.style27 {
	font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
	text-align: left;
}

.style89 {
	text-decoration: none;
}

.style96 {
	border-width: 0;
}

#table-series-info {
	width: var(--table-width-mobile);
	background-color: var(--table-background-color);
	/* font-family: var(--primary-font-family); */
	/* font-size: var(--table-font-size-mobile); */
	border: 2px gray solid;
	border-collapse: collapse;
	border-radius: 4px;
}

#table-series-info td {
		padding: 5px 10px;
		border: 1px #606060 solid;
		/* font-size: var(--table-font-size-mobile); */
	}

#race-dates-table {
	border: 2px gray solid;
	border-collapse: collapse;
	border-radius: 4px;
	width: 75%;
	font-weight: normal;
	width: var(--table-width-mobile);
	background-color: var(--table-background-color);
	font-family: var(--primary-font-family);
	font-size: var(--table-font-size-mobile);
}

	#race-dates-table td {
		padding: 3px 8px;
	}

#table-course-records {
	border: 2px gray solid;
	border-collapse: collapse;
	width: var(--table-width-mobile);
	background-color: var(--table-background-color);
	font-family: var(--primary-font-family);
	font-size: var(--table-font-size-mobile);
	margin-top: 20px;
}

#table-series-info {
	width: var(--table-width-mobile);
	background-color: var(--table-background-color);
	/* font-family: var(--primary-font-family); */
	/* font-size: var(--table-font-size-mobile); */
	border: 1px #909090 solid;
}

.left-nav {
	text-align: left;
	white-space: nowrap;
	border: thin groove #cc00cc;
	border-radius: 10px;
	border-left: 0;
	max-width: fit-content;
}


.left-nav-group {
	font-family: "Exo 2", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: white;
	background-color: #000064;
	/* border: 3px solid #003366; */
	border-bottom: 4px solid deepskyblue;
	padding: 6px 5px 9px 5px;
	vertical-align: bottom;
	text-align: left;
	margin: 8px 0 8px 0;
}

#table-series-info tbody tr td:first-child {
	font-family: var(--primary-font-family);
	font-size: 18px !important;
	max-width: 120px;
}


.left-nav-item {
	font-family: "Exo 2", Tahoma, Geneva, Verdana, sans-serif;
	font-size: 25px;
	font-weight: bold;
	/*color: #000066;
 background-color: rgba(60, 120, 220, 0.3); */
	/*color: lime;*/
	padding: 3px 10px 3px 2px;
	text-align: left;
	margin: 1px 3px 1px 3px;
	max-width: 275px;
}


.left-nav-item > a {
		text-decoration: none;
		font-size: 17px;
		color: #c2abb4;
		font-family: '', monospace;
	}

	.left-nav-item > a:visited {
		color: blue;
	}

	.left-nav-item:hover {
		background-color: white;
		text-decoration: underline;
		color: white;
		background-color: slategrey;
	}

.main-content {
	vertical-align: top;
	/*
	   background-repeat: no-repeat;
   background-image: url('Snowstorm_Page_Images/snowstorm-race-start-fade4.gif');
   background-size: 100% auto;
*/
	padding: 2px 0 0 15px;
}

#snowstorm-title {
	/*background: linear-gradient(to bottom, rgba(255, 255, 255, 0.0) 1%, rgba(255, 255, 255, 0.9) 10%); */
	padding: 5px 30px;
}

#snowstorm-title-img {
	width: 80%;
	height: auto;
	margin: 0 auto;
	border: 0;
	repeat-y: repeat;
}

#main-content-background {
	background-image: url('../pageimages/GSH-SNOW-SN38-WK03-START-OIL2.jpg');
	background-color: rgb(20 20 20 / 72%);
	background-size: 100% auto;
	background-repeat: repeat-y;
	opacity: 0.99;
	border: 1px #909090 solid;
	border-radius: 10px;
}


#intro {
	background-color: var(--table-background-color);
	width: var(--table-width-mobile);
	margin-bottom: 35px;
}

	#intro p {
		padding: 5px 15px;
		font-family: var(--primary-font-family);
		font-size: 18px;
	}

.race-dates {
	width: 100%;
	/*     margin: 5px 20px 5px 20px auto;*/
	border: 2px slateblue outset;
	font-family: Colsolas, "Courier New", Courier, monospace;
	font-size: 14px;
	font-weight: bold;
	font-style: normal;
	color: #0000FF;
	padding-right: 1px;
	padding-left: 2px;
	margin-right: 0 auto;
}

.result-link-hide {
	display: none;
}

p.into {
	font-size: 18px;
}

.race-dates td {
	text-align: left;
	border-bottom: 1px lightgray solid;
}

.race-dates caption {
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
	font-weight: bold;
	font-size: 26px;
	border-style: solid;
	border-width: 1px;
	text-align: center;
	background-color: #000064;
	color: #FFFFFF;
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

.race-dates tr:nth-child(even) {
	background-color: rgba(225, 225, 225, 0.87);
}

.race-dates tr:hover {
	background-color: aqua;
}

.race-dates a {
	text-decoration: none;
	/*	font-family: Colsolas, "Courier New", Courier, monospace; */
}

	.race-dates a:hover {
		text-decoration: underline;
		color: white;
		background-color: darkblue;
	}


.race-dates td:nth-child(4) {
	text-align: left;
}

.race-dates td:nth-child(4) a, .race-dates td:nth-child(4) a:hover {
	color: blue;
	padding-right: 50px;
}

.race-footnotes {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	font-size: 16px;
	color: green;
	font-style: italic;
	font-weight: bold;
}

.race-dates-theme {
}

.race-dates-distance {
	text-align: right;
}

.race-date-result {
	/*font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;*/
}


#race-dates-title {
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
	border: 1px #92B9FA outset;
}


.records table, {
	border-collapse: collapse;
}

.records th {
	font-weight: bold;
	text-align: center;
	background-color: beige;
}

.records caption {
	font-size: 16pt;
	vertical-align: top;
	font-weight: bold;
	color: darkblue;
	background-color: var(--table-background-color);
	border: 1px gray solid;
}

.records-child {
	/*border: 1px solid #b0b0b0;*/
	border-collapse: collapse;
	width: 100%;
}

.records td {
	vertical-align: top;
	padding-left: 10px;
	padding-right: 10px;
}

.records-child td {
	border-bottom: 1px solid #D0D0D0;
}


.div-footer {
	width: 100%;
	background-color: #393656;
	border: 2px white outset;
	color: aqua;
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
}

.div-footer a {
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: aqua;
}

.div-footer a:hover {
	color: gold;
}

.div-footer table {
	margin: auto;
	border: 0;
}

	.div-footer td {
		padding: 15px 20px 15px 20px;
	}

.style222 {
	width: 250px;
	font-family: Colsolas, monospace;
	padding-left: 10px;
}

.style224 {
	text-align: left;
}

.style225 {
	text-align: left;
}

.style234 {
	color: #008080;
	font-style: italic;
}

.style238 {
	text-align: center;
}

.style239 {
	font-family: "Segoe UI Semilight";
	text-align: right;
	color: #13138B;
}

.style241 {
	font-family: "Segoe UI Semilight";
	color: #13138B;
	border: 1px solid #E3E3D5;
}

.style242 {
	font-family: "Segoe UI Semilight";
	color: #13138B;
}

.style246 {
	font-weight: normal;
}

.style247 {
	color: #FF0000;
}

.spec-msg {
	margin: 10px 0px 20px 0px;
	border: 2px #606060 solid;
	border-radius: 5px;
	background-color: #303030;
	box-shadow: 3px 3px 2px #202020;
	font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
	color: whitesmoke;
	padding: 10px 20px;
}

ul {
	list-style-type: none;
}

ul li {
	font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
	color: whitesmoke;
	padding: 10px 20px;
}

ul li i {
	margin: 0 10px 0 -30px;
}		

.spec-msg-title {
	margin: 3px 0px;
	font-size: 24px;
	font-weight: bold;
	color: #e01111;
}

.spec-msg-date {
	margin: 3px 0px;
	font-size: 18px;
	font-weight: bold;
	color: #9ca0a4;
}

#main-content-parent {
	margon: 0;
	padding: 10px 10px;
	/* background-color: rgba(255, 255, 255, 0.65); */
	font-size: 18px;
	font-family: var(--primary-font-family);
}


.about {
	/*position: relative;
	 top: 100px;  */
	padding: 10px 20px;
	border: 2px #606060 solid;
	border-radius: 3px;
	box-shadow: 6px 6px 5px #202020;
	background-color: rgba(200, 200, 200, 0.5);
}
