
    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_aee70c298c7664e41c8b20c1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_47bfa723b1b883dfa26816c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_c5c12eebe07a093cafb64198.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_6f41853044684298b894a671.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.858000;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_9a3665f770e8944ebfff1f5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_05fd272f2bd3438b0a1382a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.270000;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_434c0dd3d9ea98d85afae643.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910562;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_1bbd086d71735cc7aa37add6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.696000;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_26cf3399b305713c89884cca.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906000;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;}
.m5{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);}
.m21{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);}
.m27{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m3{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);}
.m11{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m25{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);}
.mf{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);}
.m24{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);}
.m1d{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m18{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m16{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);}
.m22{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);}
.ma{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m10{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);}
.m1{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);}
.m14{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m17{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);}
.m1c{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);}
.md{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m4{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m12{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);}
.m1f{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,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);}
.m19{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m6{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m2{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);}
.me{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.758000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:1.219430px;}
.ls15{letter-spacing:7.944923px;}
.ls11{letter-spacing:15.924326px;}
.lsf{letter-spacing:16.354714px;}
.lsd{letter-spacing:17.502413px;}
.ls3{letter-spacing:17.574144px;}
.ls1a{letter-spacing:17.861069px;}
.ls7{letter-spacing:17.932800px;}
.lsa{letter-spacing:18.004531px;}
.ls5{letter-spacing:18.076262px;}
.ls2{letter-spacing:18.219725px;}
.ls17{letter-spacing:18.291456px;}
.ls13{letter-spacing:18.434918px;}
.ls18{letter-spacing:18.506650px;}
.ls14{letter-spacing:19.582618px;}
.ls4{letter-spacing:20.802048px;}
.ls8{letter-spacing:22.523597px;}
.lsb{letter-spacing:22.667059px;}
.lse{letter-spacing:22.738790px;}
.ls10{letter-spacing:23.097446px;}
.ls16{letter-spacing:23.599565px;}
.ls12{letter-spacing:23.814758px;}
.ls9{letter-spacing:32.565965px;}
.ls19{letter-spacing:33.570202px;}
.ls6{letter-spacing:35.148288px;}
.ls1{letter-spacing:35.865600px;}
.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;}
}
.ws3{word-spacing:-43.038600px;}
.ws23{word-spacing:-40.671590px;}
.ws8c{word-spacing:-39.739085px;}
.ws0{word-spacing:-37.329373px;}
.ws1{word-spacing:-37.180650px;}
.ws39{word-spacing:-35.865600px;}
.ws21{word-spacing:-32.279040px;}
.ws2{word-spacing:-30.993750px;}
.ws3d{word-spacing:-25.823100px;}
.ws59{word-spacing:-23.025715px;}
.ws4{word-spacing:-21.519300px;}
.ws28{word-spacing:-21.375898px;}
.ws7b{word-spacing:-21.232435px;}
.ws46{word-spacing:-21.160704px;}
.ws4a{word-spacing:-21.088973px;}
.ws6e{word-spacing:-21.017242px;}
.wsd{word-spacing:-20.873779px;}
.ws5b{word-spacing:-20.730317px;}
.ws36{word-spacing:-20.515123px;}
.ws73{word-spacing:-20.299930px;}
.ws10{word-spacing:-19.941274px;}
.ws6d{word-spacing:-19.797811px;}
.ws76{word-spacing:-19.726080px;}
.ws69{word-spacing:-19.510886px;}
.wsf{word-spacing:-19.367424px;}
.ws54{word-spacing:-19.295693px;}
.ws75{word-spacing:-19.223962px;}
.ws4c{word-spacing:-19.152230px;}
.ws7c{word-spacing:-19.080499px;}
.ws7d{word-spacing:-19.008768px;}
.wsc{word-spacing:-18.937037px;}
.ws63{word-spacing:-18.865306px;}
.ws12{word-spacing:-18.793574px;}
.ws70{word-spacing:-18.721843px;}
.ws19{word-spacing:-18.578381px;}
.ws62{word-spacing:-18.506650px;}
.ws27{word-spacing:-18.434918px;}
.ws64{word-spacing:-18.363187px;}
.wsb{word-spacing:-18.291456px;}
.ws11{word-spacing:-18.219725px;}
.ws1a{word-spacing:-18.147994px;}
.ws8{word-spacing:-18.076262px;}
.ws15{word-spacing:-18.004531px;}
.wsa{word-spacing:-17.932800px;}
.ws26{word-spacing:-17.861069px;}
.ws1c{word-spacing:-17.789338px;}
.ws25{word-spacing:-17.717606px;}
.ws2d{word-spacing:-17.645875px;}
.ws7{word-spacing:-17.574144px;}
.ws33{word-spacing:-17.502413px;}
.ws9{word-spacing:-17.430682px;}
.ws4b{word-spacing:-17.358950px;}
.ws71{word-spacing:-17.287219px;}
.ws1f{word-spacing:-17.215488px;}
.ws51{word-spacing:-17.143757px;}
.ws44{word-spacing:-17.072026px;}
.ws65{word-spacing:-17.000294px;}
.ws72{word-spacing:-16.928563px;}
.ws43{word-spacing:-16.785101px;}
.ws47{word-spacing:-16.713370px;}
.ws40{word-spacing:-16.641638px;}
.ws68{word-spacing:-16.354714px;}
.ws78{word-spacing:-16.282982px;}
.ws1b{word-spacing:-16.211251px;}
.ws2b{word-spacing:-16.139520px;}
.ws4d{word-spacing:-16.067789px;}
.ws42{word-spacing:-15.996058px;}
.ws4f{word-spacing:-15.924326px;}
.ws35{word-spacing:-15.780864px;}
.ws58{word-spacing:-15.777995px;}
.ws48{word-spacing:-15.709133px;}
.ws66{word-spacing:-15.565670px;}
.ws50{word-spacing:-15.493939px;}
.ws3e{word-spacing:-15.422208px;}
.ws4e{word-spacing:-15.350477px;}
.ws5f{word-spacing:-15.207014px;}
.ws3b{word-spacing:-15.135283px;}
.ws29{word-spacing:-15.063552px;}
.ws31{word-spacing:-14.991821px;}
.ws2a{word-spacing:-14.920090px;}
.ws77{word-spacing:-14.776627px;}
.wse{word-spacing:-14.704896px;}
.ws61{word-spacing:-14.561434px;}
.ws3a{word-spacing:-14.202778px;}
.ws2e{word-spacing:-14.131046px;}
.ws49{word-spacing:-14.059315px;}
.ws5c{word-spacing:-13.987584px;}
.ws9a{word-spacing:-13.772390px;}
.ws6c{word-spacing:-13.700659px;}
.ws38{word-spacing:-13.628928px;}
.ws2f{word-spacing:-13.413734px;}
.ws56{word-spacing:-13.342003px;}
.ws13{word-spacing:-13.198541px;}
.ws6b{word-spacing:-13.126810px;}
.ws41{word-spacing:-13.055078px;}
.ws16{word-spacing:-12.983347px;}
.ws14{word-spacing:-12.911616px;}
.ws6{word-spacing:-12.839885px;}
.ws79{word-spacing:-12.768154px;}
.ws30{word-spacing:-12.552960px;}
.ws52{word-spacing:-12.481229px;}
.ws1e{word-spacing:-12.337766px;}
.ws90{word-spacing:-12.266035px;}
.ws18{word-spacing:-12.194304px;}
.ws87{word-spacing:-12.122573px;}
.ws86{word-spacing:-12.050842px;}
.ws5e{word-spacing:-11.979110px;}
.ws5{word-spacing:-11.955150px;}
.ws2c{word-spacing:-11.907379px;}
.ws94{word-spacing:-11.692186px;}
.ws34{word-spacing:-11.620454px;}
.ws3c{word-spacing:-11.261798px;}
.ws37{word-spacing:-11.046605px;}
.ws89{word-spacing:-10.759680px;}
.ws8e{word-spacing:-10.114099px;}
.ws74{word-spacing:-10.042368px;}
.ws8a{word-spacing:-9.611981px;}
.ws91{word-spacing:-9.540250px;}
.ws3f{word-spacing:-9.396787px;}
.ws80{word-spacing:-9.325056px;}
.ws95{word-spacing:-8.607744px;}
.ws45{word-spacing:-8.320819px;}
.ws5a{word-spacing:-7.818701px;}
.ws6a{word-spacing:-7.746970px;}
.ws17{word-spacing:-7.029658px;}
.ws32{word-spacing:-6.742733px;}
.ws7f{word-spacing:-6.671002px;}
.ws7e{word-spacing:-6.599270px;}
.ws8b{word-spacing:-6.240614px;}
.ws6f{word-spacing:-4.662528px;}
.ws97{word-spacing:-3.227904px;}
.ws96{word-spacing:-3.156173px;}
.ws98{word-spacing:-3.084442px;}
.ws83{word-spacing:-2.510592px;}
.ws82{word-spacing:-2.438861px;}
.ws92{word-spacing:-2.367130px;}
.ws67{word-spacing:-0.071731px;}
.ws1d{word-spacing:0.000000px;}
.ws53{word-spacing:5.953690px;}
.ws8d{word-spacing:10.185830px;}
.ws8f{word-spacing:10.401024px;}
.ws81{word-spacing:10.472755px;}
.ws99{word-spacing:12.768154px;}
.ws7a{word-spacing:12.911616px;}
.ws84{word-spacing:13.342003px;}
.ws93{word-spacing:13.485466px;}
.ws5d{word-spacing:17.861069px;}
.ws88{word-spacing:19.080499px;}
.ws22{word-spacing:33.283277px;}
.ws85{word-spacing:34.359245px;}
.ws20{word-spacing:35.865600px;}
.ws55{word-spacing:37.587149px;}
.ws60{word-spacing:43.038600px;}
.ws24{word-spacing:51.646200px;}
.ws57{word-spacing:472.519387px;}
._24{margin-left:-38.734848px;}
._21{margin-left:-37.658880px;}
._20{margin-left:-35.865600px;}
._25{margin-left:-17.932800px;}
._1{margin-left:-8.923356px;}
._4{margin-left:-6.961491px;}
._3{margin-left:-5.595018px;}
._2{margin-left:-3.719250px;}
._0{margin-left:-2.230839px;}
._6{margin-left:-1.014996px;}
._5{width:1.721544px;}
._5b{width:2.775979px;}
._5c{width:4.662528px;}
._5f{width:5.810227px;}
._5e{width:6.957926px;}
._22{width:7.962163px;}
._60{width:9.611981px;}
._3a{width:11.663498px;}
._39{width:12.796846px;}
._57{width:13.879977px;}
._5d{width:15.020496px;}
._2b{width:16.150284px;}
._14{width:17.932800px;}
._a{width:18.958552px;}
._2d{width:20.859406px;}
._b{width:22.297640px;}
._7{width:24.148311px;}
._8{width:25.400017px;}
._9{width:27.336730px;}
._36{width:28.502389px;}
._33{width:29.624956px;}
._37{width:30.636394px;}
._f{width:32.088949px;}
._59{width:33.742351px;}
._2c{width:35.528459px;}
._c{width:36.758633px;}
._5a{width:38.239906px;}
._29{width:39.452160px;}
._38{width:41.761907px;}
._10{width:43.268267px;}
._30{width:45.986876px;}
._2e{width:47.331820px;}
._34{width:49.074898px;}
._2f{width:50.502364px;}
._32{width:51.933389px;}
._17{width:53.027284px;}
._15{width:55.749491px;}
._e{width:58.733476px;}
._41{width:63.111979px;}
._1c{width:67.083020px;}
._18{width:71.731200px;}
._1f{width:72.735437px;}
._13{width:75.317760px;}
._35{width:82.992983px;}
._1d{width:86.077440px;}
._1e{width:93.365326px;}
._31{width:103.292400px;}
._16{width:129.690010px;}
._4e{width:164.266413px;}
._4d{width:174.743002px;}
._54{width:185.697362px;}
._48{width:293.690756px;}
._4f{width:295.662101px;}
._3d{width:315.392479px;}
._56{width:317.200806px;}
._45{width:369.809892px;}
._55{width:375.074491px;}
._42{width:380.673908px;}
._53{width:414.817517px;}
._40{width:448.095051px;}
._52{width:456.913207px;}
._44{width:462.673918px;}
._43{width:520.547603px;}
._3c{width:539.796756px;}
._4c{width:545.098163px;}
._51{width:548.569322px;}
._4b{width:602.624699px;}
._47{width:604.675871px;}
._50{width:606.443006px;}
._3b{width:633.413741px;}
._4a{width:648.475584px;}
._46{width:662.549556px;}
._3f{width:683.565845px;}
._49{width:706.349269px;}
._3e{width:741.439529px;}
._58{width:1159.920470px;}
._d{width:1183.830470px;}
._1b{width:1590.517421px;}
._26{width:1894.851379px;}
._23{width:2082.729736px;}
._27{width:2310.185771px;}
._19{width:2323.735795px;}
._1a{width:2345.395046px;}
._11{width:2358.313812px;}
._12{width:2371.437034px;}
._2a{width:2381.920561px;}
._28{width:2415.619882px;}
.fc4{color:rgb(45,178,159);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(47,50,85);}
.fc1{color:rgb(64,70,147);}
.fc0{color:rgb(42,125,191);}
.fs3{font-size:47.820600px;}
.fs6{font-size:52.602600px;}
.fs7{font-size:63.111979px;}
.fs4{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs5{font-size:103.292400px;}
.fs1{font-size:123.975000px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y1b{bottom:56.983500px;}
.yf4{bottom:101.815500px;}
.y138{bottom:105.154500px;}
.y196{bottom:105.835500px;}
.y91{bottom:111.595500px;}
.y7a{bottom:111.864000px;}
.y11a{bottom:113.845500px;}
.y15b{bottom:115.818000px;}
.y5f{bottom:123.259500px;}
.y1bf{bottom:123.484500px;}
.y137{bottom:126.823500px;}
.y195{bottom:127.504500px;}
.y176{bottom:130.254000px;}
.ya8{bottom:131.239500px;}
.y90{bottom:133.264500px;}
.y79{bottom:133.533000px;}
.yf3{bottom:135.096000px;}
.y119{bottom:135.514500px;}
.y15a{bottom:137.485500px;}
.yc9{bottom:139.249500px;}
.y169{bottom:143.055000px;}
.y5e{bottom:144.928500px;}
.y136{bottom:148.492500px;}
.y1be{bottom:151.920000px;}
.ya7{bottom:152.908500px;}
.y8f{bottom:154.933500px;}
.y78{bottom:155.202000px;}
.y194{bottom:156.645000px;}
.y118{bottom:157.182000px;}
.y159{bottom:159.154500px;}
.yc8{bottom:160.918500px;}
.y168{bottom:164.724000px;}
.y135{bottom:170.161500px;}
.y175{bottom:170.482500px;}
.yf2{bottom:170.598000px;}
.y1bd{bottom:173.589000px;}
.y8e{bottom:176.602500px;}
.y77{bottom:176.871000px;}
.y193{bottom:178.314000px;}
.y117{bottom:178.851000px;}
.y158{bottom:180.823500px;}
.yc7{bottom:182.587500px;}
.y5d{bottom:185.157000px;}
.y167{bottom:186.393000px;}
.ya6{bottom:189.522000px;}
.y134{bottom:191.830500px;}
.y1bc{bottom:195.258000px;}
.y8d{bottom:198.271500px;}
.y76{bottom:198.540000px;}
.y192{bottom:199.981500px;}
.y116{bottom:200.520000px;}
.y157{bottom:202.492500px;}
.yc6{bottom:204.256500px;}
.yf1{bottom:206.098500px;}
.ya5{bottom:211.189500px;}
.y133{bottom:213.499500px;}
.y174{bottom:215.943000px;}
.y1bb{bottom:216.927000px;}
.y16c{bottom:217.305000px;}
.y8c{bottom:219.939000px;}
.y75{bottom:220.209000px;}
.y156{bottom:224.161500px;}
.yf0{bottom:227.767500px;}
.y191{bottom:229.123500px;}
.y5c{bottom:230.617500px;}
.y132{bottom:235.167000px;}
.y16b{bottom:238.974000px;}
.y8b{bottom:241.608000px;}
.y115{bottom:241.615500px;}
.y74{bottom:241.876500px;}
.yc5{bottom:244.485000px;}
.y1ba{bottom:245.362500px;}
.y155{bottom:245.830500px;}
.y190{bottom:250.791000px;}
.ya4{bottom:252.286500px;}
.y131{bottom:256.836000px;}
.y16a{bottom:260.643000px;}
.yef{bottom:263.269500px;}
.y8a{bottom:263.277000px;}
.y114{bottom:263.284500px;}
.y73{bottom:263.545500px;}
.y1b9{bottom:267.031500px;}
.y154{bottom:267.498000px;}
.ya3{bottom:273.954000px;}
.y173{bottom:277.063500px;}
.y130{bottom:278.505000px;}
.y18f{bottom:279.933000px;}
.yee{bottom:284.938500px;}
.y89{bottom:284.946000px;}
.y113{bottom:284.953500px;}
.y72{bottom:285.214500px;}
.y153{bottom:289.167000px;}
.y5b{bottom:291.738000px;}
.y140{bottom:293.977500px;}
.yc4{bottom:294.397500px;}
.y1b8{bottom:295.467000px;}
.ya2{bottom:295.623000px;}
.y172{bottom:298.732500px;}
.y12f{bottom:300.174000px;}
.y18e{bottom:301.600500px;}
.y88{bottom:306.615000px;}
.y112{bottom:306.622500px;}
.y152{bottom:310.836000px;}
.y5a{bottom:313.407000px;}
.y13f{bottom:315.646500px;}
.yc3{bottom:316.066500px;}
.y1b7{bottom:317.136000px;}
.ya1{bottom:317.292000px;}
.yed{bottom:318.217500px;}
.y171{bottom:320.400000px;}
.y12e{bottom:321.843000px;}
.y18d{bottom:323.269500px;}
.y71{bottom:325.443000px;}
.y87{bottom:328.284000px;}
.y111{bottom:328.291500px;}
.y151{bottom:332.505000px;}
.y59{bottom:335.076000px;}
.y13e{bottom:337.315500px;}
.yc2{bottom:337.735500px;}
.ya0{bottom:338.961000px;}
.yec{bottom:339.886500px;}
.y170{bottom:342.069000px;}
.ya{bottom:342.307500px;}
.y12d{bottom:343.512000px;}
.y1b6{bottom:345.571500px;}
.y86{bottom:349.951500px;}
.y110{bottom:349.960500px;}
.y18c{bottom:352.410000px;}
.y150{bottom:354.174000px;}
.y58{bottom:356.743500px;}
.y13d{bottom:358.983000px;}
.yc1{bottom:359.404500px;}
.y9f{bottom:360.630000px;}
.yeb{bottom:361.555500px;}
.y16f{bottom:363.738000px;}
.y12c{bottom:365.179500px;}
.y1b5{bottom:367.240500px;}
.y9{bottom:369.205500px;}
.y85{bottom:371.620500px;}
.y10f{bottom:371.628000px;}
.y18b{bottom:374.079000px;}
.y14f{bottom:375.843000px;}
.y57{bottom:378.412500px;}
.y70{bottom:380.587500px;}
.y13c{bottom:380.652000px;}
.yc0{bottom:381.073500px;}
.y9e{bottom:382.299000px;}
.yea{bottom:383.224500px;}
.y16e{bottom:385.407000px;}
.y12b{bottom:386.848500px;}
.y84{bottom:393.289500px;}
.y10e{bottom:393.297000px;}
.y1b4{bottom:395.676000px;}
.y18a{bottom:395.748000px;}
.y8{bottom:396.105000px;}
.y14e{bottom:397.510500px;}
.y56{bottom:400.081500px;}
.y6f{bottom:402.255000px;}
.y13b{bottom:402.321000px;}
.ybf{bottom:402.742500px;}
.y9d{bottom:403.966500px;}
.y16d{bottom:407.076000px;}
.y12a{bottom:408.517500px;}
.y83{bottom:414.958500px;}
.y10d{bottom:414.966000px;}
.y1b3{bottom:417.345000px;}
.y14d{bottom:419.179500px;}
.y55{bottom:421.750500px;}
.ye9{bottom:423.453000px;}
.y6e{bottom:423.924000px;}
.y13a{bottom:423.990000px;}
.ybe{bottom:424.410000px;}
.y189{bottom:424.888500px;}
.y9c{bottom:425.635500px;}
.y129{bottom:430.186500px;}
.y10c{bottom:436.635000px;}
.y14c{bottom:440.848500px;}
.y54{bottom:443.419500px;}
.y6d{bottom:445.593000px;}
.y139{bottom:445.659000px;}
.y1b2{bottom:445.780500px;}
.y188{bottom:446.557500px;}
.y9b{bottom:447.304500px;}
.y7{bottom:449.904000px;}
.y128{bottom:451.855500px;}
.y82{bottom:455.187000px;}
.y10b{bottom:458.304000px;}
.y14b{bottom:462.517500px;}
.ybd{bottom:464.640000px;}
.y53{bottom:465.088500px;}
.y6c{bottom:467.262000px;}
.y1b1{bottom:467.449500px;}
.y187{bottom:468.226500px;}
.y9a{bottom:468.973500px;}
.y127{bottom:473.524500px;}
.ye8{bottom:477.996000px;}
.y10a{bottom:479.971500px;}
.y14a{bottom:484.186500px;}
.y52{bottom:486.756000px;}
.y6b{bottom:488.931000px;}
.y186{bottom:489.895500px;}
.y99{bottom:490.642500px;}
.y126{bottom:495.192000px;}
.y1b0{bottom:495.885000px;}
.y6{bottom:498.063000px;}
.ye7{bottom:499.665000px;}
.y109{bottom:501.640500px;}
.y149{bottom:505.855500px;}
.y51{bottom:508.425000px;}
.y34{bottom:509.172000px;}
.y6a{bottom:510.600000px;}
.y125{bottom:516.861000px;}
.y1af{bottom:517.554000px;}
.y185{bottom:519.036000px;}
.ybc{bottom:519.783000px;}
.ye6{bottom:521.334000px;}
.y108{bottom:523.309500px;}
.y148{bottom:527.523000px;}
.y50{bottom:530.094000px;}
.y98{bottom:530.871000px;}
.y69{bottom:532.267500px;}
.y124{bottom:538.530000px;}
.y1ae{bottom:539.223000px;}
.y81{bottom:539.848500px;}
.y184{bottom:540.705000px;}
.ybb{bottom:541.452000px;}
.ye5{bottom:543.003000px;}
.y107{bottom:544.978500px;}
.y5{bottom:546.222000px;}
.y33{bottom:548.773500px;}
.y4f{bottom:549.073500px;}
.y147{bottom:549.192000px;}
.y4e{bottom:551.763000px;}
.y68{bottom:553.936500px;}
.y80{bottom:561.517500px;}
.y183{bottom:562.372500px;}
.yba{bottom:563.121000px;}
.ye4{bottom:564.672000px;}
.y106{bottom:566.647500px;}
.y1ad{bottom:567.658500px;}
.y32{bottom:570.442500px;}
.y146{bottom:570.861000px;}
.y4{bottom:573.120000px;}
.y4d{bottom:573.432000px;}
.y67{bottom:575.605500px;}
.y123{bottom:579.625500px;}
.y7f{bottom:583.185000px;}
.y182{bottom:584.041500px;}
.yb9{bottom:584.788500px;}
.ye3{bottom:586.339500px;}
.y105{bottom:588.316500px;}
.y1ac{bottom:589.327500px;}
.y97{bottom:591.991500px;}
.y145{bottom:592.530000px;}
.y4c{bottom:595.101000px;}
.y66{bottom:597.274500px;}
.y122{bottom:601.294500px;}
.y7e{bottom:604.854000px;}
.ye2{bottom:608.008500px;}
.y1ab{bottom:608.307000px;}
.y104{bottom:609.984000px;}
.y31{bottom:610.044000px;}
.y1aa{bottom:610.996500px;}
.y96{bottom:613.660500px;}
.y4b{bottom:616.768500px;}
.y65{bottom:618.943500px;}
.y121{bottom:622.963500px;}
.y181{bottom:624.271500px;}
.yb8{bottom:625.018500px;}
.y7d{bottom:626.523000px;}
.ye1{bottom:629.677500px;}
.y103{bottom:631.653000px;}
.y95{bottom:635.329500px;}
.y4a{bottom:638.437500px;}
.y1a9{bottom:639.432000px;}
.y64{bottom:640.611000px;}
.y120{bottom:644.632500px;}
.y144{bottom:646.851000px;}
.y7c{bottom:648.192000px;}
.y30{bottom:649.645500px;}
.ye0{bottom:651.346500px;}
.y102{bottom:653.322000px;}
.y94{bottom:656.998500px;}
.y163{bottom:657.019500px;}
.y49{bottom:660.106500px;}
.y1a8{bottom:661.101000px;}
.y63{bottom:662.280000px;}
.y11f{bottom:666.301500px;}
.y143{bottom:668.520000px;}
.ydf{bottom:673.015500px;}
.y93{bottom:678.667500px;}
.y162{bottom:678.688500px;}
.y48{bottom:681.775500px;}
.y1a7{bottom:682.770000px;}
.y62{bottom:683.949000px;}
.y180{bottom:685.392000px;}
.yb7{bottom:686.139000px;}
.y166{bottom:687.228000px;}
.y2f{bottom:689.247000px;}
.y142{bottom:690.189000px;}
.y101{bottom:693.552000px;}
.yde{bottom:694.683000px;}
.y3{bottom:696.139500px;}
.y92{bottom:700.336500px;}
.y161{bottom:700.357500px;}
.y47{bottom:703.444500px;}
.yb6{bottom:707.808000px;}
.y165{bottom:708.897000px;}
.y2e{bottom:710.916000px;}
.y1a6{bottom:711.205500px;}
.y141{bottom:711.858000px;}
.ydd{bottom:716.352000px;}
.y11e{bottom:720.622500px;}
.y20{bottom:722.004000px;}
.y160{bottom:722.025000px;}
.y46{bottom:725.113500px;}
.yb5{bottom:729.477000px;}
.y164{bottom:730.566000px;}
.y2d{bottom:732.585000px;}
.y1a5{bottom:732.874500px;}
.ydc{bottom:738.021000px;}
.y61{bottom:738.270000px;}
.y11d{bottom:742.291500px;}
.y1f{bottom:743.673000px;}
.y15f{bottom:743.694000px;}
.y45{bottom:746.781000px;}
.y100{bottom:748.695000px;}
.y17f{bottom:758.617500px;}
.ydb{bottom:759.690000px;}
.y60{bottom:759.939000px;}
.y2{bottom:760.347000px;}
.y1a4{bottom:761.310000px;}
.y11c{bottom:763.960500px;}
.y1e{bottom:765.342000px;}
.y44{bottom:768.450000px;}
.yff{bottom:770.362500px;}
.yb4{bottom:770.572500px;}
.y2c{bottom:772.186500px;}
.yda{bottom:781.359000px;}
.y1a3{bottom:782.979000px;}
.y11b{bottom:785.628000px;}
.y1d{bottom:787.011000px;}
.y1{bottom:788.128500px;}
.y43{bottom:790.119000px;}
.yfe{bottom:792.031500px;}
.y2b{bottom:793.855500px;}
.y17e{bottom:795.229500px;}
.y15e{bottom:798.015000px;}
.yb3{bottom:807.184500px;}
.y1c{bottom:808.680000px;}
.y1a2{bottom:811.414500px;}
.y42{bottom:811.788000px;}
.yfd{bottom:813.700500px;}
.y1cb{bottom:814.657500px;}
.y2a{bottom:815.524500px;}
.y15d{bottom:819.684000px;}
.yd9{bottom:821.587500px;}
.y1a{bottom:830.347500px;}
.y17d{bottom:831.843000px;}
.y1a1{bottom:833.083500px;}
.y41{bottom:833.457000px;}
.y1ca{bottom:836.326500px;}
.y29{bottom:837.192000px;}
.y15c{bottom:841.353000px;}
.yb2{bottom:843.798000px;}
.y19{bottom:852.016500px;}
.yfc{bottom:853.930500px;}
.y40{bottom:855.126000px;}
.y1c9{bottom:857.994000px;}
.y28{bottom:858.861000px;}
.y1a0{bottom:861.519000px;}
.yd8{bottom:872.905318px;}
.y17c{bottom:872.938500px;}
.y18{bottom:873.685500px;}
.y3f{bottom:876.793500px;}
.y27{bottom:880.530000px;}
.y19f{bottom:883.188000px;}
.yb1{bottom:884.893500px;}
.y1c8{bottom:887.136000px;}
.yd7{bottom:891.970571px;}
.y17{bottom:895.354500px;}
.y3e{bottom:898.462500px;}
.yb0{bottom:906.562500px;}
.y1c7{bottom:908.803500px;}
.yd6{bottom:911.035824px;}
.y19e{bottom:911.623500px;}
.y17b{bottom:914.034000px;}
.yfb{bottom:915.051000px;}
.y16{bottom:917.023500px;}
.y26{bottom:920.131500px;}
.yd5{bottom:930.101077px;}
.y19d{bottom:933.292500px;}
.yfa{bottom:936.720000px;}
.y1c6{bottom:937.944000px;}
.y15{bottom:938.692500px;}
.y3d{bottom:941.800500px;}
.yaf{bottom:947.658000px;}
.yd4{bottom:949.166330px;}
.y17a{bottom:950.647500px;}
.yf9{bottom:958.387500px;}
.y1c5{bottom:959.613000px;}
.y25{bottom:959.733000px;}
.y14{bottom:960.360000px;}
.y19c{bottom:961.728000px;}
.y3c{bottom:963.469500px;}
.yd3{bottom:968.230263px;}
.yae{bottom:969.327000px;}
.yf8{bottom:980.056500px;}
.y1c4{bottom:981.282000px;}
.y13{bottom:982.029000px;}
.y19b{bottom:983.397000px;}
.y3b{bottom:985.137000px;}
.y179{bottom:987.259500px;}
.yd2{bottom:987.295516px;}
.yad{bottom:990.996000px;}
.y24{bottom:999.334500px;}
.y12{bottom:1003.698000px;}
.y19a{bottom:1005.066000px;}
.yd1{bottom:1006.360769px;}
.y3a{bottom:1006.806000px;}
.y1c3{bottom:1010.422500px;}
.yf7{bottom:1020.286500px;}
.y23{bottom:1021.003500px;}
.y178{bottom:1023.873000px;}
.y11{bottom:1025.367000px;}
.yd0{bottom:1025.426022px;}
.yac{bottom:1027.608000px;}
.y39{bottom:1028.475000px;}
.y1c2{bottom:1032.091500px;}
.y199{bottom:1033.501500px;}
.y22{bottom:1042.672500px;}
.ycf{bottom:1044.491275px;}
.y10{bottom:1047.036000px;}
.yab{bottom:1049.277000px;}
.y38{bottom:1050.144000px;}
.y198{bottom:1055.170500px;}
.y177{bottom:1060.485000px;}
.y1c1{bottom:1061.232000px;}
.yce{bottom:1063.555208px;}
.yf{bottom:1068.705000px;}
.yaa{bottom:1070.946000px;}
.y37{bottom:1071.813000px;}
.yf6{bottom:1075.429500px;}
.y21{bottom:1082.274000px;}
.ycd{bottom:1082.620461px;}
.y1c0{bottom:1082.901000px;}
.y197{bottom:1083.606000px;}
.ye{bottom:1090.372500px;}
.ya9{bottom:1092.615000px;}
.y36{bottom:1093.482000px;}
.yf5{bottom:1097.098500px;}
.ycc{bottom:1101.685714px;}
.yd{bottom:1112.041500px;}
.y35{bottom:1115.149500px;}
.y7b{bottom:1133.710500px;}
.ycb{bottom:1136.475000px;}
.yc{bottom:1155.379500px;}
.yca{bottom:1158.144000px;}
.yb{bottom:1217.172000px;}
.h6{height:32.900573px;}
.hc{height:33.426739px;}
.ha{height:36.190589px;}
.he{height:43.421042px;}
.hd{height:43.799713px;}
.hb{height:48.848947px;}
.h10{height:49.207603px;}
.h7{height:49.351066px;}
.h8{height:49.781453px;}
.hf{height:51.112963px;}
.h5{height:59.221114px;}
.h4{height:59.737577px;}
.h11{height:59.750410px;}
.h9{height:71.684926px;}
.h3{height:86.038650px;}
.h2{height:103.213484px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x30{left:83.694000px;}
.x1{left:85.039500px;}
.x1f{left:87.774000px;}
.x10{left:90.564000px;}
.xf{left:92.841000px;}
.x7{left:93.978000px;}
.x33{left:94.992000px;}
.x5{left:96.793500px;}
.x32{left:98.857500px;}
.xe{left:104.874000px;}
.x18{left:106.707000px;}
.x35{left:108.693000px;}
.x6{left:111.378000px;}
.x27{left:112.827000px;}
.x16{left:113.881500px;}
.x2{left:116.125500px;}
.x23{left:117.963000px;}
.xb{left:123.424500px;}
.x25{left:124.759500px;}
.x17{left:128.344500px;}
.x3{left:130.149000px;}
.x50{left:131.380500px;}
.x39{left:132.474000px;}
.x1e{left:137.854500px;}
.x31{left:139.581000px;}
.x53{left:140.742000px;}
.x20{left:143.446500px;}
.x11{left:151.902000px;}
.x8{left:153.184500px;}
.x2b{left:160.641000px;}
.x54{left:177.342000px;}
.x55{left:189.657000px;}
.x26{left:200.077500px;}
.x19{left:207.696000px;}
.x2f{left:222.691500px;}
.x4d{left:232.306500px;}
.x36{left:234.661500px;}
.x44{left:245.373000px;}
.x38{left:267.505500px;}
.x28{left:281.836500px;}
.x24{left:287.427000px;}
.x1a{left:306.331500px;}
.x2c{left:307.444500px;}
.x4{left:330.145500px;}
.x37{left:333.946500px;}
.x34{left:350.409000px;}
.x56{left:360.964500px;}
.x4c{left:367.770000px;}
.x57{left:368.784000px;}
.x9{left:377.443500px;}
.x14{left:383.994000px;}
.xa{left:389.253000px;}
.x4b{left:400.609500px;}
.x29{left:408.732000px;}
.x49{left:410.251500px;}
.x1b{left:416.046000px;}
.x58{left:420.699000px;}
.x46{left:429.430500px;}
.x43{left:448.806000px;}
.xc{left:460.507500px;}
.x12{left:474.885000px;}
.x51{left:480.243000px;}
.x3d{left:485.209500px;}
.x41{left:490.912500px;}
.x45{left:495.526500px;}
.x4a{left:517.359000px;}
.x21{left:524.029500px;}
.x15{left:529.893000px;}
.x3e{left:534.831000px;}
.x13{left:554.694000px;}
.x3b{left:557.629500px;}
.xd{left:559.779000px;}
.x42{left:581.382000px;}
.x3f{left:583.786500px;}
.x2d{left:593.385000px;}
.x2a{left:596.569500px;}
.x4f{left:605.890500px;}
.x3a{left:617.992500px;}
.x1c{left:627.516000px;}
.x1d{left:657.238500px;}
.x48{left:664.038000px;}
.x22{left:672.406500px;}
.x52{left:685.459500px;}
.x3c{left:726.234000px;}
.x4e{left:727.351500px;}
.x40{left:729.280500px;}
.x2e{left:762.849000px;}
.x47{left:806.439000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.562667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:1.083938pt;}
.ls15{letter-spacing:7.062154pt;}
.ls11{letter-spacing:14.154957pt;}
.lsf{letter-spacing:14.537523pt;}
.lsd{letter-spacing:15.557700pt;}
.ls3{letter-spacing:15.621461pt;}
.ls1a{letter-spacing:15.876506pt;}
.ls7{letter-spacing:15.940267pt;}
.lsa{letter-spacing:16.004028pt;}
.ls5{letter-spacing:16.067789pt;}
.ls2{letter-spacing:16.195311pt;}
.ls17{letter-spacing:16.259072pt;}
.ls13{letter-spacing:16.386594pt;}
.ls18{letter-spacing:16.450355pt;}
.ls14{letter-spacing:17.406771pt;}
.ls4{letter-spacing:18.490709pt;}
.ls8{letter-spacing:20.020975pt;}
.lsb{letter-spacing:20.148497pt;}
.lse{letter-spacing:20.212258pt;}
.ls10{letter-spacing:20.531063pt;}
.ls16{letter-spacing:20.977391pt;}
.ls12{letter-spacing:21.168674pt;}
.ls9{letter-spacing:28.947524pt;}
.ls19{letter-spacing:29.840179pt;}
.ls6{letter-spacing:31.242923pt;}
.ls1{letter-spacing:31.880533pt;}
.ws3{word-spacing:-38.256533pt;}
.ws23{word-spacing:-36.152525pt;}
.ws8c{word-spacing:-35.323631pt;}
.ws0{word-spacing:-33.181665pt;}
.ws1{word-spacing:-33.049467pt;}
.ws39{word-spacing:-31.880533pt;}
.ws21{word-spacing:-28.692480pt;}
.ws2{word-spacing:-27.550000pt;}
.ws3d{word-spacing:-22.953867pt;}
.ws59{word-spacing:-20.467302pt;}
.ws4{word-spacing:-19.128267pt;}
.ws28{word-spacing:-19.000798pt;}
.ws7b{word-spacing:-18.873276pt;}
.ws46{word-spacing:-18.809515pt;}
.ws4a{word-spacing:-18.745754pt;}
.ws6e{word-spacing:-18.681993pt;}
.wsd{word-spacing:-18.554470pt;}
.ws5b{word-spacing:-18.426948pt;}
.ws36{word-spacing:-18.235665pt;}
.ws73{word-spacing:-18.044382pt;}
.ws10{word-spacing:-17.725577pt;}
.ws6d{word-spacing:-17.598054pt;}
.ws76{word-spacing:-17.534293pt;}
.ws69{word-spacing:-17.343010pt;}
.wsf{word-spacing:-17.215488pt;}
.ws54{word-spacing:-17.151727pt;}
.ws75{word-spacing:-17.087966pt;}
.ws4c{word-spacing:-17.024205pt;}
.ws7c{word-spacing:-16.960444pt;}
.ws7d{word-spacing:-16.896683pt;}
.wsc{word-spacing:-16.832922pt;}
.ws63{word-spacing:-16.769161pt;}
.ws12{word-spacing:-16.705399pt;}
.ws70{word-spacing:-16.641638pt;}
.ws19{word-spacing:-16.514116pt;}
.ws62{word-spacing:-16.450355pt;}
.ws27{word-spacing:-16.386594pt;}
.ws64{word-spacing:-16.322833pt;}
.wsb{word-spacing:-16.259072pt;}
.ws11{word-spacing:-16.195311pt;}
.ws1a{word-spacing:-16.131550pt;}
.ws8{word-spacing:-16.067789pt;}
.ws15{word-spacing:-16.004028pt;}
.wsa{word-spacing:-15.940267pt;}
.ws26{word-spacing:-15.876506pt;}
.ws1c{word-spacing:-15.812745pt;}
.ws25{word-spacing:-15.748983pt;}
.ws2d{word-spacing:-15.685222pt;}
.ws7{word-spacing:-15.621461pt;}
.ws33{word-spacing:-15.557700pt;}
.ws9{word-spacing:-15.493939pt;}
.ws4b{word-spacing:-15.430178pt;}
.ws71{word-spacing:-15.366417pt;}
.ws1f{word-spacing:-15.302656pt;}
.ws51{word-spacing:-15.238895pt;}
.ws44{word-spacing:-15.175134pt;}
.ws65{word-spacing:-15.111373pt;}
.ws72{word-spacing:-15.047612pt;}
.ws43{word-spacing:-14.920090pt;}
.ws47{word-spacing:-14.856329pt;}
.ws40{word-spacing:-14.792567pt;}
.ws68{word-spacing:-14.537523pt;}
.ws78{word-spacing:-14.473762pt;}
.ws1b{word-spacing:-14.410001pt;}
.ws2b{word-spacing:-14.346240pt;}
.ws4d{word-spacing:-14.282479pt;}
.ws42{word-spacing:-14.218718pt;}
.ws4f{word-spacing:-14.154957pt;}
.ws35{word-spacing:-14.027435pt;}
.ws58{word-spacing:-14.024884pt;}
.ws48{word-spacing:-13.963674pt;}
.ws66{word-spacing:-13.836151pt;}
.ws50{word-spacing:-13.772390pt;}
.ws3e{word-spacing:-13.708629pt;}
.ws4e{word-spacing:-13.644868pt;}
.ws5f{word-spacing:-13.517346pt;}
.ws3b{word-spacing:-13.453585pt;}
.ws29{word-spacing:-13.389824pt;}
.ws31{word-spacing:-13.326063pt;}
.ws2a{word-spacing:-13.262302pt;}
.ws77{word-spacing:-13.134780pt;}
.wse{word-spacing:-13.071019pt;}
.ws61{word-spacing:-12.943497pt;}
.ws3a{word-spacing:-12.624691pt;}
.ws2e{word-spacing:-12.560930pt;}
.ws49{word-spacing:-12.497169pt;}
.ws5c{word-spacing:-12.433408pt;}
.ws9a{word-spacing:-12.242125pt;}
.ws6c{word-spacing:-12.178364pt;}
.ws38{word-spacing:-12.114603pt;}
.ws2f{word-spacing:-11.923319pt;}
.ws56{word-spacing:-11.859558pt;}
.ws13{word-spacing:-11.732036pt;}
.ws6b{word-spacing:-11.668275pt;}
.ws41{word-spacing:-11.604514pt;}
.ws16{word-spacing:-11.540753pt;}
.ws14{word-spacing:-11.476992pt;}
.ws6{word-spacing:-11.413231pt;}
.ws79{word-spacing:-11.349470pt;}
.ws30{word-spacing:-11.158187pt;}
.ws52{word-spacing:-11.094426pt;}
.ws1e{word-spacing:-10.966903pt;}
.ws90{word-spacing:-10.903142pt;}
.ws18{word-spacing:-10.839381pt;}
.ws87{word-spacing:-10.775620pt;}
.ws86{word-spacing:-10.711859pt;}
.ws5e{word-spacing:-10.648098pt;}
.ws5{word-spacing:-10.626800pt;}
.ws2c{word-spacing:-10.584337pt;}
.ws94{word-spacing:-10.393054pt;}
.ws34{word-spacing:-10.329293pt;}
.ws3c{word-spacing:-10.010487pt;}
.ws37{word-spacing:-9.819204pt;}
.ws89{word-spacing:-9.564160pt;}
.ws8e{word-spacing:-8.990310pt;}
.ws74{word-spacing:-8.926549pt;}
.ws8a{word-spacing:-8.543983pt;}
.ws91{word-spacing:-8.480222pt;}
.ws3f{word-spacing:-8.352700pt;}
.ws80{word-spacing:-8.288939pt;}
.ws95{word-spacing:-7.651328pt;}
.ws45{word-spacing:-7.396284pt;}
.ws5a{word-spacing:-6.949956pt;}
.ws6a{word-spacing:-6.886195pt;}
.ws17{word-spacing:-6.248585pt;}
.ws32{word-spacing:-5.993540pt;}
.ws7f{word-spacing:-5.929779pt;}
.ws7e{word-spacing:-5.866018pt;}
.ws8b{word-spacing:-5.547213pt;}
.ws6f{word-spacing:-4.144469pt;}
.ws97{word-spacing:-2.869248pt;}
.ws96{word-spacing:-2.805487pt;}
.ws98{word-spacing:-2.741726pt;}
.ws83{word-spacing:-2.231637pt;}
.ws82{word-spacing:-2.167876pt;}
.ws92{word-spacing:-2.104115pt;}
.ws67{word-spacing:-0.063761pt;}
.ws1d{word-spacing:0.000000pt;}
.ws53{word-spacing:5.292169pt;}
.ws8d{word-spacing:9.054071pt;}
.ws8f{word-spacing:9.245355pt;}
.ws81{word-spacing:9.309116pt;}
.ws99{word-spacing:11.349470pt;}
.ws7a{word-spacing:11.476992pt;}
.ws84{word-spacing:11.859558pt;}
.ws93{word-spacing:11.987081pt;}
.ws5d{word-spacing:15.876506pt;}
.ws88{word-spacing:16.960444pt;}
.ws22{word-spacing:29.585135pt;}
.ws85{word-spacing:30.541551pt;}
.ws20{word-spacing:31.880533pt;}
.ws55{word-spacing:33.410799pt;}
.ws60{word-spacing:38.256533pt;}
.ws24{word-spacing:45.907733pt;}
.ws57{word-spacing:420.017233pt;}
._24{margin-left:-34.430976pt;}
._21{margin-left:-33.474560pt;}
._20{margin-left:-31.880533pt;}
._25{margin-left:-15.940267pt;}
._1{margin-left:-7.931872pt;}
._4{margin-left:-6.187992pt;}
._3{margin-left:-4.973349pt;}
._2{margin-left:-3.306000pt;}
._0{margin-left:-1.982968pt;}
._6{margin-left:-0.902219pt;}
._5{width:1.530261pt;}
._5b{width:2.467537pt;}
._5c{width:4.144469pt;}
._5f{width:5.164646pt;}
._5e{width:6.184823pt;}
._22{width:7.077478pt;}
._60{width:8.543983pt;}
._3a{width:10.367554pt;}
._39{width:11.374974pt;}
._57{width:12.337757pt;}
._5d{width:13.351552pt;}
._2b{width:14.355808pt;}
._14{width:15.940267pt;}
._a{width:16.852046pt;}
._2d{width:18.541694pt;}
._b{width:19.820125pt;}
._7{width:21.465165pt;}
._8{width:22.577793pt;}
._9{width:24.299315pt;}
._36{width:25.335457pt;}
._33{width:26.333294pt;}
._37{width:27.232350pt;}
._f{width:28.523510pt;}
._59{width:29.993201pt;}
._2c{width:31.580853pt;}
._c{width:32.674340pt;}
._5a{width:33.991028pt;}
._29{width:35.068587pt;}
._38{width:37.121695pt;}
._10{width:38.460682pt;}
._30{width:40.877223pt;}
._2e{width:42.072729pt;}
._34{width:43.622132pt;}
._2f{width:44.890990pt;}
._32{width:46.163012pt;}
._17{width:47.135364pt;}
._15{width:49.555103pt;}
._e{width:52.207534pt;}
._41{width:56.099537pt;}
._1c{width:59.629351pt;}
._18{width:63.761067pt;}
._1f{width:64.653722pt;}
._13{width:66.949120pt;}
._35{width:73.771540pt;}
._1d{width:76.513280pt;}
._1e{width:82.991401pt;}
._31{width:91.815467pt;}
._16{width:115.280009pt;}
._4e{width:146.014589pt;}
._4d{width:155.327113pt;}
._54{width:165.064322pt;}
._48{width:261.058450pt;}
._4f{width:262.810757pt;}
._3d{width:280.348870pt;}
._56{width:281.956272pt;}
._45{width:328.719904pt;}
._55{width:333.399548pt;}
._42{width:338.376807pt;}
._53{width:368.726682pt;}
._40{width:398.306712pt;}
._52{width:406.145073pt;}
._44{width:411.265705pt;}
._43{width:462.708980pt;}
._3c{width:479.819339pt;}
._4c{width:484.531700pt;}
._51{width:487.617175pt;}
._4b{width:535.666399pt;}
._47{width:537.489663pt;}
._50{width:539.060450pt;}
._3b{width:563.034436pt;}
._4a{width:576.422742pt;}
._46{width:588.932938pt;}
._3f{width:607.614084pt;}
._49{width:627.866017pt;}
._3e{width:659.057359pt;}
._58{width:1031.040418pt;}
._d{width:1052.293751pt;}
._1b{width:1413.793263pt;}
._26{width:1684.312337pt;}
._23{width:1851.315321pt;}
._27{width:2053.498463pt;}
._19{width:2065.542929pt;}
._1a{width:2084.795597pt;}
._11{width:2096.278944pt;}
._12{width:2107.944030pt;}
._2a{width:2117.262721pt;}
._28{width:2147.217673pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:46.757867pt;}
.fs7{font-size:56.099537pt;}
.fs4{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs5{font-size:91.815467pt;}
.fs1{font-size:110.200000pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:50.652000pt;}
.yf4{bottom:90.502667pt;}
.y138{bottom:93.470667pt;}
.y196{bottom:94.076000pt;}
.y91{bottom:99.196000pt;}
.y7a{bottom:99.434667pt;}
.y11a{bottom:101.196000pt;}
.y15b{bottom:102.949333pt;}
.y5f{bottom:109.564000pt;}
.y1bf{bottom:109.764000pt;}
.y137{bottom:112.732000pt;}
.y195{bottom:113.337333pt;}
.y176{bottom:115.781333pt;}
.ya8{bottom:116.657333pt;}
.y90{bottom:118.457333pt;}
.y79{bottom:118.696000pt;}
.yf3{bottom:120.085333pt;}
.y119{bottom:120.457333pt;}
.y15a{bottom:122.209333pt;}
.yc9{bottom:123.777333pt;}
.y169{bottom:127.160000pt;}
.y5e{bottom:128.825333pt;}
.y136{bottom:131.993333pt;}
.y1be{bottom:135.040000pt;}
.ya7{bottom:135.918667pt;}
.y8f{bottom:137.718667pt;}
.y78{bottom:137.957333pt;}
.y194{bottom:139.240000pt;}
.y118{bottom:139.717333pt;}
.y159{bottom:141.470667pt;}
.yc8{bottom:143.038667pt;}
.y168{bottom:146.421333pt;}
.y135{bottom:151.254667pt;}
.y175{bottom:151.540000pt;}
.yf2{bottom:151.642667pt;}
.y1bd{bottom:154.301333pt;}
.y8e{bottom:156.980000pt;}
.y77{bottom:157.218667pt;}
.y193{bottom:158.501333pt;}
.y117{bottom:158.978667pt;}
.y158{bottom:160.732000pt;}
.yc7{bottom:162.300000pt;}
.y5d{bottom:164.584000pt;}
.y167{bottom:165.682667pt;}
.ya6{bottom:168.464000pt;}
.y134{bottom:170.516000pt;}
.y1bc{bottom:173.562667pt;}
.y8d{bottom:176.241333pt;}
.y76{bottom:176.480000pt;}
.y192{bottom:177.761333pt;}
.y116{bottom:178.240000pt;}
.y157{bottom:179.993333pt;}
.yc6{bottom:181.561333pt;}
.yf1{bottom:183.198667pt;}
.ya5{bottom:187.724000pt;}
.y133{bottom:189.777333pt;}
.y174{bottom:191.949333pt;}
.y1bb{bottom:192.824000pt;}
.y16c{bottom:193.160000pt;}
.y8c{bottom:195.501333pt;}
.y75{bottom:195.741333pt;}
.y156{bottom:199.254667pt;}
.yf0{bottom:202.460000pt;}
.y191{bottom:203.665333pt;}
.y5c{bottom:204.993333pt;}
.y132{bottom:209.037333pt;}
.y16b{bottom:212.421333pt;}
.y8b{bottom:214.762667pt;}
.y115{bottom:214.769333pt;}
.y74{bottom:215.001333pt;}
.yc5{bottom:217.320000pt;}
.y1ba{bottom:218.100000pt;}
.y155{bottom:218.516000pt;}
.y190{bottom:222.925333pt;}
.ya4{bottom:224.254667pt;}
.y131{bottom:228.298667pt;}
.y16a{bottom:231.682667pt;}
.yef{bottom:234.017333pt;}
.y8a{bottom:234.024000pt;}
.y114{bottom:234.030667pt;}
.y73{bottom:234.262667pt;}
.y1b9{bottom:237.361333pt;}
.y154{bottom:237.776000pt;}
.ya3{bottom:243.514667pt;}
.y173{bottom:246.278667pt;}
.y130{bottom:247.560000pt;}
.y18f{bottom:248.829333pt;}
.yee{bottom:253.278667pt;}
.y89{bottom:253.285333pt;}
.y113{bottom:253.292000pt;}
.y72{bottom:253.524000pt;}
.y153{bottom:257.037333pt;}
.y5b{bottom:259.322667pt;}
.y140{bottom:261.313333pt;}
.yc4{bottom:261.686667pt;}
.y1b8{bottom:262.637333pt;}
.ya2{bottom:262.776000pt;}
.y172{bottom:265.540000pt;}
.y12f{bottom:266.821333pt;}
.y18e{bottom:268.089333pt;}
.y88{bottom:272.546667pt;}
.y112{bottom:272.553333pt;}
.y152{bottom:276.298667pt;}
.y5a{bottom:278.584000pt;}
.y13f{bottom:280.574667pt;}
.yc3{bottom:280.948000pt;}
.y1b7{bottom:281.898667pt;}
.ya1{bottom:282.037333pt;}
.yed{bottom:282.860000pt;}
.y171{bottom:284.800000pt;}
.y12e{bottom:286.082667pt;}
.y18d{bottom:287.350667pt;}
.y71{bottom:289.282667pt;}
.y87{bottom:291.808000pt;}
.y111{bottom:291.814667pt;}
.y151{bottom:295.560000pt;}
.y59{bottom:297.845333pt;}
.y13e{bottom:299.836000pt;}
.yc2{bottom:300.209333pt;}
.ya0{bottom:301.298667pt;}
.yec{bottom:302.121333pt;}
.y170{bottom:304.061333pt;}
.ya{bottom:304.273333pt;}
.y12d{bottom:305.344000pt;}
.y1b6{bottom:307.174667pt;}
.y86{bottom:311.068000pt;}
.y110{bottom:311.076000pt;}
.y18c{bottom:313.253333pt;}
.y150{bottom:314.821333pt;}
.y58{bottom:317.105333pt;}
.y13d{bottom:319.096000pt;}
.yc1{bottom:319.470667pt;}
.y9f{bottom:320.560000pt;}
.yeb{bottom:321.382667pt;}
.y16f{bottom:323.322667pt;}
.y12c{bottom:324.604000pt;}
.y1b5{bottom:326.436000pt;}
.y9{bottom:328.182667pt;}
.y85{bottom:330.329333pt;}
.y10f{bottom:330.336000pt;}
.y18b{bottom:332.514667pt;}
.y14f{bottom:334.082667pt;}
.y57{bottom:336.366667pt;}
.y70{bottom:338.300000pt;}
.y13c{bottom:338.357333pt;}
.yc0{bottom:338.732000pt;}
.y9e{bottom:339.821333pt;}
.yea{bottom:340.644000pt;}
.y16e{bottom:342.584000pt;}
.y12b{bottom:343.865333pt;}
.y84{bottom:349.590667pt;}
.y10e{bottom:349.597333pt;}
.y1b4{bottom:351.712000pt;}
.y18a{bottom:351.776000pt;}
.y8{bottom:352.093333pt;}
.y14e{bottom:353.342667pt;}
.y56{bottom:355.628000pt;}
.y6f{bottom:357.560000pt;}
.y13b{bottom:357.618667pt;}
.ybf{bottom:357.993333pt;}
.y9d{bottom:359.081333pt;}
.y16d{bottom:361.845333pt;}
.y12a{bottom:363.126667pt;}
.y83{bottom:368.852000pt;}
.y10d{bottom:368.858667pt;}
.y1b3{bottom:370.973333pt;}
.y14d{bottom:372.604000pt;}
.y55{bottom:374.889333pt;}
.ye9{bottom:376.402667pt;}
.y6e{bottom:376.821333pt;}
.y13a{bottom:376.880000pt;}
.ybe{bottom:377.253333pt;}
.y189{bottom:377.678667pt;}
.y9c{bottom:378.342667pt;}
.y129{bottom:382.388000pt;}
.y10c{bottom:388.120000pt;}
.y14c{bottom:391.865333pt;}
.y54{bottom:394.150667pt;}
.y6d{bottom:396.082667pt;}
.y139{bottom:396.141333pt;}
.y1b2{bottom:396.249333pt;}
.y188{bottom:396.940000pt;}
.y9b{bottom:397.604000pt;}
.y7{bottom:399.914667pt;}
.y128{bottom:401.649333pt;}
.y82{bottom:404.610667pt;}
.y10b{bottom:407.381333pt;}
.y14b{bottom:411.126667pt;}
.ybd{bottom:413.013333pt;}
.y53{bottom:413.412000pt;}
.y6c{bottom:415.344000pt;}
.y1b1{bottom:415.510667pt;}
.y187{bottom:416.201333pt;}
.y9a{bottom:416.865333pt;}
.y127{bottom:420.910667pt;}
.ye8{bottom:424.885333pt;}
.y10a{bottom:426.641333pt;}
.y14a{bottom:430.388000pt;}
.y52{bottom:432.672000pt;}
.y6b{bottom:434.605333pt;}
.y186{bottom:435.462667pt;}
.y99{bottom:436.126667pt;}
.y126{bottom:440.170667pt;}
.y1b0{bottom:440.786667pt;}
.y6{bottom:442.722667pt;}
.ye7{bottom:444.146667pt;}
.y109{bottom:445.902667pt;}
.y149{bottom:449.649333pt;}
.y51{bottom:451.933333pt;}
.y34{bottom:452.597333pt;}
.y6a{bottom:453.866667pt;}
.y125{bottom:459.432000pt;}
.y1af{bottom:460.048000pt;}
.y185{bottom:461.365333pt;}
.ybc{bottom:462.029333pt;}
.ye6{bottom:463.408000pt;}
.y108{bottom:465.164000pt;}
.y148{bottom:468.909333pt;}
.y50{bottom:471.194667pt;}
.y98{bottom:471.885333pt;}
.y69{bottom:473.126667pt;}
.y124{bottom:478.693333pt;}
.y1ae{bottom:479.309333pt;}
.y81{bottom:479.865333pt;}
.y184{bottom:480.626667pt;}
.ybb{bottom:481.290667pt;}
.ye5{bottom:482.669333pt;}
.y107{bottom:484.425333pt;}
.y5{bottom:485.530667pt;}
.y33{bottom:487.798667pt;}
.y4f{bottom:488.065333pt;}
.y147{bottom:488.170667pt;}
.y4e{bottom:490.456000pt;}
.y68{bottom:492.388000pt;}
.y80{bottom:499.126667pt;}
.y183{bottom:499.886667pt;}
.yba{bottom:500.552000pt;}
.ye4{bottom:501.930667pt;}
.y106{bottom:503.686667pt;}
.y1ad{bottom:504.585333pt;}
.y32{bottom:507.060000pt;}
.y146{bottom:507.432000pt;}
.y4{bottom:509.440000pt;}
.y4d{bottom:509.717333pt;}
.y67{bottom:511.649333pt;}
.y123{bottom:515.222667pt;}
.y7f{bottom:518.386667pt;}
.y182{bottom:519.148000pt;}
.yb9{bottom:519.812000pt;}
.ye3{bottom:521.190667pt;}
.y105{bottom:522.948000pt;}
.y1ac{bottom:523.846667pt;}
.y97{bottom:526.214667pt;}
.y145{bottom:526.693333pt;}
.y4c{bottom:528.978667pt;}
.y66{bottom:530.910667pt;}
.y122{bottom:534.484000pt;}
.y7e{bottom:537.648000pt;}
.ye2{bottom:540.452000pt;}
.y1ab{bottom:540.717333pt;}
.y104{bottom:542.208000pt;}
.y31{bottom:542.261333pt;}
.y1aa{bottom:543.108000pt;}
.y96{bottom:545.476000pt;}
.y4b{bottom:548.238667pt;}
.y65{bottom:550.172000pt;}
.y121{bottom:553.745333pt;}
.y181{bottom:554.908000pt;}
.yb8{bottom:555.572000pt;}
.y7d{bottom:556.909333pt;}
.ye1{bottom:559.713333pt;}
.y103{bottom:561.469333pt;}
.y95{bottom:564.737333pt;}
.y4a{bottom:567.500000pt;}
.y1a9{bottom:568.384000pt;}
.y64{bottom:569.432000pt;}
.y120{bottom:573.006667pt;}
.y144{bottom:574.978667pt;}
.y7c{bottom:576.170667pt;}
.y30{bottom:577.462667pt;}
.ye0{bottom:578.974667pt;}
.y102{bottom:580.730667pt;}
.y94{bottom:583.998667pt;}
.y163{bottom:584.017333pt;}
.y49{bottom:586.761333pt;}
.y1a8{bottom:587.645333pt;}
.y63{bottom:588.693333pt;}
.y11f{bottom:592.268000pt;}
.y143{bottom:594.240000pt;}
.ydf{bottom:598.236000pt;}
.y93{bottom:603.260000pt;}
.y162{bottom:603.278667pt;}
.y48{bottom:606.022667pt;}
.y1a7{bottom:606.906667pt;}
.y62{bottom:607.954667pt;}
.y180{bottom:609.237333pt;}
.yb7{bottom:609.901333pt;}
.y166{bottom:610.869333pt;}
.y2f{bottom:612.664000pt;}
.y142{bottom:613.501333pt;}
.y101{bottom:616.490667pt;}
.yde{bottom:617.496000pt;}
.y3{bottom:618.790667pt;}
.y92{bottom:622.521333pt;}
.y161{bottom:622.540000pt;}
.y47{bottom:625.284000pt;}
.yb6{bottom:629.162667pt;}
.y165{bottom:630.130667pt;}
.y2e{bottom:631.925333pt;}
.y1a6{bottom:632.182667pt;}
.y141{bottom:632.762667pt;}
.ydd{bottom:636.757333pt;}
.y11e{bottom:640.553333pt;}
.y20{bottom:641.781333pt;}
.y160{bottom:641.800000pt;}
.y46{bottom:644.545333pt;}
.yb5{bottom:648.424000pt;}
.y164{bottom:649.392000pt;}
.y2d{bottom:651.186667pt;}
.y1a5{bottom:651.444000pt;}
.ydc{bottom:656.018667pt;}
.y61{bottom:656.240000pt;}
.y11d{bottom:659.814667pt;}
.y1f{bottom:661.042667pt;}
.y15f{bottom:661.061333pt;}
.y45{bottom:663.805333pt;}
.y100{bottom:665.506667pt;}
.y17f{bottom:674.326667pt;}
.ydb{bottom:675.280000pt;}
.y60{bottom:675.501333pt;}
.y2{bottom:675.864000pt;}
.y1a4{bottom:676.720000pt;}
.y11c{bottom:679.076000pt;}
.y1e{bottom:680.304000pt;}
.y44{bottom:683.066667pt;}
.yff{bottom:684.766667pt;}
.yb4{bottom:684.953333pt;}
.y2c{bottom:686.388000pt;}
.yda{bottom:694.541333pt;}
.y1a3{bottom:695.981333pt;}
.y11b{bottom:698.336000pt;}
.y1d{bottom:699.565333pt;}
.y1{bottom:700.558667pt;}
.y43{bottom:702.328000pt;}
.yfe{bottom:704.028000pt;}
.y2b{bottom:705.649333pt;}
.y17e{bottom:706.870667pt;}
.y15e{bottom:709.346667pt;}
.yb3{bottom:717.497333pt;}
.y1c{bottom:718.826667pt;}
.y1a2{bottom:721.257333pt;}
.y42{bottom:721.589333pt;}
.yfd{bottom:723.289333pt;}
.y1cb{bottom:724.140000pt;}
.y2a{bottom:724.910667pt;}
.y15d{bottom:728.608000pt;}
.yd9{bottom:730.300000pt;}
.y1a{bottom:738.086667pt;}
.y17d{bottom:739.416000pt;}
.y1a1{bottom:740.518667pt;}
.y41{bottom:740.850667pt;}
.y1ca{bottom:743.401333pt;}
.y29{bottom:744.170667pt;}
.y15c{bottom:747.869333pt;}
.yb2{bottom:750.042667pt;}
.y19{bottom:757.348000pt;}
.yfc{bottom:759.049333pt;}
.y40{bottom:760.112000pt;}
.y1c9{bottom:762.661333pt;}
.y28{bottom:763.432000pt;}
.y1a0{bottom:765.794667pt;}
.yd8{bottom:775.915838pt;}
.y17c{bottom:775.945333pt;}
.y18{bottom:776.609333pt;}
.y3f{bottom:779.372000pt;}
.y27{bottom:782.693333pt;}
.y19f{bottom:785.056000pt;}
.yb1{bottom:786.572000pt;}
.y1c8{bottom:788.565333pt;}
.yd7{bottom:792.862730pt;}
.y17{bottom:795.870667pt;}
.y3e{bottom:798.633333pt;}
.yb0{bottom:805.833333pt;}
.y1c7{bottom:807.825333pt;}
.yd6{bottom:809.809621pt;}
.y19e{bottom:810.332000pt;}
.y17b{bottom:812.474667pt;}
.yfb{bottom:813.378667pt;}
.y16{bottom:815.132000pt;}
.y26{bottom:817.894667pt;}
.yd5{bottom:826.756513pt;}
.y19d{bottom:829.593333pt;}
.yfa{bottom:832.640000pt;}
.y1c6{bottom:833.728000pt;}
.y15{bottom:834.393333pt;}
.y3d{bottom:837.156000pt;}
.yaf{bottom:842.362667pt;}
.yd4{bottom:843.703404pt;}
.y17a{bottom:845.020000pt;}
.yf9{bottom:851.900000pt;}
.y1c5{bottom:852.989333pt;}
.y25{bottom:853.096000pt;}
.y14{bottom:853.653333pt;}
.y19c{bottom:854.869333pt;}
.y3c{bottom:856.417333pt;}
.yd3{bottom:860.649123pt;}
.yae{bottom:861.624000pt;}
.yf8{bottom:871.161333pt;}
.y1c4{bottom:872.250667pt;}
.y13{bottom:872.914667pt;}
.y19b{bottom:874.130667pt;}
.y3b{bottom:875.677333pt;}
.y179{bottom:877.564000pt;}
.yd2{bottom:877.596014pt;}
.yad{bottom:880.885333pt;}
.y24{bottom:888.297333pt;}
.y12{bottom:892.176000pt;}
.y19a{bottom:893.392000pt;}
.yd1{bottom:894.542906pt;}
.y3a{bottom:894.938667pt;}
.y1c3{bottom:898.153333pt;}
.yf7{bottom:906.921333pt;}
.y23{bottom:907.558667pt;}
.y178{bottom:910.109333pt;}
.y11{bottom:911.437333pt;}
.yd0{bottom:911.489797pt;}
.yac{bottom:913.429333pt;}
.y39{bottom:914.200000pt;}
.y1c2{bottom:917.414667pt;}
.y199{bottom:918.668000pt;}
.y22{bottom:926.820000pt;}
.ycf{bottom:928.436689pt;}
.y10{bottom:930.698667pt;}
.yab{bottom:932.690667pt;}
.y38{bottom:933.461333pt;}
.y198{bottom:937.929333pt;}
.y177{bottom:942.653333pt;}
.y1c1{bottom:943.317333pt;}
.yce{bottom:945.382407pt;}
.yf{bottom:949.960000pt;}
.yaa{bottom:951.952000pt;}
.y37{bottom:952.722667pt;}
.yf6{bottom:955.937333pt;}
.y21{bottom:962.021333pt;}
.ycd{bottom:962.329299pt;}
.y1c0{bottom:962.578667pt;}
.y197{bottom:963.205333pt;}
.ye{bottom:969.220000pt;}
.ya9{bottom:971.213333pt;}
.y36{bottom:971.984000pt;}
.yf5{bottom:975.198667pt;}
.ycc{bottom:979.276190pt;}
.yd{bottom:988.481333pt;}
.y35{bottom:991.244000pt;}
.y7b{bottom:1007.742667pt;}
.ycb{bottom:1010.200000pt;}
.yc{bottom:1027.004000pt;}
.yca{bottom:1029.461333pt;}
.yb{bottom:1081.930667pt;}
.h6{height:29.244954pt;}
.hc{height:29.712657pt;}
.ha{height:32.169412pt;}
.he{height:38.596481pt;}
.hd{height:38.933079pt;}
.hb{height:43.421286pt;}
.h10{height:43.740092pt;}
.h7{height:43.867614pt;}
.h8{height:44.250180pt;}
.hf{height:45.433745pt;}
.h5{height:52.640990pt;}
.h4{height:53.100068pt;}
.h11{height:53.111475pt;}
.h9{height:63.719934pt;}
.h3{height:76.478800pt;}
.h2{height:91.745319pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x30{left:74.394667pt;}
.x1{left:75.590667pt;}
.x1f{left:78.021333pt;}
.x10{left:80.501333pt;}
.xf{left:82.525333pt;}
.x7{left:83.536000pt;}
.x33{left:84.437333pt;}
.x5{left:86.038667pt;}
.x32{left:87.873333pt;}
.xe{left:93.221333pt;}
.x18{left:94.850667pt;}
.x35{left:96.616000pt;}
.x6{left:99.002667pt;}
.x27{left:100.290667pt;}
.x16{left:101.228000pt;}
.x2{left:103.222667pt;}
.x23{left:104.856000pt;}
.xb{left:109.710667pt;}
.x25{left:110.897333pt;}
.x17{left:114.084000pt;}
.x3{left:115.688000pt;}
.x50{left:116.782667pt;}
.x39{left:117.754667pt;}
.x1e{left:122.537333pt;}
.x31{left:124.072000pt;}
.x53{left:125.104000pt;}
.x20{left:127.508000pt;}
.x11{left:135.024000pt;}
.x8{left:136.164000pt;}
.x2b{left:142.792000pt;}
.x54{left:157.637333pt;}
.x55{left:168.584000pt;}
.x26{left:177.846667pt;}
.x19{left:184.618667pt;}
.x2f{left:197.948000pt;}
.x4d{left:206.494667pt;}
.x36{left:208.588000pt;}
.x44{left:218.109333pt;}
.x38{left:237.782667pt;}
.x28{left:250.521333pt;}
.x24{left:255.490667pt;}
.x1a{left:272.294667pt;}
.x2c{left:273.284000pt;}
.x4{left:293.462667pt;}
.x37{left:296.841333pt;}
.x34{left:311.474667pt;}
.x56{left:320.857333pt;}
.x4c{left:326.906667pt;}
.x57{left:327.808000pt;}
.x9{left:335.505333pt;}
.x14{left:341.328000pt;}
.xa{left:346.002667pt;}
.x4b{left:356.097333pt;}
.x29{left:363.317333pt;}
.x49{left:364.668000pt;}
.x1b{left:369.818667pt;}
.x58{left:373.954667pt;}
.x46{left:381.716000pt;}
.x43{left:398.938667pt;}
.xc{left:409.340000pt;}
.x12{left:422.120000pt;}
.x51{left:426.882667pt;}
.x3d{left:431.297333pt;}
.x41{left:436.366667pt;}
.x45{left:440.468000pt;}
.x4a{left:459.874667pt;}
.x21{left:465.804000pt;}
.x15{left:471.016000pt;}
.x3e{left:475.405333pt;}
.x13{left:493.061333pt;}
.x3b{left:495.670667pt;}
.xd{left:497.581333pt;}
.x42{left:516.784000pt;}
.x3f{left:518.921333pt;}
.x2d{left:527.453333pt;}
.x2a{left:530.284000pt;}
.x4f{left:538.569333pt;}
.x3a{left:549.326667pt;}
.x1c{left:557.792000pt;}
.x1d{left:584.212000pt;}
.x48{left:590.256000pt;}
.x22{left:597.694667pt;}
.x52{left:609.297333pt;}
.x3c{left:645.541333pt;}
.x4e{left:646.534667pt;}
.x40{left:648.249333pt;}
.x2e{left:678.088000pt;}
.x47{left:716.834667pt;}
}




    .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; }
  