<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

#mobile-header {
    display: none;
}

.mobile { display: none }
.nomobile,
.no-mobile { display: block }

@media only screen and (max-width: 767px){
	.mobile { display: block }
	.nomobile,
	.no-mobile { display: none }
}
</pre></body></html>