/* Fontes */

@font-face {
	font-family: "FrutigerLTStd-Light";
	src: url("../fonts/FrutigerLTStd-Light.woff2")format("woff2"),
	     url("../fonts/FrutigerLTStd-Light.woff")format("woff");
}

@font-face {
	font-family: "Frutiger LT 77 Black Condensed";
	src: url("../fonts/FrutigerLT77BlackCondensed.woff2")format("woff2"),
	     url("../fonts/FrutigerLT77BlackCondensed.woff")format("woff");
}

@font-face {
	font-family: "Libre Barcode 39 Extended Regular";
	src: url("../fonts/LibreBarcode39ExtendedRegular.woff2")format("woff2"),
	     url("../fonts/LibreBarcode39ExtendedRegular.woff")format("woff");
}

/* Padrões gerais */

* {
	box-sizing: border-box;
}

.invisivel {
	display: none;
}

.cabecaprabaixo {
	transform: rotate(180deg);
}

.colapsado {
	cursor: pointer;
	transition: transform 333ms ease-out, color 333ms;
	color: white;
}
.colapsadoaberto {
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
	color: white;
}

.pisca {
	animation: blinker 1s step-start infinite;
}

@keyframes blinker {
	50% {
		opacity: 0;
	}
}

input.input-digit { 
    --bs-bg-opacity: .75 !important;
	border-radius: .3em !important;
	width: 1.5em !important;
	height: 2em; !important;
	text-align: center !important;
	font-weight: 700 !important;
	background-color: rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity));
}

input.input-digit:focus {
	border-width: 3px !important;
	background-color: white;
}

input.input-digit:not(:valid) {
	border-color: rgb(var(--bs-danger-rgb));
}

.form-check-input.btn-primary {
	background-color: white;
	border-color: rgba(var(--bs-primary-rgb),var(--bs-bg-opacity));
//	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%2813, 110, 253, 1%29'/%3e%3c/svg%3e");
}

.form-check-input.btn-primary:checked {
	background-color: rgba(var(--bs-primary-rgb),var(--bs-bg-opacity));
}

.form-check-input.btn-primary:focus {
	box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb),.25);
}

.form-check-input.btn-primary:focus:not(:checked) {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%2813, 110, 253, 1%29'/%3e%3c/svg%3e");
}

.form-check-input.btn-success {
	border-color: rgba(var(--bs-success-rgb),var(--bs-bg-opacity));
	background-color: white;
//	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%2825, 135, 84, 1%29'/%3e%3c/svg%3e");
}

.form-check-input.btn-success:checked {
	background-color: rgba(var(--bs-success-rgb),var(--bs-bg-opacity));
}

.form-check-input.btn-success:focus {
	box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb),.25);
}

.form-check-input.btn-success:focus:not(:checked) {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%2825, 135, 84, 1%29'/%3e%3c/svg%3e");
}

.form-check-input.btn-warning {
	border-color: rgba(var(--bs-warning-rgb),var(--bs-bg-opacity));
	background-color: white;
//	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 193, 7, 1%29'/%3e%3c/svg%3e");
}

.form-check-input.btn-warning:checked {
	background-color: rgba(var(--bs-warning-rgb),var(--bs-bg-opacity));
}

.form-check-input.btn-warning:focus {
	box-shadow: 0 0 0 .25rem rgba(var(--bs-warning-rgb),.25);
}

.form-check-input.btn-warning:focus:not(:checked) {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 193, 7, 1%29'/%3e%3c/svg%3e");
}

.form-check-input.btn-danger {
	background-color: white !important;
	border-color: rgba(var(--bs-danger-rgb),var(--bs-bg-opacity));
//	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28220, 53, 69, 1%29'/%3e%3c/svg%3e");
}

.form-check-input.btn-danger:checked {
	background-color: rgba(var(--bs-danger-rgb),var(--bs-bg-opacity));
}

.form-check-input.btn-danger:focus {
	box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb),.25);
}

.form-check-input.btn-danger:focus:not(:checked) {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28220, 53, 69, 1%29'/%3e%3c/svg%3e");
}

[class*="col-"] {
	float: left;
	padding: 15px;
}

.col-3 {width: 25%;}
.col-6 {width: 50%;}

p {
	margin: 0px;
}

table {
	width: 100%;
	border-spacing: 0px;
	border-style: solid;
	border-width: thin;
}

th {
	border-style: inherit;
	border-width: inherit;
	text-align: center;
}

tbody {
	border-style: inherit;
	border-width: inherit;
}

tr {
	border-style: inherit;
	border-width: inherit;
}

td {
	border-style: inherit;
	border-width: inherit;
}

.tabelalogo {
	padding: 0px;
	border-style: none;
	border-width: 0px;
}

/* Caixa do crachá */
.fundocracha {
	overflow: hidden;
	line-height: 1;
	margin-top: 0px;
	width: 10cm;
}
.caixanome {
	font-family: "Frutiger LT 77 Black Condensed";
	font-size: 35px;
	width: 100%;
	height: 81px;
	vertical-align: middle;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.caixacargo {
	font-family: "Frutiger LT 77 Black Condensed";
	font-size: 18px;
	height: 58px;
	width: 100%;
	vertical-align: middle;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.caixalogo {
	margin: auto;
	width: max-content;
	height: 107px;
	text-align: right;
}
.logo {
	height: 70px;
}
.nomeclube {
	position: relative;
	font-family: 'FrutigerLTStd-Light', sans-serif;
	font-size: 20.0px;
	line-height: 20.0px;
	top: -20.2px;
	padding-right: 65.9px;
}
.logoduplo {
	height: 45px;
}
.nomeclubeduplo {
	position: relative;
	font-family: 'FrutigerLTStd-Light', sans-serif;
	font-size: 12.5px;
	line-height: 12.5px;
	top: -13.7px;
	padding-right: 42.2px;
}
.caixaclubeverso {
	font-family: 'FrutigerLTStd-Light', sans-serif;
	font-size: 12.5px;
	height: 48px;
	width: 100%;
	vertical-align: middle;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	transform: rotate(180deg);
}
.caixabarras {
	font-family: "Libre Barcode 39 Extended Regular";
	font-size: 44px;
	line-height: 1;
	height: 56px;
	text-align: center;
}

.caixabarrasdigital {
	font-family: "Libre Barcode 39 Extended Regular";
	font-size: clamp(80px, 94px, 16vw);
	line-height: 1;
	text-align: center;
}
.detalhedigital {
}
.caixadigital {
}
@media screen and (min-aspect-ratio: 12/5) {
	.caixabarrasdigital {
		font-family: "Libre Barcode 39 Extended Regular";
		font-size: clamp(80px, 300px, 18vw);
		line-height: 1;
		text-align: center;
	}
	.detalhedigital {
		display: none;
	}
	.caixadigital {
		width: 100% !important;
	}
}
.codigo {
	font-family: "Frutiger LT 77 Black Condensed";
	font-size: 13px;
	position: relative;
	top: -17px;
}

/* Cores do Rotary (logos) */
.cramberry {
	color: #d41367;
}
.skyblue {
	color: #00a2e0;
}
.gold {
	color: #f7a81b;
}
.royal {
	color: #17458f;
}
.azure {
	color: #0067c8;
}
.orange {
	color: #ff7600;
}
.royal-cramberry {
	background: linear-gradient(to bottom, #17458f, #d41367); 
	-webkit-text-fill-color: transparent; 
	-webkit-background-clip: text; 
}
.royal-gold {
	background: linear-gradient(to bottom, #17458f, #f7a81b); 
	-webkit-text-fill-color: transparent; 
	-webkit-background-clip: text; 
}
path.cramberry {
	fill: #d41367;
}
path.skyblue {
	fill: #00a2e0;
}
path.gold {
	fill: #f7a81b;
}
path.royal {
	fill: #17458f;
}
path.azure {
	fill: #0067c8;
}
path.orange {
	fill: #ff7600;
}
path.white {
	fill: #ffffff;
}
path.black {
	fill: #000000;
}

/*
 * Logos. O objeto <svg> deve ter dois objetos <path>, um deve ter a classe
 * 'roda' e o outro deve ter a classe 'rotary', 'rotaract', 'interact' ou
 * 'rotakids' para logos em preto. Para ASR, ambos <path> devem ter classe 'asr'
 *
 * Para logos coloridos, use as classes 'rotary royal' e 'roda gold',
 * 'rotaract cramberry' e 'roda cramberry', 'interact skyblue' e 'roda skyblue'
 * 'rotakids orange' e 'roda orange' ou 'asr azure' e 'asr azure'.
 *
 * Importante o tamanho do viewBox para os logos funcionarem adequadamente:
 * <svg id="logo1" class="logo" viewBox="0 0 101.37352 37.041667" xmlns="http://www.w3.org/2000/svg"><path id="logo1path1" class="rotary royal"/><path id="logo1path2" class="roda gold"/></svg>
 */
path.roda {
	fill-opacity: 1;
	fill-rule: nonzero;
	stroke: none;
	d: path("m 84.512819,6.5293294 c -5.648887,0 -10.245739,4.5978466 -10.245739,10.2466966 0,5.651446 4.596852,10.247565 10.245739,10.247565 5.650632,0 10.2492,-4.596119 10.2492,-10.247565 0,-5.64885 -4.598568,-10.2466966 -10.2492,-10.2466966 m 1.289573,1.6468977 c 0.09847,-0.080316 0.229754,-0.054407 0.358453,-0.027655 2.059169,0.4983036 3.571585,1.3679527 5.046868,2.9189909 0.104527,0.109679 0.161516,0.213309 0.161516,0.304854 0,0.0086 -0.0034,0.02333 -0.0034,0.03626 -0.03109,0.141628 -0.189159,0.216764 -0.329948,0.284125 l -4.311807,2.087339 c -0.170166,0.08032 -0.329088,0.08895 -0.4526,0.01122 -0.126969,-0.07254 -0.206436,-0.214174 -0.220259,-0.399854 L 85.703257,8.6158041 c -0.01379,-0.2279929 0.0173,-0.3687646 0.09933,-0.4395764 M 77.79826,11.103853 h 0.0026 c 1.474413,-1.5493084 2.984239,-2.4224168 5.04427,-2.9164007 0.126969,-0.028512 0.263448,-0.052683 0.353273,0.028512 0.0881,0.068222 0.118336,0.2081246 0.101922,0.4378469 L 82.95224,13.428693 c -0.01124,0.183085 -0.08723,0.328172 -0.216798,0.398984 -0.125249,0.07514 -0.289356,0.07168 -0.452606,-0.0095 l -4.309188,-2.08648 c -0.140794,-0.06995 -0.304898,-0.144223 -0.333403,-0.285855 -0.01379,-0.09845 0.03368,-0.212449 0.15806,-0.341992 m -1.023537,8.851111 c -0.186571,0.127817 -0.324765,0.173586 -0.431007,0.135597 -0.117468,-0.04059 -0.15634,-0.16927 -0.193482,-0.297085 -0.609804,-2.032927 -0.609804,-3.777415 -0.0077,-5.828481 0.05268,-0.176176 0.126968,-0.272901 0.220251,-0.306584 0.138206,-0.05009 0.282444,0.05095 0.412005,0.139908 l 3.961138,2.694452 c 0.149427,0.09932 0.236663,0.237493 0.236663,0.38776 0,0.143357 -0.08725,0.282399 -0.230619,0.386894 z m 6.502273,5.606539 c -0.09588,0.07686 -0.227166,0.05354 -0.358458,0.02072 -2.058301,-0.491391 -3.571582,-1.362773 -5.044271,-2.915537 -0.107098,-0.110537 -0.158059,-0.208994 -0.158059,-0.296218 0,-0.01634 0,-0.02589 0.0026,-0.04319 0.0207,-0.135597 0.186569,-0.215904 0.32563,-0.2824 l 4.311815,-2.09252 c 0.168429,-0.07858 0.330813,-0.08204 0.457785,-0.007 0.124381,0.07341 0.202117,0.213313 0.215937,0.395534 l 0.349815,4.785247 c 0.01294,0.227128 -0.01984,0.366165 -0.102773,0.435257 m 1.228242,-5.964934 c -1.544378,0 -2.799396,-1.254819 -2.799396,-2.798087 0,-0.942195 0.469873,-1.817029 1.259336,-2.337786 0.259123,-0.173586 0.609806,-0.09931 0.78169,0.158906 0.171883,0.260811 0.101922,0.612298 -0.158928,0.784154 -0.471607,0.310033 -0.751461,0.830791 -0.751461,1.394726 0,0.918877 0.749733,1.668491 1.668758,1.668491 0.921613,0 1.670484,-0.749614 1.670484,-1.668491 0,-0.563935 -0.279854,-1.087283 -0.752324,-1.396451 -0.259986,-0.172726 -0.330819,-0.522483 -0.15806,-0.783294 0.171017,-0.258216 0.522562,-0.331627 0.781685,-0.159765 0.786874,0.521617 1.259341,1.394726 1.259341,2.339511 0,1.543268 -1.256748,2.798086 -2.801125,2.798086 m 6.708691,3.01485 c -1.469218,1.545859 -2.973856,2.416372 -5.044254,2.912951 -0.175342,0.04406 -0.297129,0.03022 -0.372274,-0.03194 -0.107966,-0.09154 -0.09416,-0.272895 -0.08292,-0.429212 l 0.342905,-4.778337 c 0.02157,-0.185674 0.09501,-0.326443 0.2263,-0.404168 0.126968,-0.06908 0.289353,-0.06304 0.450009,0.01379 l 4.312658,2.088203 c 0.201272,0.09932 0.309227,0.196904 0.329969,0.303989 0.0207,0.120036 -0.06651,0.226268 -0.162402,0.324718 M 92.6668,13.635834 c 0.1166,0.03887 0.162402,0.167541 0.197811,0.293625 0.60547,2.036391 0.60547,3.778284 0,5.830214 -0.04923,0.176177 -0.120073,0.2729 -0.214206,0.31176 -0.13475,0.04144 -0.283311,-0.05613 -0.406817,-0.147684 l -3.965414,-2.690917 c -0.152015,-0.101039 -0.241847,-0.240082 -0.241847,-0.387759 0,-0.145947 0.08723,-0.284125 0.241847,-0.390349 l 3.965455,-2.686683 c 0.178793,-0.129538 0.318717,-0.169267 0.423212,-0.132132 m 7.356559,2.749827 -0.003,-0.04405 -0.03363,-0.01901 c -0.659081,-0.399849 -1.524548,-0.624388 -2.369298,-0.642526 -0.0173,-0.112269 -0.12353,-0.904192 -0.136487,-1.017331 0.808472,-0.228853 1.583244,-0.667565 2.12569,-1.22977 l 0.02854,-0.0259 -0.0078,-0.0432 c -0.04064,-0.301399 -0.15465,-0.721112 -0.258303,-0.975878 l -0.01812,-0.03802 -0.04059,-0.01037 c -0.743692,-0.212449 -1.633343,-0.206404 -2.451316,0 -0.03887,-0.104499 -0.341171,-0.834245 -0.384366,-0.937015 0.719507,-0.438712 1.35176,-1.061374 1.730965,-1.7358482 l 0.02071,-0.031935 -0.0155,-0.04234 C 98.102468,9.3334923 97.883066,8.9569621 97.708598,8.7194698 l -0.02416,-0.032834 h -0.04492 c -0.765281,-0.016394 -1.619524,0.2176319 -2.37271,0.6235259 -0.06651,-0.092405 -0.557105,-0.7306117 -0.62362,-0.8195618 0.587347,-0.605388 1.034769,-1.3722723 1.227386,-2.1227473 l 0.01124,-0.042298 -0.02854,-0.031935 C 95.677949,6.0639018 95.373914,5.7538638 95.145025,5.573373 L 95.113035,5.55004 95.069885,5.55607 C 94.317537,5.7469333 93.553989,6.1968746 92.946789,6.7806689 92.854364,6.7098574 92.217783,6.211554 92.125355,6.136418 c 0.405983,-0.7150626 0.643503,-1.5432637 0.643503,-2.3066928 0,-0.020718 -0.0039,-0.1027691 -0.0039,-0.1027691 l -0.03196,-0.025046 C 92.498066,3.5179599 92.125787,3.3046511 91.8563,3.1949721 l -0.03714,-0.013823 -0.03455,0.019007 c -0.674582,0.374805 -1.293874,1.0026471 -1.728339,1.7228987 -0.108836,-0.042341 -0.883618,-0.3679006 -0.98554,-0.4119432 0.101922,-0.4058935 0.16584,-0.8230164 0.16584,-1.2401394 0,-0.4205775 -0.05096,-0.8333808 -0.16584,-1.2081858 l -0.0095,-0.038874 -0.04146,-0.01554 C 88.764098,1.8986886 88.355547,1.7864195 88.053233,1.7423765 l -0.04492,-0.00694 -0.02677,0.029368 C 87.422714,2.3062835 86.984799,3.0774873 86.75245,3.8866848 86.63757,3.8676778 85.83688,3.7683751 85.715091,3.7554167 85.703891,2.9168557 85.478427,2.0584311 85.079374,1.3908618 l -0.01985,-0.038874 -0.04228,-0.00182 c -0.289357,-0.036258 -0.727271,-0.036258 -1.00972,0 l -0.04492,0.00182 -0.01989,0.038874 C 83.547121,2.0506612 83.32341,2.9099463 83.308728,3.7528267 83.192128,3.7683697 82.37934,3.8676846 82.261001,3.8866851 82.028662,3.0731678 81.589017,2.2985135 81.033632,1.7604871 l -0.03109,-0.031936 -0.04577,0.00694 c -0.299724,0.044908 -0.713456,0.1554471 -0.96999,0.2599415 l -0.03804,0.016396 -0.0155,0.038874 c -0.10451,0.3808498 -0.160647,0.7997022 -0.160647,1.2228699 0,0.4093481 0.06479,0.8299214 0.160647,1.2315 C 79.83132,4.5491235 79.0505,4.8850622 78.945983,4.9273753 78.507184,4.207126 77.887015,3.5749692 77.213296,3.1949795 l -0.03627,-0.021575 -0.04236,0.014692 C 76.875546,3.30123 76.500675,3.5179943 76.264011,3.6958997 l -0.03713,0.022431 v 0.1114088 c 0,0.7556549 0.234075,1.5864455 0.636578,2.3066928 -0.0881,0.072541 -0.675448,0.5319818 -0.763545,0.6036629 -0.605497,-0.5855291 -1.37077,-1.0354653 -2.126546,-1.2306401 l -0.038,-0.00775 -0.02935,0.027656 C 73.674509,5.702943 73.362703,6.0077969 73.184767,6.2392442 l -0.0259,0.033691 0.0095,0.039729 c 0.189162,0.7504797 0.639175,1.5173591 1.223067,2.1279271 -0.06392,0.089816 -0.57612,0.7556596 -0.646948,0.8480649 -0.732455,-0.4093529 -1.58497,-0.6511606 -2.366661,-0.639936 l -0.03972,0.00182 -0.02503,0.034547 c -0.171051,0.2279872 -0.386988,0.5950179 -0.505322,0.874828 l -0.0173,0.036258 0.0207,0.038874 c 0.374863,0.6710198 1.007986,1.2988618 1.731803,1.7375738 -0.03972,0.103634 -0.335993,0.825611 -0.381768,0.930971 -0.830923,-0.20554 -1.71713,-0.20813 -2.456499,0.0069 l -0.04059,0.01037 -0.01379,0.03626 c -0.109704,0.259081 -0.222848,0.667569 -0.265174,0.975013 l -0.0051,0.04234 0.02935,0.03279 c 0.539843,0.554436 1.31462,0.993148 2.124813,1.218551 -0.0173,0.113994 -0.121792,0.913696 -0.136469,1.023375 -0.841291,0.01639 -1.707627,0.239217 -2.369254,0.635616 l -0.03627,0.02072 -0.0034,0.0432 c -0.0173,0.144223 -0.02767,0.324718 -0.02767,0.506938 0,0.180496 0.01039,0.359262 0.02767,0.503484 l 0.0034,0.04144 0.03627,0.01901 c 0.661627,0.395534 1.520194,0.621797 2.367525,0.634751 0.01635,0.115724 0.129557,0.937015 0.144234,1.049283 -0.812778,0.238354 -1.581514,0.683109 -2.121353,1.237545 l -0.02935,0.03369 0.0044,0.03802 c 0.04664,0.303125 0.15806,0.721113 0.262578,0.973289 l 0.0173,0.03801 0.038,0.01209 c 0.749728,0.214179 1.63507,0.205539 2.458216,0 0.04233,0.104493 0.360182,0.831657 0.404232,0.93615 -0.720358,0.431807 -1.350897,1.055329 -1.732672,1.729809 l -0.0173,0.03711 0.01379,0.03887 c 0.110555,0.264266 0.330813,0.639071 0.507015,0.873107 l 0.0259,0.03369 0.038,9.09e-4 c 0.773918,0.01124 1.628161,-0.217634 2.370119,-0.626982 0.06909,0.08723 0.570937,0.74011 0.635717,0.829061 -0.582168,0.595892 -1.033905,1.359317 -1.226522,2.121024 l -0.01039,0.038 0.02416,0.03371 c 0.178796,0.22799 0.486289,0.532845 0.71259,0.716795 l 0.03286,0.02853 0.04059,-0.01294 c 0.750596,-0.18654 1.512419,-0.633886 2.125676,-1.220276 0.09329,0.07167 0.741955,0.570846 0.837833,0.641659 -0.399913,0.732339 -0.632257,1.568308 -0.632257,2.32915 v 0.0855 l 0.038,0.02853 c 0.225436,0.17186 0.594254,0.381715 0.86893,0.505213 l 0.038,0.01379 0.03972,-0.01988 c 0.676308,-0.377403 1.300797,-1.009558 1.738717,-1.739308 0.101923,0.04145 0.814513,0.33076 0.91902,0.372214 -0.101922,0.401579 -0.160648,0.816111 -0.160648,1.223733 0,0.428349 0.05616,0.846332 0.164973,1.222868 l 0.0095,0.03972 0.04146,0.01464 c 0.256534,0.109686 0.668539,0.221951 0.970849,0.271176 l 0.04578,0.0061 0.02935,-0.03367 c 0.559702,-0.54407 0.996762,-1.318727 1.215289,-2.120155 0.118336,0.01902 0.937162,0.134729 1.052036,0.146816 0.01635,0.846335 0.243578,1.70735 0.640033,2.362827 l 0.01815,0.03626 0.04492,0.0051 c 0.291086,0.03713 0.723818,0.03713 1.008855,0 l 0.04146,-0.0051 0.0207,-0.03626 c 0.393869,-0.655477 0.619306,-1.517357 0.640901,-2.367146 0.114011,-0.01634 0.881882,-0.123493 0.996757,-0.142492 0.226301,0.815243 0.666814,1.582129 1.226523,2.126204 l 0.03022,0.02766 0.038,-0.0034 c 0.305765,-0.04837 0.72036,-0.155447 0.977759,-0.260807 l 0.03714,-0.01815 0.01294,-0.03803 c 0.107967,-0.378263 0.157209,-0.794521 0.157209,-1.22114 0,-0.413668 -0.05787,-0.835113 -0.157209,-1.240141 0.104511,-0.03972 0.849061,-0.36185 0.953578,-0.408487 0.43792,0.722843 1.061535,1.355 1.733549,1.734986 l 0.03281,0.01634 0.04059,-0.01464 c 0.266896,-0.109686 0.644342,-0.327308 0.876691,-0.508668 l 0.03368,-0.01985 c 0,0 0.0026,-0.08895 0.0026,-0.113993 0,-0.74443 -0.235796,-1.576085 -0.627925,-2.304965 0.0881,-0.0691 0.703064,-0.547529 0.790323,-0.617477 0.614104,0.582934 1.379382,1.031145 2.129995,1.225452 l 0.03974,0.01124 0.03109,-0.02853 c 0.228894,-0.179631 0.540715,-0.48794 0.718647,-0.710746 l 0.02767,-0.03713 -0.01396,-0.03626 c -0.186586,-0.748743 -0.63314,-1.515623 -1.218757,-2.127061 0.06824,-0.09069 0.56403,-0.741834 0.63141,-0.834244 0.742801,0.409351 1.597045,0.643389 2.366651,0.626982 h 0.04146 l 0.02491,-0.03109 C 97.863576,24.794015 98.076047,24.426979 98.1866,24.1489 l 0.01652,-0.03454 -0.01992,-0.03711 c -0.36709,-0.660656 -0.995871,-1.289362 -1.715383,-1.741894 0.04146,-0.102774 0.336006,-0.821291 0.379174,-0.92406 0.816237,0.209859 1.702457,0.216764 2.447851,0 l 0.03627,-0.01294 0.01652,-0.03626 c 0.109703,-0.263406 0.221125,-0.670165 0.267761,-0.972423 l 0.0039,-0.04231 -0.03199,-0.03194 c -0.539815,-0.560481 -1.309421,-0.994012 -2.112707,-1.22373 0.0173,-0.112273 0.126118,-0.882609 0.13819,-0.995738 0.849947,-0.01469 1.715414,-0.241812 2.374447,-0.639071 l 0.03363,-0.02157 0.003,-0.04405 c 0.02,-0.140767 0.0277,-0.323852 0.0277,-0.504343 0,-0.18136 -0.008,-0.359265 -0.0277,-0.500893 m -15.510267,12.03954 c -6.421082,0 -11.647599,-5.225682 -11.647599,-11.649191 0,-6.422645 5.226517,-11.6474681 11.647599,-11.6474681 6.423688,0 11.64847,5.2248231 11.64847,11.6474681 0,6.423509 -5.224782,11.649191 -11.64847,11.649191");
}
path.rotary {
	fill-opacity: 1;
	fill-rule: nonzero;
	stroke: none;
	d: path("m 41.396293,20.499454 0.05873,1.108078 c 0.0078,0.165819 -0.109689,0.315227 -0.272052,0.345445 -0.468099,0.08546 -1.111519,0.191748 -1.516574,0.191748 -2.032171,0 -2.651412,-0.777291 -2.651412,-3.323348 v -3.889891 h -0.779011 c -0.185686,0 -0.335097,-0.152029 -0.335097,-0.336814 v -1.150384 c 0,-0.185687 0.149408,-0.334243 0.335097,-0.334243 h 0.779004 v -1.368026 c 0,-0.155434 0.106234,-0.289315 0.25478,-0.325594 l 1.346433,-0.328183 c 0.09932,-0.02247 0.20555,-0.0017 0.285868,0.06129 0.08032,0.06469 0.128689,0.160541 0.128689,0.264272 v 1.696208 h 2.0529 c 0.183096,0 0.332503,0.148624 0.332503,0.334243 v 1.150384 c 0,0.184819 -0.149407,0.336814 -0.332503,0.336814 h -2.0529 v 3.605751 c 0,1.247117 0.04319,1.679814 0.918923,1.679814 0.322142,0 0.828245,-0.02162 1.099427,-0.03541 0.179642,-0.0051 0.342008,0.130409 0.347192,0.317815 m -6.359933,-3.021911 c 0,3.21279 -1.221206,4.646446 -3.957261,4.646446 -2.751593,0 -3.97798,-1.433656 -3.97798,-4.646446 0,-3.167011 1.226387,-4.579079 3.97798,-4.579079 2.69978,0 3.957261,1.453523 3.957261,4.579079 m -2.049451,0 c 0,-1.973453 -0.536328,-2.741227 -1.90781,-2.741227 -1.423296,0 -1.928529,0.716819 -1.928529,2.741227 0,1.835265 0.306594,2.827593 1.928529,2.827593 1.595167,0 1.90781,-1.037239 1.90781,-2.827593 m 32.13559,-4.237941 c -0.06221,-0.08206 -0.158907,-0.129557 -0.261706,-0.129557 h -1.309298 c -0.151979,0 -0.282428,0.101977 -0.322156,0.248729 l -1.752308,6.610382 H 61.340547 L 59.586479,13.35874 c -0.03802,-0.146752 -0.17187,-0.248729 -0.323872,-0.248729 h -1.304979 c -0.105365,0 -0.20296,0.0475 -0.266868,0.129557 -0.06217,0.08291 -0.08378,0.189143 -0.05873,0.288464 l 1.930263,7.413584 c 0.09673,0.367918 0.435279,0.988889 1.108087,0.988889 h 0.374812 c -0.03287,0.1253 -0.06563,0.258228 -0.102794,0.371373 l -0.01711,0.05618 c -0.105365,0.342006 -0.262517,0.858463 -1.217729,0.858463 l -1.668574,-0.102828 c -0.09586,-0.0068 -0.18655,0.02758 -0.253914,0.095 -0.06909,0.06657 -0.105366,0.158839 -0.10019,0.253904 l 0.04059,0.874024 c 0.0051,0.148625 0.108821,0.273772 0.253914,0.310051 0.492282,0.121726 1.431936,0.263404 2.205781,0.292772 0.03694,0.0034 0.06995,0.0034 0.105365,0.0034 1.259209,0 2.115092,-0.81529 2.54603,-2.419957 0.500081,-1.87929 1.125339,-4.296659 1.583076,-6.062838 0.206438,-0.794553 0.384318,-1.479434 0.511297,-1.967392 l 0.251301,-0.962109 c 0.02928,-0.100956 0.0044,-0.207274 -0.05958,-0.290184 m -39.248604,8.222829 c 0.04406,0.102829 0.03369,0.22195 -0.02504,0.317815 -0.06478,0.095 -0.170143,0.150327 -0.283273,0.150327 h -1.562347 c -0.133882,0 -0.25478,-0.07695 -0.305738,-0.198643 l -2.00281,-4.505669 c -0.996655,-0.0068 -1.862029,-0.05959 -2.328409,-0.0933 v 4.464232 c 0,0.18567 -0.148539,0.333358 -0.333366,0.333358 h -1.396545 c -0.186545,0 -0.338551,-0.147603 -0.338551,-0.333358 V 10.29534 c 0,-0.170995 0.128689,-0.3143584 0.299687,-0.3333748 1.794673,-0.2029498 3.229199,-0.2236687 3.762071,-0.2236687 0.183096,0 0.278957,0.0017 0.278957,0.0017 3.443383,0 4.164532,2.0330215 4.164532,3.7352915 0,1.422436 -0.678829,2.450175 -2.074491,3.142835 z M 21.633516,11.678871 H 20.89596 c -0.823061,0 -1.292025,0.06299 -1.52953,0.109638 v 3.484826 c 0.392961,0.02775 1.151249,0.06742 2.169493,0.05618 1.313615,-0.01362 2.130634,-0.710792 2.130634,-1.817985 0,-0.885243 -0.534602,-1.832677 -2.033041,-1.832677 m 27.986651,4.207723 v 5.847784 c 0,0.0984 -0.04234,0.190862 -0.115733,0.253053 -0.07341,0.06469 -0.171007,0.09329 -0.266009,0.08036 -0.68401,-0.0967 -1.008746,-0.31092 -1.333478,-0.559649 -0.01464,0.0068 -1.527799,0.616647 -2.881143,0.616647 -1.627986,0 -2.562459,-1.028607 -2.562459,-2.825005 0,-1.755811 0.85502,-2.532233 2.952829,-2.689404 l 2.191085,-0.175336 v -0.532 c 0,-0.673645 -0.400735,-1.059711 -1.096838,-1.059711 -0.95952,0 -2.330132,0.112192 -3.059059,0.177055 -0.09241,0.01021 -0.18309,-0.01907 -0.253909,-0.08036 -0.0665,-0.05874 -0.108821,-0.147603 -0.113997,-0.237509 l -0.04229,-1.118429 c -0.0087,-0.170075 0.115733,-0.318683 0.279823,-0.344594 0.652921,-0.102829 2.280901,-0.34027 3.296559,-0.34027 2.050311,0 3.004648,0.950004 3.004648,2.987368 m -3.960713,2.22477 c -0.791106,0.07508 -1.165066,0.437003 -1.165066,1.132235 0,0.42924 0.116602,1.15212 0.899924,1.15212 0.931883,0 2.196269,-0.351506 2.210952,-0.354962 v -2.032171 z m 10.501092,-5.067055 c -0.889564,0.05261 -1.766167,0.562236 -2.311134,0.949154 v -0.548413 c 0,-0.185687 -0.149407,-0.334243 -0.336822,-0.334243 H 52.16791 c -0.18741,0 -0.337685,0.148625 -0.337685,0.334243 v 8.152876 c 0,0.18567 0.150275,0.333358 0.337685,0.333358 h 1.344709 c 0.18741,0 0.336822,-0.147603 0.336822,-0.333358 v -5.63542 c 0.302278,-0.253053 1.242799,-0.958653 2.362089,-1.056254 0.172734,-0.01702 0.305732,-0.159861 0.305732,-0.334227 v -1.194426 c 0,-0.0933 -0.03711,-0.180511 -0.106233,-0.241834 -0.06565,-0.06469 -0.158057,-0.09925 -0.250459,-0.09159");
}
path.asr {
	fill-opacity: 1;
	fill-rule: nonzero;
	stroke: none;
	d: path("m 89.906443,23.990236 v -9.070282 h 2.66364 q 1.004744,0 1.457948,0.247484 0.457478,0.241297 0.731111,0.866195 0.273632,0.624895 0.273632,1.429218 0,1.02087 -0.414724,1.689076 -0.414724,0.662019 -1.239896,0.835259 0.410448,0.346477 0.675529,0.761012 0.269358,0.414535 0.72256,1.47253 l 0.765316,1.769508 H 94.028031 L 93.113072,22.016552 Q 92.625665,20.958559 92.446094,20.686326 92.266522,20.407909 92.065573,20.308913 91.864625,20.20374 91.428523,20.20374 h -0.25653 v 3.786502 z m 1.26555,-5.234282 h 0.936335 q 0.910683,0 1.137285,-0.111374 0.226602,-0.111374 0.354867,-0.3836 0.128265,-0.27223 0.128265,-0.68058 0,-0.457845 -0.17102,-0.736263 -0.166746,-0.284606 -0.474581,-0.358852 -0.153919,-0.03095 -0.923509,-0.03095 h -0.987642 z m -9.081785,2.283038 1.231346,-0.173239 q 0.111163,0.897129 0.448929,1.317851 0.34204,0.420724 0.919232,0.420724 0.611398,0 0.919234,-0.371227 0.312112,-0.377412 0.312112,-0.878568 0,-0.321728 -0.13254,-0.544464 -0.128265,-0.228923 -0.453204,-0.395973 -0.222326,-0.111374 -1.013295,-0.395976 -1.01757,-0.365037 -1.428019,-0.897128 -0.577193,-0.748638 -0.577193,-1.825193 0,-0.692954 0.269356,-1.293103 0.273634,-0.606335 0.782418,-0.921876 0.513061,-0.315542 1.235621,-0.315542 1.180041,0 1.774336,0.748638 0.59857,0.748638 0.628499,1.998432 l -1.265551,0.08043 q -0.08123,-0.69914 -0.35059,-1.002309 -0.265082,-0.309353 -0.79952,-0.309353 -0.551539,0 -0.863652,0.327915 -0.200948,0.210362 -0.200948,0.563025 0,0.32173 0.188121,0.550652 0.23943,0.290794 1.162938,0.606335 0.923509,0.315541 1.363886,0.655833 0.444653,0.334104 0.692632,0.921877 0.252255,0.581587 0.252255,1.441593 0,0.779574 -0.299286,1.460154 -0.299286,0.68058 -0.846549,1.014684 -0.547264,0.327916 -1.363887,0.327916 -1.18859,0 -1.82564,-0.791948 -0.637051,-0.798135 -0.761041,-2.32016 z M 84.397,1.3229167 C 79.25161,4.1671179 74.106161,7.0110922 68.960735,9.8551485 l 0.476414,1.8044235 2.551103,-1.409996 0.03756,17.751229 0.836014,-0.0013 v 0.0013 h 22.706156 1.191493 l 1.4e-5,-0.002 0.142926,-2e-6 -0.03711,-17.771117 2.712352,1.488218 0.473203,-1.8057469 C 94.833055,7.0471824 89.614702,4.1862919 84.397,1.3229167 Z m 0.0018,2.06627 11.130218,6.1060052 0.0028,1.3006151 -22.207756,2e-6 -0.0028,-1.2833815 z m -11.070665,9.3383213 7.132465,10e-7 0.02245,13.341596 h -7.126923 z m 8.051393,10e-7 h 6.791645 l 0.02245,13.341595 h -6.791645 z m 7.710574,0 h 6.445329 l 0.0284,13.341595 -6.450827,1e-6 z m -8.986216,11.262727 h -1.376715 l -0.547264,-2.060303 h -2.505446 l -0.517336,2.060303 h -1.34246 l 2.441312,-9.070282 h 1.338234 z m -2.330151,-3.588516 -0.863651,-3.365779 -0.84655,3.365779 z");
}
path.casadaamizade {
	fill-opacity: 1;
	fill-rule: nonzero;
	stroke: none;
	d: path("m 24.426097,23.529182 q 0,0.06461 -0.150942,0.06461 -0.119496,0 -0.352197,-0.01615 -0.226413,-0.01615 -0.345908,-0.01615 -0.119496,0 -0.358487,0.01615 -0.23899,0.01615 -0.358486,0.01615 -0.176099,0 -0.452826,-0.81297 -0.270437,-0.818354 -0.553452,-0.829122 -0.232702,-0.01077 -1.213823,-0.01077 h -0.9937 q -1.037725,0 -1.182377,0.01077 -0.226413,0.01616 -0.484272,0.829122 -0.251569,0.812968 -0.389932,0.812968 h -1.415079 q -0.125785,0 -0.125785,-0.07538 0,-0.05384 0.08805,-0.242276 l 1.540864,-3.60722 q 0.194966,-0.436096 1.182376,-2.514285 0.176099,-0.344571 0.477983,-1.039095 0.07547,-0.204589 0.16352,-0.204589 0.119496,0 0.352197,0.02693 0.232702,0.02691 0.352198,0.02691 0.113206,0 0.339619,-0.02691 0.232702,-0.0323 0.339618,-0.0323 0.0566,0 0.157231,0.199205 0.150942,0.301499 1.49055,3.246498 1.893061,4.140226 1.893061,4.177913 z m -2.930785,-2.971919 q 0,-0.156132 -0.566032,-1.399816 -0.547163,-1.205996 -0.773576,-1.582869 -1.301873,2.842704 -1.301873,2.977301 0,0.183053 0.477983,0.215357 0.02516,0.0054 0.616345,0.0054 h 0.647792 q 0.899361,0 0.899361,-0.215356 z m 13.188534,2.837321 q 0,0.209972 -0.144653,0.209972 -0.09434,0 -0.289305,-0.01615 -0.188676,-0.01615 -0.289304,-0.01615 -0.106914,0 -0.320752,0.01077 -0.213834,0.01077 -0.320751,0.01077 -0.132074,0 -0.132074,-0.253044 0,-0.24766 0.01887,-0.737596 0.02516,-0.495319 0.02516,-0.742979 0,-1.36213 -0.01258,-1.518262 -0.05031,-0.554544 -0.264147,-0.764516 -0.245281,-0.226124 -0.874205,-0.226124 -0.396221,0 -0.893072,0.323034 -0.515717,0.339187 -0.534585,0.667606 -0.02516,0.419944 -0.02516,1.534414 0,0.263811 0.02516,0.791434 0.02516,0.527624 0.02516,0.791435 0,0.145365 -0.113207,0.145365 -0.113206,0 -0.33333,-0.01615 -0.213834,-0.01616 -0.32704,-0.01616 -0.100624,0 -0.295594,0.01077 -0.194966,0.01077 -0.295594,0.01077 -0.125785,0 -0.125785,-0.156134 0,-0.258427 0.01887,-0.775283 0.01887,-0.522238 0.01887,-0.780666 v -1.297523 q 0,-0.608381 -0.16981,-0.866809 -0.238991,-0.366106 -0.911939,-0.366106 -0.396223,0 -0.943386,0.285347 -0.603768,0.312267 -0.603768,0.629918 v 1.572101 q 0,0.269196 0.0063,0.802203 0.0063,0.533007 0.0063,0.796818 0,0.156134 -0.144653,0.156134 h -1.169797 q -0.125785,0 -0.125785,-0.145366 0,-0.436096 0.0063,-1.308289 0.0063,-0.877578 0.0063,-1.313675 0,-0.985255 -0.24528,-1.965127 -0.01887,-0.06999 -0.01887,-0.113062 0,-0.06999 0.0566,-0.08076 0.232702,-0.02154 0.679237,-0.08075 0.207545,-0.05384 0.622636,-0.118445 l 0.05031,-0.0054 q 0.07547,0 0.138363,0.382257 0.06918,0.376874 0.119495,0.376874 0,0 0.314463,-0.236892 0.371065,-0.27458 0.742129,-0.436096 0.534586,-0.236893 1.069171,-0.236893 1.446525,0 1.842748,1.012175 0.389932,-0.430713 0.968542,-0.710676 0.616345,-0.301499 1.220113,-0.301499 1.163509,0 1.610044,0.581462 0.320752,0.430713 0.320752,1.36213 0,0.177669 -0.01258,0.549158 -0.01258,0.37149 -0.01258,0.54916 0,0.339185 0.01887,1.022942 0.01887,0.678373 0.01887,1.017559 z m 2.880471,-6.239951 q 0,0.66222 -0.861626,0.66222 -0.874204,0 -0.874204,-0.66222 0,-0.296116 0.270438,-0.489936 0.251569,-0.183053 0.603766,-0.183053 0.352198,0 0.603768,0.188437 0.257858,0.188436 0.257858,0.484552 z m -0.04402,1.459039 q 0,0.414561 -0.06289,1.254451 -0.0566,0.834506 -0.0566,1.254451 0,0.393025 0.01887,1.179077 0.01887,0.780666 0.01887,1.168307 0,0.113063 -0.113206,0.113063 H 36.09894 q -0.132075,0 -0.132075,-0.220741 0,-0.371489 0.01887,-1.114468 0.02516,-0.748365 0.02516,-1.125238 0,-0.419945 -0.07547,-1.259835 -0.06918,-0.83989 -0.06918,-1.259835 0,-0.09152 0.132074,-0.09152 0.113206,0 0.345907,0.02692 0.238992,0.02691 0.358487,0.02691 0.119496,0 0.352198,-0.02691 0.238991,-0.02692 0.358486,-0.02692 0.106914,0 0.106914,0.102294 z m 5.911885,3.957174 q 0,0.02692 -0.09434,0.382258 -0.100623,0.382257 -0.113205,0.473783 -0.02516,0.188437 -0.113207,0.188437 -0.220123,0 -0.591189,-0.02154 -0.421378,-0.02692 -0.584898,-0.0323 -0.42138,-0.01077 -1.207534,-0.01077 -0.610057,0 -1.352187,0.04307 -0.930807,0.05384 -0.798733,0.05384 -0.132074,0 -0.16981,-0.09691 -0.08805,-0.258427 -0.08805,-0.602997 0,-0.04845 0.0063,-0.134598 0.0063,-0.09152 0.0063,-0.134598 0,-0.07538 0.132074,-0.177669 0.138364,-0.107678 1.345898,-1.222147 0.610055,-0.543775 1.72954,-1.674397 h -2.773554 q -0.100624,0 -0.100624,-0.113061 0,-0.156133 0.07547,-0.463017 0.08176,-0.312267 0.08176,-0.463015 0,-0.06461 0.176098,-0.06461 0.352197,0 1.050303,0.02692 0.698106,0.02691 1.050302,0.02691 1.723252,0 1.943376,0.02154 0.157231,0.01615 0.157231,0.113063 0,0.812971 -0.07547,0.915264 -0.06289,0.07538 -1.088038,1.060631 -0.660371,0.640685 -1.99369,1.905904 2.094318,-0.04845 3.245247,-0.04845 0.144653,0 0.144653,0.04845 z M 50.30003,18.72135 q 0,0.02154 -0.01887,0.09691 -0.24528,1.232915 -0.24528,2.126644 0,0.05384 0.157231,2.417375 l 0.0063,0.07538 q 0.0063,0.156133 -0.169809,0.156133 -0.169809,0 -0.522006,0.0323 -0.345909,0.03768 -0.515718,0.03768 -0.119496,0 -0.182387,-0.376874 -0.06289,-0.376874 -0.119496,-0.376874 -0.03773,0 -0.339619,0.209973 -0.371066,0.258427 -0.691816,0.393025 -0.496851,0.215357 -0.993701,0.215357 -1.220111,0 -2.056581,-0.834506 -0.792444,-0.796819 -0.792444,-1.857449 0,-1.195228 0.798733,-1.975895 0.83647,-0.81297 2.201234,-0.81297 0.962253,0 1.679227,0.570694 0.106914,0.107678 0.33333,0.312267 0.01887,0.01615 0.03773,0.01615 0.03773,0 0.106914,-0.339186 0.06918,-0.339186 0.176099,-0.339186 0.16981,0 0.635214,0.08075 0.515717,0.09691 0.515717,0.172284 z m -1.603755,2.250475 q 0,-0.662221 -0.459115,-1.136005 -0.484272,-0.511471 -1.23898,-0.511471 -0.754709,0 -1.257848,0.506087 -0.484271,0.484552 -0.484271,1.141389 0,0.651452 0.484271,1.130621 0.503139,0.500703 1.257848,0.500703 0.735841,0 1.232691,-0.511471 0.465404,-0.479168 0.465404,-1.119853 z m 8.67286,-4.888591 q 0,0.694525 -0.07547,2.083574 -0.06918,1.383664 -0.06918,2.072805 0,2.126644 0.106914,3.219578 l 0.0063,0.06999 q 0.0063,0.05384 -0.16981,0.06999 -0.119495,0.01077 -0.339618,0 -0.264148,-0.01615 -0.24528,-0.01615 -0.09433,0 -0.276727,0.01615 -0.182388,0.01615 -0.276727,0.01615 -0.08805,0 -0.106914,-0.371489 -0.01258,-0.376874 -0.04402,-0.382258 -0.03773,0.01615 -0.09434,0.06999 -0.861627,0.796818 -1.981112,0.796818 -1.270425,0 -2.088027,-0.829122 -0.773576,-0.780666 -0.773576,-1.884368 0,-1.146773 0.779865,-1.92744 0.817602,-0.818354 2.132052,-0.818354 0.792445,0 1.383633,0.398409 0.270438,0.199205 0.534586,0.403794 0.05031,-0.01616 0.05031,-0.07538 v -1.744386 q 0,-0.17767 -0.01887,-0.538392 -0.01887,-0.360721 -0.01887,-0.543774 0,-0.129214 0.100623,-0.129214 0.232701,0 0.691816,-0.0323 0.459114,-0.03769 0.685527,-0.03769 0.106914,0 0.106914,0.113062 z m -1.572309,4.899358 q 0,-0.646068 -0.465404,-1.136005 -0.49685,-0.522238 -1.232691,-0.522238 -0.773576,0 -1.276716,0.516854 -0.477981,0.484553 -0.477981,1.162925 0,0.646069 0.496849,1.125237 0.509429,0.506088 1.257848,0.506088 0.754708,0 1.245269,-0.511471 0.452826,-0.479169 0.452826,-1.14139 z m 8.018779,-0.279963 q 0,0.39841 -0.402511,0.533007 -0.270437,0.08614 -3.893039,0.317651 0.08176,0.473784 0.610057,0.807586 0.503138,0.317651 1.081749,0.317651 0.993699,0 1.823878,-0.549159 0.100624,-0.06999 0.201256,-0.139981 0.05031,0 0.06289,0.01077 0.01887,0.01077 0.23899,0.376873 0.220124,0.360723 0.220124,0.387642 0,0.0323 -0.100624,0.12383 -0.924518,0.83989 -2.371043,0.83989 -1.459103,0 -2.327018,-0.742979 -0.867915,-0.748363 -0.867915,-1.992047 0,-1.109085 0.83018,-1.932823 0.874204,-0.856042 2.14463,-0.856042 1.182377,0 1.974821,0.742979 0.773576,0.721444 0.773576,1.755155 z m -1.496838,-0.328418 q 0,-0.446865 -0.415091,-0.791435 -0.4088,-0.34457 -0.924517,-0.34457 -0.578611,0 -1.031436,0.398409 -0.446536,0.398409 -0.446536,0.893729 0,0.113062 0.226413,0.113062 0.930807,0 2.22639,-0.161518 0.364777,-0.04307 0.364777,-0.107677 z M 25.97325,11.323858 q 0,0.06461 -0.119496,0.183053 -1.226401,1.216764 -3.037702,1.216764 -1.886772,0 -3.018835,-1.179076 -1.056592,-1.098318 -1.056592,-2.7457942 0,-1.6474763 1.07546,-2.7565617 1.144641,-1.1952279 3.025124,-1.1952279 1.905639,0 2.949653,1.1037014 0.100624,0.1130621 0.100624,0.1884369 0,0.091527 -0.33333,0.5437748 -0.333329,0.4468645 -0.402511,0.4468645 -0.08176,0 -0.383644,-0.2638116 Q 24.400936,6.5429466 24.073896,6.3814294 23.533021,6.1176178 22.87894,6.1176178 q -1.245269,0 -1.937086,0.8129703 -0.616345,0.7268279 -0.616345,1.8305294 0,1.1037016 0.610056,1.8466805 0.691817,0.834506 1.930797,0.834506 0.616345,0 1.188666,-0.263811 0.377354,-0.172285 0.767287,-0.489936 0.327041,-0.263812 0.358487,-0.263812 0.03773,0 0.415089,0.430714 0.377355,0.425328 0.377355,0.468399 z m 6.798667,-3.6287547 q 0,0.021536 -0.01887,0.09691 -0.24528,1.2329153 -0.24528,2.1266446 0,0.053839 0.157231,2.4173751 l 0.0063,0.07538 q 0.0063,0.156133 -0.16981,0.156133 -0.16981,0 -0.522007,0.0323 -0.345908,0.03768 -0.515717,0.03768 -0.119496,0 -0.182388,-0.376874 -0.06289,-0.376873 -0.119496,-0.376873 -0.03773,0 -0.339619,0.209971 -0.371065,0.258428 -0.691816,0.393026 -0.496849,0.215357 -0.9937,0.215357 -1.220112,0 -2.056581,-0.834506 -0.792443,-0.796819 -0.792443,-1.857449 0,-1.1952286 0.798733,-1.9758955 0.836468,-0.8129704 2.201233,-0.8129704 0.962254,0 1.679226,0.5706944 0.106914,0.1076782 0.33333,0.3122668 0.01887,0.016152 0.03773,0.016152 0.03773,0 0.106913,-0.3391864 0.06918,-0.3391863 0.176099,-0.3391863 0.16981,0 0.635213,0.080759 0.515718,0.09691 0.515718,0.1722851 z m -1.603756,2.2504745 q 0,-0.6622215 -0.459114,-1.1360052 -0.484272,-0.5114714 -1.23898,-0.5114714 -0.754709,0 -1.257848,0.5060875 -0.484272,0.4845515 -0.484272,1.1413891 0,0.6514532 0.484272,1.1306212 0.503139,0.500703 1.257848,0.500703 0.735841,0 1.232691,-0.511471 0.465403,-0.479168 0.465403,-1.1198532 z m 5.572266,0.9637202 q 0,0.802202 -0.748419,1.286754 -0.679239,0.441481 -1.654071,0.441481 -0.377353,0 -0.427667,-0.01615 -0.106914,-0.04307 -0.106914,-0.263812 0,-0.118446 -0.03773,-0.355337 -0.03145,-0.236893 -0.03145,-0.349955 0,-0.06999 0.113206,-0.09152 0.08176,-0.01615 0.232701,0 0.194967,0.01615 0.188678,0.01615 1.188666,0 1.188666,-0.624533 0,-0.296116 -0.522006,-0.543776 -0.849048,-0.398408 -0.974832,-0.489935 -0.522008,-0.3822579 -0.522008,-1.0014074 0,-0.8075864 0.710684,-1.2598348 0.641503,-0.4037933 1.622624,-0.4037933 0.08805,0 0.125785,0.069991 0.04402,0.069991 0.157231,0.4360967 0.119496,0.3661059 0.119496,0.4414806 0,0.059223 -0.119496,0.075375 -0.402511,0.048455 -0.811312,0.091527 -0.484271,0.1130621 -0.484271,0.4522484 0,0.242276 0.509428,0.4899352 0.754709,0.3607223 0.955964,0.5222397 0.515718,0.4199449 0.515718,1.0767819 z m 7.01879,-3.2141947 q 0,0.021536 -0.01887,0.09691 -0.245281,1.2329153 -0.245281,2.1266446 0,0.053839 0.157231,2.4173751 l 0.0063,0.07538 q 0.0063,0.156133 -0.16981,0.156133 -0.169808,0 -0.522006,0.0323 -0.345908,0.03768 -0.515718,0.03768 -0.119496,0 -0.182388,-0.376874 -0.06289,-0.376873 -0.119495,-0.376873 -0.03773,0 -0.339619,0.209971 -0.371065,0.258428 -0.691816,0.393026 -0.49685,0.215357 -0.993701,0.215357 -1.220111,0 -2.056581,-0.834506 -0.792443,-0.796819 -0.792443,-1.857449 0,-1.1952286 0.798733,-1.9758955 0.836469,-0.8129704 2.201233,-0.8129704 0.962254,0 1.679228,0.5706944 0.106914,0.1076782 0.333329,0.3122668 0.01887,0.016152 0.03773,0.016152 0.03773,0 0.106914,-0.3391864 0.06918,-0.3391863 0.176098,-0.3391863 0.16981,0 0.635214,0.080759 0.515717,0.09691 0.515717,0.1722851 z m -1.603756,2.2504745 q 0,-0.6622215 -0.459115,-1.1360052 -0.484271,-0.5114714 -1.23898,-0.5114714 -0.754708,0 -1.257848,0.5060875 -0.484271,0.4845515 -0.484271,1.1413891 0,0.6514532 0.484271,1.1306212 0.50314,0.500703 1.257848,0.500703 0.735841,0 1.232691,-0.511471 0.465404,-0.479168 0.465404,-1.1198532 z m 11.89295,-4.8885902 q 0,0.6945244 -0.07547,2.083573 -0.06918,1.3836648 -0.06918,2.0728053 0,2.1266441 0.106914,3.2195781 l 0.0063,0.06999 q 0.0063,0.05384 -0.169808,0.06999 -0.119496,0.01077 -0.339619,0 -0.264149,-0.01615 -0.245281,-0.01615 -0.09434,0 -0.276727,0.01615 -0.182387,0.01615 -0.276725,0.01615 -0.08805,0 -0.106914,-0.37149 -0.01258,-0.376874 -0.04402,-0.382258 -0.03773,0.01615 -0.09434,0.06999 -0.861625,0.796819 -1.98111,0.796819 -1.270426,0 -2.088027,-0.829122 -0.773577,-0.780668 -0.773577,-1.8843687 0,-1.1467731 0.779866,-1.92744 0.817601,-0.8183543 2.132052,-0.8183543 0.792444,0 1.383632,0.3984094 0.270437,0.1992046 0.534586,0.4037931 0.05031,-0.016152 0.05031,-0.075375 V 6.225296 q 0,-0.177669 -0.01887,-0.5383909 -0.01887,-0.3607221 -0.01887,-0.543775 0,-0.1292138 0.100624,-0.1292138 0.232702,0 0.691816,-0.032304 0.459115,-0.037687 0.685528,-0.037687 0.106914,0 0.106914,0.1130621 z m -1.572309,4.8993581 q 0,-0.6460698 -0.465405,-1.1360053 -0.496849,-0.5222392 -1.232691,-0.5222392 -0.773576,0 -1.276714,0.5168553 -0.477983,0.4845515 -0.477983,1.1629248 0,0.6460687 0.496851,1.1252367 0.509427,0.506088 1.257846,0.506088 0.75471,0 1.24527,-0.511472 0.452826,-0.479168 0.452826,-1.1413883 z m 8.804936,-2.2612424 q 0,0.021536 -0.01887,0.09691 -0.24528,1.2329153 -0.24528,2.1266446 0,0.053839 0.157231,2.4173751 l 0.0063,0.07538 q 0.0063,0.156133 -0.169809,0.156133 -0.16981,0 -0.522008,0.0323 -0.345907,0.03768 -0.515717,0.03768 -0.119495,0 -0.182388,-0.376874 -0.06289,-0.376873 -0.119495,-0.376873 -0.03773,0 -0.33962,0.209971 -0.371064,0.258428 -0.691815,0.393026 -0.496851,0.215357 -0.9937,0.215357 -1.220112,0 -2.056581,-0.834506 -0.792444,-0.796819 -0.792444,-1.857449 0,-1.1952286 0.798733,-1.9758955 0.836469,-0.8129704 2.201234,-0.8129704 0.962253,0 1.679226,0.5706944 0.106914,0.1076782 0.33333,0.3122668 0.01887,0.016152 0.03773,0.016152 0.03773,0 0.106914,-0.3391864 0.06918,-0.3391863 0.176099,-0.3391863 0.16981,0 0.635213,0.080759 0.515718,0.09691 0.515718,0.1722851 z m -1.603756,2.2504745 q 0,-0.6622215 -0.459115,-1.1360052 -0.484271,-0.5114714 -1.238979,-0.5114714 -0.75471,0 -1.257848,0.5060875 -0.484272,0.4845515 -0.484272,1.1413891 0,0.6514532 0.484272,1.1306212 0.503138,0.500703 1.257848,0.500703 0.73584,0 1.232691,-0.511471 0.465403,-0.479168 0.465403,-1.1198532 z");
}
path.rotakids {
	fill-opacity: 1;
	fill-rule: nonzero;
	stroke: none;
	d: path("m 8.0001011,9.8497472 c -0.5275393,0 -1.9475186,0.020665 -3.7212573,0.2212328 -0.1685314,0.01872 -0.2955417,0.159604 -0.2955417,0.328472 v 11.182349 c 0,0.183551 0.1483415,0.331849 0.3318489,0.331849 h 1.3839661 c 0.1834641,0 0.3301584,-0.148298 0.3301584,-0.331849 v -4.415352 c 0.4623222,0.03238 1.3167515,0.08508 2.3026745,0.09204 l 1.980955,4.457574 c 0.05161,0.119228 0.172327,0.197588 0.302295,0.197588 h 1.546933 c 0.113496,0 0.216767,-0.05598 0.278651,-0.150304 0.06027,-0.09479 0.07035,-0.213567 0.02534,-0.315805 l -2.121126,-4.791953 c 1.38199,-0.685582 2.054417,-1.701699 2.054417,-3.109072 0,-1.684687 -0.716793,-3.6959225 -4.1206584,-3.6959225 0,0 -0.097283,-8.646e-4 -0.2786505,-8.646e-4 z m 48.0081979,0.3174958 -3.310036,0.25923 0.130036,3.424872 c -0.220908,-0.192024 -0.480302,-0.328978 -0.77769,-0.410377 -0.297384,-0.08176 -0.604002,-0.122436 -0.92039,-0.122436 -0.633202,0 -1.197338,0.117079 -1.691328,0.352112 -0.493986,0.234989 -0.90803,0.556635 -1.2438,0.964302 -0.09567,0.116159 -0.183175,0.23939 -0.265983,0.36647 l 0.14608,-1.112073 -3.206173,-0.100482 0.07937,-0.153681 -3.18,-0.25923 -1.367079,2.92077 h -0.02871 l 0.287942,-6.072059 -3.266973,0.25923 0.07262,11.58344 2.992541,-0.25923 -0.114836,-3.352258 h 0.02871 l 1.870343,3.611488 1.785053,-0.88324 -0.09626,0.855376 3.060093,0.08275 0.37238,-2.832951 c 0.03368,0.112839 0.06938,0.224722 0.111459,0.331845 0.211021,0.536955 0.4938,0.990246 0.848619,1.359483 0.355156,0.369284 0.760332,0.652016 1.215932,0.848619 0.455556,0.196602 0.927493,0.295537 1.416901,0.295537 0.402747,0 0.803405,-0.06939 1.201574,-0.208565 0.398168,-0.139172 0.71278,-0.362722 0.943191,-0.669608 h 0.02789 v 0.820755 l 2.820283,-0.187459 0.0051,-1.091805 c 0.07707,0.03623 0.153006,0.0773 0.230523,0.111464 0.461592,0.203662 0.940351,0.380538 1.437165,0.53028 0.6388,0.192409 1.269822,0.324127 1.893136,0.39602 0.623659,0.07151 1.201513,0.04861 1.733549,-0.0684 0.532074,-0.116959 1.001353,-0.346423 1.40761,-0.688185 0.406257,-0.342151 0.705184,-0.832973 0.897593,-1.471781 0.178281,-0.591222 0.227575,-1.098904 0.148614,-1.522451 -0.07891,-0.423892 -0.223614,-0.786964 -0.435708,-1.089271 -0.211794,-0.302693 -0.46556,-0.562982 -0.760803,-0.781067 -0.295633,-0.218129 -0.570327,-0.410075 -0.823289,-0.576722 -0.253009,-0.166344 -0.459974,-0.325247 -0.620629,-0.477086 -0.161056,-0.151541 -0.21246,-0.322502 -0.155371,-0.511703 0.03558,-0.118027 0.12305,-0.195289 0.262607,-0.230524 0.139855,-0.03558 0.290989,-0.04392 0.453442,-0.02702 0.16279,0.01656 0.321698,0.04478 0.477086,0.08529 0.155734,0.04012 0.269464,0.07174 0.340292,0.09288 0.331192,0.100054 0.631403,0.216243 0.90097,0.348736 0.269913,0.132838 0.541197,0.279117 0.815688,0.439088 l 0.941501,-3.122582 c -0.143062,-0.08174 -0.32152,-0.177035 -0.533657,-0.286251 -0.212097,-0.10887 -0.444626,-0.224665 -0.698318,-0.346202 -0.253645,-0.121239 -0.524924,-0.238504 -0.813151,-0.351269 -0.288914,-0.112765 -0.58174,-0.213153 -0.87733,-0.302295 -0.768862,-0.231864 -1.453316,-0.335269 -2.054421,-0.309891 -0.6011,0.02534 -1.11985,0.140123 -1.555377,0.344512 -0.435829,0.20435 -0.786834,0.47195 -1.05465,0.803868 -0.268111,0.332264 -0.460723,0.693784 -0.578416,1.084205 -0.178277,0.591222 -0.230481,1.097819 -0.157901,1.519913 0.07327,0.422132 0.209421,0.782922 0.409535,1.081675 0.200498,0.299143 0.442923,0.552174 0.728711,0.7608 0.285404,0.208587 0.548149,0.394169 0.789515,0.557305 0.240982,0.162751 0.440183,0.316445 0.596985,0.460195 0.156391,0.144135 0.208111,0.304889 0.154528,0.482149 -0.04263,0.141995 -0.124645,0.233922 -0.246567,0.274431 -0.121926,0.04055 -0.26083,0.05317 -0.417974,0.038 -0.156802,-0.01479 -0.32839,-0.04731 -0.513393,-0.09626 -0.185306,-0.04969 -0.360443,-0.09858 -0.526061,-0.148614 -0.378441,-0.114135 -0.720904,-0.250194 -1.028477,-0.406996 -0.25543,-0.130634 -0.503913,-0.27578 -0.748132,-0.429798 z m -10.758465,0.0026 -0.306515,2.600741 3.142846,0.12075 0.454285,-2.497725 z m -20.026565,1.014119 c -0.0481,-0.01029 -0.09851,-0.01003 -0.14777,0.0017 l -1.333302,0.324248 c -0.146875,0.0358 -0.250786,0.169093 -0.250786,0.322558 v 1.353569 h -0.77009 c -0.183893,0 -0.332692,0.147498 -0.332692,0.331002 v 1.137403 c 0,0.183464 0.148799,0.332696 0.332692,0.332696 h 0.77009 v 3.84876 c 0,2.518512 0.613409,3.288926 2.622699,3.288926 0.400481,0 1.03756,-0.104611 1.501335,-0.189988 0.161813,-0.03152 0.276908,-0.178245 0.268521,-0.341982 l -0.05657,-1.096025 c -0.0084,-0.184359 -0.167117,-0.318853 -0.345359,-0.314962 -0.269014,0.01275 -0.767803,0.03632 -1.088429,0.03632 -0.864208,0 -0.907727,-0.428955 -0.907727,-1.662617 v -3.568419 h 2.028244 c 0.185306,0 0.331849,-0.149232 0.331849,-0.332697 v -1.137403 c 0,-0.183503 -0.146543,-0.331001 -0.331849,-0.331001 h -2.028244 v -1.678661 c 0,-0.102194 -0.0481,-0.197199 -0.128346,-0.26092 -0.0399,-0.03121 -0.08616,-0.05219 -0.134261,-0.06249 z M 7.5432825,11.769974 h 0.7287118 c 1.4821788,0 2.0096657,0.936015 2.0096657,1.812078 0,1.095731 -0.806185,1.785745 -2.1059243,1.799406 -1.008175,0.01077 -1.7578765,-0.02897 -2.1464602,-0.05573 v -3.447674 c 0.2352056,-0.04729 0.6993954,-0.108083 1.514007,-0.108083 z M 17.61694,12.976609 c -2.721747,0 -3.93658,1.397352 -3.93658,4.530193 0,3.178846 1.214833,4.596897 3.93658,4.596897 2.709166,0 3.91716,-1.418051 3.91716,-4.596897 0,-3.092012 -1.245011,-4.530193 -3.91716,-4.530193 z m 15.371407,0 c -1.004881,0 -2.612743,0.234449 -3.258529,0.337759 -0.165146,0.02482 -0.285179,0.170922 -0.278651,0.33945 l 0.04391,1.106158 c 0.0035,0.0897 0.04483,0.176876 0.111459,0.235591 0.06852,0.05959 0.159859,0.0891 0.249944,0.07937 0.721915,-0.06488 2.077447,-0.175634 3.027162,-0.175634 0.688968,0 1.084205,0.382928 1.084205,1.04874 v 0.526061 l -2.167567,0.173944 c -2.075531,0.155389 -2.921613,0.923559 -2.921613,2.659854 0,1.778538 0.92413,2.795796 2.535723,2.795796 1.338213,0 2.837499,-0.60436 2.850685,-0.6105 0.320409,0.246334 0.642557,0.458289 1.319795,0.553082 0.09334,0.01362 0.191155,-0.01431 0.264293,-0.07769 0.07182,-0.06282 0.11315,-0.15407 0.11315,-0.250786 v -5.786652 c 0,-2.015022 -0.944947,-2.954548 -2.973964,-2.954548 z m 11.86631,0.839333 -0.591079,5.271571 L 43.0772,17.261082 Z M 17.61694,14.795445 c 1.358584,0 1.889759,0.758771 1.889759,2.711357 0,1.771988 -0.310695,2.7958 -1.889759,2.7958 -1.603375,0 -1.906651,-0.980717 -1.906651,-2.7958 0,-2.002312 0.498465,-2.711357 1.906651,-2.711357 z m 34.052845,1.660083 c 0.196603,0.0096 0.376436,0.04974 0.539572,0.121593 0.162794,0.07224 0.304101,0.170792 0.423887,0.295537 0.120167,0.124365 0.209015,0.263498 0.266831,0.417135 0.05741,0.163136 0.08133,0.330626 0.07177,0.50326 -0.0095,0.172682 -0.05539,0.33829 -0.136789,0.496506 -0.0814,0.158216 -0.193667,0.303004 -0.337759,0.432332 -0.14375,0.129669 -0.321754,0.232231 -0.532818,0.309047 -0.220571,0.0768 -0.429093,0.113055 -0.625696,0.108083 -0.196603,-0.0046 -0.376435,-0.04293 -0.539571,-0.114836 -0.162751,-0.07185 -0.304945,-0.168159 -0.424731,-0.287941 -0.120167,-0.119829 -0.208211,-0.261595 -0.265983,-0.424731 -0.05741,-0.153248 -0.08133,-0.318948 -0.07178,-0.496506 0.0095,-0.177256 0.0554,-0.345048 0.136794,-0.50326 0.0814,-0.158173 0.193667,-0.304837 0.337759,-0.439089 0.14375,-0.134589 0.326259,-0.239831 0.547167,-0.316648 0.211068,-0.07683 0.41474,-0.109993 0.611342,-0.100482 z m -17.70194,1.576487 v 2.008824 c -0.01319,0.0043 -1.264543,0.352112 -2.186144,0.352112 -0.775754,0 -0.892526,-0.716269 -0.892526,-1.13909 0,-0.689304 0.371736,-1.046821 1.15429,-1.120516 z");
}
path.interact {
	fill-opacity: 1;
	fill-rule: nonzero;
	stroke: none;
	d: path("m 7.2715946,9.7346197 c -0.00501,8.803e-4 -0.01026,0.0044 -0.017194,0.00515 -0.030985,0.00533 -0.061968,0.014526 -0.089412,0.027512 -0.010327,0.0044 -0.01895,0.00946 -0.027512,0.014614 -0.027591,0.016375 -0.053229,0.036007 -0.075657,0.059323 -0.00516,0.0059 -0.010163,0.012017 -0.015477,0.018928 -0.020658,0.025663 -0.039582,0.053364 -0.053304,0.085972 -0.00176,0.0044 -0.00181,0.00946 -0.00343,0.014614 -0.01387,0.034379 -0.020632,0.071241 -0.020632,0.1100473 0,0.0018 -0.00172,0.0026 -0.00172,0.0035 v 0.0018 11.519623 c 0,0.189601 0.152964,0.340458 0.343895,0.340458 h 1.4254449 c 0.011951,0 0.022286,-0.0018 0.034392,-0.0035 l 0.00172,0.0035 c 0.00516,0 0.00969,-0.0035 0.016335,-0.0052 0.030985,-0.0052 0.06182,-0.01378 0.089411,-0.02751 0.010344,-0.0035 0.019676,-0.0087 0.028392,-0.01373 0.027424,-0.01726 0.052369,-0.03636 0.074796,-0.05846 0.00533,-0.0071 0.010476,-0.01347 0.015494,-0.01893 0.020645,-0.02553 0.039573,-0.05523 0.053307,-0.08769 0.00176,-0.0035 0.00264,-0.0084 0.0044,-0.01373 0.013865,-0.03438 0.020645,-0.07207 0.020645,-0.111763 l 0.00176,-0.0018 v -0.0026 -11.518766 c 0,-0.1890111 -0.1528149,-0.3413154 -0.3438929,-0.3413154 H 8.7324753 7.3078901 c -0.011951,0 -0.022295,0.00264 -0.034392,0.00352 z M 23.436383,10.88151 c -0.04963,-0.01056 -0.102203,-0.0103 -0.153035,0.0018 l -1.371279,0.334435 c -0.153159,0.03702 -0.260502,0.174542 -0.260502,0.332718 v 1.394495 H 20.85803 c -0.189311,0 -0.342178,0.151446 -0.342178,0.340458 v 1.172681 c 0,0.189011 0.152867,0.342174 0.342178,0.342174 h 0.793537 v 3.965113 c 0,2.594238 0.631107,3.389082 2.703016,3.389082 0.410927,0 1.067891,-0.108519 1.545806,-0.196019 0.166882,-0.03244 0.285543,-0.183989 0.276837,-0.352492 l -0.05846,-1.129697 c -0.0085,-0.188866 -0.171791,-0.328717 -0.355934,-0.323258 -0.276511,0.01197 -0.791075,0.03609 -1.119375,0.03609 -0.892238,0 -0.936257,-0.44012 -0.936257,-1.712596 v -3.676241 h 2.090024 c 0.18916,0 0.340457,-0.153163 0.340457,-0.342174 v -1.172723 c 0,-0.18901 -0.151297,-0.340456 -0.340457,-0.340456 H 23.7072 v -1.729794 c 0,-0.105794 -0.05078,-0.202701 -0.133257,-0.269098 -0.04133,-0.03209 -0.08792,-0.0539 -0.137558,-0.06448 z m 38.98308,0 c -0.04964,-0.01056 -0.101489,-0.0103 -0.152172,0.0018 l -1.373001,0.334435 c -0.152714,0.03702 -0.258781,0.174542 -0.258781,0.332718 v 1.394495 h -0.794398 c -0.188866,0 -0.342174,0.151446 -0.342174,0.340458 v 1.172681 c 0,0.189011 0.153308,0.342174 0.342174,0.342174 h 0.794398 v 3.965113 c 0,2.594238 0.631258,3.389082 2.703018,3.389082 0.410931,0 1.068947,-0.108519 1.544946,-0.196019 0.167029,-0.03244 0.286108,-0.183989 0.277695,-0.352492 l -0.05846,-1.129697 c -0.0069,-0.188866 -0.172945,-0.328717 -0.356793,-0.323258 -0.276952,0.01197 -0.790217,0.03609 -1.118516,0.03609 -0.892534,0 -0.937116,-0.44012 -0.937116,-1.712596 v -3.676241 h 2.090882 c 0.188861,0 0.339595,-0.153163 0.339595,-0.342174 v -1.172723 c 0,-0.18901 -0.150734,-0.340456 -0.339595,-0.340456 h -2.090881 v -1.729794 c 0,-0.105794 -0.04977,-0.202701 -0.132399,-0.269098 -0.04125,-0.03209 -0.08877,-0.0539 -0.138421,-0.06448 z m -30.965169,1.846715 c -0.11686,0 -0.225321,0.0053 -0.331855,0.01118 -2.567084,0.113612 -3.722668,1.560577 -3.722668,4.656341 0,0.02403 0.0018,0.04647 0.0018,0.06964 h -0.0018 c 0,1.061332 0.09465,1.951788 0.335298,2.660029 0.388649,1.363519 1.566378,2.006626 2.928269,2.006626 0.137373,0 0.289088,-0.0035 0.445345,-0.01202 0.113612,-0.0035 0.226977,-0.0085 0.345611,-0.01721 v -0.0035 c 0.952584,-0.07053 2.054884,-0.232475 2.567176,-0.314662 0.170127,-0.02584 0.294089,-0.177399 0.287155,-0.350771 l -0.04471,-1.140015 c -0.0035,-0.09119 -0.04644,-0.182245 -0.115201,-0.242445 -0.07053,-0.06182 -0.165259,-0.09114 -0.257923,-0.08081 -0.641548,0.05681 -1.76245,0.149914 -2.685819,0.173667 -0.878518,0 -1.363405,-0.354059 -1.576763,-1.227704 L 29.561149,18.527966 31.8876,18.34914 c 2.139043,-0.160095 3.0108,-0.950784 3.0108,-2.739984 0,-1.831987 -0.854744,-2.88098 -3.44411,-2.88098 z m 15.164911,0 c -1.035069,0 -2.692975,0.241517 -3.358131,0.348195 -0.170422,0.02584 -0.294089,0.176247 -0.287155,0.349913 l 0.04471,1.140011 c 0.0035,0.09281 0.04644,0.18254 0.1152,0.242445 0.07038,0.06212 0.164964,0.09198 0.257923,0.08254 0.744539,-0.06699 2.141015,-0.181405 3.119128,-0.181405 0.71031,0 1.117658,0.394727 1.117658,1.080691 v 0.541635 l -2.233598,0.179688 c -2.138893,0.160241 -3.0108,0.951514 -3.0108,2.73998 0,1.833021 0.952773,2.880121 2.613603,2.880121 1.378863,0 2.922849,-0.622594 2.936865,-0.627607 0.330073,0.252455 0.662039,0.471025 1.360103,0.569147 0.0965,0.01355 0.196133,-0.01563 0.271678,-0.08081 0.07393,-0.0636 0.116923,-0.158322 0.116923,-0.257923 v -5.962279 c 0,-2.076184 -0.973168,-3.044333 -3.064107,-3.044333 z m 8.634348,0 c -2.804203,0 -4.054524,1.440287 -4.054524,4.667518 0,0.02403 -3.9e-5,0.04647 0.0018,0.06964 h -0.0018 c 0,3.22782 1.250321,4.666654 4.054524,4.666654 1.035216,0 2.096173,-0.241093 2.761479,-0.347332 0.170422,-0.02598 0.293938,-0.17725 0.28715,-0.350771 l -0.0447,-1.140015 c -0.0035,-0.09119 -0.04645,-0.18239 -0.115205,-0.242445 -0.07053,-0.06197 -0.164965,-0.09129 -0.257923,-0.08082 -0.744543,0.06521 -1.652386,0.287151 -2.630796,0.287151 -1.256691,0 -1.810713,-0.550069 -1.93613,-2.039297 -0.0018,-0.02923 -0.0046,-0.05858 -0.0061,-0.08941 -0.0035,-0.05666 -0.007,-0.116755 -0.0103,-0.177105 -0.0018,-0.06182 -0.0062,-0.125298 -0.0077,-0.192581 -0.0018,-0.0431 -0.0018,-0.08882 -0.0018,-0.134121 -0.0018,-0.07569 -0.0026,-0.150314 -0.0026,-0.229547 0,-2.062464 0.513486,-2.793291 1.964501,-2.793291 0.978409,0 1.886253,0.221884 2.630796,0.288872 0.09296,0.0095 0.187391,-0.02042 0.257922,-0.08254 0.06876,-0.05991 0.111517,-0.149637 0.115205,-0.242445 l 0.04471,-1.140011 c 0.0067,-0.173666 -0.116729,-0.32409 -0.287151,-0.349913 -0.665305,-0.106678 -1.726263,-0.348195 -2.761478,-0.348195 z m -39.297747,0.147018 v 0.0018 c -0.05164,-8.81e-4 -0.108356,-8.81e-4 -0.17195,-8.81e-4 -0.909503,0 -1.800249,0.572479 -2.357401,0.968065 v -0.558829 c 0,-0.189011 -0.153013,-0.340457 -0.342174,-0.340457 h -1.372142 c -0.189161,0 -0.342174,0.151446 -0.342174,0.340457 v 8.310222 c 0,0.189605 0.153013,0.340456 0.342174,0.340456 h 1.372142 c 0.189161,0 0.342174,-0.150851 0.342174,-0.340456 v -5.743904 c 0.309416,-0.257923 1.267092,-0.976772 2.408987,-1.077253 0.0052,-8.81e-4 0.0088,-0.0018 0.01202,-0.0026 v 0.0026 c 0.703372,0 1.109153,0.32586 1.115941,0.999873 v 0.07738 5.743904 c 0,0.189605 0.153012,0.340456 0.342174,0.340456 h 1.372142 c 0.189012,0 0.342174,-0.150851 0.342178,-0.340456 v -1.452957 -3.094197 -1.128834 c 0,-1.960802 -0.87026,-2.932794 -2.728807,-3.034015 -0.02566,-0.0044 -0.105007,-0.0069 -0.264803,-0.0086 -0.02403,0 -0.04644,-0.0018 -0.0705,-0.0018 z m 25.212665,8.8e-4 c -0.907879,0.05415 -1.800399,0.572479 -2.357402,0.968065 v -0.558829 c 0,-0.189011 -0.153017,-0.340457 -0.342174,-0.340457 h -1.371284 c -0.18931,0 -0.343032,0.151446 -0.343032,0.340457 v 8.310222 c 0,0.189451 0.153722,0.340456 0.343032,0.340456 h 1.371284 c 0.189157,0 0.342174,-0.151005 0.342174,-0.340456 v -5.743904 c 0.309561,-0.257923 1.267243,-0.976772 2.408987,-1.077253 0.17529,-0.01563 0.311224,-0.163397 0.311224,-0.340458 V 13.21658 c 0,-0.09443 -0.03799,-0.18401 -0.108325,-0.247604 -0.06713,-0.06625 -0.161526,-0.101411 -0.254484,-0.09285 z m -9.714177,1.637799 c 1.344627,0 1.372143,0.714588 1.372143,1.151191 0,0.710165 -0.383366,1.078045 -1.189879,1.154624 L 29.50097,16.92463 c 0.0035,-0.06699 0.0067,-0.134292 0.0103,-0.197741 l 0.0068,-0.08426 c 0.09281,-1.114304 0.419581,-1.741128 1.08843,-1.993733 0.254374,-0.07481 0.543448,-0.134979 0.847701,-0.134979 z m 16.174244,3.422616 v 2.07025 c -0.01373,0.0053 -1.303464,0.362809 -2.252509,0.362809 -0.799584,0 -0.919922,-0.737707 -0.919922,-1.172685 0,-0.710165 0.383811,-1.079794 1.189879,-1.155487 z");
}
path.rotaract {
	fill-opacity: 1;
	fill-rule: nonzero;
	stroke: none;
	d: path("m 26.526957,20.510597 0.05705,1.108813 c 0.0087,0.165929 -0.108032,0.314584 -0.271367,0.345697 -0.46928,0.08642 -1.113999,0.191859 -1.519326,0.191859 -2.031816,0 -2.652335,-0.778678 -2.652335,-3.326439 v -3.892513 h -0.77868 c -0.186674,0 -0.336188,-0.150377 -0.336188,-0.336189 v -1.151156 c 0,-0.185812 0.149523,-0.334461 0.336188,-0.334461 h 0.778675 v -1.368949 c 0,-0.155558 0.105429,-0.29038 0.254087,-0.325813 l 1.348203,-0.328411 c 0.100255,-0.02333 0.204824,-0.0017 0.285198,0.06136 0.08124,0.06482 0.129629,0.160748 0.129629,0.263593 v 1.698219 h 2.051694 c 0.186675,0 0.33532,0.148649 0.33532,0.334461 v 1.151156 c 0,0.185812 -0.148638,0.336189 -0.33532,0.336189 h -2.051694 v 3.609907 c 0,1.247092 0.04495,1.680938 0.918681,1.680938 0.32409,0 0.8288,-0.0242 1.101035,-0.03717 0.179763,-0.0034 0.340506,0.132232 0.349148,0.3189 M 20.161871,17.48578 c 0,3.215814 -1.222027,4.650446 -3.962514,4.650446 -2.752587,0 -3.981529,-1.434632 -3.981529,-4.650446 0,-3.168285 1.228942,-4.58131 3.981529,-4.58131 2.703324,0 3.962514,1.454509 3.962514,4.58131 m -2.051692,0 c 0,-1.974776 -0.536688,-2.742219 -1.910822,-2.742219 -1.424257,0 -1.928972,0.717317 -1.928972,2.742219 0,1.836498 0.307669,2.828639 1.928972,2.828639 1.597103,0 1.910822,-1.036217 1.910822,-2.828639 m 46.999663,3.024817 0.05705,1.108813 c 0.0087,0.165929 -0.108032,0.314584 -0.271367,0.345697 -0.470145,0.08642 -1.113998,0.191859 -1.518463,0.191859 -2.033544,0 -2.653198,-0.778678 -2.653198,-3.326439 v -3.892513 h -0.779539 c -0.185811,0 -0.335324,-0.150377 -0.335324,-0.336189 v -1.151156 c 0,-0.185812 0.149506,-0.334461 0.335324,-0.334461 h 0.779539 v -1.368949 c 0,-0.155558 0.105446,-0.29038 0.25495,-0.325813 l 1.34734,-0.328411 c 0.09939,-0.02333 0.203959,-0.0017 0.285198,0.06136 0.08125,0.06482 0.129629,0.160748 0.129629,0.263593 v 1.698219 h 2.051694 c 0.186676,0 0.33532,0.148649 0.33532,0.334461 v 1.151156 c 0,0.185812 -0.148638,0.336189 -0.33532,0.336189 h -2.051694 v 3.609907 c 0,1.247092 0.04408,1.680938 0.919545,1.680938 0.323226,0 0.827936,-0.0242 1.100171,-0.03717 0.179762,-0.0034 0.340506,0.132232 0.349148,0.3189 m -54.120957,0.961895 c 0.0458,0.103709 0.03543,0.222974 -0.02506,0.318904 -0.06223,0.09593 -0.166798,0.15211 -0.281742,0.15211 H 9.116959 c -0.131364,0 -0.253222,-0.07864 -0.305076,-0.19964 L 6.807724,17.235151 c -0.997326,-0.0069 -1.86156,-0.0605 -2.329113,-0.09334 v 4.466361 c 0,0.185813 -0.148649,0.335326 -0.333592,0.335326 H 2.7449542 c -0.1858113,0 -0.3353245,-0.149506 -0.3353245,-0.335326 V 10.29794 c 0,-0.171119 0.1279073,-0.3137176 0.2981623,-0.3327316 1.79415,-0.203091 3.231374,-0.223833 3.764605,-0.223833 0.183219,0 0.281742,8.64e-4 0.281742,8.64e-4 3.443108,0 4.16734,2.0344036 4.16734,3.7386776 0,1.423392 -0.680156,2.450967 -2.077621,3.144946 z M 6.747225,11.68331 H 6.010034 c -0.823615,0 -1.293761,0.06222 -1.531426,0.109754 v 3.487189 c 0.393228,0.02765 1.151161,0.06741 2.170958,0.05704 1.314502,-0.01384 2.130339,-0.712133 2.130339,-1.820942 0,-0.88584 -0.533235,-1.833041 -2.03268,-1.833041 m 28.007247,4.209682 v 5.853461 c 0,0.09767 -0.04149,0.189267 -0.114073,0.253222 -0.07432,0.06395 -0.172849,0.09248 -0.26705,0.07864 -0.685338,-0.09593 -1.011155,-0.310261 -1.33524,-0.559162 -0.01293,0.0061 -1.529698,0.617067 -2.883087,0.617067 -1.62995,0 -2.56505,-1.029304 -2.56505,-2.827776 0,-1.756128 0.855591,-2.533074 2.955682,-2.690365 l 2.191695,-0.176297 v -0.531507 c 0,-0.674102 -0.400143,-1.06128 -1.096715,-1.06128 -0.960165,0 -2.331701,0.112351 -3.061118,0.178033 -0.09161,0.01036 -0.184084,-0.01988 -0.253219,-0.08037 -0.06741,-0.05877 -0.109751,-0.147786 -0.113206,-0.237666 l -0.04408,-1.120044 c -0.0061,-0.170255 0.114942,-0.31804 0.281737,-0.343103 0.653364,-0.104572 2.279852,-0.341374 3.296193,-0.341374 2.052557,0 3.007536,0.950658 3.007536,2.988523 m -3.962516,2.227134 c -0.791637,0.07432 -1.168445,0.436436 -1.168445,1.133877 0,0.427793 0.118396,1.152021 0.903125,1.152021 0.931644,0 2.197748,-0.351741 2.210713,-0.356062 v -2.03268 z m 19.17995,-2.227134 v 5.853461 c 0,0.09767 -0.04321,0.189267 -0.114942,0.253222 -0.07519,0.06395 -0.171982,0.09248 -0.26705,0.07864 -0.685336,-0.09593 -1.010285,-0.310261 -1.334373,-0.559162 -0.01378,0.0061 -1.529699,0.617067 -2.883087,0.617067 -1.630809,0 -2.565911,-1.029304 -2.565911,-2.827776 0,-1.756128 0.855592,-2.533074 2.955678,-2.690365 l 2.19256,-0.176297 v -0.531507 c 0,-0.674102 -0.400138,-1.06128 -1.097578,-1.06128 -0.960165,0 -2.330839,0.112351 -3.061983,0.178033 -0.09074,0.01036 -0.183214,-0.01988 -0.253217,-0.08037 -0.06741,-0.05877 -0.1089,-0.147786 -0.113223,-0.237666 l -0.04321,-1.120044 c -0.007,-0.170255 0.114942,-0.31804 0.281742,-0.343103 0.653359,-0.104572 2.280712,-0.341374 3.296188,-0.341374 2.052557,0 3.008401,0.950658 3.008401,2.988523 m -3.963381,2.227134 c -0.791637,0.07432 -1.167582,0.436436 -1.167582,1.133877 0,0.427793 0.117528,1.152021 0.902262,1.152021 0.931649,0 2.197748,-0.351741 2.211576,-0.356062 v -2.03268 z m -4.707479,-5.070465 c -0.891891,0.05272 -1.768224,0.561755 -2.314421,0.949794 v -0.548787 c 0,-0.185812 -0.150374,-0.334461 -0.336185,-0.334461 h -1.346479 c -0.185811,0 -0.336185,0.148649 -0.336185,0.334461 v 8.157506 c 0,0.185813 0.150374,0.335326 0.336185,0.335326 h 1.346479 c 0.185811,0 0.336185,-0.149506 0.336185,-0.335326 v -5.638264 c 0.304211,-0.253222 1.244498,-0.958436 2.364547,-1.057824 0.172846,-0.01469 0.30594,-0.159884 0.30594,-0.333592 v -1.195237 c 0,-0.09334 -0.03717,-0.180626 -0.106297,-0.242851 -0.06569,-0.06482 -0.159019,-0.09939 -0.249764,-0.09075 m 17.086778,7.282042 0.04408,1.119181 c 0.007,0.170255 -0.114942,0.318903 -0.281737,0.343966 -0.653364,0.105445 -1.693903,0.341375 -2.710243,0.341375 -2.75345,0 -3.980659,-1.413026 -3.980659,-4.581311 h 8.62e-4 c 0,-0.02333 -8.62e-4,-0.04581 -8.62e-4,-0.06914 0,-3.168285 1.227209,-4.58131 3.980659,-4.58131 1.01634,0 2.056879,0.236801 2.710243,0.341374 0.166797,0.02506 0.288651,0.172847 0.281737,0.343102 l -0.04408,1.120045 c -0.0034,0.08988 -0.04581,0.178897 -0.113222,0.237665 -0.06913,0.0605 -0.162474,0.09075 -0.252355,0.08037 -0.731141,-0.06568 -1.622171,-0.28347 -2.582335,-0.28347 -1.424257,0 -1.929835,0.717318 -1.929835,2.74222 0,0.07778 0.0026,0.151236 0.0026,0.226426 8.64e-4,0.04321 8.64e-4,0.08902 0.0026,0.131364 0.0026,0.06482 0.0043,0.127044 0.0078,0.189268 0.0026,0.05877 0.0051,0.116673 0.0095,0.172848 0.0017,0.03025 0.0043,0.05877 0.007,0.08815 0.122719,1.462282 0.665463,2.002431 1.90045,2.002431 0.960165,0 1.851195,-0.217788 2.582336,-0.282606 0.08987,-0.0095 0.183219,0.01901 0.252354,0.07951 0.06741,0.05963 0.109752,0.148655 0.113223,0.23853");
}
