
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_25611170904c2f29781df254.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_21e0e92dbe4d2998df1796d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_704ec26173e9d4fe8c0e47c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3657ffe771803c639085e289.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6201c4f6ab1459c3fc337127.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_373b6585d9ae3917fa873b67.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_76cb3c43047dcb7c66c686d3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.596000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9136c1dfd27c989b65728547.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_28d3a7cd9f084222fdbdec24.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b7e605d5aa0a8c6740968d6b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fd8b3ef9b9e2cb12f65a0c06.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_80908bba6a75aaf68f587e2e.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.262000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8bf0bccec1f1528df849351c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.569000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a62e6625f7b078e3ea6a1a10.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9ee3e0a8e1e1f7fe83321db0.woff2')format("woff");}.fff{font-family:fff;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cc70176a1e14b3d699008d2b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c6b9eddb7aca604c00481432.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a4c973c19ca8a4d5f57ddf85.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_c4580997df295c30a2e14f97.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_27cb5545aaab26f3251359be.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_09469bfd63a8611edc1ad327.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_09469bfd63a8611edc1ad327.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_09469bfd63a8611edc1ad327.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_27cb5545aaab26f3251359be.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_09469bfd63a8611edc1ad327.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249713,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1d{vertical-align:-42.000000px;}
.v2{vertical-align:-26.028000px;}
.v10{vertical-align:-23.754000px;}
.v17{vertical-align:-18.930000px;}
.v8{vertical-align:-9.816000px;}
.v23{vertical-align:-7.827661px;}
.v13{vertical-align:-6.642000px;}
.v20{vertical-align:-5.230743px;}
.v1f{vertical-align:-4.129379px;}
.v22{vertical-align:-2.634387px;}
.v21{vertical-align:-1.532905px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:6.618000px;}
.v7{vertical-align:9.816000px;}
.v11{vertical-align:14.112000px;}
.v4{vertical-align:16.182000px;}
.vc{vertical-align:19.830000px;}
.v1c{vertical-align:22.572000px;}
.vd{vertical-align:23.754000px;}
.v12{vertical-align:25.770000px;}
.v3{vertical-align:27.024000px;}
.v1{vertical-align:31.242000px;}
.v16{vertical-align:39.936000px;}
.vf{vertical-align:43.584000px;}
.v15{vertical-align:44.898000px;}
.v5{vertical-align:48.024000px;}
.vb{vertical-align:53.736000px;}
.ve{vertical-align:55.398000px;}
.v18{vertical-align:56.748000px;}
.v19{vertical-align:67.770000px;}
.v14{vertical-align:71.310000px;}
.va{vertical-align:72.666000px;}
.v1a{vertical-align:84.468000px;}
.v1e{vertical-align:90.864000px;}
.v1b{vertical-align:112.668000px;}
.v9{vertical-align:123.960000px;}
.ls4{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000499px;}
.ls74{letter-spacing:0.000982px;}
.lsc0{letter-spacing:0.001992px;}
.ls7d{letter-spacing:0.002012px;}
.ls8d{letter-spacing:0.002108px;}
.lsb7{letter-spacing:0.002114px;}
.ls6e{letter-spacing:0.002682px;}
.ls92{letter-spacing:0.002696px;}
.ls65{letter-spacing:0.002700px;}
.ls49{letter-spacing:0.002706px;}
.ls7e{letter-spacing:0.004344px;}
.ls2e{letter-spacing:0.004478px;}
.ls64{letter-spacing:0.004808px;}
.ls96{letter-spacing:0.005402px;}
.ls71{letter-spacing:0.005976px;}
.lsc{letter-spacing:0.006838px;}
.lsbb{letter-spacing:0.007945px;}
.ls15{letter-spacing:0.009572px;}
.ls48{letter-spacing:0.009740px;}
.lsbd{letter-spacing:0.010651px;}
.lsac{letter-spacing:0.010835px;}
.ls67{letter-spacing:0.011287px;}
.ls78{letter-spacing:0.012838px;}
.lsb8{letter-spacing:0.012947px;}
.lsad{letter-spacing:0.013351px;}
.lsaa{letter-spacing:0.013945px;}
.ls4b{letter-spacing:0.015193px;}
.ls45{letter-spacing:0.015740px;}
.lsae{letter-spacing:0.016835px;}
.ls12{letter-spacing:0.017204px;}
.ls43{letter-spacing:0.024964px;}
.ls75{letter-spacing:0.028024px;}
.ls6f{letter-spacing:0.028682px;}
.ls46{letter-spacing:0.030964px;}
.ls61{letter-spacing:0.191282px;}
.ls81{letter-spacing:0.196364px;}
.ls23{letter-spacing:0.258528px;}
.ls62{letter-spacing:1.291156px;}
.ls5a{letter-spacing:1.803170px;}
.ls27{letter-spacing:1.816843px;}
.ls7{letter-spacing:1.820137px;}
.ls32{letter-spacing:1.822249px;}
.ls39{letter-spacing:1.822843px;}
.lsa{letter-spacing:1.823194px;}
.ls58{letter-spacing:1.828161px;}
.ls3c{letter-spacing:1.829146px;}
.lsb0{letter-spacing:2.094547px;}
.ls6c{letter-spacing:2.356366px;}
.ls3d{letter-spacing:2.438851px;}
.ls93{letter-spacing:2.773595px;}
.ls69{letter-spacing:2.980031px;}
.ls13{letter-spacing:2.984915px;}
.ls5f{letter-spacing:2.986031px;}
.ls4e{letter-spacing:2.986059px;}
.ls0{letter-spacing:2.986200px;}
.ls41{letter-spacing:2.988103px;}
.lsba{letter-spacing:2.988499px;}
.ls1f{letter-spacing:2.989194px;}
.ls24{letter-spacing:2.989223px;}
.ls2b{letter-spacing:2.990450px;}
.ls26{letter-spacing:2.990479px;}
.ls1{letter-spacing:2.990915px;}
.ls42{letter-spacing:2.992059px;}
.ls28{letter-spacing:2.992200px;}
.ls36{letter-spacing:2.992345px;}
.ls19{letter-spacing:2.995223px;}
.ls2d{letter-spacing:2.995256px;}
.ls40{letter-spacing:3.002758px;}
.ls63{letter-spacing:4.265644px;}
.ls97{letter-spacing:4.394022px;}
.ls9a{letter-spacing:4.400022px;}
.ls98{letter-spacing:5.038059px;}
.ls8c{letter-spacing:5.044059px;}
.ls87{letter-spacing:5.068984px;}
.ls8a{letter-spacing:5.116804px;}
.ls8b{letter-spacing:5.315347px;}
.ls5e{letter-spacing:5.345269px;}
.ls38{letter-spacing:5.443358px;}
.ls3a{letter-spacing:5.447637px;}
.ls5b{letter-spacing:5.976532px;}
.ls18{letter-spacing:6.293424px;}
.ls35{letter-spacing:6.295536px;}
.ls3f{letter-spacing:6.299424px;}
.ls25{letter-spacing:6.307973px;}
.ls7b{letter-spacing:6.309021px;}
.ls84{letter-spacing:6.314973px;}
.ls9b{letter-spacing:6.321700px;}
.ls8e{letter-spacing:6.327102px;}
.lsb3{letter-spacing:7.003642px;}
.lsb5{letter-spacing:7.010012px;}
.ls2c{letter-spacing:7.043428px;}
.ls1a{letter-spacing:7.069097px;}
.ls89{letter-spacing:7.140493px;}
.ls56{letter-spacing:7.185580px;}
.lsa3{letter-spacing:7.186676px;}
.lsb4{letter-spacing:7.189761px;}
.ls3e{letter-spacing:7.192846px;}
.ls82{letter-spacing:7.194785px;}
.ls99{letter-spacing:7.200785px;}
.lsb2{letter-spacing:7.265461px;}
.ls20{letter-spacing:7.396370px;}
.ls1e{letter-spacing:7.461824px;}
.lsa0{letter-spacing:8.077860px;}
.lsc1{letter-spacing:8.836371px;}
.ls90{letter-spacing:9.086147px;}
.lsd{letter-spacing:9.098189px;}
.lsaf{letter-spacing:9.277761px;}
.lsb1{letter-spacing:9.280676px;}
.ls2f{letter-spacing:10.163220px;}
.lsa1{letter-spacing:10.865464px;}
.ls72{letter-spacing:10.930918px;}
.ls2a{letter-spacing:11.619962px;}
.ls1c{letter-spacing:11.625962px;}
.lsb6{letter-spacing:12.449467px;}
.ls9{letter-spacing:14.530921px;}
.ls83{letter-spacing:14.546012px;}
.ls80{letter-spacing:14.596376px;}
.ls2{letter-spacing:16.494559px;}
.ls66{letter-spacing:16.625468px;}
.ls77{letter-spacing:17.423236px;}
.lsb{letter-spacing:17.429236px;}
.ls44{letter-spacing:17.528915px;}
.ls4a{letter-spacing:17.530138px;}
.ls51{letter-spacing:17.534915px;}
.ls47{letter-spacing:17.539223px;}
.lsa4{letter-spacing:17.803651px;}
.ls1d{letter-spacing:17.804915px;}
.ls7f{letter-spacing:18.000015px;}
.ls1b{letter-spacing:18.081311px;}
.ls29{letter-spacing:18.088567px;}
.lse{letter-spacing:18.130924px;}
.ls6d{letter-spacing:18.158972px;}
.lsf{letter-spacing:18.196379px;}
.ls5d{letter-spacing:18.261833px;}
.ls86{letter-spacing:18.327288px;}
.lsb9{letter-spacing:18.392743px;}
.lsa8{letter-spacing:18.458197px;}
.ls8{letter-spacing:19.091236px;}
.lsab{letter-spacing:19.985467px;}
.lsbc{letter-spacing:19.991637px;}
.lsbf{letter-spacing:20.356381px;}
.lsbe{letter-spacing:20.683654px;}
.ls50{letter-spacing:21.164915px;}
.ls54{letter-spacing:21.172059px;}
.ls52{letter-spacing:21.600018px;}
.lsa6{letter-spacing:21.665473px;}
.ls9d{letter-spacing:21.730927px;}
.ls6{letter-spacing:21.796382px;}
.ls5{letter-spacing:21.861836px;}
.ls7c{letter-spacing:21.899236px;}
.ls8f{letter-spacing:21.905236px;}
.ls95{letter-spacing:21.927291px;}
.ls17{letter-spacing:22.123655px;}
.ls33{letter-spacing:22.843655px;}
.ls3{letter-spacing:23.105474px;}
.lsa9{letter-spacing:24.218202px;}
.ls9f{letter-spacing:24.480020px;}
.ls4c{letter-spacing:24.806915px;}
.ls70{letter-spacing:25.985476px;}
.ls34{letter-spacing:26.509113px;}
.ls73{letter-spacing:26.560677px;}
.ls6b{letter-spacing:26.566677px;}
.lsa5{letter-spacing:27.257467px;}
.ls5c{letter-spacing:27.798532px;}
.ls53{letter-spacing:28.008532px;}
.ls4d{letter-spacing:28.865479px;}
.ls31{letter-spacing:32.727300px;}
.ls55{letter-spacing:36.077412px;}
.ls94{letter-spacing:42.139860px;}
.ls59{letter-spacing:46.188532px;}
.lsa7{letter-spacing:49.074494px;}
.ls4f{letter-spacing:54.523682px;}
.lsa2{letter-spacing:72.764012px;}
.ls3b{letter-spacing:85.548930px;}
.ls7a{letter-spacing:89.579236px;}
.ls9c{letter-spacing:114.938278px;}
.ls91{letter-spacing:155.912857px;}
.ls85{letter-spacing:177.512875px;}
.ls10{letter-spacing:413.083981px;}
.ls68{letter-spacing:524.660915px;}
.ls60{letter-spacing:536.138629px;}
.ls21{letter-spacing:567.229564px;}
.ls79{letter-spacing:660.895096px;}
.ls30{letter-spacing:676.342382px;}
.ls6a{letter-spacing:723.993331px;}
.ls22{letter-spacing:726.423065px;}
.ls76{letter-spacing:863.084356px;}
.ls88{letter-spacing:948.240790px;}
.ls9e{letter-spacing:951.055338px;}
.ls14{letter-spacing:1003.353563px;}
.ls16{letter-spacing:1006.102657px;}
.ls11{letter-spacing:1007.215385px;}
.ls57{letter-spacing:1077.775444px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws48{word-spacing:-48.418425px;}
.ws30{word-spacing:-42.637126px;}
.ws40{word-spacing:-36.379667px;}
.ws93{word-spacing:-33.453846px;}
.ws27{word-spacing:-33.211407px;}
.ws4{word-spacing:-32.727300px;}
.ws54{word-spacing:-32.622573px;}
.ws1d{word-spacing:-31.771663px;}
.ws25{word-spacing:-31.706208px;}
.ws2f{word-spacing:-28.106205px;}
.ws34{word-spacing:-24.506202px;}
.ws2c{word-spacing:-24.440748px;}
.ws0{word-spacing:-23.245312px;}
.ws28{word-spacing:-18.183288px;}
.ws49{word-spacing:-16.560014px;}
.ws52{word-spacing:-16.429105px;}
.ws1a{word-spacing:-16.232741px;}
.ws8a{word-spacing:-16.167286px;}
.ws3d{word-spacing:-16.139475px;}
.ws99{word-spacing:-15.905468px;}
.ws45{word-spacing:-15.709104px;}
.ws47{word-spacing:-15.709089px;}
.ws16{word-spacing:-15.185467px;}
.ws98{word-spacing:-15.054558px;}
.ws11{word-spacing:-14.989103px;}
.ws8b{word-spacing:-14.799285px;}
.ws9a{word-spacing:-14.537467px;}
.ws4a{word-spacing:-14.400012px;}
.ws41{word-spacing:-14.334557px;}
.ws3f{word-spacing:-14.111859px;}
.ws94{word-spacing:-14.072739px;}
.ws7{word-spacing:-14.047266px;}
.ws17{word-spacing:-14.007284px;}
.ws18{word-spacing:-13.941830px;}
.ws87{word-spacing:-13.876375px;}
.ws82{word-spacing:-13.810921px;}
.ws8{word-spacing:-13.688612px;}
.ws1b{word-spacing:-13.483648px;}
.ws71{word-spacing:-13.332276px;}
.ws7e{word-spacing:-12.829102px;}
.ws83{word-spacing:-12.639283px;}
.ws5{word-spacing:-12.567283px;}
.ws4b{word-spacing:-12.436374px;}
.ws2b{word-spacing:-12.305465px;}
.ws1f{word-spacing:-12.240010px;}
.ws36{word-spacing:-12.038125px;}
.ws8d{word-spacing:-11.389100px;}
.ws23{word-spacing:-11.323646px;}
.ws81{word-spacing:-11.258191px;}
.ws84{word-spacing:-11.192737px;}
.ws3b{word-spacing:-11.127282px;}
.ws61{word-spacing:-11.061827px;}
.ws5d{word-spacing:-10.996373px;}
.ws3{word-spacing:-10.930918px;}
.ws12{word-spacing:-10.865464px;}
.ws4c{word-spacing:-10.800009px;}
.ws3e{word-spacing:-10.734554px;}
.ws24{word-spacing:-10.669100px;}
.ws19{word-spacing:-10.603645px;}
.wsc{word-spacing:-10.580281px;}
.ws8e{word-spacing:-10.544736px;}
.ws1e{word-spacing:-10.538191px;}
.ws80{word-spacing:-10.407281px;}
.ws85{word-spacing:-10.341827px;}
.wsf{word-spacing:-10.341179px;}
.ws97{word-spacing:-10.282918px;}
.wse{word-spacing:-10.281403px;}
.ws10{word-spacing:-10.210918px;}
.ws92{word-spacing:-10.086554px;}
.wsa{word-spacing:-10.042301px;}
.ws57{word-spacing:-10.021099px;}
.ws6{word-spacing:-9.982525px;}
.ws91{word-spacing:-9.955645px;}
.ws9{word-spacing:-9.922750px;}
.ws9c{word-spacing:-9.890190px;}
.wsd{word-spacing:-9.803198px;}
.ws9d{word-spacing:-9.759281px;}
.wsb{word-spacing:-9.683647px;}
.ws7f{word-spacing:-9.621826px;}
.ws88{word-spacing:-9.556372px;}
.ws86{word-spacing:-9.497462px;}
.ws29{word-spacing:-9.294553px;}
.ws22{word-spacing:-9.151644px;}
.ws89{word-spacing:-8.842916px;}
.ws2a{word-spacing:-8.705462px;}
.ws9b{word-spacing:-8.640007px;}
.ws4e{word-spacing:-8.574553px;}
.ws6c{word-spacing:-8.509098px;}
.ws1c{word-spacing:-8.443643px;}
.ws2e{word-spacing:-8.402724px;}
.ws15{word-spacing:-8.378189px;}
.ws55{word-spacing:-8.247280px;}
.ws46{word-spacing:-8.050916px;}
.ws6b{word-spacing:-7.861097px;}
.ws9e{word-spacing:-7.789097px;}
.ws4f{word-spacing:-7.461824px;}
.ws90{word-spacing:-7.402915px;}
.ws8f{word-spacing:-7.134551px;}
.ws33{word-spacing:-6.938511px;}
.ws44{word-spacing:-6.741824px;}
.ws7b{word-spacing:-6.676369px;}
.ws8c{word-spacing:-6.610915px;}
.ws5c{word-spacing:-6.545460px;}
.ws14{word-spacing:-5.236368px;}
.ws63{word-spacing:-4.109083px;}
.ws20{word-spacing:-3.665458px;}
.ws3c{word-spacing:-3.652367px;}
.ws95{word-spacing:-1.963638px;}
.ws7a{word-spacing:-0.837819px;}
.ws5b{word-spacing:-0.772364px;}
.ws3a{word-spacing:-0.183273px;}
.ws26{word-spacing:-0.052364px;}
.ws21{word-spacing:0.000000px;}
.ws2d{word-spacing:0.013091px;}
.ws4d{word-spacing:0.078546px;}
.ws50{word-spacing:0.144000px;}
.ws5e{word-spacing:0.274909px;}
.ws53{word-spacing:0.340364px;}
.ws5f{word-spacing:0.733092px;}
.ws79{word-spacing:1.780365px;}
.ws78{word-spacing:1.845820px;}
.ws6a{word-spacing:4.333095px;}
.ws56{word-spacing:4.791277px;}
.ws43{word-spacing:7.278552px;}
.ws7c{word-spacing:7.409461px;}
.ws38{word-spacing:11.886555px;}
.ws77{word-spacing:14.020375px;}
.ws73{word-spacing:16.769469px;}
.ws51{word-spacing:21.272745px;}
.ws2{word-spacing:23.312640px;}
.ws1{word-spacing:27.975090px;}
.ws32{word-spacing:41.938824px;}
.ws13{word-spacing:48.418425px;}
.ws6d{word-spacing:51.329497px;}
.ws6f{word-spacing:84.038614px;}
.ws60{word-spacing:107.306628px;}
.ws7d{word-spacing:109.490614px;}
.ws69{word-spacing:177.016210px;}
.ws58{word-spacing:180.536878px;}
.ws70{word-spacing:201.214812px;}
.ws68{word-spacing:308.977254px;}
.ws39{word-spacing:412.599617px;}
.ws96{word-spacing:454.264513px;}
.ws31{word-spacing:486.961766px;}
.ws67{word-spacing:515.605369px;}
.ws37{word-spacing:546.323364px;}
.ws42{word-spacing:611.496853px;}
.ws35{word-spacing:644.636174px;}
.ws66{word-spacing:647.564935px;}
.ws65{word-spacing:779.527457px;}
.ws6e{word-spacing:793.977389px;}
.ws76{word-spacing:797.119210px;}
.ws5a{word-spacing:884.042919px;}
.ws74{word-spacing:927.701137px;}
.ws72{word-spacing:986.154570px;}
.ws64{word-spacing:986.155572px;}
.ws59{word-spacing:1000.813925px;}
.ws62{word-spacing:1118.118094px;}
.ws75{word-spacing:1250.083572px;}
._18{margin-left:-18.167714px;}
._1{margin-left:-11.653650px;}
._1e{margin-left:-8.177334px;}
._2{margin-left:-6.946995px;}
._5{margin-left:-5.107274px;}
._0{margin-left:-3.843225px;}
._3{margin-left:-2.324084px;}
._6{margin-left:-1.259048px;}
._9{width:1.673717px;}
._4{width:2.783158px;}
._19{width:5.328302px;}
._1a{width:7.189109px;}
._e{width:8.596147px;}
._29{width:9.617807px;}
._14{width:11.192737px;}
._2a{width:16.803236px;}
._b{width:18.583048px;}
._d{width:20.045443px;}
._15{width:21.796382px;}
._1b{width:22.844548px;}
._10{width:24.438490px;}
._a{width:26.234324px;}
._7{width:28.176868px;}
._8{width:29.618653px;}
._12{width:32.224402px;}
._13{width:33.648157px;}
._f{width:35.378657px;}
._11{width:36.458212px;}
._c{width:37.511647px;}
._20{width:40.123670px;}
._1d{width:42.135892px;}
._28{width:49.922700px;}
._21{width:96.836850px;}
._22{width:117.535140px;}
._17{width:129.115800px;}
._1f{width:140.611933px;}
._23{width:148.418752px;}
._25{width:152.126700px;}
._24{width:157.190112px;}
._27{width:259.400700px;}
._26{width:284.853024px;}
._16{width:338.138464px;}
._2b{width:488.824841px;}
._1c{width:521.552141px;}
.fc2{color:rgb(5,150,105);}
.fc3{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(16,185,129);}
.fs8{font-size:11.824167px;}
.fs7{font-size:14.780873px;}
.fs6{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:15.593462px;}
.yf7{bottom:16.071138px;}
.yd8{bottom:19.510430px;}
.yf6{bottom:20.044466px;}
.yf5{bottom:24.017941px;}
.yf4{bottom:24.559175px;}
.yf3{bottom:27.991306px;}
.yf1{bottom:31.964633px;}
.y131{bottom:33.705852px;}
.y124{bottom:35.207421px;}
.yef{bottom:35.938109px;}
.yee{bottom:36.754720px;}
.yec{bottom:39.911547px;}
.y109{bottom:41.934677px;}
.ye9{bottom:43.884801px;}
.ye8{bottom:45.901509px;}
.ye6{bottom:47.858424px;}
.yd9{bottom:50.904413px;}
.ye4{bottom:51.831678px;}
.ye2{bottom:55.804932px;}
.ye1{bottom:60.903541px;}
.y25{bottom:61.467000px;}
.y10a{bottom:64.359072px;}
.y125{bottom:66.601405px;}
.ye3{bottom:73.296107px;}
.y12b{bottom:75.361165px;}
.yda{bottom:82.298396px;}
.ye5{bottom:85.688303px;}
.y10b{bottom:86.783320px;}
.y12c{bottom:89.819159px;}
.y126{bottom:97.995388px;}
.ye7{bottom:98.080869px;}
.ya4{bottom:99.574500px;}
.y12d{bottom:104.277152px;}
.y24{bottom:106.299000px;}
.y10c{bottom:109.207567px;}
.yeb{bottom:110.473435px;}
.y108{bottom:112.993500px;}
.ya5{bottom:113.526000px;}
.ydb{bottom:113.692380px;}
.ya1{bottom:117.634500px;}
.y12f{bottom:118.734777px;}
.yed{bottom:122.865632px;}
.y127{bottom:129.389371px;}
.y23{bottom:130.951500px;}
.y10d{bottom:131.631962px;}
.ya3{bottom:132.186000px;}
.y130{bottom:133.192770px;}
.y107{bottom:133.318500px;}
.yf0{bottom:135.258198px;}
.y7b{bottom:135.435000px;}
.ya2{bottom:136.668000px;}
.ya6{bottom:136.669500px;}
.y128{bottom:145.086363px;}
.ydc{bottom:145.086511px;}
.yf2{bottom:147.650764px;}
.y106{bottom:153.642000px;}
.y9c{bottom:153.804000px;}
.y10e{bottom:154.056210px;}
.y12e{bottom:155.418263px;}
.y22{bottom:155.604000px;}
.yea{bottom:156.969917px;}
.ya0{bottom:160.639500px;}
.y129{bottom:160.783503px;}
.y9e{bottom:167.755500px;}
.y9f{bottom:167.818500px;}
.y9d{bottom:171.864000px;}
.y105{bottom:173.965500px;}
.ydd{bottom:176.480494px;}
.y10f{bottom:176.480605px;}
.y7a{bottom:180.027000px;}
.y21{bottom:180.258000px;}
.y9b{bottom:186.415500px;}
.y9a{bottom:190.899000px;}
.y4c{bottom:192.727500px;}
.y16b{bottom:193.566000px;}
.y104{bottom:194.289000px;}
.yd4{bottom:200.856000px;}
.y20{bottom:204.910500px;}
.yd2{bottom:206.628000px;}
.yd5{bottom:213.072000px;}
.y77{bottom:214.228500px;}
.y141{bottom:214.612500px;}
.y103{bottom:215.211000px;}
.y16a{bottom:218.218500px;}
.y79{bottom:221.661000px;}
.yd3{bottom:223.572000px;}
.y99{bottom:226.087500px;}
.y4b{bottom:228.379500px;}
.y1f{bottom:229.563000px;}
.y74{bottom:232.885500px;}
.y140{bottom:235.534500px;}
.y78{bottom:243.955500px;}
.y76{bottom:247.437000px;}
.y102{bottom:250.479000px;}
.yd1{bottom:251.221500px;}
.y75{bottom:253.581000px;}
.y1e{bottom:254.215500px;}
.y169{bottom:256.179000px;}
.y98{bottom:263.256000px;}
.y4a{bottom:268.482000px;}
.y13f{bottom:270.802500px;}
.y1d{bottom:278.868000px;}
.y168{bottom:280.831500px;}
.y95{bottom:281.316000px;}
.y73{bottom:288.657000px;}
.y49{bottom:289.069500px;}
.y97{bottom:295.867500px;}
.y96{bottom:300.351000px;}
.y44{bottom:300.682500px;}
.y48{bottom:302.571000px;}
.y1c{bottom:303.520500px;}
.y123{bottom:304.890000px;}
.y167{bottom:305.484000px;}
.y42{bottom:310.041000px;}
.yd0{bottom:315.753000px;}
.y46{bottom:316.503000px;}
.y47{bottom:317.317500px;}
.y101{bottom:320.697000px;}
.y43{bottom:327.582000px;}
.y1b{bottom:328.173000px;}
.y45{bottom:328.719000px;}
.y72{bottom:329.205000px;}
.y71{bottom:333.250500px;}
.y94{bottom:334.630500px;}
.y166{bottom:343.444500px;}
.y122{bottom:349.482000px;}
.y100{bottom:349.833000px;}
.y93{bottom:359.283000px;}
.ycf{bottom:360.345000px;}
.y165{bottom:368.097000px;}
.y1a{bottom:369.027000px;}
.y70{bottom:377.842500px;}
.y92{bottom:383.935500px;}
.y41{bottom:387.118500px;}
.y121{bottom:389.967000px;}
.y120{bottom:390.030000px;}
.y164{bottom:392.749500px;}
.y11f{bottom:394.074000px;}
.yce{bottom:400.830000px;}
.ycd{bottom:400.893000px;}
.y6f{bottom:402.495000px;}
.ycc{bottom:404.937000px;}
.y13e{bottom:413.782500px;}
.yff{bottom:414.364500px;}
.y91{bottom:420.733500px;}
.y90{bottom:427.849500px;}
.y19{bottom:429.162000px;}
.y163{bottom:430.711500px;}
.y40{bottom:431.752500px;}
.y8f{bottom:431.958000px;}
.y3c{bottom:436.242000px;}
.y13d{bottom:438.435000px;}
.y11e{bottom:438.667500px;}
.y3a{bottom:445.602000px;}
.y6e{bottom:445.965000px;}
.ycb{bottom:449.530500px;}
.y3e{bottom:451.998000px;}
.y3f{bottom:452.812500px;}
.y18{bottom:453.816000px;}
.y162{bottom:455.364000px;}
.yfe{bottom:458.958000px;}
.y13c{bottom:463.087500px;}
.y3b{bottom:463.141500px;}
.y3d{bottom:464.214000px;}
.y11d{bottom:466.422000px;}
.yca{bottom:474.183000px;}
.y8e{bottom:481.884000px;}
.y13b{bottom:487.740000px;}
.y11c{bottom:491.076000px;}
.y161{bottom:493.324500px;}
.y17{bottom:493.858500px;}
.yc9{bottom:498.835500px;}
.yfd{bottom:499.441500px;}
.yfc{bottom:499.504500px;}
.y39{bottom:502.116000px;}
.yfb{bottom:503.550000px;}
.y6d{bottom:506.893500px;}
.y6c{bottom:510.939000px;}
.y13a{bottom:512.392500px;}
.y16{bottom:515.611500px;}
.y11b{bottom:515.728500px;}
.y160{bottom:517.977000px;}
.y8d{bottom:522.369000px;}
.y8c{bottom:522.430500px;}
.y8b{bottom:526.476000px;}
.y139{bottom:537.045000px;}
.y15{bottom:537.363000px;}
.y11a{bottom:540.381000px;}
.yc8{bottom:544.372500px;}
.yfa{bottom:548.142000px;}
.y6b{bottom:548.737500px;}
.y15f{bottom:555.937500px;}
.y138{bottom:557.644500px;}
.y14{bottom:559.116000px;}
.y69{bottom:559.962000px;}
.y38{bottom:562.422000px;}
.y135{bottom:563.416500px;}
.y17c{bottom:564.099000px;}
.y119{bottom:565.033500px;}
.y6a{bottom:567.805500px;}
.y137{bottom:569.859000px;}
.y8a{bottom:571.069500px;}
.yf9{bottom:572.794500px;}
.y136{bottom:580.359000px;}
.y15e{bottom:580.590000px;}
.y13{bottom:580.869000px;}
.y118{bottom:585.633000px;}
.y17b{bottom:588.751500px;}
.y116{bottom:591.405000px;}
.y89{bottom:595.722000px;}
.y117{bottom:597.847500px;}
.y12{bottom:602.620500px;}
.y37{bottom:603.274500px;}
.y134{bottom:608.008500px;}
.y68{bottom:609.648000px;}
.y17a{bottom:613.404000px;}
.yc7{bottom:615.432000px;}
.y115{bottom:616.581000px;}
.y15d{bottom:618.550500px;}
.y112{bottom:622.353000px;}
.y11{bottom:624.373500px;}
.y114{bottom:628.797000px;}
.y67{bottom:630.255000px;}
.y66{bottom:634.300500px;}
.y133{bottom:637.144500px;}
.y113{bottom:639.297000px;}
.yc6{bottom:640.084500px;}
.y15c{bottom:643.204500px;}
.y10{bottom:646.125000px;}
.yf8{bottom:647.232000px;}
.y179{bottom:651.507000px;}
.y36{bottom:660.094500px;}
.yc5{bottom:664.737000px;}
.yf{bottom:667.878000px;}
.y65{bottom:669.502500px;}
.y88{bottom:674.530500px;}
.y178{bottom:676.159500px;}
.ye0{bottom:676.402500px;}
.y15b{bottom:681.165000px;}
.y111{bottom:683.362500px;}
.y35{bottom:684.747000px;}
.y62{bottom:687.561000px;}
.yc4{bottom:689.389500px;}
.y132{bottom:689.568000px;}
.ye{bottom:689.629500px;}
.y64{bottom:702.114000px;}
.y15a{bottom:705.817500px;}
.y63{bottom:706.596000px;}
.y87{bottom:707.160000px;}
.y34{bottom:709.399500px;}
.yd{bottom:711.382500px;}
.y110{bottom:712.533000px;}
.yc3{bottom:714.042000px;}
.y177{bottom:714.262500px;}
.y12a{bottom:718.738500px;}
.y33{bottom:734.052000px;}
.y61{bottom:737.854500px;}
.y176{bottom:738.915000px;}
.yc{bottom:739.812000px;}
.y159{bottom:743.778000px;}
.yc1{bottom:749.244000px;}
.y32{bottom:758.706000px;}
.y175{bottom:763.567500px;}
.yc2{bottom:767.302500px;}
.y158{bottom:768.430500px;}
.y14e{bottom:772.833000px;}
.yb{bottom:776.835000px;}
.y60{bottom:781.342500px;}
.yc0{bottom:781.854000px;}
.ybf{bottom:786.337500px;}
.y157{bottom:793.083000px;}
.y174{bottom:801.669000px;}
.y31{bottom:803.298000px;}
.ybd{bottom:803.473500px;}
.ya{bottom:806.769000px;}
.y14d{bottom:813.687000px;}
.ybe{bottom:821.533500px;}
.y5f{bottom:825.934500px;}
.y173{bottom:826.323000px;}
.y156{bottom:831.043500px;}
.y9{bottom:831.421500px;}
.ybc{bottom:836.085000px;}
.ybb{bottom:840.568500px;}
.y5d{bottom:843.814500px;}
.y172{bottom:850.975500px;}
.y155{bottom:855.696000px;}
.y8{bottom:856.074000px;}
.yb9{bottom:857.703000px;}
.y5e{bottom:861.873000px;}
.y30{bottom:867.829500px;}
.y14c{bottom:870.967500px;}
.yba{bottom:875.763000px;}
.y86{bottom:876.072000px;}
.y5c{bottom:876.424500px;}
.y154{bottom:880.350000px;}
.y7{bottom:880.726500px;}
.y5b{bottom:880.908000px;}
.y171{bottom:889.077000px;}
.yb8{bottom:890.314500px;}
.yb7{bottom:894.798000px;}
.y14b{bottom:895.620000px;}
.y85{bottom:900.724500px;}
.y5a{bottom:912.166500px;}
.y6{bottom:913.561500px;}
.ydf{bottom:914.743500px;}
.y153{bottom:918.310500px;}
.y14a{bottom:920.274000px;}
.y84{bottom:925.377000px;}
.y170{bottom:927.180000px;}
.yb6{bottom:929.986500px;}
.y2f{bottom:932.362500px;}
.yde{bottom:935.067000px;}
.y152{bottom:942.963000px;}
.y149{bottom:944.926500px;}
.y5{bottom:946.477500px;}
.y16f{bottom:951.832500px;}
.yb5{bottom:954.639000px;}
.y82{bottom:959.329500px;}
.yd6{bottom:964.237500px;}
.y59{bottom:966.177000px;}
.y151{bottom:967.615500px;}
.y4{bottom:969.561000px;}
.y148{bottom:969.579000px;}
.y83{bottom:972.591000px;}
.y2e{bottom:976.954500px;}
.yb3{bottom:989.841000px;}
.y16e{bottom:989.934000px;}
.y81{bottom:993.286500px;}
.y147{bottom:994.231500px;}
.y58{bottom:998.371500px;}
.y55{bottom:1002.861000px;}
.yb4{bottom:1003.792500px;}
.y150{bottom:1005.576000px;}
.yb0{bottom:1007.899500px;}
.y53{bottom:1012.219500px;}
.y2d{bottom:1017.438000px;}
.y2c{bottom:1017.501000px;}
.y57{bottom:1018.617000px;}
.y146{bottom:1018.884000px;}
.y80{bottom:1019.226000px;}
.y2b{bottom:1021.546500px;}
.yb2{bottom:1022.451000px;}
.y56{bottom:1024.389000px;}
.yb1{bottom:1026.934500px;}
.y16d{bottom:1028.037000px;}
.y54{bottom:1029.760500px;}
.y14f{bottom:1030.228500px;}
.y145{bottom:1043.536500px;}
.y7f{bottom:1043.878500px;}
.yab{bottom:1044.070500px;}
.y3{bottom:1044.709500px;}
.yaf{bottom:1050.904500px;}
.y16c{bottom:1052.689500px;}
.yad{bottom:1058.022000px;}
.yae{bottom:1058.085000px;}
.yac{bottom:1062.130500px;}
.y52{bottom:1064.643000px;}
.y2a{bottom:1066.138500px;}
.y144{bottom:1068.189000px;}
.yaa{bottom:1076.682000px;}
.y7d{bottom:1080.201000px;}
.ya9{bottom:1081.165500px;}
.y2{bottom:1090.027500px;}
.y29{bottom:1090.791000px;}
.y143{bottom:1092.843000px;}
.y7e{bottom:1093.461000px;}
.y7c{bottom:1114.156500px;}
.y28{bottom:1115.445000px;}
.y50{bottom:1119.010500px;}
.y51{bottom:1127.013000px;}
.y4d{bottom:1132.785000px;}
.y142{bottom:1133.695500px;}
.ya8{bottom:1134.454500px;}
.y1{bottom:1135.345500px;}
.y27{bottom:1140.097500px;}
.y4f{bottom:1144.348500px;}
.y4e{bottom:1147.336500px;}
.ya7{bottom:1147.408500px;}
.y26{bottom:1199.275500px;}
.hf{height:2.391024px;}
.h21{height:7.801715px;}
.h35{height:10.479639px;}
.h3a{height:15.477244px;}
.h36{height:15.478721px;}
.h19{height:26.731715px;}
.h4{height:35.865450px;}
.h2b{height:41.629126px;}
.h8{height:41.842920px;}
.h38{height:42.157248px;}
.h3b{height:42.163248px;}
.ha{height:42.799330px;}
.h32{height:43.771200px;}
.h14{height:43.777200px;}
.h7{height:44.831700px;}
.h6{height:45.818220px;}
.h3c{height:46.865494px;}
.h5{height:49.090950px;}
.h1f{height:53.755715px;}
.h16{height:59.613450px;}
.h13{height:59.619450px;}
.hb{height:62.889450px;}
.h1a{height:62.895450px;}
.h9{height:64.557900px;}
.h37{height:64.717126px;}
.h1b{height:65.272950px;}
.h24{height:65.518950px;}
.hd{height:65.524950px;}
.h25{height:67.707450px;}
.h30{height:67.713450px;}
.h17{height:67.933248px;}
.h20{height:69.937715px;}
.h2d{height:70.161024px;}
.h29{height:70.189715px;}
.h2e{height:71.662950px;}
.h18{height:72.178950px;}
.h1e{height:75.801450px;}
.h3{height:76.073700px;}
.h15{height:77.326950px;}
.h11{height:79.449450px;}
.hc{height:83.889450px;}
.h23{height:83.895450px;}
.h26{height:84.141450px;}
.h31{height:86.589024px;}
.h2c{height:86.595024px;}
.h10{height:89.601450px;}
.h2{height:92.981250px;}
.h39{height:93.249024px;}
.h33{height:93.255024px;}
.h1d{height:93.988950px;}
.h22{height:98.377126px;}
.h2a{height:103.899450px;}
.h12{height:104.488950px;}
.h1c{height:107.175450px;}
.h28{height:115.059024px;}
.h2f{height:115.065024px;}
.h27{height:120.333450px;}
.he{height:126.351024px;}
.h34{height:192.295890px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:425.191680px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xda{left:44.074513px;}
.xe9{left:45.250435px;}
.xd6{left:46.357691px;}
.xfd{left:47.391156px;}
.xd7{left:48.572230px;}
.xd5{left:51.672600px;}
.xd4{left:54.256230px;}
.xdb{left:58.237235px;}
.xdc{left:72.544270px;}
.xdd{left:86.851306px;}
.xde{left:101.158342px;}
.xe{left:106.299000px;}
.xfc{left:112.332000px;}
.x36{left:115.332000px;}
.xe5{left:120.957000px;}
.x4c{left:122.766000px;}
.xce{left:124.741500px;}
.x3c{left:126.298500px;}
.xdf{left:129.772413px;}
.x4d{left:132.538500px;}
.x9f{left:135.201000px;}
.x9e{left:136.377000px;}
.xfa{left:137.460000px;}
.x4e{left:138.966000px;}
.x5{left:141.523500px;}
.x83{left:142.612500px;}
.x4f{left:144.874500px;}
.xd{left:147.208500px;}
.x3{left:148.905000px;}
.xea{left:150.633000px;}
.xc2{left:153.271500px;}
.x7b{left:155.031000px;}
.x2{left:156.420000px;}
.xcf{left:158.121000px;}
.x87{left:161.508000px;}
.xeb{left:163.429500px;}
.xa0{left:164.748000px;}
.x65{left:166.575000px;}
.xc4{left:167.875500px;}
.x1{left:169.108500px;}
.x7c{left:172.294500px;}
.xe1{left:173.632500px;}
.x8c{left:174.996000px;}
.xa1{left:178.296000px;}
.x7d{left:181.647000px;}
.x50{left:184.168500px;}
.x51{left:188.841000px;}
.xe0{left:190.101281px;}
.xec{left:192.199500px;}
.xe2{left:193.741500px;}
.xc5{left:196.900500px;}
.x2c{left:198.675000px;}
.x108{left:204.180000px;}
.xf6{left:207.858000px;}
.x48{left:209.212500px;}
.x105{left:210.964500px;}
.x2d{left:212.223000px;}
.x7e{left:214.093500px;}
.x66{left:219.009000px;}
.xe6{left:222.042000px;}
.x41{left:226.596000px;}
.x4{left:231.940500px;}
.x70{left:234.006000px;}
.xe8{left:236.247000px;}
.x6d{left:237.625500px;}
.x47{left:239.925000px;}
.x46{left:241.101000px;}
.x52{left:242.230500px;}
.x67{left:244.117500px;}
.x45{left:245.542500px;}
.xe3{left:247.992000px;}
.xed{left:251.227500px;}
.x53{left:254.782500px;}
.xfe{left:256.468500px;}
.x4a{left:259.440000px;}
.x49{left:260.616000px;}
.xff{left:262.959000px;}
.x7a{left:264.016500px;}
.x30{left:266.019000px;}
.x85{left:268.815000px;}
.x75{left:273.045000px;}
.x7f{left:274.968000px;}
.x6{left:276.870000px;}
.xee{left:278.478000px;}
.x68{left:282.862500px;}
.x74{left:284.578500px;}
.x4b{left:286.105500px;}
.xef{left:287.403000px;}
.xe4{left:291.331500px;}
.x89{left:293.407500px;}
.x3d{left:295.192500px;}
.x3f{left:298.648500px;}
.x2e{left:299.760000px;}
.x3e{left:301.039500px;}
.xe7{left:306.636000px;}
.x54{left:312.280500px;}
.x9{left:313.911000px;}
.x8d{left:315.654000px;}
.xf7{left:317.040000px;}
.xa{left:318.139500px;}
.x80{left:319.351500px;}
.x8{left:321.684000px;}
.x37{left:324.963000px;}
.x81{left:327.654000px;}
.xc3{left:329.149500px;}
.x6e{left:331.596000px;}
.xf0{left:333.216000px;}
.x42{left:335.038500px;}
.x100{left:336.184500px;}
.x31{left:339.243000px;}
.x8a{left:340.647000px;}
.xb{left:342.630000px;}
.xac{left:344.233500px;}
.x55{left:345.549000px;}
.x2f{left:347.202000px;}
.x3a{left:351.087000px;}
.x82{left:353.710500px;}
.x43{left:355.794000px;}
.x8e{left:357.159000px;}
.xad{left:358.752000px;}
.x35{left:359.998500px;}
.x33{left:361.792500px;}
.x71{left:363.648000px;}
.x1f{left:365.724000px;}
.x38{left:367.879500px;}
.x86{left:369.900000px;}
.x32{left:371.602500px;}
.x40{left:372.814500px;}
.xf1{left:375.654000px;}
.x93{left:379.390500px;}
.xa4{left:384.597000px;}
.xa6{left:387.480000px;}
.xa5{left:388.656000px;}
.x56{left:390.751500px;}
.xf8{left:393.121500px;}
.x94{left:394.845000px;}
.x7{left:396.076500px;}
.x57{left:397.179000px;}
.x34{left:399.340500px;}
.x20{left:401.077500px;}
.x101{left:405.090000px;}
.x39{left:406.176000px;}
.x73{left:408.988500px;}
.x8b{left:411.153000px;}
.x64{left:412.173000px;}
.xc{left:413.812500px;}
.x21{left:415.200000px;}
.xa7{left:417.027000px;}
.x99{left:424.621500px;}
.x2b{left:428.047500px;}
.x72{left:431.184000px;}
.x58{left:434.089500px;}
.x88{left:439.554000px;}
.x84{left:443.538000px;}
.x9a{left:445.357500px;}
.x44{left:449.970000px;}
.xc6{left:461.290500px;}
.x59{left:463.120500px;}
.x9b{left:464.379000px;}
.x8f{left:466.044000px;}
.x91{left:468.927000px;}
.x90{left:470.103000px;}
.x9c{left:471.847500px;}
.xa2{left:473.518500px;}
.x102{left:479.499000px;}
.xf9{left:486.927000px;}
.x6f{left:494.676000px;}
.x92{left:498.474000px;}
.x5a{left:500.230500px;}
.xa3{left:501.891000px;}
.xf2{left:503.218500px;}
.x22{left:506.049000px;}
.xbc{left:507.576000px;}
.x5b{left:514.597500px;}
.x23{left:516.463500px;}
.xbd{left:523.111500px;}
.xbe{left:529.603500px;}
.xa8{left:531.243000px;}
.x95{left:534.658500px;}
.xc7{left:537.054000px;}
.x5c{left:540.262500px;}
.xbf{left:542.004000px;}
.xf3{left:545.668500px;}
.x5d{left:547.534500px;}
.xd8{left:550.374000px;}
.xca{left:553.303500px;}
.x5e{left:555.798000px;}
.x5f{left:563.071500px;}
.xc0{left:564.961500px;}
.x24{left:568.225500px;}
.x60{left:571.335000px;}
.xcb{left:575.838000px;}
.xd9{left:579.297000px;}
.xc8{left:582.861000px;}
.xae{left:584.217000px;}
.xf{left:589.378500px;}
.xaf{left:590.568000px;}
.x61{left:592.243500px;}
.x96{left:596.248500px;}
.x10{left:598.788000px;}
.x97{left:600.307500px;}
.xaa{left:602.548500px;}
.xa9{left:603.724500px;}
.x11{left:608.004000px;}
.x12{left:617.412000px;}
.xc9{left:619.572000px;}
.x9d{left:620.725500px;}
.xb0{left:624.490500px;}
.x13{left:626.628000px;}
.x98{left:628.680000px;}
.xab{left:632.095500px;}
.x14{left:636.037500px;}
.x103{left:638.011500px;}
.xb5{left:639.895500px;}
.xcc{left:643.695000px;}
.x15{left:645.253500px;}
.xcd{left:648.241500px;}
.xb1{left:649.926000px;}
.xb6{left:652.041000px;}
.x16{left:654.661500px;}
.xb2{left:657.198000px;}
.xb7{left:658.278000px;}
.x17{left:663.877500px;}
.xb3{left:665.364000px;}
.x18{left:673.287000px;}
.xc1{left:674.667000px;}
.x25{left:676.800000px;}
.xb8{left:679.918500px;}
.x19{left:682.503000px;}
.x109{left:684.304500px;}
.x26{left:686.209500px;}
.x104{left:688.080000px;}
.xd0{left:689.737500px;}
.x1a{left:691.911000px;}
.x27{left:695.767500px;}
.xf5{left:699.045000px;}
.x1b{left:701.127000px;}
.xb9{left:704.955000px;}
.x1c{left:710.536500px;}
.xba{left:712.227000px;}
.x28{left:714.585000px;}
.xf4{left:715.878000px;}
.x1d{left:719.752500px;}
.x76{left:721.747500px;}
.x29{left:724.143000px;}
.xd1{left:727.489500px;}
.x1e{left:729.160500px;}
.xb4{left:731.221500px;}
.x69{left:736.741500px;}
.x106{left:738.079500px;}
.x77{left:739.981500px;}
.x2a{left:742.960500px;}
.x78{left:746.218500px;}
.xd2{left:749.434500px;}
.x62{left:751.857000px;}
.x6a{left:755.560500px;}
.x107{left:760.612500px;}
.xfb{left:764.080500px;}
.x6b{left:765.552000px;}
.x3b{left:767.619000px;}
.x63{left:772.842000px;}
.xd3{left:774.582000px;}
.x79{left:778.197000px;}
.xbb{left:780.232500px;}
.x6c{left:784.371000px;}
@media print{
.v1d{vertical-align:-37.333333pt;}
.v2{vertical-align:-23.136000pt;}
.v10{vertical-align:-21.114667pt;}
.v17{vertical-align:-16.826667pt;}
.v8{vertical-align:-8.725333pt;}
.v23{vertical-align:-6.957921pt;}
.v13{vertical-align:-5.904000pt;}
.v20{vertical-align:-4.649550pt;}
.v1f{vertical-align:-3.670559pt;}
.v22{vertical-align:-2.341678pt;}
.v21{vertical-align:-1.362582pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.882667pt;}
.v7{vertical-align:8.725333pt;}
.v11{vertical-align:12.544000pt;}
.v4{vertical-align:14.384000pt;}
.vc{vertical-align:17.626667pt;}
.v1c{vertical-align:20.064000pt;}
.vd{vertical-align:21.114667pt;}
.v12{vertical-align:22.906667pt;}
.v3{vertical-align:24.021333pt;}
.v1{vertical-align:27.770667pt;}
.v16{vertical-align:35.498667pt;}
.vf{vertical-align:38.741333pt;}
.v15{vertical-align:39.909333pt;}
.v5{vertical-align:42.688000pt;}
.vb{vertical-align:47.765333pt;}
.ve{vertical-align:49.242667pt;}
.v18{vertical-align:50.442667pt;}
.v19{vertical-align:60.240000pt;}
.v14{vertical-align:63.386667pt;}
.va{vertical-align:64.592000pt;}
.v1a{vertical-align:75.082667pt;}
.v1e{vertical-align:80.768000pt;}
.v1b{vertical-align:100.149333pt;}
.v9{vertical-align:110.186667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000444pt;}
.ls74{letter-spacing:0.000873pt;}
.lsc0{letter-spacing:0.001770pt;}
.ls7d{letter-spacing:0.001788pt;}
.ls8d{letter-spacing:0.001874pt;}
.lsb7{letter-spacing:0.001879pt;}
.ls6e{letter-spacing:0.002384pt;}
.ls92{letter-spacing:0.002397pt;}
.ls65{letter-spacing:0.002400pt;}
.ls49{letter-spacing:0.002405pt;}
.ls7e{letter-spacing:0.003861pt;}
.ls2e{letter-spacing:0.003980pt;}
.ls64{letter-spacing:0.004274pt;}
.ls96{letter-spacing:0.004802pt;}
.ls71{letter-spacing:0.005312pt;}
.lsc{letter-spacing:0.006078pt;}
.lsbb{letter-spacing:0.007062pt;}
.ls15{letter-spacing:0.008509pt;}
.ls48{letter-spacing:0.008658pt;}
.lsbd{letter-spacing:0.009467pt;}
.lsac{letter-spacing:0.009631pt;}
.ls67{letter-spacing:0.010033pt;}
.ls78{letter-spacing:0.011412pt;}
.lsb8{letter-spacing:0.011508pt;}
.lsad{letter-spacing:0.011867pt;}
.lsaa{letter-spacing:0.012395pt;}
.ls4b{letter-spacing:0.013505pt;}
.ls45{letter-spacing:0.013991pt;}
.lsae{letter-spacing:0.014964pt;}
.ls12{letter-spacing:0.015293pt;}
.ls43{letter-spacing:0.022190pt;}
.ls75{letter-spacing:0.024910pt;}
.ls6f{letter-spacing:0.025495pt;}
.ls46{letter-spacing:0.027523pt;}
.ls61{letter-spacing:0.170029pt;}
.ls81{letter-spacing:0.174546pt;}
.ls23{letter-spacing:0.229803pt;}
.ls62{letter-spacing:1.147694pt;}
.ls5a{letter-spacing:1.602818pt;}
.ls27{letter-spacing:1.614971pt;}
.ls7{letter-spacing:1.617899pt;}
.ls32{letter-spacing:1.619777pt;}
.ls39{letter-spacing:1.620305pt;}
.lsa{letter-spacing:1.620617pt;}
.ls58{letter-spacing:1.625032pt;}
.ls3c{letter-spacing:1.625907pt;}
.lsb0{letter-spacing:1.861820pt;}
.ls6c{letter-spacing:2.094547pt;}
.ls3d{letter-spacing:2.167867pt;}
.ls93{letter-spacing:2.465418pt;}
.ls69{letter-spacing:2.648916pt;}
.ls13{letter-spacing:2.653258pt;}
.ls5f{letter-spacing:2.654249pt;}
.ls4e{letter-spacing:2.654275pt;}
.ls0{letter-spacing:2.654400pt;}
.ls41{letter-spacing:2.656092pt;}
.lsba{letter-spacing:2.656444pt;}
.ls1f{letter-spacing:2.657061pt;}
.ls24{letter-spacing:2.657087pt;}
.ls2b{letter-spacing:2.658178pt;}
.ls26{letter-spacing:2.658203pt;}
.ls1{letter-spacing:2.658591pt;}
.ls42{letter-spacing:2.659608pt;}
.ls28{letter-spacing:2.659733pt;}
.ls36{letter-spacing:2.659862pt;}
.ls19{letter-spacing:2.662420pt;}
.ls2d{letter-spacing:2.662450pt;}
.ls40{letter-spacing:2.669118pt;}
.ls63{letter-spacing:3.791684pt;}
.ls97{letter-spacing:3.905798pt;}
.ls9a{letter-spacing:3.911131pt;}
.ls98{letter-spacing:4.478275pt;}
.ls8c{letter-spacing:4.483608pt;}
.ls87{letter-spacing:4.505763pt;}
.ls8a{letter-spacing:4.548270pt;}
.ls8b{letter-spacing:4.724753pt;}
.ls5e{letter-spacing:4.751350pt;}
.ls38{letter-spacing:4.838541pt;}
.ls3a{letter-spacing:4.842344pt;}
.ls5b{letter-spacing:5.312473pt;}
.ls18{letter-spacing:5.594155pt;}
.ls35{letter-spacing:5.596032pt;}
.ls3f{letter-spacing:5.599488pt;}
.ls25{letter-spacing:5.607087pt;}
.ls7b{letter-spacing:5.608019pt;}
.ls84{letter-spacing:5.613309pt;}
.ls9b{letter-spacing:5.619289pt;}
.ls8e{letter-spacing:5.624091pt;}
.lsb3{letter-spacing:6.225460pt;}
.lsb5{letter-spacing:6.231121pt;}
.ls2c{letter-spacing:6.260825pt;}
.ls1a{letter-spacing:6.283642pt;}
.ls89{letter-spacing:6.347104pt;}
.ls56{letter-spacing:6.387182pt;}
.lsa3{letter-spacing:6.388157pt;}
.lsb4{letter-spacing:6.390899pt;}
.ls3e{letter-spacing:6.393641pt;}
.ls82{letter-spacing:6.395364pt;}
.ls99{letter-spacing:6.400698pt;}
.lsb2{letter-spacing:6.458187pt;}
.ls20{letter-spacing:6.574551pt;}
.ls1e{letter-spacing:6.632733pt;}
.lsa0{letter-spacing:7.180320pt;}
.lsc1{letter-spacing:7.854552pt;}
.ls90{letter-spacing:8.076575pt;}
.lsd{letter-spacing:8.087279pt;}
.lsaf{letter-spacing:8.246899pt;}
.lsb1{letter-spacing:8.249490pt;}
.ls2f{letter-spacing:9.033974pt;}
.lsa1{letter-spacing:9.658190pt;}
.ls72{letter-spacing:9.716372pt;}
.ls2a{letter-spacing:10.328855pt;}
.ls1c{letter-spacing:10.334188pt;}
.lsb6{letter-spacing:11.066193pt;}
.ls9{letter-spacing:12.916374pt;}
.ls83{letter-spacing:12.929788pt;}
.ls80{letter-spacing:12.974556pt;}
.ls2{letter-spacing:14.661830pt;}
.ls66{letter-spacing:14.778194pt;}
.ls77{letter-spacing:15.487321pt;}
.lsb{letter-spacing:15.492654pt;}
.ls44{letter-spacing:15.581258pt;}
.ls4a{letter-spacing:15.582345pt;}
.ls51{letter-spacing:15.586591pt;}
.ls47{letter-spacing:15.590420pt;}
.lsa4{letter-spacing:15.825468pt;}
.ls1d{letter-spacing:15.826591pt;}
.ls7f{letter-spacing:16.000013pt;}
.ls1b{letter-spacing:16.072276pt;}
.ls29{letter-spacing:16.078726pt;}
.lse{letter-spacing:16.116377pt;}
.ls6d{letter-spacing:16.141309pt;}
.lsf{letter-spacing:16.174559pt;}
.ls5d{letter-spacing:16.232741pt;}
.ls86{letter-spacing:16.290923pt;}
.lsb9{letter-spacing:16.349105pt;}
.lsa8{letter-spacing:16.407286pt;}
.ls8{letter-spacing:16.969987pt;}
.lsab{letter-spacing:17.764860pt;}
.lsbc{letter-spacing:17.770344pt;}
.lsbf{letter-spacing:18.094561pt;}
.lsbe{letter-spacing:18.385470pt;}
.ls50{letter-spacing:18.813258pt;}
.ls54{letter-spacing:18.819608pt;}
.ls52{letter-spacing:19.200016pt;}
.lsa6{letter-spacing:19.258198pt;}
.ls9d{letter-spacing:19.316380pt;}
.ls6{letter-spacing:19.374562pt;}
.ls5{letter-spacing:19.432743pt;}
.ls7c{letter-spacing:19.465987pt;}
.ls8f{letter-spacing:19.471321pt;}
.ls95{letter-spacing:19.490925pt;}
.ls17{letter-spacing:19.665471pt;}
.ls33{letter-spacing:20.305471pt;}
.ls3{letter-spacing:20.538199pt;}
.lsa9{letter-spacing:21.527291pt;}
.ls9f{letter-spacing:21.760018pt;}
.ls4c{letter-spacing:22.050591pt;}
.ls70{letter-spacing:23.098201pt;}
.ls34{letter-spacing:23.563656pt;}
.ls73{letter-spacing:23.609490pt;}
.ls6b{letter-spacing:23.614824pt;}
.lsa5{letter-spacing:24.228860pt;}
.ls5c{letter-spacing:24.709806pt;}
.ls53{letter-spacing:24.896473pt;}
.ls4d{letter-spacing:25.658203pt;}
.ls31{letter-spacing:29.090933pt;}
.ls55{letter-spacing:32.068811pt;}
.ls94{letter-spacing:37.457653pt;}
.ls59{letter-spacing:41.056473pt;}
.lsa7{letter-spacing:43.621772pt;}
.ls4f{letter-spacing:48.465495pt;}
.lsa2{letter-spacing:64.679121pt;}
.ls3b{letter-spacing:76.043493pt;}
.ls7a{letter-spacing:79.625987pt;}
.ls9c{letter-spacing:102.167358pt;}
.ls91{letter-spacing:138.589206pt;}
.ls85{letter-spacing:157.789222pt;}
.ls10{letter-spacing:367.185761pt;}
.ls68{letter-spacing:466.365258pt;}
.ls60{letter-spacing:476.567670pt;}
.ls21{letter-spacing:504.204057pt;}
.ls79{letter-spacing:587.462308pt;}
.ls30{letter-spacing:601.193228pt;}
.ls6a{letter-spacing:643.549627pt;}
.ls22{letter-spacing:645.709391pt;}
.ls76{letter-spacing:767.186094pt;}
.ls88{letter-spacing:842.880702pt;}
.ls9e{letter-spacing:845.382523pt;}
.ls14{letter-spacing:891.869834pt;}
.ls16{letter-spacing:894.313473pt;}
.ls11{letter-spacing:895.302564pt;}
.ls57{letter-spacing:958.022617pt;}
.ws48{word-spacing:-43.038600pt;}
.ws30{word-spacing:-37.899668pt;}
.ws40{word-spacing:-32.337481pt;}
.ws93{word-spacing:-29.736752pt;}
.ws27{word-spacing:-29.521250pt;}
.ws4{word-spacing:-29.090933pt;}
.ws54{word-spacing:-28.997842pt;}
.ws1d{word-spacing:-28.241478pt;}
.ws25{word-spacing:-28.183296pt;}
.ws2f{word-spacing:-24.983294pt;}
.ws34{word-spacing:-21.783291pt;}
.ws2c{word-spacing:-21.725109pt;}
.ws0{word-spacing:-20.662500pt;}
.ws28{word-spacing:-16.162923pt;}
.ws49{word-spacing:-14.720012pt;}
.ws52{word-spacing:-14.603649pt;}
.ws1a{word-spacing:-14.429103pt;}
.ws8a{word-spacing:-14.370921pt;}
.ws3d{word-spacing:-14.346200pt;}
.ws99{word-spacing:-14.138194pt;}
.ws45{word-spacing:-13.963648pt;}
.ws47{word-spacing:-13.963635pt;}
.ws16{word-spacing:-13.498193pt;}
.ws98{word-spacing:-13.381829pt;}
.ws11{word-spacing:-13.323647pt;}
.ws8b{word-spacing:-13.154920pt;}
.ws9a{word-spacing:-12.922193pt;}
.ws4a{word-spacing:-12.800011pt;}
.ws41{word-spacing:-12.741829pt;}
.ws3f{word-spacing:-12.543875pt;}
.ws94{word-spacing:-12.509101pt;}
.ws7{word-spacing:-12.486459pt;}
.ws17{word-spacing:-12.450919pt;}
.ws18{word-spacing:-12.392738pt;}
.ws87{word-spacing:-12.334556pt;}
.ws82{word-spacing:-12.276374pt;}
.ws8{word-spacing:-12.167655pt;}
.ws1b{word-spacing:-11.985465pt;}
.ws71{word-spacing:-11.850912pt;}
.ws7e{word-spacing:-11.403646pt;}
.ws83{word-spacing:-11.234918pt;}
.ws5{word-spacing:-11.170918pt;}
.ws4b{word-spacing:-11.054555pt;}
.ws2b{word-spacing:-10.938191pt;}
.ws1f{word-spacing:-10.880009pt;}
.ws36{word-spacing:-10.700556pt;}
.ws8d{word-spacing:-10.123645pt;}
.ws23{word-spacing:-10.065463pt;}
.ws81{word-spacing:-10.007281pt;}
.ws84{word-spacing:-9.949099pt;}
.ws3b{word-spacing:-9.890917pt;}
.ws61{word-spacing:-9.832735pt;}
.ws5d{word-spacing:-9.774554pt;}
.ws3{word-spacing:-9.716372pt;}
.ws12{word-spacing:-9.658190pt;}
.ws4c{word-spacing:-9.600008pt;}
.ws3e{word-spacing:-9.541826pt;}
.ws24{word-spacing:-9.483644pt;}
.ws19{word-spacing:-9.425462pt;}
.wsc{word-spacing:-9.404694pt;}
.ws8e{word-spacing:-9.373099pt;}
.ws1e{word-spacing:-9.367281pt;}
.ws80{word-spacing:-9.250917pt;}
.ws85{word-spacing:-9.192735pt;}
.wsf{word-spacing:-9.192159pt;}
.ws97{word-spacing:-9.140371pt;}
.wse{word-spacing:-9.139025pt;}
.ws10{word-spacing:-9.076371pt;}
.ws92{word-spacing:-8.965826pt;}
.wsa{word-spacing:-8.926490pt;}
.ws57{word-spacing:-8.907644pt;}
.ws6{word-spacing:-8.873356pt;}
.ws91{word-spacing:-8.849462pt;}
.ws9{word-spacing:-8.820222pt;}
.ws9c{word-spacing:-8.791280pt;}
.wsd{word-spacing:-8.713954pt;}
.ws9d{word-spacing:-8.674916pt;}
.wsb{word-spacing:-8.607686pt;}
.ws7f{word-spacing:-8.552734pt;}
.ws88{word-spacing:-8.494553pt;}
.ws86{word-spacing:-8.442189pt;}
.ws29{word-spacing:-8.261825pt;}
.ws22{word-spacing:-8.134795pt;}
.ws89{word-spacing:-7.860370pt;}
.ws2a{word-spacing:-7.738188pt;}
.ws9b{word-spacing:-7.680006pt;}
.ws4e{word-spacing:-7.621825pt;}
.ws6c{word-spacing:-7.563643pt;}
.ws1c{word-spacing:-7.505461pt;}
.ws2e{word-spacing:-7.469088pt;}
.ws15{word-spacing:-7.447279pt;}
.ws55{word-spacing:-7.330915pt;}
.ws46{word-spacing:-7.156370pt;}
.ws6b{word-spacing:-6.987642pt;}
.ws9e{word-spacing:-6.923642pt;}
.ws4f{word-spacing:-6.632733pt;}
.ws90{word-spacing:-6.580369pt;}
.ws8f{word-spacing:-6.341823pt;}
.ws33{word-spacing:-6.167565pt;}
.ws44{word-spacing:-5.992732pt;}
.ws7b{word-spacing:-5.934550pt;}
.ws8c{word-spacing:-5.876369pt;}
.ws5c{word-spacing:-5.818187pt;}
.ws14{word-spacing:-4.654549pt;}
.ws63{word-spacing:-3.652518pt;}
.ws20{word-spacing:-3.258185pt;}
.ws3c{word-spacing:-3.246548pt;}
.ws95{word-spacing:-1.745456pt;}
.ws7a{word-spacing:-0.744728pt;}
.ws5b{word-spacing:-0.686546pt;}
.ws3a{word-spacing:-0.162909pt;}
.ws26{word-spacing:-0.046545pt;}
.ws21{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.011636pt;}
.ws4d{word-spacing:0.069818pt;}
.ws50{word-spacing:0.128000pt;}
.ws5e{word-spacing:0.244364pt;}
.ws53{word-spacing:0.302546pt;}
.ws5f{word-spacing:0.651637pt;}
.ws79{word-spacing:1.582547pt;}
.ws78{word-spacing:1.640729pt;}
.ws6a{word-spacing:3.851640pt;}
.ws56{word-spacing:4.258913pt;}
.ws43{word-spacing:6.469824pt;}
.ws7c{word-spacing:6.586187pt;}
.ws38{word-spacing:10.565827pt;}
.ws77{word-spacing:12.462556pt;}
.ws73{word-spacing:14.906194pt;}
.ws51{word-spacing:18.909107pt;}
.ws2{word-spacing:20.722347pt;}
.ws1{word-spacing:24.866747pt;}
.ws32{word-spacing:37.278955pt;}
.ws13{word-spacing:43.038600pt;}
.ws6d{word-spacing:45.626220pt;}
.ws6f{word-spacing:74.700990pt;}
.ws60{word-spacing:95.383670pt;}
.ws7d{word-spacing:97.324990pt;}
.ws69{word-spacing:157.347742pt;}
.ws58{word-spacing:160.477225pt;}
.ws70{word-spacing:178.857611pt;}
.ws68{word-spacing:274.646448pt;}
.ws39{word-spacing:366.755215pt;}
.ws96{word-spacing:403.790678pt;}
.ws31{word-spacing:432.854903pt;}
.ws67{word-spacing:458.315883pt;}
.ws37{word-spacing:485.620768pt;}
.ws42{word-spacing:543.552758pt;}
.ws35{word-spacing:573.009932pt;}
.ws66{word-spacing:575.613275pt;}
.ws65{word-spacing:692.913295pt;}
.ws6e{word-spacing:705.757679pt;}
.ws76{word-spacing:708.550409pt;}
.ws5a{word-spacing:785.815928pt;}
.ws74{word-spacing:824.623233pt;}
.ws72{word-spacing:876.581840pt;}
.ws64{word-spacing:876.582730pt;}
.ws59{word-spacing:889.612378pt;}
.ws62{word-spacing:993.882750pt;}
.ws75{word-spacing:1111.185397pt;}
._18{margin-left:-16.149079pt;}
._1{margin-left:-10.358800pt;}
._1e{margin-left:-7.268741pt;}
._2{margin-left:-6.175107pt;}
._5{margin-left:-4.539799pt;}
._0{margin-left:-3.416200pt;}
._3{margin-left:-2.065853pt;}
._6{margin-left:-1.119154pt;}
._9{width:1.487748pt;}
._4{width:2.473918pt;}
._19{width:4.736269pt;}
._1a{width:6.390319pt;}
._e{width:7.641020pt;}
._29{width:8.549162pt;}
._14{width:9.949099pt;}
._2a{width:14.936210pt;}
._b{width:16.518265pt;}
._d{width:17.818171pt;}
._15{width:19.374562pt;}
._1b{width:20.306265pt;}
._10{width:21.723102pt;}
._a{width:23.319399pt;}
._7{width:25.046105pt;}
._8{width:26.327691pt;}
._12{width:28.643913pt;}
._13{width:29.909473pt;}
._f{width:31.447695pt;}
._11{width:32.407300pt;}
._c{width:33.343687pt;}
._20{width:35.665484pt;}
._1d{width:37.454126pt;}
._28{width:44.375733pt;}
._21{width:86.077200pt;}
._22{width:104.475680pt;}
._17{width:114.769600pt;}
._1f{width:124.988384pt;}
._23{width:131.927779pt;}
._25{width:135.223733pt;}
._24{width:139.724544pt;}
._27{width:230.578400pt;}
._26{width:253.202688pt;}
._16{width:300.567523pt;}
._2b{width:434.510970pt;}
._1c{width:463.601903pt;}
.fs8{font-size:10.510371pt;}
.fs7{font-size:13.138554pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:13.860855pt;}
.yf7{bottom:14.285456pt;}
.yd8{bottom:17.342604pt;}
.yf6{bottom:17.817303pt;}
.yf5{bottom:21.349281pt;}
.yf4{bottom:21.830378pt;}
.yf3{bottom:24.881161pt;}
.yf1{bottom:28.413008pt;}
.y131{bottom:29.960758pt;}
.y124{bottom:31.295486pt;}
.yef{bottom:31.944986pt;}
.yee{bottom:32.670863pt;}
.yec{bottom:35.476931pt;}
.y109{bottom:37.275269pt;}
.ye9{bottom:39.008712pt;}
.ye8{bottom:40.801341pt;}
.ye6{bottom:42.540821pt;}
.yd9{bottom:45.248367pt;}
.ye4{bottom:46.072602pt;}
.ye2{bottom:49.604384pt;}
.ye1{bottom:54.136481pt;}
.y25{bottom:54.637333pt;}
.y10a{bottom:57.208064pt;}
.y125{bottom:59.201249pt;}
.ye3{bottom:65.152095pt;}
.y12b{bottom:66.987702pt;}
.yda{bottom:73.154130pt;}
.ye5{bottom:76.167381pt;}
.y10b{bottom:77.140729pt;}
.y12c{bottom:79.839252pt;}
.y126{bottom:87.107012pt;}
.ye7{bottom:87.182995pt;}
.ya4{bottom:88.510667pt;}
.y12d{bottom:92.690802pt;}
.y24{bottom:94.488000pt;}
.y10c{bottom:97.073393pt;}
.yeb{bottom:98.198609pt;}
.y108{bottom:100.438667pt;}
.ya5{bottom:100.912000pt;}
.ydb{bottom:101.059893pt;}
.ya1{bottom:104.564000pt;}
.y12f{bottom:105.542024pt;}
.yed{bottom:109.213895pt;}
.y127{bottom:115.012775pt;}
.y23{bottom:116.401333pt;}
.y10d{bottom:117.006189pt;}
.ya3{bottom:117.498667pt;}
.y130{bottom:118.393573pt;}
.y107{bottom:118.505333pt;}
.yf0{bottom:120.229509pt;}
.y7b{bottom:120.386667pt;}
.ya2{bottom:121.482667pt;}
.ya6{bottom:121.484000pt;}
.y128{bottom:128.965656pt;}
.ydc{bottom:128.965787pt;}
.yf2{bottom:131.245123pt;}
.y106{bottom:136.570667pt;}
.y9c{bottom:136.714667pt;}
.y10e{bottom:136.938853pt;}
.y12e{bottom:138.149567pt;}
.y22{bottom:138.314667pt;}
.yea{bottom:139.528815pt;}
.ya0{bottom:142.790667pt;}
.y129{bottom:142.918669pt;}
.y9e{bottom:149.116000pt;}
.y9f{bottom:149.172000pt;}
.y9d{bottom:152.768000pt;}
.y105{bottom:154.636000pt;}
.ydd{bottom:156.871550pt;}
.y10f{bottom:156.871649pt;}
.y7a{bottom:160.024000pt;}
.y21{bottom:160.229333pt;}
.y9b{bottom:165.702667pt;}
.y9a{bottom:169.688000pt;}
.y4c{bottom:171.313333pt;}
.y16b{bottom:172.058667pt;}
.y104{bottom:172.701333pt;}
.yd4{bottom:178.538667pt;}
.y20{bottom:182.142667pt;}
.yd2{bottom:183.669333pt;}
.yd5{bottom:189.397333pt;}
.y77{bottom:190.425333pt;}
.y141{bottom:190.766667pt;}
.y103{bottom:191.298667pt;}
.y16a{bottom:193.972000pt;}
.y79{bottom:197.032000pt;}
.yd3{bottom:198.730667pt;}
.y99{bottom:200.966667pt;}
.y4b{bottom:203.004000pt;}
.y1f{bottom:204.056000pt;}
.y74{bottom:207.009333pt;}
.y140{bottom:209.364000pt;}
.y78{bottom:216.849333pt;}
.y76{bottom:219.944000pt;}
.y102{bottom:222.648000pt;}
.yd1{bottom:223.308000pt;}
.y75{bottom:225.405333pt;}
.y1e{bottom:225.969333pt;}
.y169{bottom:227.714667pt;}
.y98{bottom:234.005333pt;}
.y4a{bottom:238.650667pt;}
.y13f{bottom:240.713333pt;}
.y1d{bottom:247.882667pt;}
.y168{bottom:249.628000pt;}
.y95{bottom:250.058667pt;}
.y73{bottom:256.584000pt;}
.y49{bottom:256.950667pt;}
.y97{bottom:262.993333pt;}
.y96{bottom:266.978667pt;}
.y44{bottom:267.273333pt;}
.y48{bottom:268.952000pt;}
.y1c{bottom:269.796000pt;}
.y123{bottom:271.013333pt;}
.y167{bottom:271.541333pt;}
.y42{bottom:275.592000pt;}
.yd0{bottom:280.669333pt;}
.y46{bottom:281.336000pt;}
.y47{bottom:282.060000pt;}
.y101{bottom:285.064000pt;}
.y43{bottom:291.184000pt;}
.y1b{bottom:291.709333pt;}
.y45{bottom:292.194667pt;}
.y72{bottom:292.626667pt;}
.y71{bottom:296.222667pt;}
.y94{bottom:297.449333pt;}
.y166{bottom:305.284000pt;}
.y122{bottom:310.650667pt;}
.y100{bottom:310.962667pt;}
.y93{bottom:319.362667pt;}
.ycf{bottom:320.306667pt;}
.y165{bottom:327.197333pt;}
.y1a{bottom:328.024000pt;}
.y70{bottom:335.860000pt;}
.y92{bottom:341.276000pt;}
.y41{bottom:344.105333pt;}
.y121{bottom:346.637333pt;}
.y120{bottom:346.693333pt;}
.y164{bottom:349.110667pt;}
.y11f{bottom:350.288000pt;}
.yce{bottom:356.293333pt;}
.ycd{bottom:356.349333pt;}
.y6f{bottom:357.773333pt;}
.ycc{bottom:359.944000pt;}
.y13e{bottom:367.806667pt;}
.yff{bottom:368.324000pt;}
.y91{bottom:373.985333pt;}
.y90{bottom:380.310667pt;}
.y19{bottom:381.477333pt;}
.y163{bottom:382.854667pt;}
.y40{bottom:383.780000pt;}
.y8f{bottom:383.962667pt;}
.y3c{bottom:387.770667pt;}
.y13d{bottom:389.720000pt;}
.y11e{bottom:389.926667pt;}
.y3a{bottom:396.090667pt;}
.y6e{bottom:396.413333pt;}
.ycb{bottom:399.582667pt;}
.y3e{bottom:401.776000pt;}
.y3f{bottom:402.500000pt;}
.y18{bottom:403.392000pt;}
.y162{bottom:404.768000pt;}
.yfe{bottom:407.962667pt;}
.y13c{bottom:411.633333pt;}
.y3b{bottom:411.681333pt;}
.y3d{bottom:412.634667pt;}
.y11d{bottom:414.597333pt;}
.yca{bottom:421.496000pt;}
.y8e{bottom:428.341333pt;}
.y13b{bottom:433.546667pt;}
.y11c{bottom:436.512000pt;}
.y161{bottom:438.510667pt;}
.y17{bottom:438.985333pt;}
.yc9{bottom:443.409333pt;}
.yfd{bottom:443.948000pt;}
.yfc{bottom:444.004000pt;}
.y39{bottom:446.325333pt;}
.yfb{bottom:447.600000pt;}
.y6d{bottom:450.572000pt;}
.y6c{bottom:454.168000pt;}
.y13a{bottom:455.460000pt;}
.y16{bottom:458.321333pt;}
.y11b{bottom:458.425333pt;}
.y160{bottom:460.424000pt;}
.y8d{bottom:464.328000pt;}
.y8c{bottom:464.382667pt;}
.y8b{bottom:467.978667pt;}
.y139{bottom:477.373333pt;}
.y15{bottom:477.656000pt;}
.y11a{bottom:480.338667pt;}
.yc8{bottom:483.886667pt;}
.yfa{bottom:487.237333pt;}
.y6b{bottom:487.766667pt;}
.y15f{bottom:494.166667pt;}
.y138{bottom:495.684000pt;}
.y14{bottom:496.992000pt;}
.y69{bottom:497.744000pt;}
.y38{bottom:499.930667pt;}
.y135{bottom:500.814667pt;}
.y17c{bottom:501.421333pt;}
.y119{bottom:502.252000pt;}
.y6a{bottom:504.716000pt;}
.y137{bottom:506.541333pt;}
.y8a{bottom:507.617333pt;}
.yf9{bottom:509.150667pt;}
.y136{bottom:515.874667pt;}
.y15e{bottom:516.080000pt;}
.y13{bottom:516.328000pt;}
.y118{bottom:520.562667pt;}
.y17b{bottom:523.334667pt;}
.y116{bottom:525.693333pt;}
.y89{bottom:529.530667pt;}
.y117{bottom:531.420000pt;}
.y12{bottom:535.662667pt;}
.y37{bottom:536.244000pt;}
.y134{bottom:540.452000pt;}
.y68{bottom:541.909333pt;}
.y17a{bottom:545.248000pt;}
.yc7{bottom:547.050667pt;}
.y115{bottom:548.072000pt;}
.y15d{bottom:549.822667pt;}
.y112{bottom:553.202667pt;}
.y11{bottom:554.998667pt;}
.y114{bottom:558.930667pt;}
.y67{bottom:560.226667pt;}
.y66{bottom:563.822667pt;}
.y133{bottom:566.350667pt;}
.y113{bottom:568.264000pt;}
.yc6{bottom:568.964000pt;}
.y15c{bottom:571.737333pt;}
.y10{bottom:574.333333pt;}
.yf8{bottom:575.317333pt;}
.y179{bottom:579.117333pt;}
.y36{bottom:586.750667pt;}
.yc5{bottom:590.877333pt;}
.yf{bottom:593.669333pt;}
.y65{bottom:595.113333pt;}
.y88{bottom:599.582667pt;}
.y178{bottom:601.030667pt;}
.ye0{bottom:601.246667pt;}
.y15b{bottom:605.480000pt;}
.y111{bottom:607.433333pt;}
.y35{bottom:608.664000pt;}
.y62{bottom:611.165333pt;}
.yc4{bottom:612.790667pt;}
.y132{bottom:612.949333pt;}
.ye{bottom:613.004000pt;}
.y64{bottom:624.101333pt;}
.y15a{bottom:627.393333pt;}
.y63{bottom:628.085333pt;}
.y87{bottom:628.586667pt;}
.y34{bottom:630.577333pt;}
.yd{bottom:632.340000pt;}
.y110{bottom:633.362667pt;}
.yc3{bottom:634.704000pt;}
.y177{bottom:634.900000pt;}
.y12a{bottom:638.878667pt;}
.y33{bottom:652.490667pt;}
.y61{bottom:655.870667pt;}
.y176{bottom:656.813333pt;}
.yc{bottom:657.610667pt;}
.y159{bottom:661.136000pt;}
.yc1{bottom:665.994667pt;}
.y32{bottom:674.405333pt;}
.y175{bottom:678.726667pt;}
.yc2{bottom:682.046667pt;}
.y158{bottom:683.049333pt;}
.y14e{bottom:686.962667pt;}
.yb{bottom:690.520000pt;}
.y60{bottom:694.526667pt;}
.yc0{bottom:694.981333pt;}
.ybf{bottom:698.966667pt;}
.y157{bottom:704.962667pt;}
.y174{bottom:712.594667pt;}
.y31{bottom:714.042667pt;}
.ybd{bottom:714.198667pt;}
.ya{bottom:717.128000pt;}
.y14d{bottom:723.277333pt;}
.ybe{bottom:730.252000pt;}
.y5f{bottom:734.164000pt;}
.y173{bottom:734.509333pt;}
.y156{bottom:738.705333pt;}
.y9{bottom:739.041333pt;}
.ybc{bottom:743.186667pt;}
.ybb{bottom:747.172000pt;}
.y5d{bottom:750.057333pt;}
.y172{bottom:756.422667pt;}
.y155{bottom:760.618667pt;}
.y8{bottom:760.954667pt;}
.yb9{bottom:762.402667pt;}
.y5e{bottom:766.109333pt;}
.y30{bottom:771.404000pt;}
.y14c{bottom:774.193333pt;}
.yba{bottom:778.456000pt;}
.y86{bottom:778.730667pt;}
.y5c{bottom:779.044000pt;}
.y154{bottom:782.533333pt;}
.y7{bottom:782.868000pt;}
.y5b{bottom:783.029333pt;}
.y171{bottom:790.290667pt;}
.yb8{bottom:791.390667pt;}
.yb7{bottom:795.376000pt;}
.y14b{bottom:796.106667pt;}
.y85{bottom:800.644000pt;}
.y5a{bottom:810.814667pt;}
.y6{bottom:812.054667pt;}
.ydf{bottom:813.105333pt;}
.y153{bottom:816.276000pt;}
.y14a{bottom:818.021333pt;}
.y84{bottom:822.557333pt;}
.y170{bottom:824.160000pt;}
.yb6{bottom:826.654667pt;}
.y2f{bottom:828.766667pt;}
.yde{bottom:831.170667pt;}
.y152{bottom:838.189333pt;}
.y149{bottom:839.934667pt;}
.y5{bottom:841.313333pt;}
.y16f{bottom:846.073333pt;}
.yb5{bottom:848.568000pt;}
.y82{bottom:852.737333pt;}
.yd6{bottom:857.100000pt;}
.y59{bottom:858.824000pt;}
.y151{bottom:860.102667pt;}
.y4{bottom:861.832000pt;}
.y148{bottom:861.848000pt;}
.y83{bottom:864.525333pt;}
.y2e{bottom:868.404000pt;}
.yb3{bottom:879.858667pt;}
.y16e{bottom:879.941333pt;}
.y81{bottom:882.921333pt;}
.y147{bottom:883.761333pt;}
.y58{bottom:887.441333pt;}
.y55{bottom:891.432000pt;}
.yb4{bottom:892.260000pt;}
.y150{bottom:893.845333pt;}
.yb0{bottom:895.910667pt;}
.y53{bottom:899.750667pt;}
.y2d{bottom:904.389333pt;}
.y2c{bottom:904.445333pt;}
.y57{bottom:905.437333pt;}
.y146{bottom:905.674667pt;}
.y80{bottom:905.978667pt;}
.y2b{bottom:908.041333pt;}
.yb2{bottom:908.845333pt;}
.y56{bottom:910.568000pt;}
.yb1{bottom:912.830667pt;}
.y16d{bottom:913.810667pt;}
.y54{bottom:915.342667pt;}
.y14f{bottom:915.758667pt;}
.y145{bottom:927.588000pt;}
.y7f{bottom:927.892000pt;}
.yab{bottom:928.062667pt;}
.y3{bottom:928.630667pt;}
.yaf{bottom:934.137333pt;}
.y16c{bottom:935.724000pt;}
.yad{bottom:940.464000pt;}
.yae{bottom:940.520000pt;}
.yac{bottom:944.116000pt;}
.y52{bottom:946.349333pt;}
.y2a{bottom:947.678667pt;}
.y144{bottom:949.501333pt;}
.yaa{bottom:957.050667pt;}
.y7d{bottom:960.178667pt;}
.ya9{bottom:961.036000pt;}
.y2{bottom:968.913333pt;}
.y29{bottom:969.592000pt;}
.y143{bottom:971.416000pt;}
.y7e{bottom:971.965333pt;}
.y7c{bottom:990.361333pt;}
.y28{bottom:991.506667pt;}
.y50{bottom:994.676000pt;}
.y51{bottom:1001.789333pt;}
.y4d{bottom:1006.920000pt;}
.y142{bottom:1007.729333pt;}
.ya8{bottom:1008.404000pt;}
.y1{bottom:1009.196000pt;}
.y27{bottom:1013.420000pt;}
.y4f{bottom:1017.198667pt;}
.y4e{bottom:1019.854667pt;}
.ya7{bottom:1019.918667pt;}
.y26{bottom:1066.022667pt;}
.hf{height:2.125355pt;}
.h21{height:6.934858pt;}
.h35{height:9.315235pt;}
.h3a{height:13.757551pt;}
.h36{height:13.758863pt;}
.h19{height:23.761525pt;}
.h4{height:31.880400pt;}
.h2b{height:37.003667pt;}
.h8{height:37.193707pt;}
.h38{height:37.473109pt;}
.h3b{height:37.478443pt;}
.ha{height:38.043849pt;}
.h32{height:38.907733pt;}
.h14{height:38.913067pt;}
.h7{height:39.850400pt;}
.h6{height:40.727307pt;}
.h3c{height:41.658217pt;}
.h5{height:43.636400pt;}
.h1f{height:47.782858pt;}
.h16{height:52.989733pt;}
.h13{height:52.995067pt;}
.hb{height:55.901733pt;}
.h1a{height:55.907067pt;}
.h9{height:57.384800pt;}
.h37{height:57.526334pt;}
.h1b{height:58.020400pt;}
.h24{height:58.239067pt;}
.hd{height:58.244400pt;}
.h25{height:60.184400pt;}
.h30{height:60.189733pt;}
.h17{height:60.385109pt;}
.h20{height:62.166858pt;}
.h2d{height:62.365355pt;}
.h29{height:62.390858pt;}
.h2e{height:63.700400pt;}
.h18{height:64.159067pt;}
.h1e{height:67.379067pt;}
.h3{height:67.621067pt;}
.h15{height:68.735067pt;}
.h11{height:70.621733pt;}
.hc{height:74.568400pt;}
.h23{height:74.573733pt;}
.h26{height:74.792400pt;}
.h31{height:76.968021pt;}
.h2c{height:76.973355pt;}
.h10{height:79.645733pt;}
.h2{height:82.650000pt;}
.h39{height:82.888021pt;}
.h33{height:82.893355pt;}
.h1d{height:83.545733pt;}
.h22{height:87.446334pt;}
.h2a{height:92.355067pt;}
.h12{height:92.879067pt;}
.h1c{height:95.267067pt;}
.h28{height:102.274688pt;}
.h2f{height:102.280021pt;}
.h27{height:106.963067pt;}
.he{height:112.312021pt;}
.h34{height:170.929680pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:377.948160pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xda{left:39.177345pt;}
.xe9{left:40.222609pt;}
.xd6{left:41.206836pt;}
.xfd{left:42.125472pt;}
.xd7{left:43.175316pt;}
.xd5{left:45.931200pt;}
.xd4{left:48.227760pt;}
.xdb{left:51.766431pt;}
.xdc{left:64.483796pt;}
.xdd{left:77.201161pt;}
.xde{left:89.918526pt;}
.xe{left:94.488000pt;}
.xfc{left:99.850667pt;}
.x36{left:102.517333pt;}
.xe5{left:107.517333pt;}
.x4c{left:109.125333pt;}
.xce{left:110.881333pt;}
.x3c{left:112.265333pt;}
.xdf{left:115.353256pt;}
.x4d{left:117.812000pt;}
.x9f{left:120.178667pt;}
.x9e{left:121.224000pt;}
.xfa{left:122.186667pt;}
.x4e{left:123.525333pt;}
.x5{left:125.798667pt;}
.x83{left:126.766667pt;}
.x4f{left:128.777333pt;}
.xd{left:130.852000pt;}
.x3{left:132.360000pt;}
.xea{left:133.896000pt;}
.xc2{left:136.241333pt;}
.x7b{left:137.805333pt;}
.x2{left:139.040000pt;}
.xcf{left:140.552000pt;}
.x87{left:143.562667pt;}
.xeb{left:145.270667pt;}
.xa0{left:146.442667pt;}
.x65{left:148.066667pt;}
.xc4{left:149.222667pt;}
.x1{left:150.318667pt;}
.x7c{left:153.150667pt;}
.xe1{left:154.340000pt;}
.x8c{left:155.552000pt;}
.xa1{left:158.485333pt;}
.x7d{left:161.464000pt;}
.x50{left:163.705333pt;}
.x51{left:167.858667pt;}
.xe0{left:168.978916pt;}
.xec{left:170.844000pt;}
.xe2{left:172.214667pt;}
.xc5{left:175.022667pt;}
.x2c{left:176.600000pt;}
.x108{left:181.493333pt;}
.xf6{left:184.762667pt;}
.x48{left:185.966667pt;}
.x105{left:187.524000pt;}
.x2d{left:188.642667pt;}
.x7e{left:190.305333pt;}
.x66{left:194.674667pt;}
.xe6{left:197.370667pt;}
.x41{left:201.418667pt;}
.x4{left:206.169333pt;}
.x70{left:208.005333pt;}
.xe8{left:209.997333pt;}
.x6d{left:211.222667pt;}
.x47{left:213.266667pt;}
.x46{left:214.312000pt;}
.x52{left:215.316000pt;}
.x67{left:216.993333pt;}
.x45{left:218.260000pt;}
.xe3{left:220.437333pt;}
.xed{left:223.313333pt;}
.x53{left:226.473333pt;}
.xfe{left:227.972000pt;}
.x4a{left:230.613333pt;}
.x49{left:231.658667pt;}
.xff{left:233.741333pt;}
.x7a{left:234.681333pt;}
.x30{left:236.461333pt;}
.x85{left:238.946667pt;}
.x75{left:242.706667pt;}
.x7f{left:244.416000pt;}
.x6{left:246.106667pt;}
.xee{left:247.536000pt;}
.x68{left:251.433333pt;}
.x74{left:252.958667pt;}
.x4b{left:254.316000pt;}
.xef{left:255.469333pt;}
.xe4{left:258.961333pt;}
.x89{left:260.806667pt;}
.x3d{left:262.393333pt;}
.x3f{left:265.465333pt;}
.x2e{left:266.453333pt;}
.x3e{left:267.590667pt;}
.xe7{left:272.565333pt;}
.x54{left:277.582667pt;}
.x9{left:279.032000pt;}
.x8d{left:280.581333pt;}
.xf7{left:281.813333pt;}
.xa{left:282.790667pt;}
.x80{left:283.868000pt;}
.x8{left:285.941333pt;}
.x37{left:288.856000pt;}
.x81{left:291.248000pt;}
.xc3{left:292.577333pt;}
.x6e{left:294.752000pt;}
.xf0{left:296.192000pt;}
.x42{left:297.812000pt;}
.x100{left:298.830667pt;}
.x31{left:301.549333pt;}
.x8a{left:302.797333pt;}
.xb{left:304.560000pt;}
.xac{left:305.985333pt;}
.x55{left:307.154667pt;}
.x2f{left:308.624000pt;}
.x3a{left:312.077333pt;}
.x82{left:314.409333pt;}
.x43{left:316.261333pt;}
.x8e{left:317.474667pt;}
.xad{left:318.890667pt;}
.x35{left:319.998667pt;}
.x33{left:321.593333pt;}
.x71{left:323.242667pt;}
.x1f{left:325.088000pt;}
.x38{left:327.004000pt;}
.x86{left:328.800000pt;}
.x32{left:330.313333pt;}
.x40{left:331.390667pt;}
.xf1{left:333.914667pt;}
.x93{left:337.236000pt;}
.xa4{left:341.864000pt;}
.xa6{left:344.426667pt;}
.xa5{left:345.472000pt;}
.x56{left:347.334667pt;}
.xf8{left:349.441333pt;}
.x94{left:350.973333pt;}
.x7{left:352.068000pt;}
.x57{left:353.048000pt;}
.x34{left:354.969333pt;}
.x20{left:356.513333pt;}
.x101{left:360.080000pt;}
.x39{left:361.045333pt;}
.x73{left:363.545333pt;}
.x8b{left:365.469333pt;}
.x64{left:366.376000pt;}
.xc{left:367.833333pt;}
.x21{left:369.066667pt;}
.xa7{left:370.690667pt;}
.x99{left:377.441333pt;}
.x2b{left:380.486667pt;}
.x72{left:383.274667pt;}
.x58{left:385.857333pt;}
.x88{left:390.714667pt;}
.x84{left:394.256000pt;}
.x9a{left:395.873333pt;}
.x44{left:399.973333pt;}
.xc6{left:410.036000pt;}
.x59{left:411.662667pt;}
.x9b{left:412.781333pt;}
.x8f{left:414.261333pt;}
.x91{left:416.824000pt;}
.x90{left:417.869333pt;}
.x9c{left:419.420000pt;}
.xa2{left:420.905333pt;}
.x102{left:426.221333pt;}
.xf9{left:432.824000pt;}
.x6f{left:439.712000pt;}
.x92{left:443.088000pt;}
.x5a{left:444.649333pt;}
.xa3{left:446.125333pt;}
.xf2{left:447.305333pt;}
.x22{left:449.821333pt;}
.xbc{left:451.178667pt;}
.x5b{left:457.420000pt;}
.x23{left:459.078667pt;}
.xbd{left:464.988000pt;}
.xbe{left:470.758667pt;}
.xa8{left:472.216000pt;}
.x95{left:475.252000pt;}
.xc7{left:477.381333pt;}
.x5c{left:480.233333pt;}
.xbf{left:481.781333pt;}
.xf3{left:485.038667pt;}
.x5d{left:486.697333pt;}
.xd8{left:489.221333pt;}
.xca{left:491.825333pt;}
.x5e{left:494.042667pt;}
.x5f{left:500.508000pt;}
.xc0{left:502.188000pt;}
.x24{left:505.089333pt;}
.x60{left:507.853333pt;}
.xcb{left:511.856000pt;}
.xd9{left:514.930667pt;}
.xc8{left:518.098667pt;}
.xae{left:519.304000pt;}
.xf{left:523.892000pt;}
.xaf{left:524.949333pt;}
.x61{left:526.438667pt;}
.x96{left:529.998667pt;}
.x10{left:532.256000pt;}
.x97{left:533.606667pt;}
.xaa{left:535.598667pt;}
.xa9{left:536.644000pt;}
.x11{left:540.448000pt;}
.x12{left:548.810667pt;}
.xc9{left:550.730667pt;}
.x9d{left:551.756000pt;}
.xb0{left:555.102667pt;}
.x13{left:557.002667pt;}
.x98{left:558.826667pt;}
.xab{left:561.862667pt;}
.x14{left:565.366667pt;}
.x103{left:567.121333pt;}
.xb5{left:568.796000pt;}
.xcc{left:572.173333pt;}
.x15{left:573.558667pt;}
.xcd{left:576.214667pt;}
.xb1{left:577.712000pt;}
.xb6{left:579.592000pt;}
.x16{left:581.921333pt;}
.xb2{left:584.176000pt;}
.xb7{left:585.136000pt;}
.x17{left:590.113333pt;}
.xb3{left:591.434667pt;}
.x18{left:598.477333pt;}
.xc1{left:599.704000pt;}
.x25{left:601.600000pt;}
.xb8{left:604.372000pt;}
.x19{left:606.669333pt;}
.x109{left:608.270667pt;}
.x26{left:609.964000pt;}
.x104{left:611.626667pt;}
.xd0{left:613.100000pt;}
.x1a{left:615.032000pt;}
.x27{left:618.460000pt;}
.xf5{left:621.373333pt;}
.x1b{left:623.224000pt;}
.xb9{left:626.626667pt;}
.x1c{left:631.588000pt;}
.xba{left:633.090667pt;}
.x28{left:635.186667pt;}
.xf4{left:636.336000pt;}
.x1d{left:639.780000pt;}
.x76{left:641.553333pt;}
.x29{left:643.682667pt;}
.xd1{left:646.657333pt;}
.x1e{left:648.142667pt;}
.xb4{left:649.974667pt;}
.x69{left:654.881333pt;}
.x106{left:656.070667pt;}
.x77{left:657.761333pt;}
.x2a{left:660.409333pt;}
.x78{left:663.305333pt;}
.xd2{left:666.164000pt;}
.x62{left:668.317333pt;}
.x6a{left:671.609333pt;}
.x107{left:676.100000pt;}
.xfb{left:679.182667pt;}
.x6b{left:680.490667pt;}
.x3b{left:682.328000pt;}
.x63{left:686.970667pt;}
.xd3{left:688.517333pt;}
.x79{left:691.730667pt;}
.xbb{left:693.540000pt;}
.x6c{left:697.218667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  