/** LINKS **/

active-link {
	color: lightgray;
	text-decoration: none;
	margin-right: 5%;
    margin: 10px;
    text-transform: uppercase;
}

/* unvisited link */
a:link {
	color: inherit;
	text-decoration: none;
	margin-right: 5%;
    margin: 10px;
    text-transform: uppercase;
}

/* visited link */
a:visited {
	color: inherit;
	text-decoration: none;
}

/* active link */
a:active {
	color: gray;
}

/* mouse over link */
a:hover {
	color: black;
	text-decoration: none;
	opacity: 0.4;
}

#selected {
	cursor: default;
	color: whitesmoke;
	border-bottom: 2px whitesmoke solid;
}

#selected:hover {
	opacity: 1;
}

a:hover:after {
	content: attr(hover_text);
}

a[title]:hover:after {
	font-family: Montserrat, Helvetica, Arial, sans-serif;
	font-size: 12px;
	content: attr(hover_text);
	padding: 4px 8px;
	top: 2vh;
	right: 50px;
	color: white;
	text-decoration: none;
	position: absolute;
	white-space: nowrap;
	z-index: -1;
}

/* selected link */
.active {
	font-weight: bold;
	color: lightgray;
	text-decoration: none;
}