/* Makes the [ PDF ] toggle button look like the plain text links around it. */
.pdf-toggle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
}

.pdf-toggle:hover {
	color: #FF0000;
	font-weight: bold;
}

.pdf-toggle[aria-expanded="true"]::after {
	content: " \25B4"; /* small up-caret while the note is open */
}

.pdf-toggle[aria-expanded="false"]::after {
	content: " \25BE"; /* small down-caret while the note is collapsed */
}

.pdf-panel {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: italic;
	color: #666666;
}
