/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
 .toc_table {
	background: lightgray;
	padding: 10px;
	width: 100%;
	margin-bottom: 20px;
}

.toc-heading {
	font-size: 1.25em;
	font-weight: bold;
	margin-bottom: 10px;
}

.toc-item {
	line-height: 1.75em;
}

span.noteitem {
	color: black;
	padding: 5px;
}

.notenum  {
	position: relative;
    top: -0.5em;
    font-size: 95%;
	color: rgb(31, 96, 154);
	margin-left: 5px;
	margin-right: 5px;
	font-weight: bold;
}

.toc-admin-label {
    color: black !important;
	font-size: 1.2em;
}

.toc-form-table td {
	padding-top: 0px;
	padding-bottom: 0px;
}

.toc-check-row {
	padding-top: 15px !important;
}

.toc_table .toc-h3 {
	margin-left: 20px;
}

.toc_table .toc-h4 {
	margin-left: 40px;
}

.toc_table .toc-h5 {
	margin-left: 60px;
}

.toc_table .toc-h6 {
	margin-left: 80px;
}

div#toc-foot_header {
    font-weight: bold;
    margin-bottom: 10px;
	border-top: 1px dashed rgb(170, 168, 184);
    padding-top: 10px;
}

#ded_notes .ded_note {
    margin-bottom: 10px !important;
}

#ded_notes {
	border-bottom: 1px dashed rgb(170, 168, 184);
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.ded_back a {
	font-family: Helvetica, Arial sans-serif;
	margin-left: 15px;
	font-size: 1.5em;
	text-decoration: none;
}

[data-tooltip]::before {
    /* needed - do not touch */
    content: attr(data-tooltip);
    position: absolute;
    opacity: 0;

    /* customizable */
    transition: all 0.15s ease;
    padding: 10px;
    color: #333;
    border-radius: 10px;
    box-shadow: 2px 2px 1px silver;
}

[data-tooltip]:hover::before {
    /* needed - do not touch */
    opacity: 1;

    /* customizable */
    background: rgb(213, 216, 218);
    margin-right: 20px;
	z-index: 9999;
width: 50%;
	left: 40%;
	transform: translate(-50%, 0%);
	
}

[data-tooltip]:not([data-tooltip-persistent])::before {
    pointer-events: none;
}

span.tooltip {
	display: inline-block;
	word-break: break-word;
}

span.toHide {
	display: none;
	border: 1px solid black;
	background: rgb(213, 216, 218);
	padding: 15px;
	color: black;
	margin-top: 20px;
	font-weight: normal;
}

.toc-item a {
	text-decoration: none;
}