/* (c) 2017 wilkgr */

.sidebar {
	width: 10%;
	white-space: nowrap;
	background-color: #f2f2f2;
	border-right: 1px solid black;
	overflow: hidden;
	position: fixed;
	float: left;
	height: 100%;
	padding: 1px;
	transition: all 0.4s;
	font-size: 120%;
	line-height: 150%;
}
.sidebar:hover {
	width: 50%;
	background-color: #f2f2f2;
}
.sidebar:hover ~ .td {
	border: none;
}
.sidebar:hover ~ .main {
	background-color: #5C5C5C;
}

/*************************************/
h1 {
	display: inline-block;
	border-bottom: 2px solid black;
	width: 100%;
}
h2 {
	display: inline-block;
	border-bottom: 1px solid black;
	width: 100%;
}
h3 {
	display: inline-block;
	border-bottom: 1px solid black;
	width: 100%;
}
/*************************************/
.tables {
	width: 99%;
    border-collapse: collapse;
}
.td {
	border: 1px solid lightgrey;
	padding: 4px;
}
tr {
	transition: all 0.3s;
}
tr:hover {
	background-color: #f2f2f2;
}
/*************************************/
.header {
	font-weight: bold;
	text-align: left;
}
/*************************************/
.link {
	text-decoration: none;
	color: #1f5a60;

}
.link:hover {
	text-decoration: underline;
	color: #1f8387;
}
/*************************************/
.point {
	text-decoration: none;

}
.point:hover {
	color: darkgrey;
}
.point:before {
    content: "-";
    padding-right: 8px;
    padding-left: 8px;
}
.sidebar-list {
	list-style-type: none;
    padding: 0;
    margin: 0;
}
.sidebar-list-related {
	width: 100%;
    position: absolute;
    bottom: 0px;
}
/*************************************/
.point-s { /* point-s is short for point-sidebar */
	text-decoration: none;
	width: 100%;
	transition: all 0.15s;
	display: block;
	padding: 8px 8px 8px 8px;
	color: #545454;
	border-bottom: 1px solid #b9b9b9;
}
.point-s:hover {
	background-color: #545454;
	color: white;
}
#last {
    border-bottom: none;
}
/*************************************/
body {
	margin: 0px;
	padding: 0px;
	cursor:default;
}
.main {
	transition: all 0.4s;
	margin-left: 11%;
	font-family: 'Open Sans', sans-serif;
	text-align: left;
}
/*************************************/
.pic {
	float: right;
	position: absolute;
	right: 0px;
	padding: 0px;
	margin: 0px;
	line-height: 60%;
	text-align: center;
	display: run-in;
	background-color: white;
}
/*************************************/
iframe {
	width: 100%;
	border: none;
}
/*************************************/
#lightbox {
	display: none;
	background-color: white;
	width: 100%;
	height: 90%;
	margin: auto;
}
#lightbox_image {
	width: 100%;
}
#back {
	position: fixed;
	width: 100%;
}
/*************************************/
#hidebugs {
	display: none;
}
#buglist {
	display: none;
	border: 1px solid #EDEDED;
	transition: all 0.4s;
}
/*************************************/
#helpwanted {
	position: fixed;
	width: 580px;
	height: 500px;
	left: 25%;
	top: 25%;
	background-color: white;
	border: solid 1px black;
}
#helpwantedoverlay {
	position:fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	background-color: rgba(0,0,0,0.3)
}
#helpwanted_hide {
	font-size: 1.3em;
	position: absolute;
	right: 0px;
	top: 0px;
	border-left: solid 1px black;
	border-bottom: solid 1px black;
	border-right: 0px;
	border-top: 0px;
	border-bottom-left-radius: 20px;
	background-color: white;
}