@charset "UTF-8";
/* CSS Document */

html, body{
    height: 100%;
	width: 100%;
	margin: 0;
	margin-top:0px;
	padding: 0px;
	border: 0;

	top:0;

}

#copyright{
	
	font-family: "Avenir";
	font-size: 7px;
	color: darkgray;
	font-weight: 100;
	position: absolute;
	left: 10px;
	float: bottom;	
	margin-bottom: 6px;
	
}

#copyrightother{
		font-family: "Avenir";
	font-size: 7px;
	color: darkgray;
	font-weight: 100;
	position: absolute;
	left: 10px;
	bottom: 10px;
}

#subtitle{
	font-size: 20px;
	letter-spacing: 3.4px;	
	color: darkgray;
	line-height: 0;
	padding-left: 32px;
}
.cont {
	padding-top: 30px;
	padding-left: 100px;
	padding-right: 50px;
	position: relative;
	background-color: whitesmoke;
}

.cont:after {
  border-bottom: 4px double black;
  content: '';
  display: block;
  width: calc(100%);

}

#topname {
	font-family: "Avenir";
	font-size: 28px;
	text-decoration: none;
	color: black;
	letter-spacing: 4.2px;
	font-weight: 500;
	display: inline-block;
	margin-left: 0px;
	
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}


.menu {
	
	top:32px;
	margin-top: 12px;
	position: absolute;
	right: 40px;

}
.menu a {
	display: inline;
	margin: 0 10px;
	font-family: "Avenir";
	text-align: right;
	text-decoration: none;
	color: dimgray;
	letter-spacing: 0.8px;
	font-weight: 100;
	font-size: 14px;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}
#current {
	color: darkblue;
}
.menu a:hover {
	color: blue;
}
input {
	display: none;
}

@media screen and (max-width: 920px) {
	
	html,body{
		border:none;
	}

	.cont{
		padding-right: 0;
		padding-left: 30px;
		padding-top: 15px;
		border: none;
	}
	
	.cont:after{
		width: calc(100% - 70px);
	}
	
	#topname{
		font-size: 24px;
	}
	
.menu {

	right: 0;
	top: 0px;
	position: absolute;
	display: inline-block;
	margin: 0;
	z-index: 1;
	background-image: url("/frank_ui/mobile_unselected.svg");
	background-size: 100% 100%;
	height:50px;
	width:50px;


}

.menu a {
	
	position: relative;
	font-size: 20px;
	font-weight: 500;
	display: inline-block;
	text-align: center;
	float: right;
	border: 1px solid black;
	margin-right: 15px;
	margin-top: 20px;
	padding: 4px 10px;
	visibility: hidden;
	background-color: white;
	top: 50px;
}
input:checked + .menu {
	background-image: url("/frank_ui/mobile_selected.svg");
}
input:checked + .menu a {
	visibility: visible;
}
}
