main{
	margin: 0;
	padding: 0;
	text-align: center;
	font: 0.9em Verdana ;
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
}

nav{
    margin: 10px auto;
	width: 290px;
	max-height:420px;
	padding: 10px;
	font: 0.9em Verdana ;
	text-align: left;
	background: rgba(230,240,232,0.8);
	border:1px solid #777;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
	box-shadow: 7px 7px 5px #886;
}

input{
	margin-top: 5px;
}

table{
	font: 0.9em Verdana ;
	table-layout: fixed;
	/* Change these properties */
	--border: 1px solid black;
	border-radius: 10px;
	/* Don't change these properties */
	border-spacing: 0;
	border-collapse: separate;
	border: var(--border);
}

th, td {
	border: 1px solid  #aaa;
	border-radius: 3px;
}
td {
	padding:5px;
	white-space: nowrap;
	overflow: visible;
	text-overflow: ellipsis;
}

tr:hover {
	background: rgba(220,220,242,0.8) !important;
	cursor: help;
}

td:hover {
	background: rgba(220,220,242,0.8);
}
tr:nth-child(even) {
	background-color: #ded;
}
tr:nth-child(odd) {
	background-color: #cdc;
}

p {
	padding:3px;
	font: 1.0em Verdana ;
}

#ch_info {
	z-index: 2;
	margin: 10px auto;
	min-height:200px;
	min-width: 300px;
	max-height:80%;
	padding: 10px;
	overflow: scroll;
	background: rgba(230,240,232,0.8);
	border:1px solid #777;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
	color:darkblue;
	box-shadow: 7px 7px 5px #886;
	display:none;
}
#ch_detail {
	z-index: 3;
	margin: 10px auto;
	min-height:200px;
	min-width: 200px;
	padding:10px;
	font: 0.9em Verdana ;
	text-align: left;
	background: rgba(230,240,232,0.8);
	border:1px solid #777;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
	color:darkblue;
	box-shadow: 7px 7px 5px #886;
	display:none;
	cursor: move;
}
#head{
	margin: 10px auto;
	padding:10px;
	min-height:50px;
	min-width: 880px;
	font: 1.0em Verdana ;
	text-align: center;
	background: rgba(230,240,232,1);
	border:1px solid #777;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
}

#can{
	margin: 10px auto;
	padding:10px;
	background: rgba(252,252,240,0.9);
	border:1px solid #777;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
}

#prog_inf {
	z-index: 2;
	margin: 10px auto;
	padding:10px;
	max-height:60%;
	background: #fff;
	border:1px solid #aaa;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
	box-shadow: 7px 7px 5px #886;
}

#prog {
	margin: 10px auto;
	padding:10px;
	max-height:750px;
	overflow: scroll;
	background: rgba(230,240,232,0.8);
	border:1px solid #777;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
	box-shadow: 7px 7px 5px #886;
}

#img{
	display: inline-block;
	width: 35px;
}
#desc{
	display: inline-block;
	width: 100px;
}
#value {
	display: inline-block;
	min- width: 130px;

}
.tt_lcn{
	display: inline-table;
	color: #a22;
}

.tt_lcntxt {
	display: none;
}

.tt_lcn:hover .tt_lcntxt{
	display: Table-Caption;
	position: Absolute;
	z-index: 10000;
	background-color: rgba(0, 0, 0, 0.8);
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
	padding: 4px;
	border-radius: 2px;
	font-family: Arial, Sans-Serif;
	font-size: 12px;
	color: #FFFFFF;
}

.tooltip .tooltiptext {
	visibility: hidden;
	font: 0.9em Verdana ;
	color: #222;
	background-color: rgba(200, 200, 150, 0.9);
	text-align: center;
	border-radius: 6px;
	padding: 5px;
	/* Position the tooltip */
	position: relative;
	left: -5px;
	z-index: 2;
	display: inline;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
}
