<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">form
{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

form select
{
	font-family: "lato", Arial, Helvetica, sans-serif;
    font-size: 13pt;
    color: #5d5d5d;
	border: 1px solid #bbb4ad;
    padding: 7px 10px;
	background-color: #ffffff;
	transition: background-color 150ms;
}

form select:hover
{
	background-color: #F7F7F7;
}

form &gt; div
{
	display: flex;
	flex-flow: column nowrap;
	margin-right: 20px;
}

form select:last-of-type
{
	margin-right: 0;
}

#rep_output_container
{
	margin-top: 15px;
	margin-bottom: 15px;
	border: 1px solid #bbb4ad;
    padding: 30px;
}

#rep_output_container .loading
{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px;
}

#rep_output_container h2
{
	margin-bottom: 30px;
}

#rep_output_container .single-rep
{
	margin-bottom: 30px;
}

#rep_output_container .single-rep:last-of-type
{
	margin-bottom: 0;
}

#rep_output_container .single-rep p
{
	line-height: 22pt;
}

#rep_output_container .single-rep .name
{
	font-size: 14pt;
	font-weight: bold;
}

#rep_output_container .single-rep a
{
	color: #5d5d5d;
	text-decoration: underline;
}

#rep_output_container .single-rep a::before
{
	display: none;
}
</pre></body></html>