@charset "utf-8";
html {
    overflow-y:scroll;
}

body {
	background-image: url(images/sayagata.png); /* Background pattern from Subtle Patterns */
	color: rgba(68,67,67,1.00);
	font-family: 'Libre Franklin', sans-serif;
}

p {
	font-family: 'Open Sans', sans-serif;
}

.logo {
	padding: 10px 10px 10px 130px;
}
.nav {
	clear: both;
	font-size: 20px;
	font-weight: bold;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(#f4f5f6, #eeeff0);
	text-align: center;
	box-shadow: 1px 1px 4px #888888;
}

.nav li {
    display: inline;
}

.nav li:not(:first-child):before {
    content: " | ";
}

.nav li a {
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
	display: inline-block;
}

.nav li a:hover {
	box-shadow: inset 0 -2px 0 0 rgba(68,67,67,1.00);
	color: grey;
}

.active {
	box-shadow: inset 0 -2px 0 0 rgba(68,67,67,1.00);
}

.container {
	max-width: 1100px;
	min-width: 800px;
	margin-left: auto;
	margin-right: auto;
	background: white;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 1px 1px 2px #888888;
	border: 1px solid #eeeff0;
}

.content {
	padding-left: 150px;
	padding-right: 150px;
	padding-bottom: 10px;
}

.bio {
	margin-left: auto;
	margin-right: auto;
}

.bio td {
	padding: 10px;
}

.profileimg {
	border-radius: 50%;
}

a {
	color: #0070c0;
}

a:hover {
	color: #3c5478;
}

a:visited {
	color: #9a2617;
}

.external {
	color:  #107896;
}

a.external:hover {
	color: #1496bb;
}

a.external:visited {
	color: #c02f1d;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 500px;
    background-color: black;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 1;
    top: 80%;
    left: 50%;
    margin-left: -250px;
    opacity: 0;
    transition: opacity 1s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.accordion {
    background-color: #ddd;
    color: #0070c0;
	font-weight: bold;
	font-size: 16px;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
	border-radius: 10px;
    outline: none;
    transition: 0.4s;
}

.accordion:after {
    content: '\02795';
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.activea:after {
    content: "\2796";
}

.activea, .accordion:hover {
    background-color: #ccc;
}

.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
	transition: max-height 0.2s ease-out;
}