/* All duplicated CSS: from this author.css
<!--<link rel="stylesheet" href="../css/author.css">-->
*/

* {
	box-sizing: border-box;
}

.tnd_logo {
	position: absolute;
	top: 32px;
	left: 50%;
	/* Start at the center */
	transform: translateX(-50%);
	/* Shift it left by half its width */
	width: 50px;
	height: 56px;
	background-image: url("../50x50px-T-logo.svg");
	background-repeat: no-repeat;
}

.contact-or-logo {
	position: absolute;
	top: 34px;
	left: 37px;
	width: 110px;
	height: 50px;
	background-image: url("../50x50px-T-logo.svg");
	background-repeat: no-repeat;
	z-index: 1001;
	/*		z-index: 1000;*/
}

.contact-or-logo:hover {
	/*  filter: brightness(1.2) contrast(1.1) drop-shadow(2px 2px 3px #00000080);*/
	filter: brightness(0.8) contrast(1.1);
}

/* Start CCC */
@media all and (max-width: 734px) and (min-width: 0px) {
	.contact-or-logo {
		position: absolute;
		top: 20px;
		left: 20px;
		width: 110px;
		height: 56px;
		background-image: url("../50x50px-T-logo.svg");
		background-repeat: no-repeat;
	}

}

@media all and (max-width: 734px) and (min-width: 0px) {
	.contact-or-logo-work {
		position: absolute;
		top: 32px;
		left: 20px;
		width: 110px;
		height: 56px;
		background-image: url("../TIM-logo-stacked-work.svg");
		background-repeat: no-repeat;
	}

}

/* LINKS ========================================= */

.the-link a:link {
	text-decoration: none;
	color: #e8eaed;
	/*	color: #ffcc99;*/
	padding-bottom: 1px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(240, 240, 240, .40);

	transition: border-color .15s ease-out, color .15s ease-out;
	word-wrap: break-word;
	/*	cursor: pointer;*/
}

.the-link a:visited {
	color: rgba(240, 240, 240, 0.9);
	color: #e8eaed;
}

.the-link a:hover {
	text-decoration: none;
	color: rgba(240, 240, 240, 0.9);
	color: #FFA500;
	padding-bottom: 1px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(240, 240, 240, .21);
	border-bottom-color: #FFA500;
}

.the-link a:active {
	color: rgba(240, 240, 240, 0.9);
	color: #FFA500;
}

