[gtk+] Adwaita: stop using assets for treeview check/radio...



commit a1cbcc18b3735438ec2e585b4f8a45a3a7e82f8e
Author: Lapo Calamandrei <calamandrei gmail com>
Date:   Tue Feb 16 02:11:12 2016 +0100

    Adwaita: stop using assets for treeview check/radio...
    
    ...the sizing is still off, waiting for Benjamin to add the magic,
    probably the icon shadow is missing, not sure since it's blurry.
    This needs to be reverted in case the sizing won't get fixed.

 gtk/theme/Adwaita/_common.scss           |   95 +-
 gtk/theme/Adwaita/assets.svg             | 4463 +-----------------------------
 gtk/theme/Adwaita/gtk-contained-dark.css |  339 +--
 gtk/theme/Adwaita/gtk-contained.css      |  453 +---
 4 files changed, 144 insertions(+), 5206 deletions(-)
---
diff --git a/gtk/theme/Adwaita/_common.scss b/gtk/theme/Adwaita/_common.scss
index 781f2c5..e14dcc3 100644
--- a/gtk/theme/Adwaita/_common.scss
+++ b/gtk/theme/Adwaita/_common.scss
@@ -1459,10 +1459,12 @@ treeview.view {
 
   &:disabled {
     color: $insensitive_fg_color;
+
     &:selected {
       color: mix($selected_fg_color, $selected_bg_color, 40%);
       &:backdrop { color: mix($backdrop_selected_fg_color, $selected_bg_color, 30%); }
     }
+
     &:backdrop { color: $backdrop_insensitive_color; }
   }
 
@@ -1486,14 +1488,18 @@ treeview.view {
 
   &.expander {
     -gtk-icon-source: -gtk-icontheme('pan-end-symbolic');
+
     &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl'); }
 
     color: mix($fg_color, $base_color, 70%);
 
     &:hover { color: $fg_color; }
+
     &:selected {
       color: mix($selected_fg_color, $selected_bg_color, 70%);
+
       &:hover { color: $selected_fg_color; }
+
       &:backdrop { color: mix($backdrop_selected_fg_color, $selected_bg_color, 70%); }
     }
 
@@ -2278,52 +2284,6 @@ switch {
 // draw regular check and radio items using our PNG assets
 // all assets are rendered from assets.svg. never add pngs directly
 
- each $w,$a in ('check', 'checkbox'),
-               ('radio','radio') {
-
-  //standard checks and radios
-  @each $s,$as in ('','-unchecked'),
-                  (':hover', '-unchecked-hover'),
-                  (':active', '-unchecked-active'),
-                  (':disabled','-unchecked-insensitive'),
-                  (':backdrop', '-unchecked-backdrop'),
-                  (':backdrop:disabled', '-unchecked-backdrop-insensitive'),
-                  (':indeterminate', '-mixed'),
-                  (':indeterminate:hover', '-mixed-hover'),
-                  (':indeterminate:selected', '-mixed-active'),
-                  (':indeterminate:backdrop', '-mixed-backdrop'),
-                  (':indeterminate:disabled', '-mixed-insensitive'),
-                  (':indeterminate:disabled:backdrop', '-mixed-backdrop-insensitive'),
-                  (':checked', '-checked'),
-                  (':checked:disabled','-checked-insensitive'),
-                  (':checked:hover', '-checked-hover'),
-                  (':checked:active', '-checked-active'),
-                  (':backdrop:checked', '-checked-backdrop'),
-                  (':backdrop:checked:disabled', '-checked-backdrop-insensitive') {
-    treeview.#{$w}#{$s} {
-      -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}#{$asset_suffix}.png"),
-                                    url("assets/#{$a}#{$as}#{$asset_suffix} 2 png"));
-      -gtk-icon-shadow: if(str-index($s,"backdrop"), none, 0 1px 0 $borders_edge); //no edge highlight for 
:backdrop
-      & button.flat { -gtk-icon-shadow: none; }
-    }
-    @if $variant == 'light' {
-      // the borders of the light variant versions of checks and radios are
-      // too similar in luminosity to the selected background color, hence
-      // we need special casing.
-      .view treeview.#{$w}#{$s}:selected {
-        -gtk-icon-source: -gtk-scaled(url("assets/selected-#{$a}#{$as}#{$asset_suffix}.png"),
-                                      url("assets/selected-#{$a}#{$as}#{$asset_suffix} 2 png"));
-      }
-    }
-  }
-}
-
-//treeview and rows
-.view.check, .view.radio,
-row .check, row .radio {
-  -gtk-icon-shadow: none;
-  &:selected, &:hover { -gtk-icon-shadow: none; }
-}
 
 //selection-mode
 @each $s,$as in ('','-selectionmode'),
@@ -2346,6 +2306,7 @@ checkbutton.text-button, radiobutton.text-button {
   // this is for a nice focus on check and radios text
   padding: 1px 2px 4px;
   outline-offset: 0;
+
   &:disabled,
   &:disabled:active,
   &:disabled:indeterminate {
@@ -2358,6 +2319,7 @@ checkbutton.text-button, radiobutton.text-button {
 check,
 radio {
   margin: 0 4px;
+
   &:only-child { margin: 0; }
 
   min-height: 14px;
@@ -2365,11 +2327,13 @@ radio {
   border: 1px solid;
   -gtk-icon-source: none;
   @include button(normal);
+
   &:hover { @include button(hover); }
   &:active { @include button(active); }
   &:disabled { @include button(insensitive); }
   &:backdrop {
     @include button(backdrop);
+
     &:disabled { @include button(backdrop-insensitive); }
   }
 
@@ -2394,6 +2358,7 @@ radio {
   }
 }
 
+%check,
 check {
   border-radius: 3px;
   &:checked { -gtk-icon-source: image(-gtk-recolor(url("assets/check-symbolic.svg")),
@@ -2402,6 +2367,7 @@ check {
                                             -gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); }
 }
 
+%radio,
 radio {
   border-radius: 100%;
   &:checked { -gtk-icon-source: image(-gtk-recolor(url("assets/bullet-symbolic.svg")),
@@ -2441,6 +2407,43 @@ menu menuitem {
 }
 
 
+// treeview stuff, let's the fun begin:
+treeview.view check:selected {
+  &:focus, &:backdrop, & {
+    &:disabled, & {
+      @extend %check;
+      @if $variant == 'light' { border-color: $selected_borders_color; }
+    }
+  }
+}
+
+treeview.view radio:selected {
+  &:focus, &:backdrop, & {
+    &:disabled, & {
+      @extend %radio;
+      @if $variant == 'light' { border-color: $selected_borders_color; }
+    }
+  }
+}
+
+treeview.view check,
+treeview.view radio {
+  &:dir(rtl), &:dir(ltr) {  // specificity bump
+    &:selected, & {
+      &:focus, &:hover, & { color: $fg_color; }
+
+      &:backdrop {
+        &:hover, & { color: $backdrop_fg_color; }
+
+        &:disabled { color: $backdrop_insensitive_color; }
+      }
+
+      &:disabled { color: $insensitive_fg_color;}
+    }
+  }
+}
+
+
 /************
  * GtkScale *
  ************/
diff --git a/gtk/theme/Adwaita/assets.svg b/gtk/theme/Adwaita/assets.svg
index 63d920e..6bfabc7 100644
--- a/gtk/theme/Adwaita/assets.svg
+++ b/gtk/theme/Adwaita/assets.svg
@@ -34,167 +34,6 @@
          style="stop-color:#d3d3d3;stop-opacity:1;" />
     </linearGradient>
     <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9524-6-0-1-0-3">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9526-2-6-8-7-1" />
-      <stop
-         id="stop9528-3-09-6-5-3"
-         offset="0.62613326"
-         style="stop-color:#fbfbfb;stop-opacity:1" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1"
-         offset="1"
-         id="stop9530-3-4-7-2-8" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="pushed-27-4-47-7">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9855-55-0-7-2" />
-      <stop
-         id="stop9857-44-0-4-3"
-         offset="0.61748672"
-         style="stop-color:#d3d7cf;stop-opacity:1" />
-      <stop
-         style="stop-color:#babdb6;stop-opacity:1"
-         offset="1"
-         id="stop9859-2-3-05-6" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-38">
-      <stop
-         id="stop5583-0-92-8-0-7-6-2"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1" />
-      <stop
-         style="stop-color:#ededed;stop-opacity:1;"
-         offset="0.40000001"
-         id="stop5585-4-7-2-7-9-9-14" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-05"
-         offset="1"
-         style="stop-color:#d3d3d3;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9524-6-0-1-3-9-4">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9526-2-6-8-2-5-9" />
-      <stop
-         id="stop9528-3-09-6-4-4-9"
-         offset="0.62613326"
-         style="stop-color:#fbfbfb;stop-opacity:1" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1"
-         offset="1"
-         id="stop9530-3-4-7-5-0-9" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="pushed-27-4-47-7-4-3">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9855-55-0-7-2-6-3" />
-      <stop
-         id="stop9857-44-0-4-3-2-9"
-         offset="0.61748672"
-         style="stop-color:#d3d7cf;stop-opacity:1" />
-      <stop
-         style="stop-color:#babdb6;stop-opacity:1"
-         offset="1"
-         id="stop9859-2-3-05-6-43-9" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-35-8">
-      <stop
-         id="stop5583-0-92-8-0-7-6-5-1"
-         offset="0"
-         style="stop-color:#454c4c;stop-opacity:1;" />
-      <stop
-         style="stop-color:#393f3f;stop-opacity:1;"
-         offset="0.40000001"
-         id="stop5585-4-7-2-7-9-9-92-0" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-21-5"
-         offset="1"
-         style="stop-color:#2d3232;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-35-8-0">
-      <stop
-         id="stop5583-0-92-8-0-7-6-5-1-2"
-         offset="0"
-         style="stop-color:#5b6464;stop-opacity:1;" />
-      <stop
-         style="stop-color:#434a4a;stop-opacity:1;"
-         offset="0.40000001"
-         id="stop5585-4-7-2-7-9-9-92-0-5" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-21-5-7"
-         offset="1"
-         style="stop-color:#393f3f;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-35-8-23">
-      <stop
-         id="stop5583-0-92-8-0-7-6-5-1-35"
-         offset="0"
-         style="stop-color:#212424;stop-opacity:1" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-21-5-72"
-         offset="1"
-         style="stop-color:#2d3232;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-35-8-50">
-      <stop
-         id="stop5583-0-92-8-0-7-6-5-1-0"
-         offset="0"
-         style="stop-color:#454c4c;stop-opacity:1;" />
-      <stop
-         style="stop-color:#393f3f;stop-opacity:1;"
-         offset="0.40000001"
-         id="stop5585-4-7-2-7-9-9-92-0-55" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-21-5-0"
-         offset="1"
-         style="stop-color:#2d3232;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-35-8-0-2">
-      <stop
-         id="stop5583-0-92-8-0-7-6-5-1-2-9"
-         offset="0"
-         style="stop-color:#5b6464;stop-opacity:1;" />
-      <stop
-         style="stop-color:#434a4a;stop-opacity:1;"
-         offset="0.40000001"
-         id="stop5585-4-7-2-7-9-9-92-0-5-3" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-21-5-7-8"
-         offset="1"
-         style="stop-color:#393f3f;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-35-8-23-74">
-      <stop
-         id="stop5583-0-92-8-0-7-6-5-1-35-8"
-         offset="0"
-         style="stop-color:#212424;stop-opacity:1" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-21-5-72-27"
-         offset="1"
-         style="stop-color:#2d3232;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
        id="linearGradient5581-5-2-4-6-8-7-38-7">
       <stop
          id="stop5583-0-92-8-0-7-6-2-3"
@@ -396,66 +235,6 @@
        y2="2.869415" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-23-74"
-       id="linearGradient7099"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0-2"
-       id="linearGradient7101"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-50"
-       id="linearGradient7103"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-23"
-       id="linearGradient7105"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0"
-       id="linearGradient7107"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8"
-       id="linearGradient7109"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
        xlink:href="#linearGradient9524-6-0-1-0-3-2"
        id="linearGradient7117-1"
        gradientUnits="userSpaceOnUse"
@@ -880,220 +659,6 @@
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#pushed-27-4-47-7-4-3"
-       id="linearGradient4834"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,-280)"
-       x1="60.805183"
-       y1="446.62411"
-       x2="60.805183"
-       y2="404.45575" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9524-6-0-1-3-9-4"
-       id="linearGradient4836"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,0)"
-       x1="63.568954"
-       y1="124.97202"
-       x2="63.568954"
-       y2="154.85121" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#pushed-27-4-47-7"
-       id="linearGradient4838"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,-280)"
-       x1="60.805183"
-       y1="446.62411"
-       x2="60.805183"
-       y2="404.45575" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9524-6-0-1-0-3"
-       id="linearGradient4840"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,0)"
-       x1="63.568954"
-       y1="124.97202"
-       x2="63.568954"
-       y2="154.85121" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7"
-       id="linearGradient4842"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-38"
-       id="linearGradient4844"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.05545"
-       x2="63.568954"
-       y2="152.76778" />
-    <linearGradient
-       inkscape:collect="always"
-       id="pushed-27-4-47-7-4-3-1">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9855-55-0-7-2-6-3-4" />
-      <stop
-         id="stop9857-44-0-4-3-2-9-2"
-         offset="0.61748672"
-         style="stop-color:#d3d7cf;stop-opacity:1" />
-      <stop
-         style="stop-color:#babdb6;stop-opacity:1"
-         offset="1"
-         id="stop9859-2-3-05-6-43-9-5" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9524-6-0-1-3-9-4-6">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9526-2-6-8-2-5-9-3" />
-      <stop
-         id="stop9528-3-09-6-4-4-9-5"
-         offset="0.62613326"
-         style="stop-color:#fbfbfb;stop-opacity:1" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1"
-         offset="1"
-         id="stop9530-3-4-7-5-0-9-6" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="pushed-27-4-47-7-7">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9855-55-0-7-2-0" />
-      <stop
-         id="stop9857-44-0-4-3-5"
-         offset="0.61748672"
-         style="stop-color:#d3d7cf;stop-opacity:1" />
-      <stop
-         style="stop-color:#babdb6;stop-opacity:1"
-         offset="1"
-         id="stop9859-2-3-05-6-9" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9524-6-0-1-0-3-8">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop9526-2-6-8-7-1-8" />
-      <stop
-         id="stop9528-3-09-6-5-3-2"
-         offset="0.62613326"
-         style="stop-color:#fbfbfb;stop-opacity:1" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1"
-         offset="1"
-         id="stop9530-3-4-7-2-8-2" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-0">
-      <stop
-         id="stop5583-0-92-8-0-7-6-4"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1" />
-      <stop
-         style="stop-color:#ededed;stop-opacity:1;"
-         offset="0.40000001"
-         id="stop5585-4-7-2-7-9-9-69" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-9"
-         offset="1"
-         style="stop-color:#d3d3d3;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5581-5-2-4-6-8-7-38-6">
-      <stop
-         id="stop5583-0-92-8-0-7-6-2-0"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1" />
-      <stop
-         style="stop-color:#ededed;stop-opacity:1;"
-         offset="0.40000001"
-         id="stop5585-4-7-2-7-9-9-14-6" />
-      <stop
-         id="stop5587-6-7-2-0-3-1-05-4"
-         offset="1"
-         style="stop-color:#d3d3d3;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#pushed-27-4-47-7-4-3-1"
-       id="linearGradient10479"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,-280)"
-       x1="60.805183"
-       y1="446.62411"
-       x2="60.805183"
-       y2="404.45575" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9524-6-0-1-3-9-4-6"
-       id="linearGradient10481"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,0)"
-       x1="63.568954"
-       y1="124.97202"
-       x2="63.568954"
-       y2="154.85121" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#pushed-27-4-47-7-7"
-       id="linearGradient10483"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,-280)"
-       x1="60.805183"
-       y1="446.62411"
-       x2="60.805183"
-       y2="404.45575" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9524-6-0-1-0-3-8"
-       id="linearGradient10485"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-102.29487,0)"
-       x1="63.568954"
-       y1="124.97202"
-       x2="63.568954"
-       y2="154.85121" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-0"
-       id="linearGradient10487"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.16142"
-       x2="63.568954"
-       y2="152.6618" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-38-6"
-       id="linearGradient10489"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153381)"
-       x1="63.568954"
-       y1="127.05545"
-       x2="63.568954"
-       y2="152.76778" />
-    <linearGradient
-       inkscape:collect="always"
        xlink:href="#pushed-27-4-47-7-1"
        id="linearGradient10491"
        gradientUnits="userSpaceOnUse"
@@ -1114,26 +679,6 @@
        y2="152.6618" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient9524-6-0-1-0-3"
-       id="linearGradient7117-1-9"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-287.29777,12.621634)"
-       x1="95.453751"
-       y1="-12.24312"
-       x2="95.453751"
-       y2="6.2584834" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9524-6-0-1-0-3"
-       id="linearGradient7117-1-2-4-7"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.025641,0,0,1,-377.29832,12.622171)"
-       x1="95.453751"
-       y1="-12.24312"
-       x2="95.453751"
-       y2="6.2584834" />
-    <linearGradient
-       inkscape:collect="always"
        xlink:href="#linearGradient5581-5-2-4-6-8-7-38-7-2"
        id="linearGradient10615"
        gradientUnits="userSpaceOnUse"
@@ -1164,26 +709,6 @@
        y2="6.2584834" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8"
-       id="linearGradient4838-7-9-1"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,-0.82153846)"
-       x1="95.213127"
-       y1="167.30688"
-       x2="95.213127"
-       y2="186.8056" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8"
-       id="linearGradient10840-1"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,17.336617,179.17846)"
-       x1="98.595253"
-       y1="-9.236434"
-       x2="98.595253"
-       y2="9.2269421" />
-    <linearGradient
-       inkscape:collect="always"
        xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-1"
        id="linearGradient10867"
        gradientUnits="userSpaceOnUse"
@@ -1194,26 +719,6 @@
        y2="-8.0055418" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8"
-       id="linearGradient10867-5"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-3.0317573,0,0,-1.0053174,642.69371,179.54591)"
-       x1="99.528183"
-       y1="9.5786257"
-       x2="99.528183"
-       y2="-8.0055418" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0"
-       id="linearGradient7101-3-6-7"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,29.178471)"
-       x1="94.996544"
-       y1="167.37457"
-       x2="94.996544"
-       y2="185.89658" />
-    <linearGradient
-       inkscape:collect="always"
        xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0-2-7-34"
        id="linearGradient11025"
        gradientUnits="userSpaceOnUse"
@@ -1224,26 +729,6 @@
        y2="-9.2648945" />
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0"
-       id="linearGradient7101-3-0-4-5"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,-102.66338,59.178471)"
-       x1="94.996544"
-       y1="167.37457"
-       x2="94.996544"
-       y2="185.89658" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0"
-       id="linearGradient11066-2"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(3.0317573,0,0,1.0053174,17.336617,239.17846)"
-       x1="99.006401"
-       y1="-10.013041"
-       x2="99.006401"
-       y2="9.3838177" />
-    <linearGradient
-       inkscape:collect="always"
        xlink:href="#linearGradient5581-5-2-4-6-8-7-35-8-0-2-7-7-3"
        id="linearGradient11093"
        gradientUnits="userSpaceOnUse"
@@ -1321,14 +806,14 @@
      inkscape:pageopacity="0.0"
      inkscape:pageshadow="2"
      inkscape:zoom="1"
-     inkscape:cx="338.22771"
+     inkscape:cx="740.22771"
      inkscape:cy="815.02446"
      inkscape:document-units="px"
      inkscape:current-layer="layer1"
      showgrid="false"
      showborder="false"
-     inkscape:window-width="2560"
-     inkscape:window-height="1376"
+     inkscape:window-width="1920"
+     inkscape:window-height="1016"
      inkscape:window-x="0"
      inkscape:window-y="27"
      inkscape:window-maximized="1"
@@ -1413,2587 +898,6 @@
      id="layer1"
      style="display:inline">
     <g
-       style="display:inline"
-       id="radio-unchecked"
-       transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)"
-       inkscape:label="#g15805">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <g
-         id="g7025">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7">
-            <rect
-               ry="15.453857"
-               
style="color:#000000;fill:url(#linearGradient4844);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:2.08222389;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4"
-           d="m 208.0967,269.64077 c -0.006,0.11897 -0.0334,0.24687 -0.0334,0.36738 0,3.84862 
3.09665,6.94697 6.94316,6.94697 3.84651,0 6.94316,-3.09835 6.94316,-6.94697 0,-0.12051 -0.0273,-0.24841 
-0.0333,-0.36738 -0.3543,3.51156 -3.30368,6.24559 -6.90979,6.24559 -3.60611,0 -6.55549,-2.73403 
-6.90978,-6.24559 z"
-           
style="color:#000000;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-3-0"
-           d="m 208.16346,268.93939 c -0.0346,0.22741 -0.0487,0.46549 -0.0668,0.70138 0.35429,3.51156 
3.30367,6.24559 6.90978,6.24559 3.60611,0 6.55549,-2.73403 6.90978,-6.24559 -0.0182,-0.23589 -0.0322,-0.47397 
-0.0668,-0.70138 -0.51523,3.33254 -3.36353,5.8782 -6.84302,5.8782 -3.47949,0 -6.32779,-2.54566 
-6.84302,-5.8782 z"
-           
style="color:#000000;fill:#f3f3f3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 
3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 
-0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 
-6.90978,6.24559 z"
-           
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="radio-checked"
-       transform="matrix(0.93340838,0,0,0.93289741,-309.56307,-244.03705)"
-       inkscape:label="#g2928">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-1"
-         width="17.141478"
-         height="17.150867"
-         x="456.99054"
-         y="261.97867" />
-      <use
-         transform="matrix(1.0029614,0,0,1.0029613,249.38699,-0.77583998)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025"
-         id="use7034"
-         width="1"
-         height="1" />
-      <g
-         id="g7444">
-        <rect
-           rx="7.9057436"
-           y="268.29523"
-           x="462.22174"
-           height="5.5533452"
-           width="5.5564694"
-           id="use15101-6-2"
-           
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           ry="8.0419083" />
-        <rect
-           rx="2.7766726"
-           y="267.2233"
-           x="462.22174"
-           height="5.5533452"
-           width="5.5564694"
-           id="use15101-6"
-           
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           ry="2.7766726" />
-      </g>
-    </g>
-    <g
-       id="checkbox-checked"
-       transform="matrix(0.99650823,0,0,0.99810193,0.25541,-29.912933)"
-       inkscape:label="#g10801">
-      <use
-         transform="matrix(1.003504,0,0,1.0019017,19.813776,-0.08723712)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400"
-         id="use5460"
-         width="1"
-         height="1" />
-      <rect
-         y="30.332689"
-         x="36.905502"
-         height="16.030426"
-         width="16.023939"
-         id="rect13523-5"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <g
-         id="g5708">
-        <path
-           id="path12830-4-17-08"
-           transform="matrix(1.003504,0,0,1.0019017,-0.25630433,39.988835)"
-           d="M 50.9375,-7.59375 44,-0.75 42.125,-2.625 40,-2.65625 l 0,1.71875 2.9375,2.90625 c 
0.584627,0.5855605 1.540374,0.5855605 2.125,0 l 5.9375,-6 0,-3.5625 -0.0625,0 z"
-           
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.7;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-           inkscape:connector-curvature="0" />
-        <path
-           sodipodi:nodetypes="cccccccccc"
-           inkscape:connector-curvature="0"
-           id="path12830-4-17"
-           d="m 50.868001,31.380423 -6.9811,6.843038 -1.871896,-1.872654 -2.138425,-0.01563 0.01122,1.699486 
2.936988,2.938186 c 0.586676,0.586674 1.537597,0.586674 2.124273,0 l 7.996316,-8.077832 0.002,-1.570761 z"
-           
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
 />
-      </g>
-    </g>
-    <g
-       id="radio-mixed"
-       transform="matrix(0.93617253,0,0,0.93566004,8.83241,-28.03304)"
-       inkscape:label="#g10885">
-      <use
-         transform="translate(-70.089173,-231.63092)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025"
-         id="use7034-3"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-9"
-         width="17.090866"
-         height="17.100227"
-         x="136.9014"
-         y="30.347799" />
-      <g
-         id="use7164"
-         transform="matrix(1.0681792,0,0,1.0687642,118.74234,-2.1022682)">
-        <rect
-           
style="opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect4477"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="37.393383"
-           rx="1.4843769"
-           ry="1.4843769" />
-        <rect
-           
style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect4479"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="36.393433"
-           rx="1.4843769"
-           ry="1.4843769" />
-      </g>
-    </g>
-    <g
-       id="checkbox-mixed"
-       transform="translate(39.99573,-30)"
-       inkscape:label="#g14334">
-      <use
-         transform="translate(0.004272,-3.9091922e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400"
-         id="use5460-0"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <g
-         id="g5684">
-        <rect
-           ry="1.4843769"
-           rx="1.4843769"
-           y="37.393383"
-           x="20.004272"
-           height="2.9687538"
-           width="9"
-           id="rect5203-9-2"
-           
style="opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-        <rect
-           ry="1.4843769"
-           rx="1.4843769"
-           y="36.393433"
-           x="20.004272"
-           height="2.9687538"
-           width="9"
-           id="rect5203-9"
-           
style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      </g>
-    </g>
-    <g
-       id="checkbox-unchecked"
-       inkscape:label="#g14325"
-       transform="translate(0,-30)">
-      <g
-         style="display:inline"
-         id="g15812-6-6-1"
-         transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-           id="g5489-2-9-6-8-8"
-           style="display:inline">
-          <g
-             id="g5428-8-1-4-0-0" />
-        </g>
-      </g>
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect13523"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <g
-         id="g5400">
-        <rect
-           ry="6"
-           
style="color:#000000;fill:url(#linearGradient4842);fill-opacity:1;stroke:#a1a1a1;stroke-width:2.09697676;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7"
-           d="m 18,40.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 
2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 
19.044053,43.374983 18,42.333895 18,40.999983 z"
-           
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7-7"
-           d="m 18,39.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 
2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 
19.044053,42.374983 18,41.333895 18,39.999983 z"
-           
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
 />
-        <path
-           
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-           d="m 18,34.737183 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 
2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 
-2.34375,1.041088 -2.34375,2.375 z"
-           id="rect5147-9-1-5-7-6-1-7-7-5"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963,-9.912935)"
-       id="checkbox-checked-hover">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722936)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0"
-         id="use5994"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14466"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5708"
-         id="use5736"
-         transform="matrix(0.99799921,0,0,0.99999996,0.1059371,1.727819e-5)"
-         width="1000"
-         height="1052.3622" />
-    </g>
-    <g
-       inkscape:label="#g14334"
-       transform="translate(39.99573,-10)"
-       id="checkbox-mixed-hover">
-      <use
-         transform="translate(0.004272,0)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0"
-         id="use5994-2"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect14482"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <use
-         transform="translate(-4.609375e-7,-5e-5)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5684"
-         id="use5688"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-unchecked-hover"
-       transform="translate(0,-10)">
-      <g
-         transform="translate(0,-3.9660404e-6)"
-         style="display:inline"
-         id="g5400-0">
-        <rect
-           ry="6"
-           
style="color:#000000;fill:url(#linearGradient4840);fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6-4"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7-78"
-           d="m 18,40.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 
2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 
19.044053,43.374983 18,42.333895 18,40.999983 z"
-           
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7-7-3"
-           d="m 18,39.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 
2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 
19.044053,42.374983 18,41.333895 18,39.999983 z"
-           
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.4;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
 />
-        <path
-           
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-           d="m 18,34.737187 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 
2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 
-2.34375,1.041088 -2.34375,2.375 z"
-           id="rect5147-9-1-5-7-6-1-7-7-5-0"
-           inkscape:connector-curvature="0" />
-      </g>
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14506"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-    </g>
-    <g
-       id="checkbox-checked-active"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963,10.087065)"
-       inkscape:label="#g10801">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5"
-         id="use6314"
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722936)"
-         width="1"
-         height="1" />
-      <rect
-         y="30.332689"
-         x="36.905502"
-         height="16.030426"
-         width="16.023939"
-         id="rect14685"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <path
-         inkscape:connector-curvature="0"
-         id="path12830-4-17-08-5"
-         d="m 50.863858,32.380676 -6.94788,6.856765 -1.877805,-1.878566 -2.12818,-0.03131 0,1.722018 
2.941895,2.911777 c 0.585502,0.586674 1.542679,0.586674 2.12818,0 l 5.946383,-6.01141 0,-3.569274 -0.06259,0 
z"
-         
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
 />
-      <use
-         transform="matrix(0.99799921,0,0,0.99999996,0.1059371,1.6393686e-5)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#path12830-4-17"
-         id="use5756"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       id="checkbox-mixed-active"
-       transform="translate(39.99573,10)"
-       inkscape:label="#g14334">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5"
-         id="use6314-1"
-         transform="translate(0.004272,0)"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14701"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <rect
-         
style="opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use5812-4"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="37.393383"
-         rx="1.4843769"
-         ry="1.4843769" />
-      <use
-         transform="translate(-4.609375e-7,-5e-5)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5203-9"
-         id="use5812"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       id="checkbox-unchecked-active"
-       inkscape:label="#g14325"
-       transform="translate(0,10)">
-      <g
-         transform="translate(0,-3.9660404e-6)"
-         style="display:inline"
-         id="g5400-0-5">
-        <rect
-           ry="6"
-           
style="color:#000000;fill:url(#linearGradient4838);fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6-4-8"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-        <path
-           
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.07000002;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-           d="m 18,34.737187 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 
2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 
-2.34375,1.041088 -2.34375,2.375 z"
-           id="rect5147-9-1-5-7-6-1-7-7-5-0-5"
-           inkscape:connector-curvature="0" />
-      </g>
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect14725"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-    </g>
-    <g
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963,30.087065)"
-       id="checkbox-checked-insensitive">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722936)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5-7"
-         id="use6445"
-         width="1"
-         height="1" />
-      <g
-         transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)"
-         id="g14999"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g15001"
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
-          <g
-             id="g15003" />
-        </g>
-      </g>
-      <g
-         style="display:inline"
-         transform="translate(-341.01864,-230.63092)"
-         id="g15009">
-        <g
-           id="g15013" />
-      </g>
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect15021"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
-      <path
-         
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#8d9091;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-         d="m 50.868001,31.380439 -6.981099,6.843039 -1.871897,-1.872655 -2.138425,-0.01563 0.01122,1.699485 
2.936988,2.938187 c 0.586676,0.586674 1.537597,0.586674 2.124274,0 l 7.996315,-8.077832 0.002,-1.570761 z"
-         id="path12830-4-17-2"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       inkscape:label="#g14334"
-       transform="translate(39.99573,30)"
-       id="checkbox-mixed-insensitive">
-      <use
-         transform="translate(0.004272,0)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5-7"
-         id="use6465"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect15025"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <rect
-         
style="color:#000000;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99491191;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5203"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="36.393433"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-unchecked-insensitive"
-       transform="translate(0,30)">
-      <g
-         transform="translate(0,-3.9660404e-6)"
-         style="fill:#ededed;fill-opacity:1;display:inline"
-         id="g5400-0-5-7">
-        <rect
-           ry="6"
-           
style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6-4-8-3"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-      </g>
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect15057"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-    </g>
-    <g
-       transform="matrix(0.93617253,0,0,0.93566004,-96.783151,-224.76084)"
-       id="radio-unchecked-hover"
-       style="display:inline"
-       inkscape:label="#g15392">
-      <g
-         style="display:inline"
-         id="g7025-8">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-0"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-1">
-            <rect
-               ry="15.453857"
-               
style="color:#000000;fill:url(#linearGradient4836);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7-8"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-2"
-           d="m 208.0967,269.64077 c -0.006,0.11897 -0.0334,0.24687 -0.0334,0.36738 0,3.84862 
3.09665,6.94697 6.94316,6.94697 3.84651,0 6.94316,-3.09835 6.94316,-6.94697 0,-0.12051 -0.0273,-0.24841 
-0.0333,-0.36738 -0.3543,3.51156 -3.30368,6.24559 -6.90979,6.24559 -3.60611,0 -6.55549,-2.73403 
-6.90978,-6.24559 z"
-           
style="color:#000000;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-3-0-4"
-           d="m 208.16346,268.93939 c -0.0346,0.22741 -0.0487,0.46549 -0.0668,0.70138 0.35429,3.51156 
3.30367,6.24559 6.90978,6.24559 3.60611,0 6.55549,-2.73403 6.90978,-6.24559 -0.0182,-0.23589 -0.0322,-0.47397 
-0.0668,-0.70138 -0.51523,3.33254 -3.36353,5.8782 -6.84302,5.8782 -3.47949,0 -6.32779,-2.54566 
-6.84302,-5.8782 z"
-           
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-9"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 
3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 
-0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 
-6.90978,6.24559 z"
-           
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      </g>
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-7"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-    </g>
-    <g
-       transform="matrix(0.93893373,0,0,0.93841974,-312.08814,-225.48386)"
-       id="radio-checked-hover"
-       style="display:inline"
-       inkscape:label="#g15404">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-79"
-         width="17.040606"
-         height="17.049938"
-         x="456.99057"
-         y="261.97876" />
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046421)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-8"
-         id="use7392"
-         width="1"
-         height="1" />
-      <g
-         id="use7448"
-         transform="matrix(0.99411529,0,0,0.99411529,2.6893006,1.5417626)">
-        <rect
-           ry="8.0419083"
-           
style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect4483"
-           width="5.5564694"
-           height="5.5533452"
-           x="462.22174"
-           y="268.29523"
-           rx="7.9057436" />
-        <rect
-           ry="2.7766726"
-           
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect4485"
-           width="5.5564694"
-           height="5.5533452"
-           x="462.22174"
-           y="267.2233"
-           rx="2.7766726" />
-      </g>
-    </g>
-    <g
-       transform="matrix(0.93619363,0,0,0.93568113,8.82935,-8.033851)"
-       id="radio-mixed-hover"
-       inkscape:label="#g15422">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-8"
-         width="17.090481"
-         height="17.099842"
-         x="136.90158"
-         y="30.34798" />
-      <use
-         transform="matrix(0.99997746,0,0,0.99997746,-70.084327,-231.62484)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-8"
-         id="use7392-3"
-         width="1"
-         height="1" />
-      <g
-         id="use7508"
-         transform="matrix(1.0681551,0,0,1.0687402,118.74293,-2.1013573)">
-        <rect
-           
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect7530"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="37.393383"
-           rx="1.4843769"
-           ry="1.4843769" />
-        <rect
-           
style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect7532"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="36.393433"
-           rx="1.4843769"
-           ry="1.4843769" />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="radio-unchecked-active"
-       transform="matrix(0.93344283,0,0,0.93293183,-96.218362,-204.04632)"
-       inkscape:label="#g15458">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-7-3"
-         width="17.140844"
-         height="17.150234"
-         x="206.99081"
-         y="261.97894" />
-      <g
-         transform="matrix(1.0029243,0,0,1.0029243,-0.60505212,-0.76587606)"
-         style="display:inline"
-         id="g7025-1">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-7"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-18">
-            <rect
-               ry="15.453857"
-               
style="color:#000000;fill:url(#linearGradient4834);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7-88"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-2"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 
3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 
-0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 
-6.90978,6.24559 z"
-           
style="opacity:0.07000002;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      </g>
-    </g>
-    <g
-       transform="matrix(0.93893104,0,0,0.93841705,-77.354156,-205.48315)"
-       id="radio-checked-active"
-       style="display:inline"
-       inkscape:label="#g16048">
-      <use
-         transform="matrix(0.99415483,0,0,0.99415482,1.2096678,1.53112)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1"
-         id="use5399"
-         width="1"
-         height="1" />
-      <g
-         style="display:inline"
-         id="g16050"
-         transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-        <g
-           id="g16052" />
-      </g>
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-7-4"
-         width="17.040653"
-         height="17.049988"
-         x="206.99059"
-         y="261.97876" />
-      <rect
-         ry="7.9946065"
-         
style="opacity:0.7;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use15101-5-8"
-         width="5.5237875"
-         height="5.5206814"
-         x="212.19102"
-         y="268.25815"
-         rx="7.8592429" />
-      <rect
-         ry="2.7603407"
-         
style="color:#000000;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use15101-5"
-         width="5.5237875"
-         height="5.5206814"
-         x="212.19102"
-         y="267.19257"
-         rx="2.7603407" />
-    </g>
-    <g
-       style="display:inline"
-       id="radio-mixed-active"
-       transform="matrix(0.93617253,0,0,0.93566004,-56.78315,-204.76084)"
-       inkscape:label="#g16079">
-      <use
-         transform="matrix(0.99708419,0,0,0.99708419,0.60329674,0.76365256)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1"
-         id="use5399-3"
-         width="1"
-         height="1" />
-      <g
-         transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
-         id="g16081"
-         style="display:inline">
-        <g
-           id="g16083" />
-      </g>
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-7-32"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <rect
-         
style="opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect7532-0-4"
-         width="9.6136122"
-         height="3.1728981"
-         x="210.19966"
-         y="269.49341"
-         rx="1.5855805"
-         ry="1.586449" />
-      <rect
-         
style="color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect7532-0"
-         width="9.6136122"
-         height="3.1728981"
-         x="210.19966"
-         y="268.42465"
-         rx="1.5855805"
-         ry="1.586449" />
-    </g>
-    <g
-       transform="matrix(0.93617253,0,0,0.93566004,-96.783151,-184.76084)"
-       id="radio-unchecked-insensitive"
-       style="display:inline"
-       inkscape:label="#g15524">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-7-5"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <g
-         style="display:inline"
-         id="g7025-1-7">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-7-7"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-18-8">
-            <rect
-               ry="15.453857"
-               
style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7-88-8"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-      </g>
-    </g>
-    <g
-       transform="matrix(0.93893373,0,0,0.93841974,-312.08814,-185.48386)"
-       id="radio-checked-insensitive"
-       style="display:inline"
-       inkscape:label="#g15536">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-7-9"
-         width="17.040606"
-         height="17.049938"
-         x="456.99057"
-         y="261.97876" />
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046421)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1-7"
-         id="use5683"
-         width="1"
-         height="1" />
-      <rect
-         ry="2.7603328"
-         
style="color:#000000;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19056797;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use15101-5-6"
-         width="5.5237718"
-         height="5.5206656"
-         x="462.19101"
-         y="267.19254"
-         rx="2.7603328" />
-    </g>
-    <g
-       transform="matrix(0.93341132,0,0,0.93290035,9.21044,32.050751)"
-       id="radio-mixed-insensitive"
-       inkscape:label="#g15554">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect14348-4-7-98"
-         width="17.141424"
-         height="17.150812"
-         x="136.90137"
-         y="30.347755" />
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.701507,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1-7"
-         id="use5683-3"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.20944476;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect7532-0-7"
-         width="9.6420517"
-         height="3.1822839"
-         x="140.11996"
-         y="36.812756"
-         rx="1.590271"
-         ry="1.5911419" />
-    </g>
-    <g
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963105,170.08706)"
-       id="checkbox-checked-dark">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08721831)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-2-5"
-         id="use5671"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect17347"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
-      <path
-         inkscape:connector-curvature="0"
-         
style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         d="m 49.643285,31.597916 -5.758604,5.6357 -1.877805,-1.87856 -2.128179,-0.0313 0,1.72202 
2.941895,2.91177 c 0.586676,0.58668 1.541503,0.58668 2.128179,0 l 5.97768,-6.01141 0,-0.28178 c 0,-0.90678 
-0.53207,-1.67899 -1.283166,-2.06642 z"
-         id="rect5147-9-1-5-7-6-5-8-7" />
-      <path
-         
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-         d="m 50.868001,31.380411 -6.9811,6.84304 -1.871896,-1.87265 -2.138425,-0.0156 0.01122,1.69948 
2.936988,2.938193 c 0.586676,0.58667 1.537597,0.58667 2.124273,0 l 7.996316,-8.077833 0.002,-1.57077 z"
-         id="path12830-4-17-0"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       inkscape:label="#g14334"
-       transform="translate(39.995728,170)"
-       id="checkbox-mixed-dark">
-      <use
-         transform="translate(0.004272,6.0339596e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-2-5"
-         id="use5671-4"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect17363"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <rect
-         ry="1.4843769"
-         rx="1.4843769"
-         y="35.393452"
-         x="20.004272"
-         height="2.9687538"
-         width="9"
-         id="rect5203-9-0-1-5"
-         
style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <rect
-         ry="1.4843769"
-         rx="1.4843769"
-         y="36.393452"
-         x="20.004272"
-         height="2.9687538"
-         width="9"
-         id="rect5203-9-0-1"
-         
style="color:#000000;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-unchecked-dark"
-       transform="translate(0,170)">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect17387"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <g
-         style="display:inline"
-         id="checkbox-unchecked-4-9"
-         inkscape:label="#g14325"
-         transform="translate(0,1e-5)">
-        <g
-           style="display:inline"
-           id="g15812-6-6-1-5-6"
-           transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
-          <g
-             transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-             id="g5489-2-9-6-8-8-4-5"
-             style="display:inline">
-            <g
-               id="g5428-8-1-4-0-0-2-6" />
-          </g>
-        </g>
-        <rect
-           y="30.362183"
-           x="17"
-           height="16"
-           width="16"
-           id="rect13523-0-9"
-           
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-        <g
-           id="g5400-2-5">
-          <rect
-             ry="6"
-             
style="color:#000000;fill:url(#linearGradient7109);fill-opacity:1;stroke:#1c1f1f;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-             id="rect5147-9-1-5-7-6-5-8"
-             width="29.559635"
-             height="29.154205"
-             x="50.440369"
-             y="125.3458"
-             rx="6"
-             transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-          <path
-             inkscape:connector-curvature="0"
-             id="rect5147-9-1-5-7-6-1-7-9-4"
-             d="m 18,40.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 
2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 
19.044053,43.374983 18,42.333895 18,40.999983 z"
-             
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
 />
-          <path
-             inkscape:connector-curvature="0"
-             id="rect5147-9-1-5-7-6-1-7-7-9-4"
-             d="m 18,39.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 
2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 
19.044053,42.374983 18,41.333895 18,39.999983 z"
-             
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#393f3f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
 />
-          <path
-             
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-             d="m 18,34.737183 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 
2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 
-2.34375,1.041088 -2.34375,2.375 z"
-             id="rect5147-9-1-5-7-6-1-7-7-5-06-6"
-             inkscape:connector-curvature="0" />
-        </g>
-      </g>
-    </g>
-    <g
-       id="checkbox-checked-hover-dark"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963105,190.08706)"
-       inkscape:label="#g10801">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#checkbox-unchecked-hover-dark"
-         id="use5987"
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-190.44854)"
-         width="1"
-         height="1" />
-      <rect
-         y="30.332689"
-         x="36.905502"
-         height="16.030426"
-         width="16.023939"
-         id="rect17795"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <path
-         inkscape:connector-curvature="0"
-         
style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         d="m 49.643285,31.597916 -5.758604,5.6357 -1.877805,-1.87856 -2.128179,-0.0313 0,1.72202 
2.941895,2.91177 c 0.586676,0.58668 1.541503,0.58668 2.128179,0 l 5.97768,-6.01141 0,-0.28178 c 0,-0.90678 
-0.53207,-1.67899 -1.283166,-2.06642 z"
-         id="rect5147-9-1-5-7-6-5-8-7-4" />
-      <use
-         transform="translate(3.6476755e-7,-4.6063144e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#path12830-4-17-0"
-         id="use6213"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       id="checkbox-mixed-hover-dark"
-       transform="translate(39.995728,190)"
-       inkscape:label="#g14334">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#checkbox-unchecked-hover-dark"
-         id="use5987-9"
-         transform="translate(0.004272,-190)"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect17813"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <rect
-         ry="1.4843769"
-         rx="1.4843769"
-         y="35.393452"
-         x="20.004272"
-         height="2.9687538"
-         width="9"
-         id="rect5203-9-0-1-5-2"
-         
style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5203-9-0-1"
-         id="use6244"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       transform="translate(0,190)"
-       id="checkbox-unchecked-hover-dark"
-       inkscape:label="#g14325">
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect17839"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <g
-         style="display:inline"
-         id="checkbox-unchecked-4-9-1"
-         inkscape:label="#g14325"
-         transform="translate(0,1e-5)">
-        <g
-           style="display:inline"
-           id="g15812-6-6-1-5-6-4"
-           transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
-          <g
-             transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-             id="g5489-2-9-6-8-8-4-5-3"
-             style="display:inline">
-            <g
-               id="g5428-8-1-4-0-0-2-6-7" />
-          </g>
-        </g>
-        <rect
-           y="30.362183"
-           x="17"
-           height="16"
-           width="16"
-           id="rect13523-0-9-0"
-           
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-        <g
-           id="g5400-2-5-9">
-          <rect
-             ry="6"
-             
style="color:#000000;fill:url(#linearGradient7107);fill-opacity:1;stroke:#1c1f1f;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-             id="rect5147-9-1-5-7-6-5-8-9"
-             width="29.559635"
-             height="29.154205"
-             x="50.440369"
-             y="125.3458"
-             rx="6"
-             transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-          <path
-             inkscape:connector-curvature="0"
-             id="rect5147-9-1-5-7-6-1-7-9-4-2"
-             d="m 18,40.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 
2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 
19.044053,43.374983 18,42.333895 18,40.999983 z"
-             
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#2a2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
 />
-          <path
-             inkscape:connector-curvature="0"
-             id="rect5147-9-1-5-7-6-1-7-7-9-4-6"
-             d="m 18,39.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 
2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 
19.044053,42.374983 18,41.333895 18,39.999983 z"
-             
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#474f4f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
 />
-          <path
-             
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-             d="m 18,34.737183 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 
2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 
-2.34375,1.041088 -2.34375,2.375 z"
-             id="rect5147-9-1-5-7-6-1-7-7-5-06-6-2"
-             inkscape:connector-curvature="0" />
-        </g>
-      </g>
-    </g>
-    <g
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963105,210.08706)"
-       id="checkbox-checked-active-dark">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722833)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#checkbox-unchecked-4-9-2"
-         id="use6163"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect17971"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
-      <path
-         inkscape:connector-curvature="0"
-         
style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         d="m 49.643285,31.597916 -5.758604,5.6357 -1.877805,-1.87856 -2.128179,-0.0313 0,1.72202 
2.941895,2.91177 c 0.586676,0.58668 1.541502,0.58668 2.128179,0 l 5.977679,-6.01141 0,-0.28178 c 0,-0.90678 
-0.53207,-1.67899 -1.283165,-2.06642 z"
-         id="rect5147-9-1-5-7-6-5-8-7-4-6" />
-      <use
-         transform="translate(3.6476755e-7,-4.2126285e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#path12830-4-17-0"
-         id="use15213-8"
-         width="1000"
-         height="1052.3622" />
-    </g>
-    <g
-       inkscape:label="#g14334"
-       transform="translate(39.995728,210)"
-       id="checkbox-mixed-active-dark">
-      <use
-         transform="translate(0.004272,-3.9660404e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#checkbox-unchecked-4-9-2"
-         id="use6163-0"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect17989"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <rect
-         ry="1.4843769"
-         rx="1.4843769"
-         y="35.393452"
-         x="20.004272"
-         height="2.9687538"
-         width="9"
-         id="rect5203-9-0-1-5-2-4"
-         
style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <use
-         transform="translate(-4.609375e-7,2.6171874e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5203-9-0-1"
-         id="use6244-6"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-unchecked-active-dark"
-       transform="translate(0,210)">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect18015"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <g
-         style="display:inline"
-         id="checkbox-unchecked-4-9-2"
-         inkscape:label="#g14325"
-         transform="translate(0,1e-5)">
-        <g
-           id="g5400-2-5-3">
-          <rect
-             ry="6"
-             
style="color:#000000;fill:url(#linearGradient7105);fill-opacity:1;stroke:#1c1f1f;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-             id="rect5147-9-1-5-7-6-5-8-2"
-             width="29.559635"
-             height="29.154205"
-             x="50.440369"
-             y="125.3458"
-             rx="6"
-             transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-          <path
-             
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
-             d="m 18,34.737183 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 
2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 
-2.34375,1.041088 -2.34375,2.375 z"
-             id="rect5147-9-1-5-7-6-1-7-7-5-06-6-5"
-             inkscape:connector-curvature="0" />
-        </g>
-      </g>
-    </g>
-    <g
-       transform="translate(0,230)"
-       id="checkbox-unchecked-insensitive-dark"
-       inkscape:label="#g14325">
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect18233"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <g
-         style="display:inline"
-         id="checkbox-unchecked-4-9-2-1"
-         inkscape:label="#g14325"
-         transform="translate(-3.3541394e-8,6e-6)">
-        <g
-           id="g5400-2-5-3-8">
-          <rect
-             ry="6"
-             
style="color:#000000;fill:#323636;fill-opacity:1;stroke:#1c1f1f;stroke-width:2.09697652000000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-             id="rect5147-9-1-5-7-6-5-8-2-9"
-             width="29.559635"
-             height="29.154205"
-             x="50.440369"
-             y="125.3458"
-             rx="6"
-             transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-        </g>
-      </g>
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-checked-insensitive-dark"
-       transform="translate(20,230)">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#checkbox-unchecked-4-9-2-1"
-         id="use6419"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect18292"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <path
-         
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#8d9091;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-         d="m 30.941637,31.407933 -6.97067,6.83006 -1.8691,-1.8691 -2.13523,-0.0156 0.0112,1.69625 
2.932601,2.93262 c 0.585799,0.58556 1.535299,0.58556 2.121099,0 l 7.98437,-8.0625 0.002,-1.56779 z"
-         id="path12830-4-17-0-8"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       transform="translate(40,230)"
-       id="checkbox-mixed-insensitive-dark"
-       inkscape:label="#g14325">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#checkbox-unchecked-4-9-2-1"
-         id="use6419-0"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect18306"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <rect
-         
style="color:#000000;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427000000010;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use6244-6-1"
-         width="9"
-         height="2.9687538"
-         x="20"
-         y="36.393452"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       inkscape:label="#g15805"
-       transform="matrix(0.93617253,0,0,0.93566004,-96.783151,-44.76084)"
-       id="radio-unchecked-dark"
-       style="display:inline">
-      <rect
-         y="261.97873"
-         x="206.99057"
-         height="17.100227"
-         width="17.090866"
-         id="rect18880"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <g
-         transform="translate(8.5871184e-7,9.4903214e-6)"
-         style="display:inline"
-         id="g7025-4-5">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-4-6"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-4-4">
-            <rect
-               ry="15.453857"
-               
style="color:#000000;fill:url(#linearGradient7103);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7-6-4"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-5-4"
-           d="m 208.0967,269.64077 c -0.006,0.11897 -0.0334,0.24687 -0.0334,0.36738 0,3.84862 
3.09665,6.94697 6.94316,6.94697 3.84651,0 6.94316,-3.09835 6.94316,-6.94697 0,-0.12051 -0.0273,-0.24841 
-0.0333,-0.36738 -0.3543,3.51156 -3.30368,6.24559 -6.90979,6.24559 -3.60611,0 -6.55549,-2.73403 
-6.90978,-6.24559 z"
-           
style="color:#000000;fill:#262a2a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-3-0-5-4"
-           d="m 208.16346,268.93939 c -0.0346,0.22741 -0.0487,0.46549 -0.0668,0.70138 0.35429,3.51156 
3.30367,6.24559 6.90978,6.24559 3.60611,0 6.55549,-2.73403 6.90978,-6.24559 -0.0182,-0.23589 -0.0322,-0.47397 
-0.0668,-0.70138 -0.51523,3.33254 -3.36353,5.8782 -6.84302,5.8782 -3.47949,0 -6.32779,-2.54566 
-6.84302,-5.8782 z"
-           
style="color:#000000;fill:#3e4444;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-8-2"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 
3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 
-0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 
-6.90978,6.24559 z"
-           
style="opacity:0.17000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      </g>
-    </g>
-    <g
-       inkscape:label="#g2928"
-       transform="matrix(0.93340838,0,0,0.93289741,-309.56307,-44.03705)"
-       id="radio-checked-dark"
-       style="display:inline">
-      <use
-         transform="matrix(1.0029614,0,0,1.0029613,249.38698,-0.77583891)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5"
-         id="use6849"
-         width="1000"
-         height="1052.3622" />
-      <rect
-         y="261.97867"
-         x="456.99054"
-         height="17.150867"
-         width="17.141478"
-         id="rect18900"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <g
-         id="g7024">
-        <rect
-           ry="2.7197769"
-           
style="opacity:0.9;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect15095-0-4"
-           width="5.4426146"
-           height="5.4395537"
-           x="462.27869"
-           y="266.20828"
-           rx="2.7197769" />
-        <rect
-           ry="2.7197769"
-           
style="color:#000000;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-           id="rect15095-0"
-           width="5.4426146"
-           height="5.4395537"
-           x="462.27869"
-           y="267.28021"
-           rx="2.7197769" />
-      </g>
-    </g>
-    <g
-       inkscape:label="#g10885"
-       transform="matrix(0.93617253,0,0,0.93566004,8.8324075,171.96696)"
-       id="radio-mixed-dark">
-      <use
-         transform="translate(-70.089184,-231.63092)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5"
-         id="use6849-8"
-         width="1000"
-         height="1052.3622" />
-      <rect
-         y="30.347799"
-         x="136.9014"
-         height="17.100227"
-         width="17.090866"
-         id="rect18922"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <g
-         id="g7055">
-        <rect
-           ry="1.586449"
-           rx="1.5855805"
-           y="35.724964"
-           x="140.11049"
-           height="3.1728981"
-           width="9.6136122"
-           id="rect4479-9-0-8"
-           
style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-        <rect
-           ry="1.586449"
-           rx="1.5855805"
-           y="36.793736"
-           x="140.11049"
-           height="3.1728981"
-           width="9.6136122"
-           id="rect4479-9-0"
-           
style="color:#000000;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      </g>
-    </g>
-    <g
-       inkscape:label="#g15524"
-       style="display:inline"
-       id="radio-unchecked-insensitive-dark"
-       transform="matrix(0.93617253,0,0,0.93566004,-96.814401,15.23916)">
-      <rect
-         y="261.97873"
-         x="206.99057"
-         height="17.100227"
-         width="17.090866"
-         id="rect19038"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <g
-         transform="translate(0.03338152,1.0490322e-5)"
-         style="display:inline"
-         id="g7025-4-5-2-0-3">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-4-6-0-2-6"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-4-4-0-2-2">
-            <rect
-               ry="15.453857"
-               
style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7-6-4-1-7-7"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-      </g>
-    </g>
-    <g
-       inkscape:label="#g15536"
-       style="display:inline"
-       id="radio-checked-insensitive-dark"
-       transform="matrix(0.93893373,0,0,0.93841974,-312.08814,14.51614)">
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.57545,0.77046441)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5-2-0-3"
-         id="use7470"
-         width="1"
-         height="1" />
-      <rect
-         y="261.97876"
-         x="456.99057"
-         height="17.049938"
-         width="17.040606"
-         id="rect19052"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <rect
-         ry="2.7037716"
-         
style="color:#000000;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19598865999999981;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect15095-0-7"
-         width="5.4105864"
-         height="5.4075432"
-         x="462.24762"
-         y="267.24915"
-         rx="2.7037716" />
-    </g>
-    <g
-       inkscape:label="#g15554"
-       id="radio-mixed-insensitive-dark"
-       transform="matrix(0.93341132,0,0,0.93290035,9.210439,232.05075)">
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.734987,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5-2-0-3"
-         id="use7470-8"
-         width="1"
-         height="1" />
-      <g
-         transform="translate(-320.08917,-231.63092)"
-         id="g19064"
-         style="display:inline" />
-      <rect
-         y="30.347755"
-         x="136.90137"
-         height="17.150812"
-         width="17.141424"
-         id="rect19068"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <rect
-         ry="1.5911419"
-         rx="1.590271"
-         y="36.812767"
-         x="140.11996"
-         height="3.1822839"
-         width="9.6420517"
-         id="rect4479-9-0-9"
-         
style="color:#000000;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.21489716000000003;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-    </g>
-    <g
-       style="display:inline"
-       id="radio-unchecked-hover-dark"
-       transform="matrix(0.93617253,0,0,0.93566004,-96.783151,-24.76084)"
-       inkscape:label="#g15805">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect19380"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <g
-         transform="translate(9.1830016e-7,1.0490322e-5)"
-         style="display:inline"
-         id="g7025-4-5-2">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-4-6-0"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-4-4-0">
-            <rect
-               ry="15.453857"
-               
style="color:#000000;fill:url(#linearGradient7101);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7-6-4-1"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-5-4-4"
-           d="m 208.0967,269.64077 c -0.006,0.11897 -0.0334,0.24687 -0.0334,0.36738 0,3.84862 
3.09665,6.94697 6.94316,6.94697 3.84651,0 6.94316,-3.09835 6.94316,-6.94697 0,-0.12051 -0.0273,-0.24841 
-0.0333,-0.36738 -0.3543,3.51156 -3.30368,6.24559 -6.90979,6.24559 -3.60611,0 -6.55549,-2.73403 
-6.90978,-6.24559 z"
-           
style="color:#000000;fill:#262a2a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-3-0-5-4-0"
-           d="m 208.16346,268.93939 c -0.0346,0.22741 -0.0487,0.46549 -0.0668,0.70138 0.35429,3.51156 
3.30367,6.24559 6.90978,6.24559 3.60611,0 6.55549,-2.73403 6.90978,-6.24559 -0.0182,-0.23589 -0.0322,-0.47397 
-0.0668,-0.70138 -0.51523,3.33254 -3.36353,5.8782 -6.84302,5.8782 -3.47949,0 -6.32779,-2.54566 
-6.84302,-5.8782 z"
-           
style="color:#000000;fill:#4c5454;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-8-2-0"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 
3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 
-0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 
-6.90978,6.24559 z"
-           
style="opacity:0.17000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="radio-checked-hover-dark"
-       transform="matrix(0.93340838,0,0,0.93289741,-309.56307,-24.03705)"
-       inkscape:label="#g2928">
-      <use
-         transform="matrix(1.0029614,0,0,1.0029613,249.38698,-0.77583991)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5-2"
-         id="use7140"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect19416"
-         width="17.141478"
-         height="17.150867"
-         x="456.99054"
-         y="261.97867" />
-      <use
-         transform="translate(1.1102355e-7,-5.7254078e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7024"
-         id="use7028"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       id="radio-mixed-hover-dark"
-       transform="matrix(0.93617253,0,0,0.93566004,8.8324075,191.96696)"
-       inkscape:label="#g10885">
-      <use
-         transform="translate(-70.089174,-231.63092)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5-2"
-         id="use7140-5"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect19440"
-         width="17.090866"
-         height="17.100227"
-         x="136.9014"
-         y="30.347799" />
-      <use
-         transform="translate(1.7462727e-6,4.9032167e-7)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7055"
-         id="use7059"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       inkscape:label="#g15805"
-       transform="matrix(0.93617253,0,0,0.93566004,-96.783151,-4.76084)"
-       id="radio-unchecked-active-dark"
-       style="display:inline">
-      <rect
-         y="261.97873"
-         x="206.99057"
-         height="17.100227"
-         width="17.090866"
-         id="rect19536"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <g
-         transform="translate(9.1830016e-7,1.0490322e-5)"
-         style="display:inline"
-         id="g7025-4-5-2-0">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-4-6-0-2"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-4-4-0-2">
-            <rect
-               ry="15.453857"
-               
style="color:#000000;fill:url(#linearGradient7099);fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-               id="rect5147-9-1-7-6-4-1-7"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-8-2-0-7"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 
3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 
-0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 
-6.90978,6.24559 z"
-           
style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      </g>
-    </g>
-    <g
-       inkscape:label="#g2928"
-       transform="matrix(0.93340838,0,0,0.93289741,-309.56307,-4.03705)"
-       id="radio-checked-active-dark"
-       style="display:inline">
-      <use
-         transform="matrix(1.0029614,0,0,1.0029613,249.38698,-0.77583991)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5-2-0"
-         id="use7303"
-         width="1"
-         height="1" />
-      <rect
-         y="261.97867"
-         x="456.99054"
-         height="17.150867"
-         width="17.141478"
-         id="rect19572"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <use
-         transform="translate(1.1102355e-7,-5.7254081e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7024"
-         id="use7028-7"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       inkscape:label="#g10885"
-       transform="matrix(0.93617253,0,0,0.93566004,8.8324075,211.96696)"
-       id="radio-mixed-active-dark">
-      <use
-         transform="translate(-70.089174,-231.63092)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-4-5-2-0"
-         id="use7303-6"
-         width="1"
-         height="1" />
-      <rect
-         y="30.347799"
-         x="136.9014"
-         height="17.100227"
-         width="17.090866"
-         id="rect19596"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <use
-         transform="translate(1.7462727e-6,-5.0967833e-7)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7055"
-         id="use7059-6"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       id="checkbox-checked-backdrop"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963,50.087065)"
-       inkscape:label="#g10801">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722939)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0"
-         id="use6551"
-         width="1"
-         height="1" />
-      <g
-         style="display:inline"
-         id="g19927"
-         transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-           id="g19929"
-           style="display:inline">
-          <g
-             id="g19931" />
-        </g>
-      </g>
-      <rect
-         y="30.332689"
-         x="36.905502"
-         height="16.030426"
-         width="16.023939"
-         id="rect19941"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <path
-         
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#54595a;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-         d="m 50.868001,31.380439 -6.981099,6.843039 -1.871897,-1.872655 -2.138425,-0.01563 0.01122,1.699485 
2.936988,2.938187 c 0.586676,0.586674 1.537597,0.586674 2.124274,0 l 7.996315,-8.077832 0.002,-1.570761 z"
-         id="path12830-4-17-2-3"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       id="checkbox-mixed-backdrop"
-       transform="translate(39.99573,50)"
-       inkscape:label="#g14334">
-      <use
-         transform="translate(0.004272,-2.9802322e-8)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0"
-         id="use6551-3"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect19945"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <g
-         style="display:inline"
-         id="g19947"
-         transform="matrix(0.92951982,0,0,0.92914368,-156.74643,-212.9618)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-           id="g19949"
-           style="display:inline">
-          <g
-             id="g19951" />
-        </g>
-      </g>
-      <rect
-         
style="color:#000000;fill:#54595a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99491191;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5203-6"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="36.393433"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       transform="translate(0,50)"
-       id="checkbox-unchecked-backdrop"
-       inkscape:label="#g14325">
-      <rect
-         ry="2.8844237"
-         
style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5147-9-1-5-7-6-4-8-3-0"
-         width="13.98312"
-         height="14.015514"
-         x="17.500002"
-         y="30.862183"
-         rx="2.8382866" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect19971"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-    </g>
-    <g
-       inkscape:label="#g15524"
-       style="display:inline"
-       id="radio-unchecked-backdrop"
-       transform="matrix(0.93617253,0,0,0.93566004,-96.783151,-164.76084)">
-      <rect
-         y="261.97873"
-         x="206.99057"
-         height="17.100227"
-         width="17.090866"
-         id="rect19981"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <rect
-         ry="7.9957981"
-         
style="color:#000000;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.06847155;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5147-9-1-7-88-8-5"
-         width="14.954509"
-         height="14.9627"
-         x="207.52921"
-         y="262.51309"
-         rx="7.8516736" />
-    </g>
-    <g
-       inkscape:label="#g15536"
-       style="display:inline"
-       id="radio-checked-backdrop"
-       transform="matrix(0.93893373,0,0,0.93841974,-312.08814,-165.48386)">
-      <rect
-         y="261.97876"
-         x="456.99057"
-         height="17.049938"
-         width="17.040606"
-         id="rect19995"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046669)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5"
-         id="use5805"
-         width="1"
-         height="1" />
-      <rect
-         ry="2.7603328"
-         
style="color:#000000;fill:#54595a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19056797;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use15101-5-6-3"
-         width="5.5237718"
-         height="5.5206656"
-         x="462.19101"
-         y="267.19254"
-         rx="2.7603328" />
-    </g>
-    <g
-       inkscape:label="#g15554"
-       id="radio-mixed-backdrop"
-       transform="matrix(0.93341132,0,0,0.93290035,9.21044,52.050751)">
-      <rect
-         y="30.347755"
-         x="136.90137"
-         height="17.150812"
-         width="17.141424"
-         id="rect20011"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.701511,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5"
-         id="use5805-1"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:#54595a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.20944476;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect7532-0-7-9"
-         width="9.6420517"
-         height="3.1822839"
-         x="140.11996"
-         y="36.812756"
-         rx="1.590271"
-         ry="1.5911419" />
-    </g>
-    <g
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,0.14963,70.08706)"
-       id="checkbox-checked-backdrop-insensitive">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722438)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0-7"
-         id="use6749"
-         width="1"
-         height="1" />
-      <g
-         transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)"
-         id="g20167"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g20169"
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
-          <g
-             id="g20171" />
-        </g>
-      </g>
-      <g
-         style="display:inline"
-         transform="translate(-341.01864,-230.63092)"
-         id="g20175">
-        <g
-           id="g20177" />
-      </g>
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect20181"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
-      <path
-         
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#c7c7c7;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-         d="m 50.868001,31.380443 -6.981098,6.843039 -1.871898,-1.872655 -2.138425,-0.01563 0.01122,1.699485 
2.936988,2.938186 c 0.586676,0.586675 1.537597,0.586675 2.124275,0 l 7.996314,-8.077832 0.002,-1.57076 z"
-         id="path12830-4-17-2-3-9"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       inkscape:label="#g14334"
-       transform="translate(39.99573,70)"
-       id="checkbox-mixed-backdrop-insensitive">
-      <use
-         transform="translate(0.004272,-2.9802322e-8)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0-7"
-         id="use6749-5"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect20185"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <g
-         transform="matrix(0.92951982,0,0,0.92914368,-156.74643,-212.9618)"
-         id="g20187"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g20189"
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
-          <g
-             id="g20191" />
-        </g>
-      </g>
-      <g
-         transform="translate(-40.874249,-1.0164925)"
-         id="g20195"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g20197"
-           transform="translate(-400.08917,-231.63092)" />
-      </g>
-      <rect
-         
style="color:#000000;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99491191;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5203-6-8"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="36.393433"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-unchecked-backdrop-insensitive"
-       transform="translate(0,70)">
-      <rect
-         ry="2.8844237"
-         
style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#a1a1a1;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5147-9-1-5-7-6-4-8-3-0-7"
-         width="13.98312"
-         height="14.015514"
-         x="17.500002"
-         y="30.862183"
-         rx="2.8382866" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect20211"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-    </g>
-    <g
-       transform="matrix(0.93617253,0,0,0.93566004,-96.783151,-144.76084)"
-       id="radio-unchecked-backdrop-insensitive"
-       style="display:inline"
-       inkscape:label="#g15524">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect20221"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <rect
-         ry="7.9957981"
-         
style="color:#000000;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:1.06847155;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5147-9-1-7-88-8-5-7"
-         width="14.954509"
-         height="14.9627"
-         x="207.52921"
-         y="262.51309"
-         rx="7.8516736" />
-    </g>
-    <g
-       transform="matrix(0.93893373,0,0,0.93841974,-312.08814,-145.48386)"
-       id="radio-checked-backdrop-insensitive"
-       style="display:inline"
-       inkscape:label="#g15536">
-      <g
-         style="display:inline"
-         id="g20225"
-         transform="translate(250,1.6004853e-6)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
-           id="g20227"
-           style="display:inline">
-          <g
-             id="g20229" />
-        </g>
-      </g>
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect20235"
-         width="17.040606"
-         height="17.049938"
-         x="456.99057"
-         y="261.97876" />
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046669)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5-7"
-         id="use5938"
-         width="1"
-         height="1" />
-      <rect
-         ry="2.7603328"
-         
style="color:#000000;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19056797;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use15101-5-6-3-9"
-         width="5.5237718"
-         height="5.5206656"
-         x="462.19101"
-         y="267.19254"
-         rx="2.7603328" />
-    </g>
-    <g
-       transform="matrix(0.93341132,0,0,0.93290035,9.21044,72.05075)"
-       id="radio-mixed-backdrop-insensitive"
-       inkscape:label="#g15554">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect20251"
-         width="17.141424"
-         height="17.150812"
-         x="136.90137"
-         y="30.347755" />
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.701511,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5-7"
-         id="use5938-3"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.20944476;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect7532-0-7-9-6"
-         width="9.6420517"
-         height="3.1822839"
-         x="140.11996"
-         y="36.812756"
-         rx="1.590271"
-         ry="1.5911419" />
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-unchecked-backdrop-dark"
-       transform="translate(0,250)">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect23509"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <rect
-         ry="2.8844237"
-         
style="color:#000000;fill:#393f3f;fill-opacity:1;stroke:#1e2222;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5147-9-1-5-7-6-5-8-2-9-8"
-         width="13.98312"
-         height="14.015514"
-         x="17.500002"
-         y="30.862192"
-         rx="2.8382866" />
-    </g>
-    <g
-       transform="translate(20,250)"
-       id="checkbox-checked-backdrop-dark"
-       inkscape:label="#g14325">
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect23521"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-5-8-2-9-8"
-         id="use6506"
-         width="1"
-         height="1" />
-      <path
-         
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#c9cbc9;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-         d="m 30.941637,31.407933 -6.97067,6.83006 -1.8691,-1.8691 -2.13523,-0.0156 0.0112,1.69625 
2.932601,2.93262 c 0.585799,0.58556 1.535299,0.58556 2.121099,0 l 7.98437,-8.0625 0.002,-1.56779 z"
-         id="path12830-4-17-0-8-9"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-mixed-backdrop-dark"
-       transform="translate(40,250)">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-5-8-2-9-8"
-         id="use6506-5"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect23535"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <rect
-         
style="color:#000000;fill:#c9cbc9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use6244-6-1-4"
-         width="9"
-         height="2.9687538"
-         x="20"
-         y="36.393452"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       transform="matrix(0.93617253,0,0,0.93566004,-96.814401,35.23916)"
-       id="radio-unchecked-backdrop-dark"
-       style="display:inline"
-       inkscape:label="#g15524">
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect23547"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <rect
-         ry="7.9957981"
-         
style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:1.06847155;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5147-9-1-7-6-4-1-7-7-8"
-         width="14.954509"
-         height="14.9627"
-         x="207.56259"
-         y="262.51312"
-         rx="7.8516736" />
-    </g>
-    <g
-       transform="matrix(0.93893373,0,0,0.93841974,-312.08814,34.51614)"
-       id="radio-checked-backdrop-dark"
-       style="display:inline"
-       inkscape:label="#g15536">
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.57545,0.77046823)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-6-4-1-7-7-8"
-         id="use7611"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect23559"
-         width="17.040606"
-         height="17.049938"
-         x="456.99057"
-         y="261.97876" />
-      <rect
-         ry="2.7037716"
-         
style="color:#000000;fill:#c9cbc9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19598866;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect15095-0-7-2"
-         width="5.4105864"
-         height="5.4075432"
-         x="462.24762"
-         y="267.24915"
-         rx="2.7037716" />
-    </g>
-    <g
-       transform="matrix(0.93341132,0,0,0.93290035,9.210439,252.05075)"
-       id="radio-mixed-backdrop-dark"
-       inkscape:label="#g15554">
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.734987,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-6-4-1-7-7-8"
-         id="use7611-8"
-         width="1"
-         height="1" />
-      <g
-         style="display:inline"
-         id="g23569"
-         transform="translate(-320.08917,-231.63092)" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect23573"
-         width="17.141424"
-         height="17.150812"
-         x="136.90137"
-         y="30.347755" />
-      <rect
-         ry="1.5911419"
-         rx="1.590271"
-         y="36.812767"
-         x="140.11996"
-         height="3.1822839"
-         width="9.6420517"
-         id="rect4479-9-0-9-9"
-         
style="color:#000000;fill:#c9cbc9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.21489716;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-    </g>
-    <g
-       transform="translate(0,270)"
-       id="checkbox-unchecked-backdrop-insensitive-dark"
-       inkscape:label="#g14325">
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect23585"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <rect
-         ry="2.8844237"
-         
style="color:#000000;fill:#323636;fill-opacity:1;stroke:#1c1f1f;stroke-width:0.99999994000000003;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;fill-rule:nonzero"
-         id="rect5147-9-1-5-7-6-5-8-2-9-8-7"
-         width="13.98312"
-         height="14.015514"
-         x="17.500002"
-         y="30.862192"
-         rx="2.8382866" />
-    </g>
-    <g
-       inkscape:label="#g14325"
-       id="checkbox-checked-backdrop-insensitive-dark"
-       transform="translate(20,270)">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-5-8-2-9-8-7"
-         id="use6598"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect23597"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <path
-         
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#454c4c;fill-opacity:1;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:sans-serif;-inkscape-font-specification:sans-serif"
-         d="m 30.941637,31.407933 -6.97067,6.83006 -1.8691,-1.8691 -2.13523,-0.0156 0.0112,1.69625 
2.932601,2.93262 c 0.585799,0.58556 1.535299,0.58556 2.121099,0 l 7.98437,-8.0625 0.002,-1.56779 z"
-         id="path12830-4-17-0-8-5"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       transform="translate(40,270)"
-       id="checkbox-mixed-backdrop-insensitive-dark"
-       inkscape:label="#g14325">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-5-8-2-9-8-7"
-         id="use6598-5"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect23611"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <rect
-         
style="color:#000000;fill:#454c4c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="use6244-6-1-4-8"
-         width="9"
-         height="2.9687538"
-         x="20"
-         y="36.393452"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       inkscape:label="#g15524"
-       style="display:inline"
-       id="radio-unchecked-backdrop-insensitive-dark"
-       transform="matrix(0.93617253,0,0,0.93566004,-96.814401,55.23916)">
-      <rect
-         y="261.97873"
-         x="206.99057"
-         height="17.100227"
-         width="17.090866"
-         id="rect23623"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <rect
-         ry="7.9957981"
-         
style="color:#000000;fill:#363c3c;fill-opacity:1;fill-rule:nonzero;stroke:#1c1f1f;stroke-width:1.06847161;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect5147-9-1-7-6-4-1-7-7-8-9"
-         width="14.954509"
-         height="14.9627"
-         x="207.56259"
-         y="262.51312"
-         rx="7.8516736" />
-    </g>
-    <g
-       inkscape:label="#g15536"
-       style="display:inline"
-       id="radio-checked-backdrop-insensitive-dark"
-       transform="matrix(0.93893373,0,0,0.93841974,-312.08814,54.51614)">
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.57545,0.77046823)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-6-4-1-7-7-8-9"
-         id="use7762"
-         width="1"
-         height="1" />
-      <rect
-         y="261.97876"
-         x="456.99057"
-         height="17.049938"
-         width="17.040606"
-         id="rect23635"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <rect
-         ry="2.7037716"
-         
style="color:#000000;fill:#454c4c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19598866;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-         id="rect15095-0-7-2-1"
-         width="5.4105864"
-         height="5.4075432"
-         x="462.24762"
-         y="267.24915"
-         rx="2.7037716" />
-    </g>
-    <g
-       inkscape:label="#g15554"
-       id="radio-mixed-backdrop-insensitive-dark"
-       transform="matrix(0.93341132,0,0,0.93290035,9.210439,272.05075)">
-      <g
-         transform="translate(-320.08917,-231.63092)"
-         id="g23645"
-         style="display:inline" />
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.734987,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-6-4-1-7-7-8-9"
-         id="use7762-6"
-         width="1"
-         height="1" />
-      <rect
-         y="30.347755"
-         x="136.90137"
-         height="17.150812"
-         width="17.141424"
-         id="rect23649"
-         
style="color:#000000;fill:none;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-      <rect
-         ry="1.5911419"
-         rx="1.590271"
-         y="36.812767"
-         x="140.11996"
-         height="3.1822839"
-         width="9.6420517"
-         id="rect4479-9-0-9-9-0"
-         
style="color:#000000;fill:#454c4c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.21489716;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
 />
-    </g>
-    <g
        id="slider-horz-scale-has-marks-below"
        transform="translate(0,-20)"
        inkscape:label="#g5515">
@@ -5288,1367 +2192,6 @@
          
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.68300003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
 />
     </g>
     <g
-       style="display:inline"
-       id="selected-radio-unchecked"
-       transform="matrix(0.93617253,0,0,0.93566004,303.21685,-244.76083)"
-       inkscape:label="#g15805">
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-0"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <g
-         id="g7025-0">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-05"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-7">
-            <rect
-               ry="15.453857"
-               
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient10489);fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:2.08222389;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-               id="rect5147-9-1-7-81"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-24"
-           d="m 208.0967,269.64077 c -0.006,0.11897 -0.0334,0.24687 -0.0334,0.36738 0,3.84862 
3.09665,6.94697 6.94316,6.94697 3.84651,0 6.94316,-3.09835 6.94316,-6.94697 0,-0.12051 -0.0273,-0.24841 
-0.0333,-0.36738 -0.3543,3.51156 -3.30368,6.24559 -6.90979,6.24559 -3.60611,0 -6.55549,-2.73403 
-6.90978,-6.24559 z"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-3-0-49"
-           d="m 208.16346,268.93939 c -0.0346,0.22741 -0.0487,0.46549 -0.0668,0.70138 0.35429,3.51156 
3.30367,6.24559 6.90978,6.24559 3.60611,0 6.55549,-2.73403 6.90978,-6.24559 -0.0182,-0.23589 -0.0322,-0.47397 
-0.0668,-0.70138 -0.51523,3.33254 -3.36353,5.8782 -6.84302,5.8782 -3.47949,0 -6.32779,-2.54566 
-6.84302,-5.8782 z"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f3f3f3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-7"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 
3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 
-0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 
-6.90978,6.24559 z"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
 />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="selected-radio-checked"
-       transform="matrix(0.93340838,0,0,0.93289741,90.43693,-244.03704)"
-       inkscape:label="#g2928">
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-1-8"
-         width="17.141478"
-         height="17.150867"
-         x="456.99054"
-         y="261.97867" />
-      <use
-         transform="matrix(1.0029614,0,0,1.0029613,249.38699,-0.77583998)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-0"
-         id="use7034-4"
-         width="1"
-         height="1" />
-      <g
-         id="g7444-9">
-        <rect
-           rx="7.9057436"
-           y="268.29523"
-           x="462.22174"
-           height="5.5533452"
-           width="5.5564694"
-           id="use15101-6-2-9"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate"
-           ry="8.0419083" />
-        <rect
-           rx="2.7766726"
-           y="267.2233"
-           x="462.22174"
-           height="5.5533452"
-           width="5.5564694"
-           id="use15101-6-6"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate"
-           ry="2.7766726" />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="selected-checkbox-checked"
-       transform="matrix(0.99650823,0,0,0.99810193,400.25541,-29.912922)"
-       inkscape:label="#g10801">
-      <use
-         transform="matrix(1.003504,0,0,1.0019017,19.813776,-0.08723712)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-4"
-         id="use5460-1"
-         width="1"
-         height="1" />
-      <rect
-         y="30.332689"
-         x="36.905502"
-         height="16.030426"
-         width="16.023939"
-         id="rect13523-5-8"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
-      <g
-         id="g5708-7">
-        <path
-           id="path12830-4-17-08-9"
-           transform="matrix(1.003504,0,0,1.0019017,-0.25630433,39.988835)"
-           d="M 50.9375,-7.59375 44,-0.75 42.125,-2.625 40,-2.65625 l 0,1.71875 2.9375,2.90625 c 
0.584627,0.5855605 1.540374,0.5855605 2.125,0 l 5.9375,-6 0,-3.5625 -0.0625,0 z"
-           
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.7;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
-           inkscape:connector-curvature="0" />
-        <path
-           sodipodi:nodetypes="cccccccccc"
-           inkscape:connector-curvature="0"
-           id="path12830-4-17-07"
-           d="m 50.868001,31.380423 -6.9811,6.843038 -1.871896,-1.872654 -2.138425,-0.01563 0.01122,1.699486 
2.936988,2.938186 c 0.586676,0.586674 1.537597,0.586674 2.124273,0 l 7.996316,-8.077832 0.002,-1.570761 z"
-           
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
 />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="selected-radio-mixed"
-       transform="matrix(0.93617253,0,0,0.93566004,408.83241,-28.033029)"
-       inkscape:label="#g10885">
-      <use
-         transform="translate(-70.089173,-231.63092)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-0"
-         id="use7034-3-8"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-9-9"
-         width="17.090866"
-         height="17.100227"
-         x="136.9014"
-         y="30.347799" />
-      <g
-         id="use7164-1"
-         transform="matrix(1.0681792,0,0,1.0687642,118.74234,-2.1022682)">
-        <rect
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
-           id="rect4477-2"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="37.393383"
-           rx="1.4843769"
-           ry="1.4843769" />
-        <rect
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
-           id="rect4479-7"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="36.393433"
-           rx="1.4843769"
-           ry="1.4843769" />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="selected-checkbox-mixed"
-       transform="translate(439.99573,-29.999989)"
-       inkscape:label="#g14334">
-      <use
-         transform="translate(0.004272,-3.9091922e-6)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-4"
-         id="use5460-0-3"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-0"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <g
-         id="g5684-9">
-        <rect
-           ry="1.4843769"
-           rx="1.4843769"
-           y="37.393383"
-           x="20.004272"
-           height="2.9687538"
-           width="9"
-           id="rect5203-9-2-2"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
 />
-        <rect
-           ry="1.4843769"
-           rx="1.4843769"
-           y="36.393433"
-           x="20.004272"
-           height="2.9687538"
-           width="9"
-           id="rect5203-9-8"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
 />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="selected-checkbox-unchecked"
-       inkscape:label="#g14325"
-       transform="translate(400,-29.999989)">
-      <g
-         style="display:inline"
-         id="g15812-6-6-1-4"
-         transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-           id="g5489-2-9-6-8-8-5"
-           style="display:inline">
-          <g
-             id="g5428-8-1-4-0-0-8" />
-        </g>
-      </g>
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect13523-3"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
-      <g
-         id="g5400-4">
-        <rect
-           ry="6"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient10487);fill-opacity:1;stroke:#184472;stroke-width:2.09697676;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6-9"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7-3"
-           d="m 18,40.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 
2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 
19.044053,43.374983 18,42.333895 18,40.999983 Z"
-           
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7-7-8"
-           d="m 18,39.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 
2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 
19.044053,42.374983 18,41.333895 18,39.999983 Z"
-           
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
 />
-        <path
-           
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
-           d="m 18,34.737183 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 
2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 
-2.34375,1.041088 -2.34375,2.375 z"
-           id="rect5147-9-1-5-7-6-1-7-7-5-02"
-           inkscape:connector-curvature="0" />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,400.14963,-9.9129244)"
-       id="selected-checkbox-checked-hover">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722936)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-59"
-         id="use5994-3"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14466-5"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5708-7"
-         id="use5736-6"
-         transform="matrix(0.99799921,0,0,0.99999996,0.1059371,1.727819e-5)"
-         width="1000"
-         height="1052.3622" />
-    </g>
-    <g
-       style="display:inline"
-       inkscape:label="#g14334"
-       transform="translate(439.99573,-9.9999894)"
-       id="selected-checkbox-mixed-hover">
-      <use
-         transform="translate(0.004272,0)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-59"
-         id="use5994-2-6"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect14482-6"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
-      <use
-         transform="translate(-4.609375e-7,-5e-5)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5684-9"
-         id="use5688-0"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       style="display:inline"
-       inkscape:label="#g14325"
-       id="selected-checkbox-unchecked-hover"
-       transform="translate(400,-9.9999894)">
-      <g
-         transform="translate(0,-3.9660404e-6)"
-         style="display:inline"
-         id="g5400-0-59">
-        <rect
-           ry="6"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient10485);fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6-4-1"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7-78-7"
-           d="m 18,40.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 
2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 
19.044053,43.374983 18,42.333895 18,40.999983 Z"
-           
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-5-7-6-1-7-7-3-8"
-           d="m 18,39.999983 0,1 c 0,1.333912 1.044053,2.375 2.34375,2.375 l 8.3125,0 c 1.299697,0 
2.3125,-1.041088 2.3125,-2.375 l 0,-1 c 0,1.333912 -1.012803,2.375 -2.3125,2.375 l -8.3125,0 C 
19.044053,42.374983 18,41.333895 18,39.999983 Z"
-           
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.4;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
 />
-        <path
-           
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
-           d="m 18,34.737187 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 
2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 
-2.34375,1.041088 -2.34375,2.375 z"
-           id="rect5147-9-1-5-7-6-1-7-7-5-0-4"
-           inkscape:connector-curvature="0" />
-      </g>
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14506-2"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-    </g>
-    <g
-       style="display:inline"
-       id="selected-checkbox-checked-active"
-       transform="matrix(0.99850603,0,0,0.99810197,400.14963,10.087075)"
-       inkscape:label="#g10801">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5-9"
-         id="use6314-5"
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722936)"
-         width="1"
-         height="1" />
-      <rect
-         y="30.332689"
-         x="36.905502"
-         height="16.030426"
-         width="16.023939"
-         id="rect14685-4"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
-      <path
-         inkscape:connector-curvature="0"
-         id="path12830-4-17-08-5-9"
-         d="m 50.863858,32.380676 -6.94788,6.856765 -1.877805,-1.878566 -2.12818,-0.03131 0,1.722018 
2.941895,2.911777 c 0.585502,0.586674 1.542679,0.586674 2.12818,0 l 5.946383,-6.01141 0,-3.569274 -0.06259,0 
z"
-         
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
 />
-      <use
-         transform="matrix(0.99799921,0,0,0.99999996,0.1059371,1.6393686e-5)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#path12830-4-17-07"
-         id="use5756-7"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       style="display:inline"
-       id="selected-checkbox-mixed-active"
-       transform="translate(439.99573,10.00001)"
-       inkscape:label="#g14334">
-      <use
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5-9"
-         id="use6314-1-4"
-         transform="translate(0.004272,0)"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14701-5"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
-         id="use5812-4-5"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="37.393383"
-         rx="1.4843769"
-         ry="1.4843769" />
-      <use
-         transform="translate(-4.609375e-7,-5e-5)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5203-9-8"
-         id="use5812-8"
-         width="1"
-         height="1" />
-    </g>
-    <g
-       style="display:inline"
-       id="selected-checkbox-unchecked-active"
-       inkscape:label="#g14325"
-       transform="translate(400,10.00001)">
-      <g
-         transform="translate(0,-3.9660404e-6)"
-         style="display:inline"
-         id="g5400-0-5-9">
-        <rect
-           ry="6"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient10483);fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6-4-8-8"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-        <path
-           
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.07000002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
-           d="m 18,34.737187 0,-1 c 0,-1.333912 1.044053,-2.375 2.34375,-2.375 l 8.3125,0 c 1.299697,0 
2.3125,1.041088 2.3125,2.375 l 0,1 c 0,-1.333912 -1.012803,-2.375 -2.3125,-2.375 l -8.3125,0 c -1.299697,0 
-2.34375,1.041088 -2.34375,2.375 z"
-           id="rect5147-9-1-5-7-6-1-7-7-5-0-5-6"
-           inkscape:connector-curvature="0" />
-      </g>
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect14725-3"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
-    </g>
-    <g
-       style="display:inline"
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,400.14963,30.087076)"
-       id="selected-checkbox-checked-insensitive">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722936)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5-7-6"
-         id="use6445-2"
-         width="1"
-         height="1" />
-      <g
-         transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)"
-         id="g14999-1"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g15001-0"
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
-          <g
-             id="g15003-5" />
-        </g>
-      </g>
-      <g
-         style="display:inline"
-         transform="translate(-341.01864,-230.63092)"
-         id="g15009-7">
-        <g
-           id="g15013-9" />
-      </g>
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect15021-7"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
-      <path
-         
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#8d9091;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
-         d="m 50.868001,31.380439 -6.981099,6.843039 -1.871897,-1.872655 -2.138425,-0.01563 0.01122,1.699485 
2.936988,2.938187 c 0.586676,0.586674 1.537597,0.586674 2.124274,0 l 7.996315,-8.077832 0.002,-1.570761 z"
-         id="path12830-4-17-2-7"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       style="display:inline"
-       inkscape:label="#g14334"
-       transform="translate(439.99573,30.000011)"
-       id="selected-checkbox-mixed-insensitive">
-      <use
-         transform="translate(0.004272,0)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g5400-0-5-7-6"
-         id="use6465-8"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect15025-0"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99491191;marker:none;enable-background:accumulate"
-         id="rect5203-3"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="36.393433"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       style="display:inline"
-       inkscape:label="#g14325"
-       id="selected-checkbox-unchecked-insensitive"
-       transform="translate(400,30.000011)">
-      <g
-         transform="translate(0,-3.9660404e-6)"
-         style="display:inline;fill:#ededed;fill-opacity:1"
-         id="g5400-0-5-7-6">
-        <rect
-           ry="6"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:2.09697652;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-           id="rect5147-9-1-5-7-6-4-8-3-8"
-           width="29.559635"
-           height="29.154205"
-           x="50.440369"
-           y="125.3458"
-           rx="6"
-           transform="matrix(0.47304779,0,0,0.4807373,-6.3607039,-29.396216)" />
-      </g>
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect15057-7"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-    </g>
-    <g
-       transform="matrix(0.93617253,0,0,0.93566004,303.21685,-224.76083)"
-       id="selected-radio-unchecked-hover"
-       style="display:inline"
-       inkscape:label="#g15392">
-      <g
-         style="display:inline"
-         id="g7025-8-2">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-0-6"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-1-1">
-            <rect
-               ry="15.453857"
-               
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient10481);fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-               id="rect5147-9-1-7-8-5"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-2-0"
-           d="m 208.0967,269.64077 c -0.006,0.11897 -0.0334,0.24687 -0.0334,0.36738 0,3.84862 
3.09665,6.94697 6.94316,6.94697 3.84651,0 6.94316,-3.09835 6.94316,-6.94697 0,-0.12051 -0.0273,-0.24841 
-0.0333,-0.36738 -0.3543,3.51156 -3.30368,6.24559 -6.90979,6.24559 -3.60611,0 -6.55549,-2.73403 
-6.90978,-6.24559 z"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.06847179;marker:none;enable-background:accumulate"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-3-0-4-9"
-           d="m 208.16346,268.93939 c -0.0346,0.22741 -0.0487,0.46549 -0.0668,0.70138 0.35429,3.51156 
3.30367,6.24559 6.90978,6.24559 3.60611,0 6.55549,-2.73403 6.90978,-6.24559 -0.0182,-0.23589 -0.0322,-0.47397 
-0.0668,-0.70138 -0.51523,3.33254 -3.36353,5.8782 -6.84302,5.8782 -3.47949,0 -6.32779,-2.54566 
-6.84302,-5.8782 z"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
 />
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-9-0"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 
3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 
-0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 
-6.90978,6.24559 z"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
 />
-      </g>
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-7-0"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-    </g>
-    <g
-       transform="matrix(0.93893373,0,0,0.93841974,87.91186,-225.48385)"
-       id="selected-radio-checked-hover"
-       style="display:inline"
-       inkscape:label="#g15404">
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-79-9"
-         width="17.040606"
-         height="17.049938"
-         x="456.99057"
-         y="261.97876" />
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046421)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-8-2"
-         id="use7392-0"
-         width="1"
-         height="1" />
-      <g
-         id="use7448-4"
-         transform="matrix(0.99411529,0,0,0.99411529,2.6893006,1.5417626)">
-        <rect
-           ry="8.0419083"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate"
-           id="rect4483-5"
-           width="5.5564694"
-           height="5.5533452"
-           x="462.22174"
-           y="268.29523"
-           rx="7.9057436" />
-        <rect
-           ry="2.7766726"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate"
-           id="rect4485-6"
-           width="5.5564694"
-           height="5.5533452"
-           x="462.22174"
-           y="267.2233"
-           rx="2.7766726" />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       transform="matrix(0.93619363,0,0,0.93568113,408.82935,-8.0338405)"
-       id="selected-radio-mixed-hover"
-       inkscape:label="#g15422">
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-8-6"
-         width="17.090481"
-         height="17.099842"
-         x="136.90158"
-         y="30.34798" />
-      <use
-         transform="matrix(0.99997746,0,0,0.99997746,-70.084327,-231.62484)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-8-2"
-         id="use7392-3-6"
-         width="1"
-         height="1" />
-      <g
-         id="use7508-3"
-         transform="matrix(1.0681551,0,0,1.0687402,118.74293,-2.1013573)">
-        <rect
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
-           id="rect7530-3"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="37.393383"
-           rx="1.4843769"
-           ry="1.4843769" />
-        <rect
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
-           id="rect7532-7"
-           width="9"
-           height="2.9687538"
-           x="20.004272"
-           y="36.393433"
-           rx="1.4843769"
-           ry="1.4843769" />
-      </g>
-    </g>
-    <g
-       style="display:inline"
-       id="selected-radio-unchecked-active"
-       transform="matrix(0.93344283,0,0,0.93293183,303.78164,-204.04631)"
-       inkscape:label="#g15458">
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-7-3-2"
-         width="17.140844"
-         height="17.150234"
-         x="206.99081"
-         y="261.97894" />
-      <g
-         transform="matrix(1.0029243,0,0,1.0029243,-0.60505212,-0.76587606)"
-         style="display:inline"
-         id="g7025-1-1">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-7-8"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-18-2">
-            <rect
-               ry="15.453857"
-               
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient10479);fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-               id="rect5147-9-1-7-88-7"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-        <path
-           inkscape:connector-curvature="0"
-           id="rect5147-9-1-7-4-1-2-6"
-           d="m 208.0967,270.36184 c -0.006,-0.11897 -0.0334,-0.24687 -0.0334,-0.36738 0,-3.84862 
3.09665,-6.94697 6.94316,-6.94697 3.84651,0 6.94316,3.09835 6.94316,6.94697 0,0.12051 -0.0273,0.24841 
-0.0333,0.36738 -0.3543,-3.51156 -3.30368,-6.24559 -6.90979,-6.24559 -3.60611,0 -6.55549,2.73403 
-6.90978,6.24559 z"
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.07000002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;marker:none;enable-background:accumulate"
 />
-      </g>
-    </g>
-    <g
-       transform="matrix(0.93893104,0,0,0.93841705,322.64584,-205.48314)"
-       id="selected-radio-checked-active"
-       style="display:inline"
-       inkscape:label="#g16048">
-      <use
-         transform="matrix(0.99415483,0,0,0.99415482,1.2096678,1.53112)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1-1"
-         id="use5399-5"
-         width="1"
-         height="1" />
-      <g
-         style="display:inline"
-         id="g16050-3"
-         transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-        <g
-           id="g16052-3" />
-      </g>
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-7-4-9"
-         width="17.040653"
-         height="17.049988"
-         x="206.99059"
-         y="261.97876" />
-      <rect
-         ry="7.9946065"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.7;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate"
-         id="use15101-5-8-9"
-         width="5.5237875"
-         height="5.5206814"
-         x="212.19102"
-         y="268.25815"
-         rx="7.8592429" />
-      <rect
-         ry="2.7603407"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;enable-background:accumulate"
-         id="use15101-5-64"
-         width="5.5237875"
-         height="5.5206814"
-         x="212.19102"
-         y="267.19257"
-         rx="2.7603407" />
-    </g>
-    <g
-       style="display:inline"
-       id="selected-radio-mixed-active"
-       transform="matrix(0.93617253,0,0,0.93566004,343.21685,-204.76083)"
-       inkscape:label="#g16079">
-      <use
-         transform="matrix(0.99708419,0,0,0.99708419,0.60329674,0.76365256)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1-1"
-         id="use5399-3-5"
-         width="1"
-         height="1" />
-      <g
-         transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
-         id="g16081-5"
-         style="display:inline">
-        <g
-           id="g16083-3" />
-      </g>
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-7-32-3"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
-         id="rect7532-0-4-6"
-         width="9.6136122"
-         height="3.1728981"
-         x="210.19966"
-         y="269.49341"
-         rx="1.5855805"
-         ry="1.586449" />
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99191427;marker:none;enable-background:accumulate"
-         id="rect7532-0-3"
-         width="9.6136122"
-         height="3.1728981"
-         x="210.19966"
-         y="268.42465"
-         rx="1.5855805"
-         ry="1.586449" />
-    </g>
-    <g
-       transform="matrix(0.93617253,0,0,0.93566004,303.21685,-184.76083)"
-       id="selected-radio-unchecked-insensitive"
-       style="display:inline"
-       inkscape:label="#g15524">
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-7-5-3"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <g
-         style="display:inline"
-         id="g7025-1-7-9">
-        <g
-           style="display:inline"
-           id="g5489-2-9-3-7-7-5"
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
-          <g
-             id="g5428-8-1-7-18-8-9">
-            <rect
-               ry="15.453857"
-               
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:2.08222342;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-               id="rect5147-9-1-7-88-8-8"
-               width="29.385006"
-               height="28.919117"
-               x="50.570232"
-               y="125.5297"
-               rx="15.428222" />
-          </g>
-        </g>
-      </g>
-    </g>
-    <g
-       transform="matrix(0.93893373,0,0,0.93841974,87.91186,-185.48385)"
-       id="selected-radio-checked-insensitive"
-       style="display:inline"
-       inkscape:label="#g15536">
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-7-9-5"
-         width="17.040606"
-         height="17.049938"
-         x="456.99057"
-         y="261.97876" />
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046421)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1-7-9"
-         id="use5683-5"
-         width="1"
-         height="1" />
-      <rect
-         ry="2.7603328"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19056797;marker:none;enable-background:accumulate"
-         id="use15101-5-6-0"
-         width="5.5237718"
-         height="5.5206656"
-         x="462.19101"
-         y="267.19254"
-         rx="2.7603328" />
-    </g>
-    <g
-       style="display:inline"
-       transform="matrix(0.93341132,0,0,0.93290035,409.21044,32.050762)"
-       id="selected-radio-mixed-insensitive"
-       inkscape:label="#g15554">
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect14348-4-7-98-9"
-         width="17.141424"
-         height="17.150812"
-         x="136.90137"
-         y="30.347755" />
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.701507,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#g7025-1-7-9"
-         id="use5683-3-0"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#8d9091;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.20944476;marker:none;enable-background:accumulate"
-         id="rect7532-0-7-4"
-         width="9.6420517"
-         height="3.1822839"
-         x="140.11996"
-         y="36.812756"
-         rx="1.590271"
-         ry="1.5911419" />
-    </g>
-    <g
-       style="display:inline"
-       id="selected-checkbox-checked-backdrop"
-       transform="matrix(0.99850603,0,0,0.99810197,400.14963,50.087076)"
-       inkscape:label="#g10801">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722939)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0-2"
-         id="use6551-6"
-         width="1"
-         height="1" />
-      <g
-         style="display:inline"
-         id="g19927-5"
-         transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-           id="g19929-1"
-           style="display:inline">
-          <g
-             id="g19931-2" />
-        </g>
-      </g>
-      <rect
-         y="30.332689"
-         x="36.905502"
-         height="16.030426"
-         width="16.023939"
-         id="rect19941-8"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
-      <path
-         
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#54595a;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
-         d="m 50.868001,31.380439 -6.981099,6.843039 -1.871897,-1.872655 -2.138425,-0.01563 0.01122,1.699485 
2.936988,2.938187 c 0.586676,0.586674 1.537597,0.586674 2.124274,0 l 7.996315,-8.077832 0.002,-1.570761 z"
-         id="path12830-4-17-2-3-2"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       style="display:inline"
-       id="selected-checkbox-mixed-backdrop"
-       transform="translate(439.99573,50.000011)"
-       inkscape:label="#g14334">
-      <use
-         transform="translate(0.004272,-2.9802322e-8)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0-2"
-         id="use6551-3-4"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect19945-7"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-      <g
-         style="display:inline"
-         id="g19947-5"
-         transform="matrix(0.92951982,0,0,0.92914368,-156.74643,-212.9618)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
-           id="g19949-2"
-           style="display:inline">
-          <g
-             id="g19951-4" />
-        </g>
-      </g>
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#54595a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99491191;marker:none;enable-background:accumulate"
-         id="rect5203-6-0"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="36.393433"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       style="display:inline"
-       transform="translate(400,50.000011)"
-       id="selected-checkbox-unchecked-backdrop"
-       inkscape:label="#g14325">
-      <rect
-         ry="2.8844237"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-         id="rect5147-9-1-5-7-6-4-8-3-0-2"
-         width="13.98312"
-         height="14.015514"
-         x="17.500002"
-         y="30.862183"
-         rx="2.8382866" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect19971-4"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
-    </g>
-    <g
-       inkscape:label="#g15524"
-       style="display:inline"
-       id="selected-radio-unchecked-backdrop"
-       transform="matrix(0.93617253,0,0,0.93566004,303.21685,-164.76083)">
-      <rect
-         y="261.97873"
-         x="206.99057"
-         height="17.100227"
-         width="17.090866"
-         id="rect19981-6"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
-      <rect
-         ry="7.9957981"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededed;fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:1.06847155;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-         id="rect5147-9-1-7-88-8-5-5"
-         width="14.954509"
-         height="14.9627"
-         x="207.52921"
-         y="262.51309"
-         rx="7.8516736" />
-    </g>
-    <g
-       inkscape:label="#g15536"
-       style="display:inline"
-       id="selected-radio-checked-backdrop"
-       transform="matrix(0.93893373,0,0,0.93841974,87.91186,-165.48385)">
-      <rect
-         y="261.97876"
-         x="456.99057"
-         height="17.049938"
-         width="17.040606"
-         id="rect19995-7"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046669)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5-5"
-         id="use5805-3"
-         width="1"
-         height="1" />
-      <rect
-         ry="2.7603328"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#54595a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19056797;marker:none;enable-background:accumulate"
-         id="use15101-5-6-3-92"
-         width="5.5237718"
-         height="5.5206656"
-         x="462.19101"
-         y="267.19254"
-         rx="2.7603328" />
-    </g>
-    <g
-       style="display:inline"
-       inkscape:label="#g15554"
-       id="selected-radio-mixed-backdrop"
-       transform="matrix(0.93341132,0,0,0.93290035,409.21044,52.050762)">
-      <rect
-         y="30.347755"
-         x="136.90137"
-         height="17.150812"
-         width="17.141424"
-         id="rect20011-1"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.701511,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5-5"
-         id="use5805-1-4"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#54595a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.20944476;marker:none;enable-background:accumulate"
-         id="rect7532-0-7-9-0"
-         width="9.6420517"
-         height="3.1822839"
-         x="140.11996"
-         y="36.812756"
-         rx="1.590271"
-         ry="1.5911419" />
-    </g>
-    <g
-       style="display:inline"
-       inkscape:label="#g10801"
-       transform="matrix(0.99850603,0,0,0.99810197,400.14963,70.087071)"
-       id="selected-checkbox-checked-backdrop-insensitive">
-      <use
-         transform="matrix(1.0014962,0,0,1.0019016,19.880069,-0.08722438)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0-7-0"
-         id="use6749-8"
-         width="1"
-         height="1" />
-      <g
-         transform="matrix(0.93091057,0,0,0.93091058,-137.10516,-213.45401)"
-         id="g20167-8"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g20169-9"
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
-          <g
-             id="g20171-3" />
-        </g>
-      </g>
-      <g
-         style="display:inline"
-         transform="translate(-341.01864,-230.63092)"
-         id="g20175-1">
-        <g
-           id="g20177-1" />
-      </g>
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect20181-3"
-         width="16.023939"
-         height="16.030426"
-         x="36.905502"
-         y="30.332689" />
-      <path
-         
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#c7c7c7;fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
-         d="m 50.868001,31.380443 -6.981098,6.843039 -1.871898,-1.872655 -2.138425,-0.01563 0.01122,1.699485 
2.936988,2.938186 c 0.586676,0.586675 1.537597,0.586675 2.124275,0 l 7.996314,-8.077832 0.002,-1.57076 z"
-         id="path12830-4-17-2-3-9-3"
-         inkscape:connector-curvature="0"
-         sodipodi:nodetypes="cccccccccc" />
-    </g>
-    <g
-       style="display:inline"
-       inkscape:label="#g14334"
-       transform="translate(439.99573,70.000011)"
-       id="selected-checkbox-mixed-backdrop-insensitive">
-      <use
-         transform="translate(0.004272,-2.9802322e-8)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-5-7-6-4-8-3-0-7-0"
-         id="use6749-5-9"
-         width="1"
-         height="1" />
-      <rect
-         y="30.362183"
-         x="17"
-         height="16"
-         width="16"
-         id="rect20185-0"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
 />
-      <g
-         transform="matrix(0.92951982,0,0,0.92914368,-156.74643,-212.9618)"
-         id="g20187-2"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g20189-1"
-           transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
-          <g
-             id="g20191-6" />
-        </g>
-      </g>
-      <g
-         transform="translate(-40.874249,-1.0164925)"
-         id="g20195-4"
-         style="display:inline">
-        <g
-           style="display:inline"
-           id="g20197-6"
-           transform="translate(-400.08917,-231.63092)" />
-      </g>
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.99491191;marker:none;enable-background:accumulate"
-         id="rect5203-6-8-9"
-         width="9"
-         height="2.9687538"
-         x="20.004272"
-         y="36.393433"
-         rx="1.4843769"
-         ry="1.4843769" />
-    </g>
-    <g
-       style="display:inline"
-       inkscape:label="#g14325"
-       id="selected-checkbox-unchecked-backdrop-insensitive"
-       transform="translate(400,70.000011)">
-      <rect
-         ry="2.8844237"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-         id="rect5147-9-1-5-7-6-4-8-3-0-7-0"
-         width="13.98312"
-         height="14.015514"
-         x="17.500002"
-         y="30.862183"
-         rx="2.8382866" />
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect20211-5"
-         width="16"
-         height="16"
-         x="17"
-         y="30.362183" />
-    </g>
-    <g
-       transform="matrix(0.93617253,0,0,0.93566004,303.21685,-144.76083)"
-       id="selected-radio-unchecked-backdrop-insensitive"
-       style="display:inline"
-       inkscape:label="#g15524">
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect20221-1"
-         width="17.090866"
-         height="17.100227"
-         x="206.99057"
-         y="261.97873" />
-      <rect
-         ry="7.9957981"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:#184472;stroke-width:1.06847155;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-         id="rect5147-9-1-7-88-8-5-7-2"
-         width="14.954509"
-         height="14.9627"
-         x="207.52921"
-         y="262.51309"
-         rx="7.8516736" />
-    </g>
-    <g
-       transform="matrix(0.93893373,0,0,0.93841974,87.91186,-145.48385)"
-       id="selected-radio-checked-backdrop-insensitive"
-       style="display:inline"
-       inkscape:label="#g15536">
-      <g
-         style="display:inline"
-         id="g20225-2"
-         transform="translate(250,1.6004853e-6)">
-        <g
-           transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
-           id="g20227-7"
-           style="display:inline">
-          <g
-             id="g20229-2" />
-        </g>
-      </g>
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect20235-3"
-         width="17.040606"
-         height="17.049938"
-         x="456.99057"
-         y="261.97876" />
-      <use
-         transform="matrix(0.99705922,0,0,0.99705921,250.60873,0.77046669)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5-7-2"
-         id="use5938-1"
-         width="1"
-         height="1" />
-      <rect
-         ry="2.7603328"
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.19056797;marker:none;enable-background:accumulate"
-         id="use15101-5-6-3-9-4"
-         width="5.5237718"
-         height="5.5206656"
-         x="462.19101"
-         y="267.19254"
-         rx="2.7603328" />
-    </g>
-    <g
-       style="display:inline"
-       transform="matrix(0.93341132,0,0,0.93290035,409.21044,72.050761)"
-       id="selected-radio-mixed-backdrop-insensitive"
-       inkscape:label="#g15554">
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
-         id="rect20251-9"
-         width="17.141424"
-         height="17.150812"
-         x="136.90137"
-         y="30.347755" />
-      <use
-         transform="matrix(1.0029582,0,0,1.0029582,-70.701511,-232.40595)"
-         style="display:inline"
-         x="0"
-         y="0"
-         xlink:href="#rect5147-9-1-7-88-8-5-7-2"
-         id="use5938-3-2"
-         width="1"
-         height="1" />
-      <rect
-         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c7c7c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.20944476;marker:none;enable-background:accumulate"
-         id="rect7532-0-7-9-6-6"
-         width="9.6420517"
-         height="3.1822839"
-         x="140.11996"
-         y="36.812756"
-         rx="1.590271"
-         ry="1.5911419" />
-    </g>
-    <g
        id="text-select-end"
        transform="matrix(-1,0,0,-1,540.03033,-21.275635)"
        inkscape:label="#g5515">
diff --git a/gtk/theme/Adwaita/gtk-contained-dark.css b/gtk/theme/Adwaita/gtk-contained-dark.css
index c422186..898516d 100644
--- a/gtk/theme/Adwaita/gtk-contained-dark.css
+++ b/gtk/theme/Adwaita/gtk-contained-dark.css
@@ -2489,302 +2489,6 @@ switch {
 /*************************
  * Check and Radio items *
  *************************/
-treeview.check {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), 
url("assets/checkbox-unchecked-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check button.flat, treeview.check notebook > header > tabs > arrow, treeview.check 
button.sidebar-button, treeview.check headerbar button.titlebutton, headerbar treeview.check 
button.titlebutton,
-  treeview.check .titlebar button.titlebutton,
-  .titlebar treeview.check button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-hover-dark.png"), 
url("assets/checkbox-unchecked-hover-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:hover button.flat, treeview.check:hover notebook > header > tabs > arrow, 
treeview.check:hover button.sidebar-button, treeview.check:hover headerbar button.titlebutton, headerbar 
treeview.check:hover button.titlebutton,
-  treeview.check:hover .titlebar button.titlebutton,
-  .titlebar treeview.check:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-active-dark.png"), 
url("assets/checkbox-unchecked-active-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:active button.flat, treeview.check:active notebook > header > tabs > arrow, 
treeview.check:active button.sidebar-button, treeview.check:active headerbar button.titlebutton, headerbar 
treeview.check:active button.titlebutton,
-  treeview.check:active .titlebar button.titlebutton,
-  .titlebar treeview.check:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), 
url("assets/checkbox-unchecked-insensitive-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:disabled button.flat, treeview.check:disabled notebook > header > tabs > arrow, 
treeview.check:disabled button.sidebar-button, treeview.check:disabled headerbar button.titlebutton, 
headerbar treeview.check:disabled button.titlebutton,
-  treeview.check:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-backdrop-dark.png"), 
url("assets/checkbox-unchecked-backdrop-dark 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop button.flat, treeview.check:backdrop notebook > header > tabs > arrow, 
treeview.check:backdrop button.sidebar-button, treeview.check:backdrop headerbar button.titlebutton, 
headerbar treeview.check:backdrop button.titlebutton,
-  treeview.check:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:backdrop:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-backdrop-insensitive-dark.png"), 
url("assets/checkbox-unchecked-backdrop-insensitive-dark 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop:disabled button.flat, treeview.check:backdrop:disabled notebook > header > tabs > 
arrow, treeview.check:backdrop:disabled button.sidebar-button, treeview.check:backdrop:disabled headerbar 
button.titlebutton, headerbar treeview.check:backdrop:disabled button.titlebutton,
-  treeview.check:backdrop:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:indeterminate {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark 2 
png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:indeterminate button.flat, treeview.check:indeterminate notebook > header > tabs > arrow, 
treeview.check:indeterminate button.sidebar-button, treeview.check:indeterminate headerbar 
button.titlebutton, headerbar treeview.check:indeterminate button.titlebutton,
-  treeview.check:indeterminate .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:indeterminate:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-hover-dark.png"), 
url("assets/checkbox-mixed-hover-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:indeterminate:hover button.flat, treeview.check:indeterminate:hover notebook > header > 
tabs > arrow, treeview.check:indeterminate:hover button.sidebar-button, treeview.check:indeterminate:hover 
headerbar button.titlebutton, headerbar treeview.check:indeterminate:hover button.titlebutton,
-  treeview.check:indeterminate:hover .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:indeterminate:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-active-dark.png"), 
url("assets/checkbox-mixed-active-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:indeterminate:selected button.flat, treeview.check:indeterminate:selected notebook > header 
tabs > arrow, treeview.check:indeterminate:selected button.sidebar-button, 
treeview.check:indeterminate:selected headerbar button.titlebutton, headerbar 
treeview.check:indeterminate:selected button.titlebutton,
-  treeview.check:indeterminate:selected .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:selected button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:indeterminate:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-backdrop-dark.png"), 
url("assets/checkbox-mixed-backdrop-dark 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:indeterminate:backdrop button.flat, treeview.check:indeterminate:backdrop notebook > header 
tabs > arrow, treeview.check:indeterminate:backdrop button.sidebar-button, 
treeview.check:indeterminate:backdrop headerbar button.titlebutton, headerbar 
treeview.check:indeterminate:backdrop button.titlebutton,
-  treeview.check:indeterminate:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:indeterminate:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), 
url("assets/checkbox-mixed-insensitive-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:indeterminate:disabled button.flat, treeview.check:indeterminate:disabled notebook > header 
tabs > arrow, treeview.check:indeterminate:disabled button.sidebar-button, 
treeview.check:indeterminate:disabled headerbar button.titlebutton, headerbar 
treeview.check:indeterminate:disabled button.titlebutton,
-  treeview.check:indeterminate:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:indeterminate:disabled:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-backdrop-insensitive-dark.png"), 
url("assets/checkbox-mixed-backdrop-insensitive-dark 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:indeterminate:disabled:backdrop button.flat, treeview.check:indeterminate:disabled:backdrop 
notebook > header > tabs > arrow, treeview.check:indeterminate:disabled:backdrop button.sidebar-button, 
treeview.check:indeterminate:disabled:backdrop headerbar button.titlebutton, headerbar 
treeview.check:indeterminate:disabled:backdrop button.titlebutton,
-  treeview.check:indeterminate:disabled:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:disabled:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark 2 
png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:checked button.flat, treeview.check:checked notebook > header > tabs > arrow, 
treeview.check:checked button.sidebar-button, treeview.check:checked headerbar button.titlebutton, headerbar 
treeview.check:checked button.titlebutton,
-  treeview.check:checked .titlebar button.titlebutton,
-  .titlebar treeview.check:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), 
url("assets/checkbox-checked-insensitive-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:checked:disabled button.flat, treeview.check:checked:disabled notebook > header > tabs > 
arrow, treeview.check:checked:disabled button.sidebar-button, treeview.check:checked:disabled headerbar 
button.titlebutton, headerbar treeview.check:checked:disabled button.titlebutton,
-  treeview.check:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:checked:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-hover-dark.png"), 
url("assets/checkbox-checked-hover-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:checked:hover button.flat, treeview.check:checked:hover notebook > header > tabs > arrow, 
treeview.check:checked:hover button.sidebar-button, treeview.check:checked:hover headerbar 
button.titlebutton, headerbar treeview.check:checked:hover button.titlebutton,
-  treeview.check:checked:hover .titlebar button.titlebutton,
-  .titlebar treeview.check:checked:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:checked:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-active-dark.png"), 
url("assets/checkbox-checked-active-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.check:checked:active button.flat, treeview.check:checked:active notebook > header > tabs > arrow, 
treeview.check:checked:active button.sidebar-button, treeview.check:checked:active headerbar 
button.titlebutton, headerbar treeview.check:checked:active button.titlebutton,
-  treeview.check:checked:active .titlebar button.titlebutton,
-  .titlebar treeview.check:checked:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:backdrop:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-backdrop-dark.png"), 
url("assets/checkbox-checked-backdrop-dark 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop:checked button.flat, treeview.check:backdrop:checked notebook > header > tabs > 
arrow, treeview.check:backdrop:checked button.sidebar-button, treeview.check:backdrop:checked headerbar 
button.titlebutton, headerbar treeview.check:backdrop:checked button.titlebutton,
-  treeview.check:backdrop:checked .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.check:backdrop:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-backdrop-insensitive-dark.png"), 
url("assets/checkbox-checked-backdrop-insensitive-dark 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop:checked:disabled button.flat, treeview.check:backdrop:checked:disabled notebook > 
header > tabs > arrow, treeview.check:backdrop:checked:disabled button.sidebar-button, 
treeview.check:backdrop:checked:disabled headerbar button.titlebutton, headerbar 
treeview.check:backdrop:checked:disabled button.titlebutton,
-  treeview.check:backdrop:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark 2 
png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio button.flat, treeview.radio notebook > header > tabs > arrow, treeview.radio 
button.sidebar-button, treeview.radio headerbar button.titlebutton, headerbar treeview.radio 
button.titlebutton,
-  treeview.radio .titlebar button.titlebutton,
-  .titlebar treeview.radio button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-hover-dark.png"), 
url("assets/radio-unchecked-hover-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:hover button.flat, treeview.radio:hover notebook > header > tabs > arrow, 
treeview.radio:hover button.sidebar-button, treeview.radio:hover headerbar button.titlebutton, headerbar 
treeview.radio:hover button.titlebutton,
-  treeview.radio:hover .titlebar button.titlebutton,
-  .titlebar treeview.radio:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-active-dark.png"), 
url("assets/radio-unchecked-active-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:active button.flat, treeview.radio:active notebook > header > tabs > arrow, 
treeview.radio:active button.sidebar-button, treeview.radio:active headerbar button.titlebutton, headerbar 
treeview.radio:active button.titlebutton,
-  treeview.radio:active .titlebar button.titlebutton,
-  .titlebar treeview.radio:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), 
url("assets/radio-unchecked-insensitive-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:disabled button.flat, treeview.radio:disabled notebook > header > tabs > arrow, 
treeview.radio:disabled button.sidebar-button, treeview.radio:disabled headerbar button.titlebutton, 
headerbar treeview.radio:disabled button.titlebutton,
-  treeview.radio:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-backdrop-dark.png"), 
url("assets/radio-unchecked-backdrop-dark 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop button.flat, treeview.radio:backdrop notebook > header > tabs > arrow, 
treeview.radio:backdrop button.sidebar-button, treeview.radio:backdrop headerbar button.titlebutton, 
headerbar treeview.radio:backdrop button.titlebutton,
-  treeview.radio:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:backdrop:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-backdrop-insensitive-dark.png"), 
url("assets/radio-unchecked-backdrop-insensitive-dark 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop:disabled button.flat, treeview.radio:backdrop:disabled notebook > header > tabs > 
arrow, treeview.radio:backdrop:disabled button.sidebar-button, treeview.radio:backdrop:disabled headerbar 
button.titlebutton, headerbar treeview.radio:backdrop:disabled button.titlebutton,
-  treeview.radio:backdrop:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:indeterminate {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:indeterminate button.flat, treeview.radio:indeterminate notebook > header > tabs > arrow, 
treeview.radio:indeterminate button.sidebar-button, treeview.radio:indeterminate headerbar 
button.titlebutton, headerbar treeview.radio:indeterminate button.titlebutton,
-  treeview.radio:indeterminate .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:indeterminate:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-hover-dark.png"), url("assets/radio-mixed-hover-dark 
2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:indeterminate:hover button.flat, treeview.radio:indeterminate:hover notebook > header > 
tabs > arrow, treeview.radio:indeterminate:hover button.sidebar-button, treeview.radio:indeterminate:hover 
headerbar button.titlebutton, headerbar treeview.radio:indeterminate:hover button.titlebutton,
-  treeview.radio:indeterminate:hover .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:indeterminate:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-active-dark.png"), 
url("assets/radio-mixed-active-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:indeterminate:selected button.flat, treeview.radio:indeterminate:selected notebook > header 
tabs > arrow, treeview.radio:indeterminate:selected button.sidebar-button, 
treeview.radio:indeterminate:selected headerbar button.titlebutton, headerbar 
treeview.radio:indeterminate:selected button.titlebutton,
-  treeview.radio:indeterminate:selected .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:selected button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:indeterminate:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-backdrop-dark.png"), 
url("assets/radio-mixed-backdrop-dark 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:indeterminate:backdrop button.flat, treeview.radio:indeterminate:backdrop notebook > header 
tabs > arrow, treeview.radio:indeterminate:backdrop button.sidebar-button, 
treeview.radio:indeterminate:backdrop headerbar button.titlebutton, headerbar 
treeview.radio:indeterminate:backdrop button.titlebutton,
-  treeview.radio:indeterminate:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:indeterminate:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), 
url("assets/radio-mixed-insensitive-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:indeterminate:disabled button.flat, treeview.radio:indeterminate:disabled notebook > header 
tabs > arrow, treeview.radio:indeterminate:disabled button.sidebar-button, 
treeview.radio:indeterminate:disabled headerbar button.titlebutton, headerbar 
treeview.radio:indeterminate:disabled button.titlebutton,
-  treeview.radio:indeterminate:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:indeterminate:disabled:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-backdrop-insensitive-dark.png"), 
url("assets/radio-mixed-backdrop-insensitive-dark 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:indeterminate:disabled:backdrop button.flat, treeview.radio:indeterminate:disabled:backdrop 
notebook > header > tabs > arrow, treeview.radio:indeterminate:disabled:backdrop button.sidebar-button, 
treeview.radio:indeterminate:disabled:backdrop headerbar button.titlebutton, headerbar 
treeview.radio:indeterminate:disabled:backdrop button.titlebutton,
-  treeview.radio:indeterminate:disabled:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:disabled:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark 2 
png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:checked button.flat, treeview.radio:checked notebook > header > tabs > arrow, 
treeview.radio:checked button.sidebar-button, treeview.radio:checked headerbar button.titlebutton, headerbar 
treeview.radio:checked button.titlebutton,
-  treeview.radio:checked .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), 
url("assets/radio-checked-insensitive-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:checked:disabled button.flat, treeview.radio:checked:disabled notebook > header > tabs > 
arrow, treeview.radio:checked:disabled button.sidebar-button, treeview.radio:checked:disabled headerbar 
button.titlebutton, headerbar treeview.radio:checked:disabled button.titlebutton,
-  treeview.radio:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:checked:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-hover-dark.png"), 
url("assets/radio-checked-hover-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:checked:hover button.flat, treeview.radio:checked:hover notebook > header > tabs > arrow, 
treeview.radio:checked:hover button.sidebar-button, treeview.radio:checked:hover headerbar 
button.titlebutton, headerbar treeview.radio:checked:hover button.titlebutton,
-  treeview.radio:checked:hover .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:checked:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-active-dark.png"), 
url("assets/radio-checked-active-dark 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
-  treeview.radio:checked:active button.flat, treeview.radio:checked:active notebook > header > tabs > arrow, 
treeview.radio:checked:active button.sidebar-button, treeview.radio:checked:active headerbar 
button.titlebutton, headerbar treeview.radio:checked:active button.titlebutton,
-  treeview.radio:checked:active .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:backdrop:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-backdrop-dark.png"), 
url("assets/radio-checked-backdrop-dark 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop:checked button.flat, treeview.radio:backdrop:checked notebook > header > tabs > 
arrow, treeview.radio:backdrop:checked button.sidebar-button, treeview.radio:backdrop:checked headerbar 
button.titlebutton, headerbar treeview.radio:backdrop:checked button.titlebutton,
-  treeview.radio:backdrop:checked .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-treeview.radio:backdrop:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-backdrop-insensitive-dark.png"), 
url("assets/radio-checked-backdrop-insensitive-dark 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop:checked:disabled button.flat, treeview.radio:backdrop:checked:disabled notebook > 
header > tabs > arrow, treeview.radio:backdrop:checked:disabled button.sidebar-button, 
treeview.radio:backdrop:checked:disabled headerbar button.titlebutton, headerbar 
treeview.radio:backdrop:checked:disabled button.titlebutton,
-  treeview.radio:backdrop:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view.check, iconview.check, .view.radio, iconview.radio,
-row .check, row .radio {
-  -gtk-icon-shadow: none; }
-  .view.check:selected, iconview.check:selected, .view.check:hover, iconview.check:hover, 
.view.radio:selected, iconview.radio:selected, .view.radio:hover, iconview.radio:hover,
-  row .check:selected,
-  row .check:hover, row .radio:selected, row .radio:hover {
-    -gtk-icon-shadow: none; }
-
 .view.content-view.check:not(list), iconview.content-view.check:not(list) {
   -gtk-icon-shadow: none;
   -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode 
2 png"));
@@ -2912,17 +2616,23 @@ radio {
     border-color: currentColor;
     animation: none; }
 
+treeview.view check:selected:focus:disabled, treeview.view check:selected:focus, treeview.view 
check:selected:backdrop:disabled, treeview.view check:selected:backdrop, treeview.view 
check:selected:disabled, treeview.view check:selected,
 check {
   border-radius: 3px; }
+  treeview.view check:checked:selected,
   check:checked {
     -gtk-icon-source: image(-gtk-recolor(url("assets/check-symbolic.svg")), 
-gtk-recolor(url("assets/check-symbolic.symbolic.png"))); }
+  treeview.view check:indeterminate:selected,
   check:indeterminate {
     -gtk-icon-source: image(-gtk-recolor(url("assets/dash-symbolic.svg")), 
-gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); }
 
+treeview.view radio:selected:focus:disabled, treeview.view radio:selected:focus, treeview.view 
radio:selected:backdrop:disabled, treeview.view radio:selected:backdrop, treeview.view 
radio:selected:disabled, treeview.view radio:selected,
 radio {
   border-radius: 100%; }
+  treeview.view radio:checked:selected,
   radio:checked {
     -gtk-icon-source: image(-gtk-recolor(url("assets/bullet-symbolic.svg")), 
-gtk-recolor(url("assets/bullet-symbolic.symbolic.png"))); }
+  treeview.view radio:indeterminate:selected,
   radio:indeterminate {
     -gtk-icon-source: image(-gtk-recolor(url("assets/dash-symbolic.svg")), 
-gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); }
 
@@ -2956,6 +2666,43 @@ menu menuitem check:indeterminate:checked:active,
 menu menuitem radio:indeterminate:checked {
   animation: none; }
 
+treeview.view check:dir(rtl):selected:focus, treeview.view check:dir(rtl):selected:hover, treeview.view 
check:dir(rtl):selected, treeview.view check:dir(rtl):focus, treeview.view check:dir(rtl):hover, 
treeview.view check:dir(rtl), treeview.view check:dir(ltr):selected:focus, treeview.view 
check:dir(ltr):selected:hover, treeview.view check:dir(ltr):selected, treeview.view check:dir(ltr):focus, 
treeview.view check:dir(ltr):hover, treeview.view check:dir(ltr),
+treeview.view radio:dir(rtl):selected:focus,
+treeview.view radio:dir(rtl):selected:hover,
+treeview.view radio:dir(rtl):selected,
+treeview.view radio:dir(rtl):focus,
+treeview.view radio:dir(rtl):hover,
+treeview.view radio:dir(rtl),
+treeview.view radio:dir(ltr):selected:focus,
+treeview.view radio:dir(ltr):selected:hover,
+treeview.view radio:dir(ltr):selected,
+treeview.view radio:dir(ltr):focus,
+treeview.view radio:dir(ltr):hover,
+treeview.view radio:dir(ltr) {
+  color: #eeeeec; }
+treeview.view check:dir(rtl):selected:backdrop:hover, treeview.view check:dir(rtl):selected:backdrop, 
treeview.view check:dir(rtl):backdrop:hover, treeview.view check:dir(rtl):backdrop, treeview.view 
check:dir(ltr):selected:backdrop:hover, treeview.view check:dir(ltr):selected:backdrop, treeview.view 
check:dir(ltr):backdrop:hover, treeview.view check:dir(ltr):backdrop,
+treeview.view radio:dir(rtl):selected:backdrop:hover,
+treeview.view radio:dir(rtl):selected:backdrop,
+treeview.view radio:dir(rtl):backdrop:hover,
+treeview.view radio:dir(rtl):backdrop,
+treeview.view radio:dir(ltr):selected:backdrop:hover,
+treeview.view radio:dir(ltr):selected:backdrop,
+treeview.view radio:dir(ltr):backdrop:hover,
+treeview.view radio:dir(ltr):backdrop {
+  color: #949796; }
+treeview.view check:dir(rtl):selected:backdrop:disabled, treeview.view check:dir(rtl):backdrop:disabled, 
treeview.view check:dir(ltr):selected:backdrop:disabled, treeview.view check:dir(ltr):backdrop:disabled,
+treeview.view radio:dir(rtl):selected:backdrop:disabled,
+treeview.view radio:dir(rtl):backdrop:disabled,
+treeview.view radio:dir(ltr):selected:backdrop:disabled,
+treeview.view radio:dir(ltr):backdrop:disabled {
+  color: #5d6767; }
+treeview.view check:dir(rtl):selected:disabled, treeview.view check:dir(rtl):disabled, treeview.view 
check:dir(ltr):selected:disabled, treeview.view check:dir(ltr):disabled,
+treeview.view radio:dir(rtl):selected:disabled,
+treeview.view radio:dir(rtl):disabled,
+treeview.view radio:dir(ltr):selected:disabled,
+treeview.view radio:dir(ltr):disabled {
+  color: #949796; }
+
 /************
  * GtkScale *
  ************/
diff --git a/gtk/theme/Adwaita/gtk-contained.css b/gtk/theme/Adwaita/gtk-contained.css
index fbeade6..25039b2 100644
--- a/gtk/theme/Adwaita/gtk-contained.css
+++ b/gtk/theme/Adwaita/gtk-contained.css
@@ -2511,410 +2511,6 @@ switch {
 /*************************
  * Check and Radio items *
  *************************/
-treeview.check {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked 2 
png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check button.flat, treeview.check notebook > header > tabs > arrow, treeview.check 
button.sidebar-button, treeview.check headerbar button.titlebutton, headerbar treeview.check 
button.titlebutton,
-  treeview.check .titlebar button.titlebutton,
-  .titlebar treeview.check button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:selected, iconview treeview.check:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-unchecked.png"), 
url("assets/selected-checkbox-unchecked 2 png")); }
-
-treeview.check:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-hover.png"), 
url("assets/checkbox-unchecked-hover 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:hover button.flat, treeview.check:hover notebook > header > tabs > arrow, 
treeview.check:hover button.sidebar-button, treeview.check:hover headerbar button.titlebutton, headerbar 
treeview.check:hover button.titlebutton,
-  treeview.check:hover .titlebar button.titlebutton,
-  .titlebar treeview.check:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:hover:selected, iconview treeview.check:hover:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-unchecked-hover.png"), 
url("assets/selected-checkbox-unchecked-hover 2 png")); }
-
-treeview.check:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-active.png"), 
url("assets/checkbox-unchecked-active 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:active button.flat, treeview.check:active notebook > header > tabs > arrow, 
treeview.check:active button.sidebar-button, treeview.check:active headerbar button.titlebutton, headerbar 
treeview.check:active button.titlebutton,
-  treeview.check:active .titlebar button.titlebutton,
-  .titlebar treeview.check:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:active:selected, iconview treeview.check:active:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-unchecked-active.png"), 
url("assets/selected-checkbox-unchecked-active 2 png")); }
-
-treeview.check:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), 
url("assets/checkbox-unchecked-insensitive 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:disabled button.flat, treeview.check:disabled notebook > header > tabs > arrow, 
treeview.check:disabled button.sidebar-button, treeview.check:disabled headerbar button.titlebutton, 
headerbar treeview.check:disabled button.titlebutton,
-  treeview.check:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:disabled:selected, iconview treeview.check:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-unchecked-insensitive.png"), 
url("assets/selected-checkbox-unchecked-insensitive 2 png")); }
-
-treeview.check:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-backdrop.png"), 
url("assets/checkbox-unchecked-backdrop 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop button.flat, treeview.check:backdrop notebook > header > tabs > arrow, 
treeview.check:backdrop button.sidebar-button, treeview.check:backdrop headerbar button.titlebutton, 
headerbar treeview.check:backdrop button.titlebutton,
-  treeview.check:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:backdrop:selected, iconview treeview.check:backdrop:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-unchecked-backdrop.png"), 
url("assets/selected-checkbox-unchecked-backdrop 2 png")); }
-
-treeview.check:backdrop:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-backdrop-insensitive.png"), 
url("assets/checkbox-unchecked-backdrop-insensitive 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop:disabled button.flat, treeview.check:backdrop:disabled notebook > header > tabs > 
arrow, treeview.check:backdrop:disabled button.sidebar-button, treeview.check:backdrop:disabled headerbar 
button.titlebutton, headerbar treeview.check:backdrop:disabled button.titlebutton,
-  treeview.check:backdrop:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:backdrop:disabled:selected, iconview treeview.check:backdrop:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-unchecked-backdrop-insensitive.png"), 
url("assets/selected-checkbox-unchecked-backdrop-insensitive 2 png")); }
-
-treeview.check:indeterminate {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:indeterminate button.flat, treeview.check:indeterminate notebook > header > tabs > arrow, 
treeview.check:indeterminate button.sidebar-button, treeview.check:indeterminate headerbar 
button.titlebutton, headerbar treeview.check:indeterminate button.titlebutton,
-  treeview.check:indeterminate .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:indeterminate:selected, iconview treeview.check:indeterminate:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-mixed.png"), 
url("assets/selected-checkbox-mixed 2 png")); }
-
-treeview.check:indeterminate:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-hover.png"), url("assets/checkbox-mixed-hover 2 
png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:indeterminate:hover button.flat, treeview.check:indeterminate:hover notebook > header > 
tabs > arrow, treeview.check:indeterminate:hover button.sidebar-button, treeview.check:indeterminate:hover 
headerbar button.titlebutton, headerbar treeview.check:indeterminate:hover button.titlebutton,
-  treeview.check:indeterminate:hover .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:indeterminate:hover:selected, iconview treeview.check:indeterminate:hover:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-mixed-hover.png"), 
url("assets/selected-checkbox-mixed-hover 2 png")); }
-
-treeview.check:indeterminate:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-active.png"), url("assets/checkbox-mixed-active 2 
png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:indeterminate:selected button.flat, treeview.check:indeterminate:selected notebook > header 
tabs > arrow, treeview.check:indeterminate:selected button.sidebar-button, 
treeview.check:indeterminate:selected headerbar button.titlebutton, headerbar 
treeview.check:indeterminate:selected button.titlebutton,
-  treeview.check:indeterminate:selected .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:selected button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:indeterminate:selected:selected, iconview 
treeview.check:indeterminate:selected:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-mixed-active.png"), 
url("assets/selected-checkbox-mixed-active 2 png")); }
-
-treeview.check:indeterminate:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-backdrop.png"), 
url("assets/checkbox-mixed-backdrop 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:indeterminate:backdrop button.flat, treeview.check:indeterminate:backdrop notebook > header 
tabs > arrow, treeview.check:indeterminate:backdrop button.sidebar-button, 
treeview.check:indeterminate:backdrop headerbar button.titlebutton, headerbar 
treeview.check:indeterminate:backdrop button.titlebutton,
-  treeview.check:indeterminate:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:indeterminate:backdrop:selected, iconview 
treeview.check:indeterminate:backdrop:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-mixed-backdrop.png"), 
url("assets/selected-checkbox-mixed-backdrop 2 png")); }
-
-treeview.check:indeterminate:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), 
url("assets/checkbox-mixed-insensitive 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:indeterminate:disabled button.flat, treeview.check:indeterminate:disabled notebook > header 
tabs > arrow, treeview.check:indeterminate:disabled button.sidebar-button, 
treeview.check:indeterminate:disabled headerbar button.titlebutton, headerbar 
treeview.check:indeterminate:disabled button.titlebutton,
-  treeview.check:indeterminate:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:indeterminate:disabled:selected, iconview 
treeview.check:indeterminate:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-mixed-insensitive.png"), 
url("assets/selected-checkbox-mixed-insensitive 2 png")); }
-
-treeview.check:indeterminate:disabled:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-backdrop-insensitive.png"), 
url("assets/checkbox-mixed-backdrop-insensitive 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:indeterminate:disabled:backdrop button.flat, treeview.check:indeterminate:disabled:backdrop 
notebook > header > tabs > arrow, treeview.check:indeterminate:disabled:backdrop button.sidebar-button, 
treeview.check:indeterminate:disabled:backdrop headerbar button.titlebutton, headerbar 
treeview.check:indeterminate:disabled:backdrop button.titlebutton,
-  treeview.check:indeterminate:disabled:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.check:indeterminate:disabled:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:indeterminate:disabled:backdrop:selected, iconview 
treeview.check:indeterminate:disabled:backdrop:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-mixed-backdrop-insensitive.png"), 
url("assets/selected-checkbox-mixed-backdrop-insensitive 2 png")); }
-
-treeview.check:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:checked button.flat, treeview.check:checked notebook > header > tabs > arrow, 
treeview.check:checked button.sidebar-button, treeview.check:checked headerbar button.titlebutton, headerbar 
treeview.check:checked button.titlebutton,
-  treeview.check:checked .titlebar button.titlebutton,
-  .titlebar treeview.check:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:checked:selected, iconview treeview.check:checked:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-checked.png"), 
url("assets/selected-checkbox-checked 2 png")); }
-
-treeview.check:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), 
url("assets/checkbox-checked-insensitive 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:checked:disabled button.flat, treeview.check:checked:disabled notebook > header > tabs > 
arrow, treeview.check:checked:disabled button.sidebar-button, treeview.check:checked:disabled headerbar 
button.titlebutton, headerbar treeview.check:checked:disabled button.titlebutton,
-  treeview.check:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:checked:disabled:selected, iconview treeview.check:checked:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-checked-insensitive.png"), 
url("assets/selected-checkbox-checked-insensitive 2 png")); }
-
-treeview.check:checked:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-hover.png"), url("assets/checkbox-checked-hover 
2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:checked:hover button.flat, treeview.check:checked:hover notebook > header > tabs > arrow, 
treeview.check:checked:hover button.sidebar-button, treeview.check:checked:hover headerbar 
button.titlebutton, headerbar treeview.check:checked:hover button.titlebutton,
-  treeview.check:checked:hover .titlebar button.titlebutton,
-  .titlebar treeview.check:checked:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:checked:hover:selected, iconview treeview.check:checked:hover:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-checked-hover.png"), 
url("assets/selected-checkbox-checked-hover 2 png")); }
-
-treeview.check:checked:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-active.png"), 
url("assets/checkbox-checked-active 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.check:checked:active button.flat, treeview.check:checked:active notebook > header > tabs > arrow, 
treeview.check:checked:active button.sidebar-button, treeview.check:checked:active headerbar 
button.titlebutton, headerbar treeview.check:checked:active button.titlebutton,
-  treeview.check:checked:active .titlebar button.titlebutton,
-  .titlebar treeview.check:checked:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:checked:active:selected, iconview treeview.check:checked:active:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-checked-active.png"), 
url("assets/selected-checkbox-checked-active 2 png")); }
-
-treeview.check:backdrop:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-backdrop.png"), 
url("assets/checkbox-checked-backdrop 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop:checked button.flat, treeview.check:backdrop:checked notebook > header > tabs > 
arrow, treeview.check:backdrop:checked button.sidebar-button, treeview.check:backdrop:checked headerbar 
button.titlebutton, headerbar treeview.check:backdrop:checked button.titlebutton,
-  treeview.check:backdrop:checked .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:backdrop:checked:selected, iconview treeview.check:backdrop:checked:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-checked-backdrop.png"), 
url("assets/selected-checkbox-checked-backdrop 2 png")); }
-
-treeview.check:backdrop:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-backdrop-insensitive.png"), 
url("assets/checkbox-checked-backdrop-insensitive 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.check:backdrop:checked:disabled button.flat, treeview.check:backdrop:checked:disabled notebook > 
header > tabs > arrow, treeview.check:backdrop:checked:disabled button.sidebar-button, 
treeview.check:backdrop:checked:disabled headerbar button.titlebutton, headerbar 
treeview.check:backdrop:checked:disabled button.titlebutton,
-  treeview.check:backdrop:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.check:backdrop:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.check:backdrop:checked:disabled:selected, iconview 
treeview.check:backdrop:checked:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-checkbox-checked-backdrop-insensitive.png"), 
url("assets/selected-checkbox-checked-backdrop-insensitive 2 png")); }
-
-treeview.radio {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio button.flat, treeview.radio notebook > header > tabs > arrow, treeview.radio 
button.sidebar-button, treeview.radio headerbar button.titlebutton, headerbar treeview.radio 
button.titlebutton,
-  treeview.radio .titlebar button.titlebutton,
-  .titlebar treeview.radio button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:selected, iconview treeview.radio:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-unchecked.png"), 
url("assets/selected-radio-unchecked 2 png")); }
-
-treeview.radio:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-hover.png"), url("assets/radio-unchecked-hover 2 
png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:hover button.flat, treeview.radio:hover notebook > header > tabs > arrow, 
treeview.radio:hover button.sidebar-button, treeview.radio:hover headerbar button.titlebutton, headerbar 
treeview.radio:hover button.titlebutton,
-  treeview.radio:hover .titlebar button.titlebutton,
-  .titlebar treeview.radio:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:hover:selected, iconview treeview.radio:hover:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-unchecked-hover.png"), 
url("assets/selected-radio-unchecked-hover 2 png")); }
-
-treeview.radio:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-active.png"), url("assets/radio-unchecked-active 
2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:active button.flat, treeview.radio:active notebook > header > tabs > arrow, 
treeview.radio:active button.sidebar-button, treeview.radio:active headerbar button.titlebutton, headerbar 
treeview.radio:active button.titlebutton,
-  treeview.radio:active .titlebar button.titlebutton,
-  .titlebar treeview.radio:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:active:selected, iconview treeview.radio:active:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-unchecked-active.png"), 
url("assets/selected-radio-unchecked-active 2 png")); }
-
-treeview.radio:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), 
url("assets/radio-unchecked-insensitive 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:disabled button.flat, treeview.radio:disabled notebook > header > tabs > arrow, 
treeview.radio:disabled button.sidebar-button, treeview.radio:disabled headerbar button.titlebutton, 
headerbar treeview.radio:disabled button.titlebutton,
-  treeview.radio:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:disabled:selected, iconview treeview.radio:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-unchecked-insensitive.png"), 
url("assets/selected-radio-unchecked-insensitive 2 png")); }
-
-treeview.radio:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-backdrop.png"), 
url("assets/radio-unchecked-backdrop 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop button.flat, treeview.radio:backdrop notebook > header > tabs > arrow, 
treeview.radio:backdrop button.sidebar-button, treeview.radio:backdrop headerbar button.titlebutton, 
headerbar treeview.radio:backdrop button.titlebutton,
-  treeview.radio:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:backdrop:selected, iconview treeview.radio:backdrop:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-unchecked-backdrop.png"), 
url("assets/selected-radio-unchecked-backdrop 2 png")); }
-
-treeview.radio:backdrop:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-backdrop-insensitive.png"), 
url("assets/radio-unchecked-backdrop-insensitive 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop:disabled button.flat, treeview.radio:backdrop:disabled notebook > header > tabs > 
arrow, treeview.radio:backdrop:disabled button.sidebar-button, treeview.radio:backdrop:disabled headerbar 
button.titlebutton, headerbar treeview.radio:backdrop:disabled button.titlebutton,
-  treeview.radio:backdrop:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:backdrop:disabled:selected, iconview treeview.radio:backdrop:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-unchecked-backdrop-insensitive.png"), 
url("assets/selected-radio-unchecked-backdrop-insensitive 2 png")); }
-
-treeview.radio:indeterminate {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:indeterminate button.flat, treeview.radio:indeterminate notebook > header > tabs > arrow, 
treeview.radio:indeterminate button.sidebar-button, treeview.radio:indeterminate headerbar 
button.titlebutton, headerbar treeview.radio:indeterminate button.titlebutton,
-  treeview.radio:indeterminate .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:indeterminate:selected, iconview treeview.radio:indeterminate:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-mixed.png"), url("assets/selected-radio-mixed 2 
png")); }
-
-treeview.radio:indeterminate:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-hover.png"), url("assets/radio-mixed-hover 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:indeterminate:hover button.flat, treeview.radio:indeterminate:hover notebook > header > 
tabs > arrow, treeview.radio:indeterminate:hover button.sidebar-button, treeview.radio:indeterminate:hover 
headerbar button.titlebutton, headerbar treeview.radio:indeterminate:hover button.titlebutton,
-  treeview.radio:indeterminate:hover .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:indeterminate:hover:selected, iconview treeview.radio:indeterminate:hover:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-mixed-hover.png"), 
url("assets/selected-radio-mixed-hover 2 png")); }
-
-treeview.radio:indeterminate:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-active.png"), url("assets/radio-mixed-active 2 
png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:indeterminate:selected button.flat, treeview.radio:indeterminate:selected notebook > header 
tabs > arrow, treeview.radio:indeterminate:selected button.sidebar-button, 
treeview.radio:indeterminate:selected headerbar button.titlebutton, headerbar 
treeview.radio:indeterminate:selected button.titlebutton,
-  treeview.radio:indeterminate:selected .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:selected button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:indeterminate:selected:selected, iconview 
treeview.radio:indeterminate:selected:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-mixed-active.png"), 
url("assets/selected-radio-mixed-active 2 png")); }
-
-treeview.radio:indeterminate:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-backdrop.png"), url("assets/radio-mixed-backdrop 2 
png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:indeterminate:backdrop button.flat, treeview.radio:indeterminate:backdrop notebook > header 
tabs > arrow, treeview.radio:indeterminate:backdrop button.sidebar-button, 
treeview.radio:indeterminate:backdrop headerbar button.titlebutton, headerbar 
treeview.radio:indeterminate:backdrop button.titlebutton,
-  treeview.radio:indeterminate:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:indeterminate:backdrop:selected, iconview 
treeview.radio:indeterminate:backdrop:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-mixed-backdrop.png"), 
url("assets/selected-radio-mixed-backdrop 2 png")); }
-
-treeview.radio:indeterminate:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), 
url("assets/radio-mixed-insensitive 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:indeterminate:disabled button.flat, treeview.radio:indeterminate:disabled notebook > header 
tabs > arrow, treeview.radio:indeterminate:disabled button.sidebar-button, 
treeview.radio:indeterminate:disabled headerbar button.titlebutton, headerbar 
treeview.radio:indeterminate:disabled button.titlebutton,
-  treeview.radio:indeterminate:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:indeterminate:disabled:selected, iconview 
treeview.radio:indeterminate:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-mixed-insensitive.png"), 
url("assets/selected-radio-mixed-insensitive 2 png")); }
-
-treeview.radio:indeterminate:disabled:backdrop {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-backdrop-insensitive.png"), 
url("assets/radio-mixed-backdrop-insensitive 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:indeterminate:disabled:backdrop button.flat, treeview.radio:indeterminate:disabled:backdrop 
notebook > header > tabs > arrow, treeview.radio:indeterminate:disabled:backdrop button.sidebar-button, 
treeview.radio:indeterminate:disabled:backdrop headerbar button.titlebutton, headerbar 
treeview.radio:indeterminate:disabled:backdrop button.titlebutton,
-  treeview.radio:indeterminate:disabled:backdrop .titlebar button.titlebutton,
-  .titlebar treeview.radio:indeterminate:disabled:backdrop button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:indeterminate:disabled:backdrop:selected, iconview 
treeview.radio:indeterminate:disabled:backdrop:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-mixed-backdrop-insensitive.png"), 
url("assets/selected-radio-mixed-backdrop-insensitive 2 png")); }
-
-treeview.radio:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:checked button.flat, treeview.radio:checked notebook > header > tabs > arrow, 
treeview.radio:checked button.sidebar-button, treeview.radio:checked headerbar button.titlebutton, headerbar 
treeview.radio:checked button.titlebutton,
-  treeview.radio:checked .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:checked:selected, iconview treeview.radio:checked:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-checked.png"), url("assets/selected-radio-checked 
2 png")); }
-
-treeview.radio:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), 
url("assets/radio-checked-insensitive 2 png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:checked:disabled button.flat, treeview.radio:checked:disabled notebook > header > tabs > 
arrow, treeview.radio:checked:disabled button.sidebar-button, treeview.radio:checked:disabled headerbar 
button.titlebutton, headerbar treeview.radio:checked:disabled button.titlebutton,
-  treeview.radio:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:checked:disabled:selected, iconview treeview.radio:checked:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-checked-insensitive.png"), 
url("assets/selected-radio-checked-insensitive 2 png")); }
-
-treeview.radio:checked:hover {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-hover.png"), url("assets/radio-checked-hover 2 
png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:checked:hover button.flat, treeview.radio:checked:hover notebook > header > tabs > arrow, 
treeview.radio:checked:hover button.sidebar-button, treeview.radio:checked:hover headerbar 
button.titlebutton, headerbar treeview.radio:checked:hover button.titlebutton,
-  treeview.radio:checked:hover .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked:hover button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:checked:hover:selected, iconview treeview.radio:checked:hover:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-checked-hover.png"), 
url("assets/selected-radio-checked-hover 2 png")); }
-
-treeview.radio:checked:active {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-active.png"), url("assets/radio-checked-active 2 
png"));
-  -gtk-icon-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
-  treeview.radio:checked:active button.flat, treeview.radio:checked:active notebook > header > tabs > arrow, 
treeview.radio:checked:active button.sidebar-button, treeview.radio:checked:active headerbar 
button.titlebutton, headerbar treeview.radio:checked:active button.titlebutton,
-  treeview.radio:checked:active .titlebar button.titlebutton,
-  .titlebar treeview.radio:checked:active button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:checked:active:selected, iconview treeview.radio:checked:active:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-checked-active.png"), 
url("assets/selected-radio-checked-active 2 png")); }
-
-treeview.radio:backdrop:checked {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-backdrop.png"), url("assets/radio-checked-backdrop 
2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop:checked button.flat, treeview.radio:backdrop:checked notebook > header > tabs > 
arrow, treeview.radio:backdrop:checked button.sidebar-button, treeview.radio:backdrop:checked headerbar 
button.titlebutton, headerbar treeview.radio:backdrop:checked button.titlebutton,
-  treeview.radio:backdrop:checked .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop:checked button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:backdrop:checked:selected, iconview treeview.radio:backdrop:checked:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-checked-backdrop.png"), 
url("assets/selected-radio-checked-backdrop 2 png")); }
-
-treeview.radio:backdrop:checked:disabled {
-  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-backdrop-insensitive.png"), 
url("assets/radio-checked-backdrop-insensitive 2 png"));
-  -gtk-icon-shadow: none; }
-  treeview.radio:backdrop:checked:disabled button.flat, treeview.radio:backdrop:checked:disabled notebook > 
header > tabs > arrow, treeview.radio:backdrop:checked:disabled button.sidebar-button, 
treeview.radio:backdrop:checked:disabled headerbar button.titlebutton, headerbar 
treeview.radio:backdrop:checked:disabled button.titlebutton,
-  treeview.radio:backdrop:checked:disabled .titlebar button.titlebutton,
-  .titlebar treeview.radio:backdrop:checked:disabled button.titlebutton {
-    -gtk-icon-shadow: none; }
-
-.view treeview.radio:backdrop:checked:disabled:selected, iconview 
treeview.radio:backdrop:checked:disabled:selected {
-  -gtk-icon-source: -gtk-scaled(url("assets/selected-radio-checked-backdrop-insensitive.png"), 
url("assets/selected-radio-checked-backdrop-insensitive 2 png")); }
-
-.view.check, iconview.check, .view.radio, iconview.radio,
-row .check, row .radio {
-  -gtk-icon-shadow: none; }
-  .view.check:selected, iconview.check:selected, .view.check:hover, iconview.check:hover, 
.view.radio:selected, iconview.radio:selected, .view.radio:hover, iconview.radio:hover,
-  row .check:selected,
-  row .check:hover, row .radio:selected, row .radio:hover {
-    -gtk-icon-shadow: none; }
-
 .view.content-view.check:not(list), iconview.content-view.check:not(list) {
   -gtk-icon-shadow: none;
   -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode 
2 png"));
@@ -3045,17 +2641,23 @@ radio {
     border-color: currentColor;
     animation: none; }
 
+treeview.view check:selected:focus:disabled, treeview.view check:selected:focus, treeview.view 
check:selected:backdrop:disabled, treeview.view check:selected:backdrop, treeview.view 
check:selected:disabled, treeview.view check:selected,
 check {
   border-radius: 3px; }
+  treeview.view check:checked:selected,
   check:checked {
     -gtk-icon-source: image(-gtk-recolor(url("assets/check-symbolic.svg")), 
-gtk-recolor(url("assets/check-symbolic.symbolic.png"))); }
+  treeview.view check:indeterminate:selected,
   check:indeterminate {
     -gtk-icon-source: image(-gtk-recolor(url("assets/dash-symbolic.svg")), 
-gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); }
 
+treeview.view radio:selected:focus:disabled, treeview.view radio:selected:focus, treeview.view 
radio:selected:backdrop:disabled, treeview.view radio:selected:backdrop, treeview.view 
radio:selected:disabled, treeview.view radio:selected,
 radio {
   border-radius: 100%; }
+  treeview.view radio:checked:selected,
   radio:checked {
     -gtk-icon-source: image(-gtk-recolor(url("assets/bullet-symbolic.svg")), 
-gtk-recolor(url("assets/bullet-symbolic.symbolic.png"))); }
+  treeview.view radio:indeterminate:selected,
   radio:indeterminate {
     -gtk-icon-source: image(-gtk-recolor(url("assets/dash-symbolic.svg")), 
-gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); }
 
@@ -3089,6 +2691,49 @@ menu menuitem check:indeterminate:checked:active,
 menu menuitem radio:indeterminate:checked {
   animation: none; }
 
+treeview.view check:selected:focus:disabled, treeview.view check:selected:focus, treeview.view 
check:selected:backdrop:disabled, treeview.view check:selected:backdrop, treeview.view 
check:selected:disabled, treeview.view check:selected {
+  border-color: #184472; }
+
+treeview.view radio:selected:focus:disabled, treeview.view radio:selected:focus, treeview.view 
radio:selected:backdrop:disabled, treeview.view radio:selected:backdrop, treeview.view 
radio:selected:disabled, treeview.view radio:selected {
+  border-color: #184472; }
+
+treeview.view check:dir(rtl):selected:focus, treeview.view check:dir(rtl):selected:hover, treeview.view 
check:dir(rtl):selected, treeview.view check:dir(rtl):focus, treeview.view check:dir(rtl):hover, 
treeview.view check:dir(rtl), treeview.view check:dir(ltr):selected:focus, treeview.view 
check:dir(ltr):selected:hover, treeview.view check:dir(ltr):selected, treeview.view check:dir(ltr):focus, 
treeview.view check:dir(ltr):hover, treeview.view check:dir(ltr),
+treeview.view radio:dir(rtl):selected:focus,
+treeview.view radio:dir(rtl):selected:hover,
+treeview.view radio:dir(rtl):selected,
+treeview.view radio:dir(rtl):focus,
+treeview.view radio:dir(rtl):hover,
+treeview.view radio:dir(rtl),
+treeview.view radio:dir(ltr):selected:focus,
+treeview.view radio:dir(ltr):selected:hover,
+treeview.view radio:dir(ltr):selected,
+treeview.view radio:dir(ltr):focus,
+treeview.view radio:dir(ltr):hover,
+treeview.view radio:dir(ltr) {
+  color: #2e3436; }
+treeview.view check:dir(rtl):selected:backdrop:hover, treeview.view check:dir(rtl):selected:backdrop, 
treeview.view check:dir(rtl):backdrop:hover, treeview.view check:dir(rtl):backdrop, treeview.view 
check:dir(ltr):selected:backdrop:hover, treeview.view check:dir(ltr):selected:backdrop, treeview.view 
check:dir(ltr):backdrop:hover, treeview.view check:dir(ltr):backdrop,
+treeview.view radio:dir(rtl):selected:backdrop:hover,
+treeview.view radio:dir(rtl):selected:backdrop,
+treeview.view radio:dir(rtl):backdrop:hover,
+treeview.view radio:dir(rtl):backdrop,
+treeview.view radio:dir(ltr):selected:backdrop:hover,
+treeview.view radio:dir(ltr):selected:backdrop,
+treeview.view radio:dir(ltr):backdrop:hover,
+treeview.view radio:dir(ltr):backdrop {
+  color: #8b8e8f; }
+treeview.view check:dir(rtl):selected:backdrop:disabled, treeview.view check:dir(rtl):backdrop:disabled, 
treeview.view check:dir(ltr):selected:backdrop:disabled, treeview.view check:dir(ltr):backdrop:disabled,
+treeview.view radio:dir(rtl):selected:backdrop:disabled,
+treeview.view radio:dir(rtl):backdrop:disabled,
+treeview.view radio:dir(ltr):selected:backdrop:disabled,
+treeview.view radio:dir(ltr):backdrop:disabled {
+  color: #c3c3c0; }
+treeview.view check:dir(rtl):selected:disabled, treeview.view check:dir(rtl):disabled, treeview.view 
check:dir(ltr):selected:disabled, treeview.view check:dir(ltr):disabled,
+treeview.view radio:dir(rtl):selected:disabled,
+treeview.view radio:dir(rtl):disabled,
+treeview.view radio:dir(ltr):selected:disabled,
+treeview.view radio:dir(ltr):disabled {
+  color: #8b8e8f; }
+
 /************
  * GtkScale *
  ************/


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]