
    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_899946c82c8c95f3d6739166.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976000;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_9f2eaa56dd1c5d4ccfbd235b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_2de576ed08f05ced1f7b86ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_8f19511ce042452aca3dee9b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_02f03bed6b247da842ffa273.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a7a4e47c33dc80933597af56.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.892000;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_86dd7dd461893b51174b3258.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_e45f22ed8050db5020b8795b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854000;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_fa8d16367c85b8c046c06af2.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;}
.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);}
.m28{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);}
.m10{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);}
.m27{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);}
.ma{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m18{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);}
.m17{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);}
.m24{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);}
.m15{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);}
.m21{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);}
.md{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);}
.m13{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);}
.mb{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);}
.m1a{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);}
.m3{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);}
.m23{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);}
.m22{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);}
.m8{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);}
.mf{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);}
.m1b{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);}
.me{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);}
.m6{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);}
.m16{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);}
.m26{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);}
.m20{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);}
.m1f{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);}
.m5{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);}
.m2{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);}
.m9{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);}
.m25{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);}
.m4{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);}
.m14{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);}
.m1c{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);}
.m1e{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);}
.m19{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);}
.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);}
.m7{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);}
.m12{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);}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.362000px;}
.v2{vertical-align:26.040000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.298878px;}
.lsa{letter-spacing:0.358654px;}
.lsc{letter-spacing:0.418429px;}
.ls8{letter-spacing:0.597756px;}
.lsf{letter-spacing:0.657532px;}
.lsb{letter-spacing:0.717307px;}
.ls7{letter-spacing:0.777083px;}
.ls9{letter-spacing:0.836858px;}
.lsd{letter-spacing:0.956410px;}
.ls1{letter-spacing:2.984726px;}
.ls0{letter-spacing:2.986090px;}
.ls2{letter-spacing:2.990726px;}
.ls6{letter-spacing:3.108331px;}
.ls4{letter-spacing:250.485350px;}
.ls5{letter-spacing:252.583488px;}
.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;}
}
.ws1d{word-spacing:-19.941274px;}
.ws3f{word-spacing:-14.943900px;}
.ws51{word-spacing:-11.632298px;}
.ws3a{word-spacing:-3.227882px;}
.ws96{word-spacing:-3.168107px;}
.ws5f{word-spacing:-3.108331px;}
.ws3b{word-spacing:-2.869229px;}
.ws81{word-spacing:-2.809453px;}
.ws89{word-spacing:-2.689902px;}
.ws42{word-spacing:-2.630126px;}
.ws8f{word-spacing:-2.510575px;}
.ws7a{word-spacing:-2.450800px;}
.ws97{word-spacing:-2.331248px;}
.ws4d{word-spacing:-2.271473px;}
.ws62{word-spacing:-2.211697px;}
.ws2{word-spacing:-2.032381px;}
.ws5e{word-spacing:-2.032370px;}
.ws83{word-spacing:-1.972595px;}
.ws4b{word-spacing:-1.912819px;}
.wsd{word-spacing:-1.853044px;}
.ws64{word-spacing:-1.793268px;}
.ws6c{word-spacing:-1.733492px;}
.ws4e{word-spacing:-1.613941px;}
.ws68{word-spacing:-1.554166px;}
.ws7e{word-spacing:-1.494390px;}
.ws80{word-spacing:-1.434614px;}
.ws38{word-spacing:-1.374839px;}
.ws8c{word-spacing:-1.255288px;}
.ws40{word-spacing:-1.135736px;}
.ws58{word-spacing:-1.075961px;}
.ws41{word-spacing:-1.016185px;}
.ws4c{word-spacing:-0.896634px;}
.ws32{word-spacing:-0.836858px;}
.ws74{word-spacing:-0.777083px;}
.ws69{word-spacing:-0.717307px;}
.ws5a{word-spacing:-0.657532px;}
.ws99{word-spacing:-0.597756px;}
.ws36{word-spacing:-0.537980px;}
.ws91{word-spacing:-0.478205px;}
.ws6d{word-spacing:-0.418429px;}
.ws53{word-spacing:-0.358654px;}
.ws33{word-spacing:-0.298878px;}
.ws23{word-spacing:-0.239102px;}
.ws22{word-spacing:-0.179327px;}
.ws27{word-spacing:-0.119551px;}
.ws1c{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.053798px;}
.ws15{word-spacing:-0.047821px;}
.ws82{word-spacing:-0.012055px;}
.ws0{word-spacing:0.000000px;}
.ws8d{word-spacing:0.047720px;}
.ws35{word-spacing:0.059776px;}
.ws31{word-spacing:0.119551px;}
.ws16{word-spacing:0.143462px;}
.ws2e{word-spacing:0.179327px;}
.ws24{word-spacing:0.239102px;}
.ws30{word-spacing:0.298878px;}
.ws26{word-spacing:0.358654px;}
.ws67{word-spacing:0.418429px;}
.ws2c{word-spacing:0.478205px;}
.ws56{word-spacing:0.537980px;}
.ws29{word-spacing:0.597756px;}
.ws73{word-spacing:0.657532px;}
.ws70{word-spacing:0.717307px;}
.ws72{word-spacing:0.777083px;}
.ws9a{word-spacing:0.836858px;}
.ws55{word-spacing:0.896634px;}
.ws2f{word-spacing:0.956410px;}
.ws25{word-spacing:1.075961px;}
.ws5b{word-spacing:1.135736px;}
.ws3d{word-spacing:1.195512px;}
.ws3c{word-spacing:1.315063px;}
.ws8b{word-spacing:1.434614px;}
.ws7b{word-spacing:1.494390px;}
.ws46{word-spacing:1.554166px;}
.ws6e{word-spacing:1.613941px;}
.ws4f{word-spacing:1.673717px;}
.ws65{word-spacing:1.733492px;}
.ws59{word-spacing:1.853044px;}
.ws76{word-spacing:1.912819px;}
.ws2d{word-spacing:2.032370px;}
.ws87{word-spacing:2.092146px;}
.ws92{word-spacing:2.151922px;}
.ws43{word-spacing:2.211697px;}
.ws39{word-spacing:2.331248px;}
.ws6a{word-spacing:2.510575px;}
.ws6b{word-spacing:2.630126px;}
.ws4a{word-spacing:2.749678px;}
.ws45{word-spacing:3.048556px;}
.ws9c{word-spacing:3.068640px;}
.ws21{word-spacing:3.108331px;}
.ws5d{word-spacing:3.168107px;}
.ws5c{word-spacing:3.227882px;}
.ws44{word-spacing:3.287658px;}
.ws8e{word-spacing:3.407209px;}
.ws2a{word-spacing:3.526760px;}
.ws48{word-spacing:3.586536px;}
.ws7c{word-spacing:3.765863px;}
.ws66{word-spacing:3.945190px;}
.ws63{word-spacing:4.004965px;}
.ws20{word-spacing:4.124516px;}
.ws47{word-spacing:4.184292px;}
.ws75{word-spacing:4.244068px;}
.ws86{word-spacing:4.303843px;}
.ws79{word-spacing:4.363619px;}
.ws57{word-spacing:4.423394px;}
.ws60{word-spacing:4.542946px;}
.ws1f{word-spacing:4.662497px;}
.ws50{word-spacing:4.722272px;}
.ws8a{word-spacing:4.782048px;}
.ws78{word-spacing:4.961375px;}
.ws54{word-spacing:5.021150px;}
.ws49{word-spacing:5.439580px;}
.ws84{word-spacing:5.499355px;}
.ws61{word-spacing:5.559131px;}
.ws77{word-spacing:5.738458px;}
.ws28{word-spacing:5.798233px;}
.ws34{word-spacing:5.977560px;}
.ws6f{word-spacing:6.156887px;}
.ws95{word-spacing:6.216662px;}
.ws71{word-spacing:6.754643px;}
.ws90{word-spacing:6.814418px;}
.ws2b{word-spacing:6.933970px;}
.ws7f{word-spacing:6.993745px;}
.ws37{word-spacing:7.651277px;}
.ws85{word-spacing:7.711052px;}
.ws1e{word-spacing:7.770828px;}
.ws52{word-spacing:7.890379px;}
.ws3e{word-spacing:8.069706px;}
.ws19{word-spacing:8.129482px;}
.ws88{word-spacing:8.428360px;}
.ws98{word-spacing:9.205442px;}
.ws7d{word-spacing:11.943245px;}
.ws14{word-spacing:13.246306px;}
.ws17{word-spacing:13.389768px;}
.ws18{word-spacing:13.437589px;}
.wse{word-spacing:14.704798px;}
.ws94{word-spacing:14.884124px;}
.ws6{word-spacing:16.318739px;}
.ws8{word-spacing:16.378514px;}
.wsb{word-spacing:16.438290px;}
.ws9{word-spacing:16.498066px;}
.wsc{word-spacing:16.557841px;}
.ws7{word-spacing:16.617617px;}
.wsa{word-spacing:16.796944px;}
.ws13{word-spacing:17.753353px;}
.ws11{word-spacing:17.872904px;}
.ws1b{word-spacing:19.068416px;}
.ws4{word-spacing:19.869542px;}
.ws10{word-spacing:21.220338px;}
.ws12{word-spacing:23.611362px;}
.ws1a{word-spacing:24.687323px;}
.ws9b{word-spacing:27.473224px;}
.ws93{word-spacing:29.828024px;}
.ws3{word-spacing:33.115849px;}
.ws5{word-spacing:42.560227px;}
.wsf{word-spacing:58.520312px;}
._19{margin-left:-27.851245px;}
._18{margin-left:-8.248997px;}
._5{margin-left:-7.173108px;}
._e{margin-left:-5.857991px;}
._3{margin-left:-4.841856px;}
._9{margin-left:-3.466967px;}
._6{margin-left:-2.391042px;}
._1{margin-left:-1.195512px;}
._0{width:1.195512px;}
._8{width:2.271473px;}
._f{width:3.634366px;}
._4{width:4.949453px;}
._10{width:12.481201px;}
._12{width:13.927715px;}
._13{width:15.960103px;}
._c{width:17.454493px;}
._b{width:19.965068px;}
._a{width:21.220374px;}
._d{width:24.388445px;}
._17{width:26.899200px;}
._15{width:28.034756px;}
._16{width:29.887800px;}
._7{width:50.900563px;}
._11{width:58.580088px;}
._14{width:249.927757px;}
._2{width:636.751963px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs7{font-size:44.233800px;}
.fs5{font-size:47.820600px;}
.fs1{font-size:53.798400px;}
.fs8{font-size:55.591308px;}
.fs0{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:119.551800px;}
.y1f0{bottom:-919.455660px;}
.y0{bottom:0.000000px;}
.y1ef{bottom:11.646855px;}
.y1ee{bottom:28.324080px;}
.y9a{bottom:38.881500px;}
.y138{bottom:38.883000px;}
.y99{bottom:50.838000px;}
.y2d{bottom:95.670000px;}
.y37{bottom:102.147000px;}
.y6d{bottom:113.602500px;}
.y36{bottom:120.079500px;}
.y1ab{bottom:121.078500px;}
.y2c{bottom:121.621500px;}
.y167{bottom:128.484000px;}
.y6c{bottom:131.535000px;}
.y98{bottom:132.207000px;}
.y1af{bottom:135.511500px;}
.y35{bottom:138.012000px;}
.y2b{bottom:139.554000px;}
.y166{bottom:146.416500px;}
.y6b{bottom:149.467500px;}
.ye8{bottom:149.530500px;}
.y155{bottom:149.829000px;}
.y97{bottom:150.139500px;}
.y1ae{bottom:153.444000px;}
.y34{bottom:155.946000px;}
.y2a{bottom:157.486500px;}
.y6a{bottom:167.400000px;}
.ye7{bottom:167.463000px;}
.y154{bottom:167.761500px;}
.y96{bottom:168.073500px;}
.y137{bottom:168.142500px;}
.y18e{bottom:168.919500px;}
.y33{bottom:173.878500px;}
.y1aa{bottom:175.212000px;}
.y29{bottom:175.420500px;}
.y69{bottom:185.332500px;}
.ye6{bottom:185.397000px;}
.y153{bottom:185.694000px;}
.y95{bottom:186.006000px;}
.y136{bottom:186.076500px;}
.y18d{bottom:186.852000px;}
.y32{bottom:191.811000px;}
.y28{bottom:193.353000px;}
.y10b{bottom:197.631000px;}
.y1d6{bottom:200.433000px;}
.y68{bottom:203.266500px;}
.ye5{bottom:203.329500px;}
.y94{bottom:203.938500px;}
.y152{bottom:203.988000px;}
.y135{bottom:204.009000px;}
.y1a9{bottom:204.679500px;}
.y18c{bottom:204.784500px;}
.y31{bottom:209.743500px;}
.y27{bottom:211.285500px;}
.y10a{bottom:215.563500px;}
.y1d5{bottom:218.365500px;}
.y67{bottom:221.199000px;}
.ye4{bottom:221.262000px;}
.y93{bottom:221.871000px;}
.y151{bottom:221.920500px;}
.y134{bottom:221.941500px;}
.y18b{bottom:222.717000px;}
.y30{bottom:227.676000px;}
.y26{bottom:229.218000px;}
.y1d4{bottom:236.298000px;}
.y66{bottom:239.131500px;}
.ye3{bottom:239.194500px;}
.y150{bottom:239.853000px;}
.y133{bottom:239.874000px;}
.y92{bottom:240.475500px;}
.y18a{bottom:240.649500px;}
.y2f{bottom:245.608500px;}
.y109{bottom:245.908500px;}
.y1d3{bottom:254.230500px;}
.y1a8{bottom:256.846500px;}
.y65{bottom:257.064000px;}
.ye2{bottom:257.191500px;}
.y14f{bottom:257.785500px;}
.y132{bottom:257.806500px;}
.y91{bottom:258.409500px;}
.y189{bottom:258.583500px;}
.y25{bottom:260.472000px;}
.y2e{bottom:263.542500px;}
.y108{bottom:263.841000px;}
.y1d2{bottom:272.164500px;}
.y1a7{bottom:274.779000px;}
.y64{bottom:274.996500px;}
.ye1{bottom:275.124000px;}
.y14e{bottom:275.719500px;}
.y131{bottom:275.739000px;}
.y90{bottom:276.342000px;}
.y188{bottom:276.516000px;}
.y107{bottom:281.775000px;}
.y1a6{bottom:292.711500px;}
.y63{bottom:292.929000px;}
.ye0{bottom:293.056500px;}
.y130{bottom:293.673000px;}
.y14d{bottom:294.012000px;}
.y8f{bottom:294.274500px;}
.y187{bottom:294.448500px;}
.y24{bottom:303.853500px;}
.y1d1{bottom:305.196000px;}
.y1a5{bottom:310.644000px;}
.y62{bottom:310.863000px;}
.ydf{bottom:310.989000px;}
.y12f{bottom:311.605500px;}
.y14c{bottom:311.946000px;}
.y106{bottom:312.120000px;}
.y8e{bottom:312.207000px;}
.y186{bottom:312.381000px;}
.y23{bottom:321.786000px;}
.y1d0{bottom:323.130000px;}
.y1a4{bottom:328.578000px;}
.y61{bottom:328.795500px;}
.yde{bottom:328.921500px;}
.y12e{bottom:329.538000px;}
.y14b{bottom:329.878500px;}
.y105{bottom:330.052500px;}
.y8d{bottom:330.139500px;}
.y164{bottom:330.276000px;}
.y185{bottom:331.833000px;}
.y22{bottom:339.718500px;}
.y1cf{bottom:341.062500px;}
.y1a3{bottom:346.510500px;}
.ydd{bottom:346.854000px;}
.y12d{bottom:347.470500px;}
.y14a{bottom:347.811000px;}
.y8c{bottom:348.073500px;}
.y163{bottom:348.208500px;}
.y184{bottom:349.765500px;}
.yb9{bottom:352.482000px;}
.y1ed{bottom:352.663500px;}
.y60{bottom:356.367000px;}
.y1ce{bottom:358.995000px;}
.y104{bottom:360.283500px;}
.y1a2{bottom:364.443000px;}
.ydc{bottom:364.788000px;}
.y12c{bottom:365.403000px;}
.y149{bottom:365.743500px;}
.y8b{bottom:366.006000px;}
.y162{bottom:366.141000px;}
.y183{bottom:367.698000px;}
.y5f{bottom:377.287500px;}
.y103{bottom:378.216000px;}
.y21{bottom:379.378500px;}
.y1a1{bottom:382.375500px;}
.ydb{bottom:382.720500px;}
.y12b{bottom:383.335500px;}
.y148{bottom:383.676000px;}
.y161{bottom:384.073500px;}
.y8a{bottom:384.610500px;}
.y182{bottom:385.630500px;}
.y1cd{bottom:392.028000px;}
.y20{bottom:395.070000px;}
.y102{bottom:396.148500px;}
.yb8{bottom:396.666000px;}
.y1a0{bottom:400.308000px;}
.yda{bottom:400.716000px;}
.y12a{bottom:401.269500px;}
.y147{bottom:401.608500px;}
.y160{bottom:402.006000px;}
.y89{bottom:402.543000px;}
.y181{bottom:403.564500px;}
.y1cc{bottom:409.960500px;}
.y5e{bottom:413.875500px;}
.y101{bottom:414.195000px;}
.yb7{bottom:414.598500px;}
.y19f{bottom:418.240500px;}
.yd9{bottom:418.648500px;}
.y129{bottom:419.202000px;}
.y1f{bottom:419.727000px;}
.y146{bottom:419.902500px;}
.y15f{bottom:419.940000px;}
.y88{bottom:420.475500px;}
.y180{bottom:421.497000px;}
.y1cb{bottom:427.893000px;}
.y5d{bottom:431.808000px;}
.y100{bottom:432.129000px;}
.yb6{bottom:432.531000px;}
.y1e{bottom:435.418500px;}
.y19e{bottom:436.174500px;}
.yd8{bottom:436.582500px;}
.y145{bottom:437.835000px;}
.y15e{bottom:437.872500px;}
.y128{bottom:437.877000px;}
.y87{bottom:438.409500px;}
.y17f{bottom:439.429500px;}
.y1ca{bottom:445.825500px;}
.y5c{bottom:449.740500px;}
.y1d{bottom:453.954000px;}
.y19d{bottom:454.107000px;}
.yd7{bottom:454.515000px;}
.y144{bottom:455.769000px;}
.y15d{bottom:455.805000px;}
.y86{bottom:456.342000px;}
.yb5{bottom:456.898500px;}
.y17e{bottom:457.362000px;}
.y1c{bottom:465.306000px;}
.yff{bottom:467.331000px;}
.y5b{bottom:467.673000px;}
.y127{bottom:470.365500px;}
.y19c{bottom:472.039500px;}
.yd6{bottom:472.447500px;}
.y143{bottom:473.701500px;}
.y15c{bottom:473.737500px;}
.y85{bottom:474.274500px;}
.yb4{bottom:474.831000px;}
.y17d{bottom:475.294500px;}
.y1c9{bottom:478.858500px;}
.y1b{bottom:483.843000px;}
.yfe{bottom:485.263500px;}
.y5a{bottom:485.605500px;}
.y126{bottom:488.298000px;}
.y19b{bottom:489.972000px;}
.yd5{bottom:490.380000px;}
.y142{bottom:491.634000px;}
.y84{bottom:492.207000px;}
.yb3{bottom:492.765000px;}
.y15b{bottom:493.150500px;}
.y17c{bottom:493.227000px;}
.y1c8{bottom:496.791000px;}
.yfd{bottom:503.196000px;}
.y59{bottom:503.538000px;}
.y1a{bottom:505.279500px;}
.y125{bottom:506.230500px;}
.y19a{bottom:507.904500px;}
.yd4{bottom:508.312500px;}
.y141{bottom:509.928000px;}
.y83{bottom:510.139500px;}
.yb2{bottom:510.697500px;}
.y17b{bottom:511.161000px;}
.y1c7{bottom:514.723500px;}
.yfc{bottom:521.128500px;}
.y58{bottom:521.472000px;}
.y124{bottom:524.163000px;}
.y199{bottom:525.837000px;}
.yd3{bottom:526.245000px;}
.y19{bottom:527.695500px;}
.y140{bottom:527.860500px;}
.y82{bottom:528.073500px;}
.y15a{bottom:528.222000px;}
.y17a{bottom:529.093500px;}
.y1c6{bottom:532.657500px;}
.y1ec{bottom:533.427000px;}
.yfb{bottom:539.061000px;}
.y57{bottom:539.404500px;}
.yb1{bottom:541.498500px;}
.y123{bottom:542.097000px;}
.y198{bottom:543.771000px;}
.yd2{bottom:544.242000px;}
.y18{bottom:545.628000px;}
.y13f{bottom:545.793000px;}
.y81{bottom:546.006000px;}
.y159{bottom:546.154500px;}
.y179{bottom:548.545500px;}
.y1c5{bottom:550.590000px;}
.y1ea{bottom:551.359500px;}
.y1eb{bottom:556.783500px;}
.yfa{bottom:556.993500px;}
.y56{bottom:557.337000px;}
.y122{bottom:560.029500px;}
.y197{bottom:561.703500px;}
.y13e{bottom:563.725500px;}
.y158{bottom:564.087000px;}
.y178{bottom:566.478000px;}
.y17{bottom:568.044000px;}
.y1c4{bottom:568.522500px;}
.y165{bottom:568.579500px;}
.y1e9{bottom:569.292000px;}
.yb0{bottom:572.299500px;}
.y80{bottom:573.972000px;}
.yd1{bottom:574.020000px;}
.yf9{bottom:574.927500px;}
.y55{bottom:575.269500px;}
.y121{bottom:577.962000px;}
.y13d{bottom:581.658000px;}
.y157{bottom:582.019500px;}
.y177{bottom:584.410500px;}
.y16{bottom:585.976500px;}
.y1e8{bottom:587.224500px;}
.y196{bottom:587.335500px;}
.yaf{bottom:590.233500px;}
.yf8{bottom:592.860000px;}
.y54{bottom:593.202000px;}
.y7f{bottom:594.892500px;}
.y120{bottom:596.637000px;}
.y13c{bottom:599.592000px;}
.y156{bottom:599.952000px;}
.y1c3{bottom:601.555500px;}
.y176{bottom:602.343000px;}
.y15{bottom:603.909000px;}
.yae{bottom:608.166000px;}
.yf7{bottom:610.792500px;}
.y53{bottom:611.134500px;}
.y11f{bottom:614.571000px;}
.yd0{bottom:615.858000px;}
.y1e7{bottom:617.113500px;}
.y13b{bottom:617.884500px;}
.y1c2{bottom:619.488000px;}
.y175{bottom:620.275500px;}
.y14{bottom:621.841500px;}
.yad{bottom:626.098500px;}
.yf6{bottom:628.839000px;}
.y52{bottom:629.068500px;}
.y11e{bottom:632.503500px;}
.ycf{bottom:633.790500px;}
.y1e6{bottom:635.046000px;}
.y1c1{bottom:637.420500px;}
.y174{bottom:638.208000px;}
.y13{bottom:639.775500px;}
.y7e{bottom:641.172000px;}
.y195{bottom:641.247000px;}
.yf5{bottom:646.771500px;}
.y51{bottom:647.001000px;}
.y11d{bottom:651.178500px;}
.yce{bottom:651.724500px;}
.y1e5{bottom:652.978500px;}
.yac{bottom:656.899500px;}
.y173{bottom:657.660000px;}
.y12{bottom:657.708000px;}
.y7d{bottom:659.106000px;}
.y194{bottom:659.179500px;}
.yf4{bottom:664.705500px;}
.y50{bottom:664.933500px;}
.ycd{bottom:669.657000px;}
.y1c0{bottom:670.453500px;}
.y1e4{bottom:670.911000px;}
.yab{bottom:674.833500px;}
.y172{bottom:675.592500px;}
.y7c{bottom:677.038500px;}
.y192{bottom:677.112000px;}
.y11{bottom:680.124000px;}
.y193{bottom:681.520500px;}
.yf3{bottom:682.638000px;}
.y4f{bottom:682.866000px;}
.ycc{bottom:687.589500px;}
.y1ad{bottom:688.384500px;}
.y1bf{bottom:688.386000px;}
.y11c{bottom:688.894500px;}
.yaa{bottom:692.766000px;}
.y171{bottom:693.525000px;}
.y191{bottom:695.044500px;}
.y10{bottom:698.056500px;}
.yf2{bottom:700.570500px;}
.y4e{bottom:700.798500px;}
.ycb{bottom:705.522000px;}
.y1ac{bottom:706.317000px;}
.y1be{bottom:706.318500px;}
.y11b{bottom:706.828500px;}
.y7b{bottom:709.615500px;}
.ya9{bottom:710.698500px;}
.y170{bottom:711.459000px;}
.y190{bottom:712.977000px;}
.yf1{bottom:718.617000px;}
.y4d{bottom:718.731000px;}
.yf{bottom:720.472500px;}
.yca{bottom:723.454500px;}
.y11a{bottom:724.761000px;}
.y7a{bottom:727.548000px;}
.y16f{bottom:729.391500px;}
.y1bd{bottom:730.564500px;}
.y18f{bottom:730.909500px;}
.yf0{bottom:736.549500px;}
.y4c{bottom:736.665000px;}
.ye{bottom:738.405000px;}
.yc9{bottom:741.387000px;}
.ya8{bottom:741.499500px;}
.y119{bottom:742.693500px;}
.y16e{bottom:748.843500px;}
.yef{bottom:754.483500px;}
.y4b{bottom:754.597500px;}
.yd{bottom:756.337500px;}
.yc8{bottom:759.321000px;}
.ya7{bottom:759.432000px;}
.y79{bottom:760.126500px;}
.y118{bottom:760.626000px;}
.y16d{bottom:766.776000px;}
.yee{bottom:772.416000px;}
.y4a{bottom:772.530000px;}
.yc{bottom:774.270000px;}
.yc7{bottom:777.316500px;}
.ya6{bottom:777.366000px;}
.y1bc{bottom:777.537000px;}
.y78{bottom:778.059000px;}
.y1e3{bottom:784.485000px;}
.y16c{bottom:784.708500px;}
.yed{bottom:790.348500px;}
.y49{bottom:790.462500px;}
.yb{bottom:792.204000px;}
.y117{bottom:793.485000px;}
.yc6{bottom:795.249000px;}
.ya5{bottom:795.298500px;}
.y1e2{bottom:802.417500px;}
.y16b{bottom:802.641000px;}
.y1bb{bottom:803.019000px;}
.yec{bottom:808.281000px;}
.y48{bottom:808.395000px;}
.ya{bottom:810.136500px;}
.y77{bottom:810.637500px;}
.y116{bottom:811.419000px;}
.yc5{bottom:813.181500px;}
.y1e1{bottom:820.350000px;}
.y1ba{bottom:820.951500px;}
.ya4{bottom:825.871500px;}
.yeb{bottom:826.213500px;}
.y47{bottom:826.327500px;}
.y9{bottom:828.069000px;}
.y76{bottom:828.570000px;}
.y115{bottom:829.351500px;}
.yc4{bottom:831.115500px;}
.y1e0{bottom:838.284000px;}
.ya3{bottom:843.804000px;}
.yea{bottom:844.146000px;}
.y46{bottom:844.261500px;}
.y1b9{bottom:846.435000px;}
.y114{bottom:847.284000px;}
.yc3{bottom:849.048000px;}
.y16a{bottom:852.853500px;}
.y1df{bottom:856.216500px;}
.y75{bottom:861.147000px;}
.ya2{bottom:861.966000px;}
.ye9{bottom:862.080000px;}
.y45{bottom:862.194000px;}
.y113{bottom:865.216500px;}
.yc2{bottom:866.980500px;}
.y169{bottom:870.786000px;}
.y1b8{bottom:871.917000px;}
.y1de{bottom:874.149000px;}
.y74{bottom:879.081000px;}
.ya1{bottom:879.898500px;}
.y44{bottom:880.126500px;}
.y8{bottom:881.530500px;}
.y112{bottom:883.149000px;}
.yc1{bottom:884.913000px;}
.y168{bottom:888.718500px;}
.y1dd{bottom:892.081500px;}
.y73{bottom:897.013500px;}
.y1b7{bottom:897.400500px;}
.ya0{bottom:897.831000px;}
.y43{bottom:898.059000px;}
.yc0{bottom:902.845500px;}
.y9f{bottom:915.763500px;}
.y42{bottom:915.991500px;}
.y111{bottom:916.009500px;}
.y7{bottom:920.385000px;}
.ybf{bottom:920.778000px;}
.y1dc{bottom:921.969000px;}
.y1b6{bottom:922.882500px;}
.y72{bottom:932.580000px;}
.y9e{bottom:933.696000px;}
.y41{bottom:933.924000px;}
.y110{bottom:933.942000px;}
.ybe{bottom:938.712000px;}
.y1db{bottom:939.903000px;}
.y1b5{bottom:948.366000px;}
.y71{bottom:950.512500px;}
.y9d{bottom:951.628500px;}
.y40{bottom:951.858000px;}
.y10f{bottom:951.874500px;}
.ybd{bottom:956.707500px;}
.y6{bottom:957.745500px;}
.y1da{bottom:957.835500px;}
.y70{bottom:969.118500px;}
.y9c{bottom:969.562500px;}
.y3f{bottom:969.790500px;}
.y10e{bottom:969.807000px;}
.y1b4{bottom:973.848000px;}
.ybc{bottom:974.640000px;}
.y1d9{bottom:975.768000px;}
.y6f{bottom:987.051000px;}
.y9b{bottom:987.495000px;}
.y3e{bottom:987.723000px;}
.y10d{bottom:987.739500px;}
.ybb{bottom:992.572500px;}
.y1d8{bottom:993.700500px;}
.y5{bottom:995.104500px;}
.y1b3{bottom:999.331500px;}
.y6e{bottom:1004.983500px;}
.y3d{bottom:1005.655500px;}
.y10c{bottom:1005.673500px;}
.yba{bottom:1015.870500px;}
.y3c{bottom:1023.588000px;}
.y1b2{bottom:1024.813500px;}
.y4{bottom:1032.465000px;}
.y3b{bottom:1041.520500px;}
.y1d7{bottom:1046.946000px;}
.y1b1{bottom:1050.297000px;}
.y3a{bottom:1059.454500px;}
.y13a{bottom:1061.845500px;}
.y1b0{bottom:1074.318000px;}
.y39{bottom:1077.387000px;}
.y139{bottom:1079.778000px;}
.y3{bottom:1099.713000px;}
.y2{bottom:1116.151500px;}
.y1{bottom:1129.249500px;}
.y38{bottom:1133.575500px;}
.h8{height:26.576410px;}
.he{height:30.432854px;}
.hd{height:31.675000px;}
.h9{height:35.435065px;}
.ha{height:36.200194px;}
.h13{height:39.803377px;}
.h10{height:39.930101px;}
.h2{height:40.725389px;}
.h11{height:40.826735px;}
.hc{height:41.125613px;}
.hf{height:42.620003px;}
.h7{height:44.293720px;}
.h6{height:45.250129px;}
.h12{height:50.220000px;}
.h1{height:54.087389px;}
.hb{height:54.300518px;}
.h5{height:65.904614px;}
.h4{height:88.587884px;}
.h3{height:90.500713px;}
.h0{height:1188.000000px;}
.w1{width:145.638000px;}
.w0{width:918.000000px;}
.x51{left:-553.685265px;}
.x52{left:-209.376945px;}
.x0{left:0.000000px;}
.x3a{left:83.709000px;}
.x4{left:85.039500px;}
.x1{left:90.643500px;}
.x3f{left:92.511000px;}
.x5{left:95.127000px;}
.x1f{left:103.711500px;}
.x7{left:107.455500px;}
.x2a{left:113.283000px;}
.x40{left:117.406500px;}
.x9{left:121.906500px;}
.x20{left:125.373000px;}
.x37{left:135.430500px;}
.x38{left:142.902000px;}
.x22{left:153.271500px;}
.x21{left:154.795500px;}
.x3d{left:165.222000px;}
.x23{left:169.812000px;}
.x39{left:176.103000px;}
.x43{left:190.684500px;}
.x42{left:210.376500px;}
.x6{left:212.052000px;}
.x3e{left:215.433000px;}
.xa{left:218.929500px;}
.x1b{left:269.145000px;}
.x1c{left:284.089500px;}
.x1d{left:291.846000px;}
.x1e{left:306.790500px;}
.x19{left:322.114500px;}
.xb{left:325.882500px;}
.xc{left:333.355500px;}
.x1a{left:337.057500px;}
.x41{left:340.159500px;}
.x2b{left:359.014500px;}
.x2c{left:373.957500px;}
.x44{left:397.978500px;}
.x2{left:406.521000px;}
.x3{left:429.102000px;}
.x8{left:470.692500px;}
.x3b{left:474.504000px;}
.x45{left:478.165500px;}
.x15{left:479.890500px;}
.x11{left:493.108500px;}
.x46{left:503.059500px;}
.x14{left:508.044000px;}
.x2f{left:513.120000px;}
.x30{left:520.591500px;}
.x35{left:523.147500px;}
.x36{left:538.090500px;}
.x25{left:541.452000px;}
.x4d{left:546.619500px;}
.xd{left:554.818500px;}
.x4e{left:556.464000px;}
.xe{left:562.290000px;}
.x47{left:567.436500px;}
.x16{left:572.278500px;}
.x28{left:577.585500px;}
.x26{left:585.090000px;}
.x27{left:592.561500px;}
.x3c{left:595.527000px;}
.x24{left:604.996500px;}
.x29{left:611.970000px;}
.x4a{left:620.010000px;}
.x18{left:633.027000px;}
.x49{left:636.132000px;}
.x17{left:641.229000px;}
.x4f{left:650.457000px;}
.x48{left:670.120500px;}
.x50{left:687.324000px;}
.x2d{left:709.959000px;}
.x2e{left:717.432000px;}
.xf{left:721.144500px;}
.x4c{left:724.978500px;}
.x10{left:728.617500px;}
.x12{left:737.082000px;}
.x13{left:744.553500px;}
.x31{left:778.993500px;}
.x4b{left:783.108000px;}
.x32{left:793.936500px;}
.x33{left:811.128000px;}
.x34{left:826.071000px;}
@media print{
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.877333pt;}
.v2{vertical-align:23.146667pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.265669pt;}
.lsa{letter-spacing:0.318803pt;}
.lsc{letter-spacing:0.371937pt;}
.ls8{letter-spacing:0.531339pt;}
.lsf{letter-spacing:0.584473pt;}
.lsb{letter-spacing:0.637606pt;}
.ls7{letter-spacing:0.690740pt;}
.ls9{letter-spacing:0.743874pt;}
.lsd{letter-spacing:0.850142pt;}
.ls1{letter-spacing:2.653090pt;}
.ls0{letter-spacing:2.654302pt;}
.ls2{letter-spacing:2.658423pt;}
.ls6{letter-spacing:2.762961pt;}
.ls4{letter-spacing:222.653645pt;}
.ls5{letter-spacing:224.518656pt;}
.ws1d{word-spacing:-17.725577pt;}
.ws3f{word-spacing:-13.283467pt;}
.ws51{word-spacing:-10.339821pt;}
.ws3a{word-spacing:-2.869229pt;}
.ws96{word-spacing:-2.816095pt;}
.ws5f{word-spacing:-2.762961pt;}
.ws3b{word-spacing:-2.550426pt;}
.ws81{word-spacing:-2.497292pt;}
.ws89{word-spacing:-2.391024pt;}
.ws42{word-spacing:-2.337890pt;}
.ws8f{word-spacing:-2.231622pt;}
.ws7a{word-spacing:-2.178489pt;}
.ws97{word-spacing:-2.072221pt;}
.ws4d{word-spacing:-2.019087pt;}
.ws62{word-spacing:-1.965953pt;}
.ws2{word-spacing:-1.806561pt;}
.ws5e{word-spacing:-1.806551pt;}
.ws83{word-spacing:-1.753418pt;}
.ws4b{word-spacing:-1.700284pt;}
.wsd{word-spacing:-1.647150pt;}
.ws64{word-spacing:-1.594016pt;}
.ws6c{word-spacing:-1.540882pt;}
.ws4e{word-spacing:-1.434614pt;}
.ws68{word-spacing:-1.381481pt;}
.ws7e{word-spacing:-1.328347pt;}
.ws80{word-spacing:-1.275213pt;}
.ws38{word-spacing:-1.222079pt;}
.ws8c{word-spacing:-1.115811pt;}
.ws40{word-spacing:-1.009543pt;}
.ws58{word-spacing:-0.956410pt;}
.ws41{word-spacing:-0.903276pt;}
.ws4c{word-spacing:-0.797008pt;}
.ws32{word-spacing:-0.743874pt;}
.ws74{word-spacing:-0.690740pt;}
.ws69{word-spacing:-0.637606pt;}
.ws5a{word-spacing:-0.584473pt;}
.ws99{word-spacing:-0.531339pt;}
.ws36{word-spacing:-0.478205pt;}
.ws91{word-spacing:-0.425071pt;}
.ws6d{word-spacing:-0.371937pt;}
.ws53{word-spacing:-0.318803pt;}
.ws33{word-spacing:-0.265669pt;}
.ws23{word-spacing:-0.212535pt;}
.ws22{word-spacing:-0.159402pt;}
.ws27{word-spacing:-0.106268pt;}
.ws1c{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.047821pt;}
.ws15{word-spacing:-0.042507pt;}
.ws82{word-spacing:-0.010716pt;}
.ws0{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.042418pt;}
.ws35{word-spacing:0.053134pt;}
.ws31{word-spacing:0.106268pt;}
.ws16{word-spacing:0.127522pt;}
.ws2e{word-spacing:0.159402pt;}
.ws24{word-spacing:0.212535pt;}
.ws30{word-spacing:0.265669pt;}
.ws26{word-spacing:0.318803pt;}
.ws67{word-spacing:0.371937pt;}
.ws2c{word-spacing:0.425071pt;}
.ws56{word-spacing:0.478205pt;}
.ws29{word-spacing:0.531339pt;}
.ws73{word-spacing:0.584473pt;}
.ws70{word-spacing:0.637606pt;}
.ws72{word-spacing:0.690740pt;}
.ws9a{word-spacing:0.743874pt;}
.ws55{word-spacing:0.797008pt;}
.ws2f{word-spacing:0.850142pt;}
.ws25{word-spacing:0.956410pt;}
.ws5b{word-spacing:1.009543pt;}
.ws3d{word-spacing:1.062677pt;}
.ws3c{word-spacing:1.168945pt;}
.ws8b{word-spacing:1.275213pt;}
.ws7b{word-spacing:1.328347pt;}
.ws46{word-spacing:1.381481pt;}
.ws6e{word-spacing:1.434614pt;}
.ws4f{word-spacing:1.487748pt;}
.ws65{word-spacing:1.540882pt;}
.ws59{word-spacing:1.647150pt;}
.ws76{word-spacing:1.700284pt;}
.ws2d{word-spacing:1.806551pt;}
.ws87{word-spacing:1.859685pt;}
.ws92{word-spacing:1.912819pt;}
.ws43{word-spacing:1.965953pt;}
.ws39{word-spacing:2.072221pt;}
.ws6a{word-spacing:2.231622pt;}
.ws6b{word-spacing:2.337890pt;}
.ws4a{word-spacing:2.444158pt;}
.ws45{word-spacing:2.709827pt;}
.ws9c{word-spacing:2.727680pt;}
.ws21{word-spacing:2.762961pt;}
.ws5d{word-spacing:2.816095pt;}
.ws5c{word-spacing:2.869229pt;}
.ws44{word-spacing:2.922363pt;}
.ws8e{word-spacing:3.028630pt;}
.ws2a{word-spacing:3.134898pt;}
.ws48{word-spacing:3.188032pt;}
.ws7c{word-spacing:3.347434pt;}
.ws66{word-spacing:3.506835pt;}
.ws63{word-spacing:3.559969pt;}
.ws20{word-spacing:3.666237pt;}
.ws47{word-spacing:3.719371pt;}
.ws75{word-spacing:3.772505pt;}
.ws86{word-spacing:3.825638pt;}
.ws79{word-spacing:3.878772pt;}
.ws57{word-spacing:3.931906pt;}
.ws60{word-spacing:4.038174pt;}
.ws1f{word-spacing:4.144442pt;}
.ws50{word-spacing:4.197575pt;}
.ws8a{word-spacing:4.250709pt;}
.ws78{word-spacing:4.410111pt;}
.ws54{word-spacing:4.463245pt;}
.ws49{word-spacing:4.835182pt;}
.ws84{word-spacing:4.888316pt;}
.ws61{word-spacing:4.941450pt;}
.ws77{word-spacing:5.100851pt;}
.ws28{word-spacing:5.153985pt;}
.ws34{word-spacing:5.313387pt;}
.ws6f{word-spacing:5.472788pt;}
.ws95{word-spacing:5.525922pt;}
.ws71{word-spacing:6.004127pt;}
.ws90{word-spacing:6.057261pt;}
.ws2b{word-spacing:6.163529pt;}
.ws7f{word-spacing:6.216662pt;}
.ws37{word-spacing:6.801135pt;}
.ws85{word-spacing:6.854269pt;}
.ws1e{word-spacing:6.907403pt;}
.ws52{word-spacing:7.013670pt;}
.ws3e{word-spacing:7.173072pt;}
.ws19{word-spacing:7.226206pt;}
.ws88{word-spacing:7.491875pt;}
.ws98{word-spacing:8.182615pt;}
.ws7d{word-spacing:10.616218pt;}
.ws14{word-spacing:11.774494pt;}
.ws17{word-spacing:11.902016pt;}
.ws18{word-spacing:11.944523pt;}
.wse{word-spacing:13.070931pt;}
.ws94{word-spacing:13.230333pt;}
.ws6{word-spacing:14.505546pt;}
.ws8{word-spacing:14.558679pt;}
.wsb{word-spacing:14.611813pt;}
.ws9{word-spacing:14.664947pt;}
.wsc{word-spacing:14.718081pt;}
.ws7{word-spacing:14.771215pt;}
.wsa{word-spacing:14.930617pt;}
.ws13{word-spacing:15.780758pt;}
.ws11{word-spacing:15.887026pt;}
.ws1b{word-spacing:16.949703pt;}
.ws4{word-spacing:17.661815pt;}
.ws10{word-spacing:18.862523pt;}
.ws12{word-spacing:20.987877pt;}
.ws1a{word-spacing:21.944287pt;}
.ws9b{word-spacing:24.420644pt;}
.ws93{word-spacing:26.513799pt;}
.ws3{word-spacing:29.436310pt;}
.ws5{word-spacing:37.831313pt;}
.wsf{word-spacing:52.018055pt;}
._19{margin-left:-24.756662pt;}
._18{margin-left:-7.332442pt;}
._5{margin-left:-6.376096pt;}
._e{margin-left:-5.207103pt;}
._3{margin-left:-4.303872pt;}
._9{margin-left:-3.081748pt;}
._6{margin-left:-2.125371pt;}
._1{margin-left:-1.062677pt;}
._0{width:1.062677pt;}
._8{width:2.019087pt;}
._f{width:3.230547pt;}
._4{width:4.399514pt;}
._10{width:11.094401pt;}
._12{width:12.380191pt;}
._13{width:14.186758pt;}
._c{width:15.515105pt;}
._b{width:17.746727pt;}
._a{width:18.862555pt;}
._d{width:21.678618pt;}
._17{width:23.910400pt;}
._15{width:24.919783pt;}
._16{width:26.566933pt;}
._7{width:45.244945pt;}
._11{width:52.071189pt;}
._14{width:222.158006pt;}
._2{width:566.001745pt;}
.fs4{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs7{font-size:39.318933pt;}
.fs5{font-size:42.507200pt;}
.fs1{font-size:47.820800pt;}
.fs8{font-size:49.414496pt;}
.fs0{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:106.268267pt;}
.y1f0{bottom:-817.293920pt;}
.y0{bottom:0.000000pt;}
.y1ef{bottom:10.352760pt;}
.y1ee{bottom:25.176960pt;}
.y9a{bottom:34.561333pt;}
.y138{bottom:34.562667pt;}
.y99{bottom:45.189333pt;}
.y2d{bottom:85.040000pt;}
.y37{bottom:90.797333pt;}
.y6d{bottom:100.980000pt;}
.y36{bottom:106.737333pt;}
.y1ab{bottom:107.625333pt;}
.y2c{bottom:108.108000pt;}
.y167{bottom:114.208000pt;}
.y6c{bottom:116.920000pt;}
.y98{bottom:117.517333pt;}
.y1af{bottom:120.454667pt;}
.y35{bottom:122.677333pt;}
.y2b{bottom:124.048000pt;}
.y166{bottom:130.148000pt;}
.y6b{bottom:132.860000pt;}
.ye8{bottom:132.916000pt;}
.y155{bottom:133.181333pt;}
.y97{bottom:133.457333pt;}
.y1ae{bottom:136.394667pt;}
.y34{bottom:138.618667pt;}
.y2a{bottom:139.988000pt;}
.y6a{bottom:148.800000pt;}
.ye7{bottom:148.856000pt;}
.y154{bottom:149.121333pt;}
.y96{bottom:149.398667pt;}
.y137{bottom:149.460000pt;}
.y18e{bottom:150.150667pt;}
.y33{bottom:154.558667pt;}
.y1aa{bottom:155.744000pt;}
.y29{bottom:155.929333pt;}
.y69{bottom:164.740000pt;}
.ye6{bottom:164.797333pt;}
.y153{bottom:165.061333pt;}
.y95{bottom:165.338667pt;}
.y136{bottom:165.401333pt;}
.y18d{bottom:166.090667pt;}
.y32{bottom:170.498667pt;}
.y28{bottom:171.869333pt;}
.y10b{bottom:175.672000pt;}
.y1d6{bottom:178.162667pt;}
.y68{bottom:180.681333pt;}
.ye5{bottom:180.737333pt;}
.y94{bottom:181.278667pt;}
.y152{bottom:181.322667pt;}
.y135{bottom:181.341333pt;}
.y1a9{bottom:181.937333pt;}
.y18c{bottom:182.030667pt;}
.y31{bottom:186.438667pt;}
.y27{bottom:187.809333pt;}
.y10a{bottom:191.612000pt;}
.y1d5{bottom:194.102667pt;}
.y67{bottom:196.621333pt;}
.ye4{bottom:196.677333pt;}
.y93{bottom:197.218667pt;}
.y151{bottom:197.262667pt;}
.y134{bottom:197.281333pt;}
.y18b{bottom:197.970667pt;}
.y30{bottom:202.378667pt;}
.y26{bottom:203.749333pt;}
.y1d4{bottom:210.042667pt;}
.y66{bottom:212.561333pt;}
.ye3{bottom:212.617333pt;}
.y150{bottom:213.202667pt;}
.y133{bottom:213.221333pt;}
.y92{bottom:213.756000pt;}
.y18a{bottom:213.910667pt;}
.y2f{bottom:218.318667pt;}
.y109{bottom:218.585333pt;}
.y1d3{bottom:225.982667pt;}
.y1a8{bottom:228.308000pt;}
.y65{bottom:228.501333pt;}
.ye2{bottom:228.614667pt;}
.y14f{bottom:229.142667pt;}
.y132{bottom:229.161333pt;}
.y91{bottom:229.697333pt;}
.y189{bottom:229.852000pt;}
.y25{bottom:231.530667pt;}
.y2e{bottom:234.260000pt;}
.y108{bottom:234.525333pt;}
.y1d2{bottom:241.924000pt;}
.y1a7{bottom:244.248000pt;}
.y64{bottom:244.441333pt;}
.ye1{bottom:244.554667pt;}
.y14e{bottom:245.084000pt;}
.y131{bottom:245.101333pt;}
.y90{bottom:245.637333pt;}
.y188{bottom:245.792000pt;}
.y107{bottom:250.466667pt;}
.y1a6{bottom:260.188000pt;}
.y63{bottom:260.381333pt;}
.ye0{bottom:260.494667pt;}
.y130{bottom:261.042667pt;}
.y14d{bottom:261.344000pt;}
.y8f{bottom:261.577333pt;}
.y187{bottom:261.732000pt;}
.y24{bottom:270.092000pt;}
.y1d1{bottom:271.285333pt;}
.y1a5{bottom:276.128000pt;}
.y62{bottom:276.322667pt;}
.ydf{bottom:276.434667pt;}
.y12f{bottom:276.982667pt;}
.y14c{bottom:277.285333pt;}
.y106{bottom:277.440000pt;}
.y8e{bottom:277.517333pt;}
.y186{bottom:277.672000pt;}
.y23{bottom:286.032000pt;}
.y1d0{bottom:287.226667pt;}
.y1a4{bottom:292.069333pt;}
.y61{bottom:292.262667pt;}
.yde{bottom:292.374667pt;}
.y12e{bottom:292.922667pt;}
.y14b{bottom:293.225333pt;}
.y105{bottom:293.380000pt;}
.y8d{bottom:293.457333pt;}
.y164{bottom:293.578667pt;}
.y185{bottom:294.962667pt;}
.y22{bottom:301.972000pt;}
.y1cf{bottom:303.166667pt;}
.y1a3{bottom:308.009333pt;}
.ydd{bottom:308.314667pt;}
.y12d{bottom:308.862667pt;}
.y14a{bottom:309.165333pt;}
.y8c{bottom:309.398667pt;}
.y163{bottom:309.518667pt;}
.y184{bottom:310.902667pt;}
.yb9{bottom:313.317333pt;}
.y1ed{bottom:313.478667pt;}
.y60{bottom:316.770667pt;}
.y1ce{bottom:319.106667pt;}
.y104{bottom:320.252000pt;}
.y1a2{bottom:323.949333pt;}
.ydc{bottom:324.256000pt;}
.y12c{bottom:324.802667pt;}
.y149{bottom:325.105333pt;}
.y8b{bottom:325.338667pt;}
.y162{bottom:325.458667pt;}
.y183{bottom:326.842667pt;}
.y5f{bottom:335.366667pt;}
.y103{bottom:336.192000pt;}
.y21{bottom:337.225333pt;}
.y1a1{bottom:339.889333pt;}
.ydb{bottom:340.196000pt;}
.y12b{bottom:340.742667pt;}
.y148{bottom:341.045333pt;}
.y161{bottom:341.398667pt;}
.y8a{bottom:341.876000pt;}
.y182{bottom:342.782667pt;}
.y1cd{bottom:348.469333pt;}
.y20{bottom:351.173333pt;}
.y102{bottom:352.132000pt;}
.yb8{bottom:352.592000pt;}
.y1a0{bottom:355.829333pt;}
.yda{bottom:356.192000pt;}
.y12a{bottom:356.684000pt;}
.y147{bottom:356.985333pt;}
.y160{bottom:357.338667pt;}
.y89{bottom:357.816000pt;}
.y181{bottom:358.724000pt;}
.y1cc{bottom:364.409333pt;}
.y5e{bottom:367.889333pt;}
.y101{bottom:368.173333pt;}
.yb7{bottom:368.532000pt;}
.y19f{bottom:371.769333pt;}
.yd9{bottom:372.132000pt;}
.y129{bottom:372.624000pt;}
.y1f{bottom:373.090667pt;}
.y146{bottom:373.246667pt;}
.y15f{bottom:373.280000pt;}
.y88{bottom:373.756000pt;}
.y180{bottom:374.664000pt;}
.y1cb{bottom:380.349333pt;}
.y5d{bottom:383.829333pt;}
.y100{bottom:384.114667pt;}
.yb6{bottom:384.472000pt;}
.y1e{bottom:387.038667pt;}
.y19e{bottom:387.710667pt;}
.yd8{bottom:388.073333pt;}
.y145{bottom:389.186667pt;}
.y15e{bottom:389.220000pt;}
.y128{bottom:389.224000pt;}
.y87{bottom:389.697333pt;}
.y17f{bottom:390.604000pt;}
.y1ca{bottom:396.289333pt;}
.y5c{bottom:399.769333pt;}
.y1d{bottom:403.514667pt;}
.y19d{bottom:403.650667pt;}
.yd7{bottom:404.013333pt;}
.y144{bottom:405.128000pt;}
.y15d{bottom:405.160000pt;}
.y86{bottom:405.637333pt;}
.yb5{bottom:406.132000pt;}
.y17e{bottom:406.544000pt;}
.y1c{bottom:413.605333pt;}
.yff{bottom:415.405333pt;}
.y5b{bottom:415.709333pt;}
.y127{bottom:418.102667pt;}
.y19c{bottom:419.590667pt;}
.yd6{bottom:419.953333pt;}
.y143{bottom:421.068000pt;}
.y15c{bottom:421.100000pt;}
.y85{bottom:421.577333pt;}
.yb4{bottom:422.072000pt;}
.y17d{bottom:422.484000pt;}
.y1c9{bottom:425.652000pt;}
.y1b{bottom:430.082667pt;}
.yfe{bottom:431.345333pt;}
.y5a{bottom:431.649333pt;}
.y126{bottom:434.042667pt;}
.y19b{bottom:435.530667pt;}
.yd5{bottom:435.893333pt;}
.y142{bottom:437.008000pt;}
.y84{bottom:437.517333pt;}
.yb3{bottom:438.013333pt;}
.y15b{bottom:438.356000pt;}
.y17c{bottom:438.424000pt;}
.y1c8{bottom:441.592000pt;}
.yfd{bottom:447.285333pt;}
.y59{bottom:447.589333pt;}
.y1a{bottom:449.137333pt;}
.y125{bottom:449.982667pt;}
.y19a{bottom:451.470667pt;}
.yd4{bottom:451.833333pt;}
.y141{bottom:453.269333pt;}
.y83{bottom:453.457333pt;}
.yb2{bottom:453.953333pt;}
.y17b{bottom:454.365333pt;}
.y1c7{bottom:457.532000pt;}
.yfc{bottom:463.225333pt;}
.y58{bottom:463.530667pt;}
.y124{bottom:465.922667pt;}
.y199{bottom:467.410667pt;}
.yd3{bottom:467.773333pt;}
.y19{bottom:469.062667pt;}
.y140{bottom:469.209333pt;}
.y82{bottom:469.398667pt;}
.y15a{bottom:469.530667pt;}
.y17a{bottom:470.305333pt;}
.y1c6{bottom:473.473333pt;}
.y1ec{bottom:474.157333pt;}
.yfb{bottom:479.165333pt;}
.y57{bottom:479.470667pt;}
.yb1{bottom:481.332000pt;}
.y123{bottom:481.864000pt;}
.y198{bottom:483.352000pt;}
.yd2{bottom:483.770667pt;}
.y18{bottom:485.002667pt;}
.y13f{bottom:485.149333pt;}
.y81{bottom:485.338667pt;}
.y159{bottom:485.470667pt;}
.y179{bottom:487.596000pt;}
.y1c5{bottom:489.413333pt;}
.y1ea{bottom:490.097333pt;}
.y1eb{bottom:494.918667pt;}
.yfa{bottom:495.105333pt;}
.y56{bottom:495.410667pt;}
.y122{bottom:497.804000pt;}
.y197{bottom:499.292000pt;}
.y13e{bottom:501.089333pt;}
.y158{bottom:501.410667pt;}
.y178{bottom:503.536000pt;}
.y17{bottom:504.928000pt;}
.y1c4{bottom:505.353333pt;}
.y165{bottom:505.404000pt;}
.y1e9{bottom:506.037333pt;}
.yb0{bottom:508.710667pt;}
.y80{bottom:510.197333pt;}
.yd1{bottom:510.240000pt;}
.yf9{bottom:511.046667pt;}
.y55{bottom:511.350667pt;}
.y121{bottom:513.744000pt;}
.y13d{bottom:517.029333pt;}
.y157{bottom:517.350667pt;}
.y177{bottom:519.476000pt;}
.y16{bottom:520.868000pt;}
.y1e8{bottom:521.977333pt;}
.y196{bottom:522.076000pt;}
.yaf{bottom:524.652000pt;}
.yf8{bottom:526.986667pt;}
.y54{bottom:527.290667pt;}
.y7f{bottom:528.793333pt;}
.y120{bottom:530.344000pt;}
.y13c{bottom:532.970667pt;}
.y156{bottom:533.290667pt;}
.y1c3{bottom:534.716000pt;}
.y176{bottom:535.416000pt;}
.y15{bottom:536.808000pt;}
.yae{bottom:540.592000pt;}
.yf7{bottom:542.926667pt;}
.y53{bottom:543.230667pt;}
.y11f{bottom:546.285333pt;}
.yd0{bottom:547.429333pt;}
.y1e7{bottom:548.545333pt;}
.y13b{bottom:549.230667pt;}
.y1c2{bottom:550.656000pt;}
.y175{bottom:551.356000pt;}
.y14{bottom:552.748000pt;}
.yad{bottom:556.532000pt;}
.yf6{bottom:558.968000pt;}
.y52{bottom:559.172000pt;}
.y11e{bottom:562.225333pt;}
.ycf{bottom:563.369333pt;}
.y1e6{bottom:564.485333pt;}
.y1c1{bottom:566.596000pt;}
.y174{bottom:567.296000pt;}
.y13{bottom:568.689333pt;}
.y7e{bottom:569.930667pt;}
.y195{bottom:569.997333pt;}
.yf5{bottom:574.908000pt;}
.y51{bottom:575.112000pt;}
.y11d{bottom:578.825333pt;}
.yce{bottom:579.310667pt;}
.y1e5{bottom:580.425333pt;}
.yac{bottom:583.910667pt;}
.y173{bottom:584.586667pt;}
.y12{bottom:584.629333pt;}
.y7d{bottom:585.872000pt;}
.y194{bottom:585.937333pt;}
.yf4{bottom:590.849333pt;}
.y50{bottom:591.052000pt;}
.ycd{bottom:595.250667pt;}
.y1c0{bottom:595.958667pt;}
.y1e4{bottom:596.365333pt;}
.yab{bottom:599.852000pt;}
.y172{bottom:600.526667pt;}
.y7c{bottom:601.812000pt;}
.y192{bottom:601.877333pt;}
.y11{bottom:604.554667pt;}
.y193{bottom:605.796000pt;}
.yf3{bottom:606.789333pt;}
.y4f{bottom:606.992000pt;}
.ycc{bottom:611.190667pt;}
.y1ad{bottom:611.897333pt;}
.y1bf{bottom:611.898667pt;}
.y11c{bottom:612.350667pt;}
.yaa{bottom:615.792000pt;}
.y171{bottom:616.466667pt;}
.y191{bottom:617.817333pt;}
.y10{bottom:620.494667pt;}
.yf2{bottom:622.729333pt;}
.y4e{bottom:622.932000pt;}
.ycb{bottom:627.130667pt;}
.y1ac{bottom:627.837333pt;}
.y1be{bottom:627.838667pt;}
.y11b{bottom:628.292000pt;}
.y7b{bottom:630.769333pt;}
.ya9{bottom:631.732000pt;}
.y170{bottom:632.408000pt;}
.y190{bottom:633.757333pt;}
.yf1{bottom:638.770667pt;}
.y4d{bottom:638.872000pt;}
.yf{bottom:640.420000pt;}
.yca{bottom:643.070667pt;}
.y11a{bottom:644.232000pt;}
.y7a{bottom:646.709333pt;}
.y16f{bottom:648.348000pt;}
.y1bd{bottom:649.390667pt;}
.y18f{bottom:649.697333pt;}
.yf0{bottom:654.710667pt;}
.y4c{bottom:654.813333pt;}
.ye{bottom:656.360000pt;}
.yc9{bottom:659.010667pt;}
.ya8{bottom:659.110667pt;}
.y119{bottom:660.172000pt;}
.y16e{bottom:665.638667pt;}
.yef{bottom:670.652000pt;}
.y4b{bottom:670.753333pt;}
.yd{bottom:672.300000pt;}
.yc8{bottom:674.952000pt;}
.ya7{bottom:675.050667pt;}
.y79{bottom:675.668000pt;}
.y118{bottom:676.112000pt;}
.y16d{bottom:681.578667pt;}
.yee{bottom:686.592000pt;}
.y4a{bottom:686.693333pt;}
.yc{bottom:688.240000pt;}
.yc7{bottom:690.948000pt;}
.ya6{bottom:690.992000pt;}
.y1bc{bottom:691.144000pt;}
.y78{bottom:691.608000pt;}
.y1e3{bottom:697.320000pt;}
.y16c{bottom:697.518667pt;}
.yed{bottom:702.532000pt;}
.y49{bottom:702.633333pt;}
.yb{bottom:704.181333pt;}
.y117{bottom:705.320000pt;}
.yc6{bottom:706.888000pt;}
.ya5{bottom:706.932000pt;}
.y1e2{bottom:713.260000pt;}
.y16b{bottom:713.458667pt;}
.y1bb{bottom:713.794667pt;}
.yec{bottom:718.472000pt;}
.y48{bottom:718.573333pt;}
.ya{bottom:720.121333pt;}
.y77{bottom:720.566667pt;}
.y116{bottom:721.261333pt;}
.yc5{bottom:722.828000pt;}
.y1e1{bottom:729.200000pt;}
.y1ba{bottom:729.734667pt;}
.ya4{bottom:734.108000pt;}
.yeb{bottom:734.412000pt;}
.y47{bottom:734.513333pt;}
.y9{bottom:736.061333pt;}
.y76{bottom:736.506667pt;}
.y115{bottom:737.201333pt;}
.yc4{bottom:738.769333pt;}
.y1e0{bottom:745.141333pt;}
.ya3{bottom:750.048000pt;}
.yea{bottom:750.352000pt;}
.y46{bottom:750.454667pt;}
.y1b9{bottom:752.386667pt;}
.y114{bottom:753.141333pt;}
.yc3{bottom:754.709333pt;}
.y16a{bottom:758.092000pt;}
.y1df{bottom:761.081333pt;}
.y75{bottom:765.464000pt;}
.ya2{bottom:766.192000pt;}
.ye9{bottom:766.293333pt;}
.y45{bottom:766.394667pt;}
.y113{bottom:769.081333pt;}
.yc2{bottom:770.649333pt;}
.y169{bottom:774.032000pt;}
.y1b8{bottom:775.037333pt;}
.y1de{bottom:777.021333pt;}
.y74{bottom:781.405333pt;}
.ya1{bottom:782.132000pt;}
.y44{bottom:782.334667pt;}
.y8{bottom:783.582667pt;}
.y112{bottom:785.021333pt;}
.yc1{bottom:786.589333pt;}
.y168{bottom:789.972000pt;}
.y1dd{bottom:792.961333pt;}
.y73{bottom:797.345333pt;}
.y1b7{bottom:797.689333pt;}
.ya0{bottom:798.072000pt;}
.y43{bottom:798.274667pt;}
.yc0{bottom:802.529333pt;}
.y9f{bottom:814.012000pt;}
.y42{bottom:814.214667pt;}
.y111{bottom:814.230667pt;}
.y7{bottom:818.120000pt;}
.ybf{bottom:818.469333pt;}
.y1dc{bottom:819.528000pt;}
.y1b6{bottom:820.340000pt;}
.y72{bottom:828.960000pt;}
.y9e{bottom:829.952000pt;}
.y41{bottom:830.154667pt;}
.y110{bottom:830.170667pt;}
.ybe{bottom:834.410667pt;}
.y1db{bottom:835.469333pt;}
.y1b5{bottom:842.992000pt;}
.y71{bottom:844.900000pt;}
.y9d{bottom:845.892000pt;}
.y40{bottom:846.096000pt;}
.y10f{bottom:846.110667pt;}
.ybd{bottom:850.406667pt;}
.y6{bottom:851.329333pt;}
.y1da{bottom:851.409333pt;}
.y70{bottom:861.438667pt;}
.y9c{bottom:861.833333pt;}
.y3f{bottom:862.036000pt;}
.y10e{bottom:862.050667pt;}
.y1b4{bottom:865.642667pt;}
.ybc{bottom:866.346667pt;}
.y1d9{bottom:867.349333pt;}
.y6f{bottom:877.378667pt;}
.y9b{bottom:877.773333pt;}
.y3e{bottom:877.976000pt;}
.y10d{bottom:877.990667pt;}
.ybb{bottom:882.286667pt;}
.y1d8{bottom:883.289333pt;}
.y5{bottom:884.537333pt;}
.y1b3{bottom:888.294667pt;}
.y6e{bottom:893.318667pt;}
.y3d{bottom:893.916000pt;}
.y10c{bottom:893.932000pt;}
.yba{bottom:902.996000pt;}
.y3c{bottom:909.856000pt;}
.y1b2{bottom:910.945333pt;}
.y4{bottom:917.746667pt;}
.y3b{bottom:925.796000pt;}
.y1d7{bottom:930.618667pt;}
.y1b1{bottom:933.597333pt;}
.y3a{bottom:941.737333pt;}
.y13a{bottom:943.862667pt;}
.y1b0{bottom:954.949333pt;}
.y39{bottom:957.677333pt;}
.y139{bottom:959.802667pt;}
.y3{bottom:977.522667pt;}
.y2{bottom:992.134667pt;}
.y1{bottom:1003.777333pt;}
.y38{bottom:1007.622667pt;}
.h8{height:23.623475pt;}
.he{height:27.051426pt;}
.hd{height:28.155555pt;}
.h9{height:31.497835pt;}
.ha{height:32.177950pt;}
.h13{height:35.380779pt;}
.h10{height:35.493423pt;}
.h2{height:36.200346pt;}
.h11{height:36.290431pt;}
.hc{height:36.556100pt;}
.hf{height:37.884447pt;}
.h7{height:39.372195pt;}
.h6{height:40.222337pt;}
.h12{height:44.640000pt;}
.h1{height:48.077679pt;}
.hb{height:48.267127pt;}
.h5{height:58.581879pt;}
.h4{height:78.744786pt;}
.h3{height:80.445078pt;}
.h0{height:1056.000000pt;}
.w1{width:129.456000pt;}
.w0{width:816.000000pt;}
.x51{left:-492.164680pt;}
.x52{left:-186.112840pt;}
.x0{left:0.000000pt;}
.x3a{left:74.408000pt;}
.x4{left:75.590667pt;}
.x1{left:80.572000pt;}
.x3f{left:82.232000pt;}
.x5{left:84.557333pt;}
.x1f{left:92.188000pt;}
.x7{left:95.516000pt;}
.x2a{left:100.696000pt;}
.x40{left:104.361333pt;}
.x9{left:108.361333pt;}
.x20{left:111.442667pt;}
.x37{left:120.382667pt;}
.x38{left:127.024000pt;}
.x22{left:136.241333pt;}
.x21{left:137.596000pt;}
.x3d{left:146.864000pt;}
.x23{left:150.944000pt;}
.x39{left:156.536000pt;}
.x43{left:169.497333pt;}
.x42{left:187.001333pt;}
.x6{left:188.490667pt;}
.x3e{left:191.496000pt;}
.xa{left:194.604000pt;}
.x1b{left:239.240000pt;}
.x1c{left:252.524000pt;}
.x1d{left:259.418667pt;}
.x1e{left:272.702667pt;}
.x19{left:286.324000pt;}
.xb{left:289.673333pt;}
.xc{left:296.316000pt;}
.x1a{left:299.606667pt;}
.x41{left:302.364000pt;}
.x2b{left:319.124000pt;}
.x2c{left:332.406667pt;}
.x44{left:353.758667pt;}
.x2{left:361.352000pt;}
.x3{left:381.424000pt;}
.x8{left:418.393333pt;}
.x3b{left:421.781333pt;}
.x45{left:425.036000pt;}
.x15{left:426.569333pt;}
.x11{left:438.318667pt;}
.x46{left:447.164000pt;}
.x14{left:451.594667pt;}
.x2f{left:456.106667pt;}
.x30{left:462.748000pt;}
.x35{left:465.020000pt;}
.x36{left:478.302667pt;}
.x25{left:481.290667pt;}
.x4d{left:485.884000pt;}
.xd{left:493.172000pt;}
.x4e{left:494.634667pt;}
.xe{left:499.813333pt;}
.x47{left:504.388000pt;}
.x16{left:508.692000pt;}
.x28{left:513.409333pt;}
.x26{left:520.080000pt;}
.x27{left:526.721333pt;}
.x3c{left:529.357333pt;}
.x24{left:537.774667pt;}
.x29{left:543.973333pt;}
.x4a{left:551.120000pt;}
.x18{left:562.690667pt;}
.x49{left:565.450667pt;}
.x17{left:569.981333pt;}
.x4f{left:578.184000pt;}
.x48{left:595.662667pt;}
.x50{left:610.954667pt;}
.x2d{left:631.074667pt;}
.x2e{left:637.717333pt;}
.xf{left:641.017333pt;}
.x4c{left:644.425333pt;}
.x10{left:647.660000pt;}
.x12{left:655.184000pt;}
.x13{left:661.825333pt;}
.x31{left:692.438667pt;}
.x4b{left:696.096000pt;}
.x32{left:705.721333pt;}
.x33{left:721.002667pt;}
.x34{left:734.285333pt;}
}




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