
/* FROM ORIGIANL WITHOUT LINKS BACK TO TABS - 6/13/21 */



/* ---------------- BEGIN TABS ---------------- */
#tabs {
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
#tabs li {
	float: left;
	margin: 0 .5em 0 0;
}
#tabs a {
	position: relative;
	background: #f5e9e9;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#dfb9ba), to(#000));
	background-image: -webkit-linear-gradient(top, #dfb9ba, #000);
	background-image: -moz-linear-gradient(top, #dfb9ba, #000);
	background-image: -ms-linear-gradient(top, #dfb9ba, #000);
	background-image: -o-linear-gradient(top, #dfb9ba, #000);
	background-image: linear-gradient(to bottom, #dfb9ba, #d5c6c3);

	padding: .4em 1.1em; 						/* TAB SIZING */
	float: left;
	text-decoration: none;
	color: #444;
	text-shadow: 0 1px 0 rgba(255,255,255,.8);

	-webkit-border-radius: 5px 0 0 0;
	-moz-border-radius: 5px 0 0 0;
	border-radius: 5px 0 0 0;
	-moz-box-shadow: 0 2px 2px rgba(0,0,0,.4);
	-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.4);
	box-shadow: 0 2px 2px rgba(0,0,0,.4);
}
#tabs a:hover,
#tabs a:hover::after,
#tabs a:focus,
#tabs a:focus::after {
	background-image: linear-gradient(#fff# 5%, #dfb9ba 75%);
	box-shadow: 2px 2px 10px 2px #fff;				/* DIVIDER BACKLIGHT */
}
#tabs a:focus {
	outline: 0;
	border-radius: 4px;
}
#tabs a::after {
	content:'';
	position:absolute;
	z-index: 1;
	top: 0;
	right: -.5em;
	bottom: 0;
	width: 1em;
	background: #dfb9ba;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dfb9ba));
	background-image: -webkit-linear-gradient(top, #fff, #dfb9ba);
	background-image: -moz-linear-gradient(top, #fff, #dfb9ba);
	background-image: -ms-linear-gradient(top, #fff, #dfb9ba);
	background-image: -o-linear-gradient(top, #fff, #dfb9ba);
	background-image: linear-gradient(#d8dbe8, #bba8a7);

	-moz-box-shadow: 2px 2px 2px rgba(0,0,0,.4);
	-webkit-box-shadow: 2px 2px 2px rgba(0,0,0,.4);
	box-shadow: 2px 2px 2px rgba(0,0,0,.9);
	-webkit-transform: skew(10deg);
	-moz-transform: skew(10deg);
	-ms-transform: skew(10deg);
	-o-transform: skew(10deg);
	transform: skew(10deg);
	-webkit-border-radius: 0 5px 0 0;
	-moz-border-radius: 0 5px 0 0;
	border-radius: 0 5px 0 0;
}
/* ---------------- END TABS---------------- */


/* EDITED ORIGINAL FROM BODY OF NEW_TABS.HTML */

.tabs__list {
	list-style: none;
	margin: 0;
	padding: 0 0 0 1px;
	position: relative;
	z-index: 1;
}
.tabs__list:after {
	clear: both;
	content: '';
	display: block;
	border-radius: 15px;				/* ACTIVE TAB LINK */
}
.tabs__list > li {
	float: left;
	margin: 0 .5em 0 0;
	display: inline;
}
.tabs__list > li label {
	cursor: pointer;
	font-weight: bold;
	border-radius: 15px;				/* ACTIVE TAB LINK */
}
.tabs__list > li:hover label {
	padding: 2px;
	border-radius: 6px;
	background: transparent;
	/* box-shadow: 2px 2px 10px 2px #fff; */	/* TAB LINK BACKLIGHT */
}

/* IE8 fallback */
.tabs__list > li .tabs__list--active {
	background: #ffffff;
	height: 138px;
	margin-bottom: -1px;
	margin-top: 0;
}

/* BODY ELEMENTS */
.tabs__container {
	height: auto;
	position: relative;

	-moz-border-radius: 0 5px 5px 5px;
	-webkit-border-radius: 0 5px 5px 5px;
	border-radius: 0 5px 5px 5px;

	-webkit-box-shadow: 0 8px 6px 0 #c6c4c4;
	-moz-box-shadow: 0 8px 6px 0 #c6c4c4;
	box-shadow: 0 8px 9px -4px black;

	font-size: 0;
	margin: 0;
	overflow: hidden;
	white-space: nowrap;
	z-index: 999;
}
.tabs__container > .tabs__panel {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	font-size: 14px;
	height: 0;
	padding: 0 0px;
	vertical-align: top;
	white-space: normal;
	width: 100%;
}

/* IE8 fallback */
.tabs__container > .tabs__panel--active {
	height: auto;
}
/* END EDITED ORIGINAL FROM BODY OF NEW_TABS.HTML */
