
    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_369d24a17f8711ba97996932.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_623d41bd713857c8a6438520.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_9d496d8248c7db99aaad3138.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_610e25588ce1150355ee32c0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933000;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_f9a6fad776551bc4d6b6d6b8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m26{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);}
.mb{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);}
.m24{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);}
.m12{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);}
.m1b{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);}
.m14{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);}
.m7{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);}
.mc{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);}
.ma{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);}
.m16{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);}
.m9{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);}
.m2{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);}
.m27{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);}
.me{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m4{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);}
.m28{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);}
.m15{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);}
.mf{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);}
.m13{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);}
.m1d{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);}
.m23{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);}
.m1a{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);}
.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);}
.m10{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);}
.m18{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);}
.m6{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);}
.m22{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);}
.md{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m25{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);}
.m19{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);}
.m8{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);}
.m1f{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);}
.m20{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);}
.m21{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);}
.m5{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);}
.m11{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.ls11{letter-spacing:0.000676px;}
.ls20{letter-spacing:0.000800px;}
.ls1b{letter-spacing:0.001036px;}
.ls3{letter-spacing:0.001613px;}
.lsf{letter-spacing:0.001693px;}
.lse{letter-spacing:0.002841px;}
.ls16{letter-spacing:0.004800px;}
.ls1{letter-spacing:2.998354px;}
.ls5{letter-spacing:11.954850px;}
.lsd{letter-spacing:13.262645px;}
.ls12{letter-spacing:13.299168px;}
.ls1d{letter-spacing:13.332753px;}
.ls13{letter-spacing:13.383733px;}
.ls1a{letter-spacing:13.398161px;}
.lsb{letter-spacing:13.404131px;}
.ls1c{letter-spacing:13.411846px;}
.ls7{letter-spacing:13.439952px;}
.lsa{letter-spacing:13.448400px;}
.ls8{letter-spacing:13.454400px;}
.ls14{letter-spacing:13.571506px;}
.ls17{letter-spacing:13.586690px;}
.ls19{letter-spacing:13.592910px;}
.ls15{letter-spacing:13.601967px;}
.ls10{letter-spacing:13.617202px;}
.ls24{letter-spacing:13.648160px;}
.ls1e{letter-spacing:13.678971px;}
.ls18{letter-spacing:13.699336px;}
.ls21{letter-spacing:14.403341px;}
.lsc{letter-spacing:15.268047px;}
.ls22{letter-spacing:15.438635px;}
.ls1f{letter-spacing:16.550400px;}
.ls9{letter-spacing:16.773929px;}
.ls23{letter-spacing:16.891576px;}
.ls2{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.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;}
}
.wsbf{word-spacing:-40.580133px;}
.ws9{word-spacing:-14.355754px;}
.ws94{word-spacing:-13.449600px;}
.ws20{word-spacing:-11.955150px;}
.ws8{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws55{word-spacing:-3.287658px;}
.ws6d{word-spacing:-3.227882px;}
.ws79{word-spacing:-3.168107px;}
.ws76{word-spacing:-2.988780px;}
.ws4f{word-spacing:-2.689902px;}
.ws41{word-spacing:-2.630126px;}
.ws8b{word-spacing:-2.391024px;}
.ws8c{word-spacing:-2.271473px;}
.ws4b{word-spacing:-2.151922px;}
.ws8d{word-spacing:-2.098138px;}
.ws8e{word-spacing:-2.044339px;}
.ws52{word-spacing:-2.032370px;}
.ws48{word-spacing:-1.972595px;}
.wsa7{word-spacing:-1.936742px;}
.ws47{word-spacing:-1.912819px;}
.ws4a{word-spacing:-1.613941px;}
.ws49{word-spacing:-1.554166px;}
.ws72{word-spacing:-1.494390px;}
.ws2f{word-spacing:-1.434614px;}
.ws75{word-spacing:-1.374839px;}
.ws3c{word-spacing:-1.195512px;}
.ws77{word-spacing:-1.135736px;}
.ws43{word-spacing:-1.075961px;}
.wsbd{word-spacing:-0.968371px;}
.wsa1{word-spacing:-0.860774px;}
.ws40{word-spacing:-0.836858px;}
.wse4{word-spacing:-0.806976px;}
.ws44{word-spacing:-0.777083px;}
.ws7e{word-spacing:-0.717307px;}
.ws19{word-spacing:-0.597756px;}
.wsac{word-spacing:-0.537984px;}
.ws2c{word-spacing:-0.537980px;}
.ws5f{word-spacing:-0.478205px;}
.ws98{word-spacing:-0.430387px;}
.wsb{word-spacing:-0.418429px;}
.wsea{word-spacing:-0.376589px;}
.ws3b{word-spacing:-0.358654px;}
.wsb3{word-spacing:-0.322790px;}
.ws3e{word-spacing:-0.298878px;}
.wsad{word-spacing:-0.268992px;}
.ws2b{word-spacing:-0.239102px;}
.ws7d{word-spacing:-0.215194px;}
.ws13{word-spacing:-0.179327px;}
.ws96{word-spacing:-0.161395px;}
.wsdc{word-spacing:-0.149091px;}
.ws10{word-spacing:-0.119551px;}
.ws5a{word-spacing:-0.107597px;}
.wsf{word-spacing:-0.059776px;}
.wsd9{word-spacing:-0.056572px;}
.ws92{word-spacing:-0.053798px;}
.wsce{word-spacing:-0.051103px;}
.wsca{word-spacing:-0.008438px;}
.wsd3{word-spacing:-0.006845px;}
.wsb7{word-spacing:-0.006317px;}
.wsb9{word-spacing:-0.004310px;}
.wsf4{word-spacing:-0.003926px;}
.wsae{word-spacing:-0.002515px;}
.wsf0{word-spacing:-0.001421px;}
.wscf{word-spacing:-0.000806px;}
.ws0{word-spacing:0.000000px;}
.wsd0{word-spacing:0.051622px;}
.wsaf{word-spacing:0.053798px;}
.ws22{word-spacing:0.059776px;}
.ws7{word-spacing:0.107597px;}
.ws17{word-spacing:0.119551px;}
.wsc7{word-spacing:0.130146px;}
.wsc0{word-spacing:0.147838px;}
.ws93{word-spacing:0.161395px;}
.wsc{word-spacing:0.179327px;}
.ws6{word-spacing:0.209214px;}
.ws35{word-spacing:0.215194px;}
.ws21{word-spacing:0.239102px;}
.ws9f{word-spacing:0.268992px;}
.ws12{word-spacing:0.298878px;}
.ws8f{word-spacing:0.322790px;}
.ws18{word-spacing:0.358654px;}
.wsf3{word-spacing:0.376589px;}
.wsc8{word-spacing:0.484186px;}
.ws30{word-spacing:0.537980px;}
.wsc1{word-spacing:0.591782px;}
.ws51{word-spacing:0.597756px;}
.wsa2{word-spacing:0.645581px;}
.ws62{word-spacing:0.657532px;}
.wse1{word-spacing:0.699379px;}
.ws38{word-spacing:0.717307px;}
.wsee{word-spacing:0.753178px;}
.ws74{word-spacing:0.777083px;}
.ws26{word-spacing:0.836858px;}
.ws57{word-spacing:0.896634px;}
.ws14{word-spacing:0.956410px;}
.ws65{word-spacing:1.016185px;}
.ws64{word-spacing:1.075961px;}
.wsb8{word-spacing:1.075968px;}
.ws9d{word-spacing:1.129766px;}
.ws61{word-spacing:1.135736px;}
.ws99{word-spacing:1.237363px;}
.ws33{word-spacing:1.255288px;}
.wsb1{word-spacing:1.398758px;}
.ws5c{word-spacing:1.434614px;}
.ws3a{word-spacing:1.494390px;}
.wsa8{word-spacing:1.560154px;}
.ws7c{word-spacing:1.613941px;}
.wsd5{word-spacing:1.667750px;}
.ws7f{word-spacing:1.673717px;}
.wse8{word-spacing:1.721549px;}
.ws31{word-spacing:1.733492px;}
.ws28{word-spacing:1.793268px;}
.wsb2{word-spacing:1.829146px;}
.ws11{word-spacing:1.853044px;}
.ws3f{word-spacing:1.912819px;}
.ws4c{word-spacing:1.972595px;}
.wsef{word-spacing:1.990541px;}
.ws4d{word-spacing:2.032370px;}
.ws84{word-spacing:2.092146px;}
.ws15{word-spacing:2.151922px;}
.wsd8{word-spacing:2.205734px;}
.ws59{word-spacing:2.211697px;}
.wsed{word-spacing:2.313331px;}
.wsa6{word-spacing:2.367130px;}
.ws2a{word-spacing:2.391024px;}
.wsba{word-spacing:2.420928px;}
.ws63{word-spacing:2.450800px;}
.ws5{word-spacing:2.510252px;}
.ws3{word-spacing:2.510568px;}
.ws5d{word-spacing:2.510575px;}
.ws2{word-spacing:2.511174px;}
.ws85{word-spacing:2.570351px;}
.ws9a{word-spacing:2.582323px;}
.ws9b{word-spacing:2.607578px;}
.ws29{word-spacing:2.630126px;}
.wsd7{word-spacing:2.636122px;}
.ws5e{word-spacing:2.689902px;}
.wsd2{word-spacing:2.689920px;}
.ws1e{word-spacing:2.749678px;}
.ws87{word-spacing:2.809453px;}
.ws68{word-spacing:2.869229px;}
.wsa{word-spacing:2.869236px;}
.ws6a{word-spacing:2.988780px;}
.wse{word-spacing:3.048556px;}
.ws36{word-spacing:3.108331px;}
.wsa3{word-spacing:3.174106px;}
.wsa4{word-spacing:3.216653px;}
.wsbe{word-spacing:3.217402px;}
.ws97{word-spacing:3.218602px;}
.wsf5{word-spacing:3.218928px;}
.wse7{word-spacing:3.219274px;}
.wsd1{word-spacing:3.220118px;}
.wse3{word-spacing:3.220320px;}
.wsab{word-spacing:3.220426px;}
.wscd{word-spacing:3.221030px;}
.wsc5{word-spacing:3.221136px;}
.wsd4{word-spacing:3.221501px;}
.wsb5{word-spacing:3.221587px;}
.wsf2{word-spacing:3.222557px;}
.wscc{word-spacing:3.222883px;}
.wsdd{word-spacing:3.222979px;}
.wsc3{word-spacing:3.223363px;}
.wsa9{word-spacing:3.224093px;}
.wse6{word-spacing:3.225053px;}
.wse5{word-spacing:3.225274px;}
.wsbc{word-spacing:3.225571px;}
.wsd6{word-spacing:3.227030px;}
.wsaa{word-spacing:3.227136px;}
.ws86{word-spacing:3.227882px;}
.ws95{word-spacing:3.227904px;}
.wsc4{word-spacing:3.229046px;}
.wsa5{word-spacing:3.281702px;}
.ws9c{word-spacing:3.335501px;}
.ws60{word-spacing:3.347434px;}
.wsb4{word-spacing:3.443098px;}
.wsf6{word-spacing:3.496896px;}
.wsde{word-spacing:3.521512px;}
.ws1f{word-spacing:3.526760px;}
.ws54{word-spacing:3.646312px;}
.wsb0{word-spacing:3.658291px;}
.ws24{word-spacing:3.765863px;}
.wsb6{word-spacing:3.765888px;}
.ws27{word-spacing:3.825638px;}
.ws39{word-spacing:3.885414px;}
.ws25{word-spacing:3.945190px;}
.ws16{word-spacing:4.004965px;}
.ws67{word-spacing:4.064741px;}
.ws6c{word-spacing:4.124516px;}
.ws4e{word-spacing:4.184292px;}
.ws91{word-spacing:4.196275px;}
.ws69{word-spacing:4.244068px;}
.ws1d{word-spacing:4.303872px;}
.wsd{word-spacing:4.483170px;}
.ws80{word-spacing:4.542946px;}
.wsc2{word-spacing:4.572864px;}
.ws6e{word-spacing:4.662497px;}
.ws23{word-spacing:4.722272px;}
.ws78{word-spacing:4.782048px;}
.wse2{word-spacing:4.788058px;}
.ws70{word-spacing:4.841824px;}
.wsc6{word-spacing:4.895654px;}
.ws83{word-spacing:5.021150px;}
.ws1c{word-spacing:5.140702px;}
.ws34{word-spacing:5.200477px;}
.wsa0{word-spacing:5.218445px;}
.wsc9{word-spacing:5.272243px;}
.ws7a{word-spacing:5.439580px;}
.ws7b{word-spacing:5.559131px;}
.wsbb{word-spacing:5.595034px;}
.ws88{word-spacing:5.618906px;}
.ws5b{word-spacing:5.678682px;}
.wse9{word-spacing:5.702630px;}
.ws6b{word-spacing:5.798233px;}
.ws82{word-spacing:5.858009px;}
.wseb{word-spacing:5.971622px;}
.ws37{word-spacing:5.977560px;}
.ws71{word-spacing:6.037336px;}
.ws2d{word-spacing:6.097111px;}
.ws32{word-spacing:6.156887px;}
.wsda{word-spacing:6.186816px;}
.wsdb{word-spacing:6.240614px;}
.ws42{word-spacing:6.336214px;}
.ws66{word-spacing:6.395989px;}
.ws6f{word-spacing:6.515540px;}
.ws1a{word-spacing:6.575316px;}
.ws9e{word-spacing:6.617203px;}
.ws3d{word-spacing:6.754643px;}
.ws50{word-spacing:6.814418px;}
.ws53{word-spacing:6.874194px;}
.wse0{word-spacing:7.101389px;}
.ws58{word-spacing:7.173072px;}
.ws45{word-spacing:7.292623px;}
.ws2e{word-spacing:7.471950px;}
.ws46{word-spacing:7.950155px;}
.ws8a{word-spacing:8.368584px;}
.ws89{word-spacing:8.428360px;}
.ws73{word-spacing:8.488135px;}
.ws81{word-spacing:9.205442px;}
.wsec{word-spacing:9.629914px;}
.wsdf{word-spacing:10.974874px;}
.ws90{word-spacing:11.825881px;}
.wsf1{word-spacing:11.835648px;}
.ws1b{word-spacing:14.068887px;}
.wscb{word-spacing:15.009754px;}
.ws56{word-spacing:16.019861px;}
.ws1{word-spacing:28.455541px;}
._22{margin-left:-21.004478px;}
._11{margin-left:-8.350542px;}
._9{margin-left:-6.515540px;}
._6{margin-left:-5.260266px;}
._1{margin-left:-3.849538px;}
._21{margin-left:-2.734282px;}
._2{margin-left:-1.548184px;}
._20{width:1.658866px;}
._5{width:2.999896px;}
._b{width:4.423394px;}
._c{width:11.040878px;}
._0{width:12.971268px;}
._18{width:14.160835px;}
._14{width:15.960160px;}
._16{width:17.448493px;}
._7{width:18.590212px;}
._10{width:19.725948px;}
._f{width:20.921460px;}
._8{width:22.696782px;}
._12{width:23.904258px;}
._19{width:24.926425px;}
._3{width:25.942536px;}
._1b{width:28.028774px;}
._24{width:29.098891px;}
._a{width:30.360023px;}
._15{width:31.561517px;}
._1c{width:32.637478px;}
._4{width:33.785395px;}
._25{width:35.375400px;}
._1d{width:36.642443px;}
._1a{width:38.077057px;}
._17{width:39.571447px;}
._13{width:40.826735px;}
._1e{width:44.174168px;}
._23{width:61.868160px;}
._d{width:1694.985600px;}
._1f{width:2308.665600px;}
._e{width:2332.575600px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y43{bottom:45.921000px;}
.y42{bottom:99.720000px;}
.yd1{bottom:100.476000px;}
.y156{bottom:105.961500px;}
.y124{bottom:110.092500px;}
.y85{bottom:113.650500px;}
.y75{bottom:114.882000px;}
.y81{bottom:116.407500px;}
.y18{bottom:118.147500px;}
.ye8{bottom:118.365000px;}
.y41{bottom:120.610500px;}
.yd0{bottom:121.366500px;}
.y155{bottom:125.112000px;}
.y123{bottom:129.243000px;}
.y84{bottom:134.542500px;}
.y74{bottom:135.774000px;}
.y17{bottom:136.035000px;}
.y80{bottom:137.298000px;}
.yb2{bottom:137.731500px;}
.ye7{bottom:139.255500px;}
.y40{bottom:141.502500px;}
.ycf{bottom:142.258500px;}
.y154{bottom:144.262500px;}
.y122{bottom:148.393500px;}
.y16{bottom:153.922500px;}
.y73{bottom:156.666000px;}
.y7f{bottom:158.190000px;}
.yb1{bottom:158.623500px;}
.ye6{bottom:160.147500px;}
.y3f{bottom:162.394500px;}
.yce{bottom:163.150500px;}
.y153{bottom:163.413000px;}
.y121{bottom:167.544000px;}
.y83{bottom:170.170500px;}
.y15{bottom:171.811500px;}
.y72{bottom:177.556500px;}
.y7e{bottom:179.082000px;}
.yb0{bottom:179.514000px;}
.ye5{bottom:181.039500px;}
.y152{bottom:182.563500px;}
.y3e{bottom:183.285000px;}
.ycd{bottom:184.041000px;}
.y120{bottom:186.696000px;}
.y82{bottom:189.402000px;}
.y14{bottom:189.699000px;}
.y71{bottom:198.448500px;}
.y7d{bottom:199.972500px;}
.yaf{bottom:200.406000px;}
.y151{bottom:201.714000px;}
.ye4{bottom:201.930000px;}
.ycc{bottom:204.933000px;}
.y11f{bottom:205.846500px;}
.y13{bottom:207.586500px;}
.y3d{bottom:208.660500px;}
.y70{bottom:219.340500px;}
.y7c{bottom:220.864500px;}
.yae{bottom:221.298000px;}
.ye3{bottom:222.822000px;}
.y11e{bottom:224.997000px;}
.y12{bottom:225.475500px;}
.ycb{bottom:225.825000px;}
.y150{bottom:240.015000px;}
.y6f{bottom:240.232500px;}
.y7b{bottom:241.756500px;}
.yad{bottom:242.190000px;}
.y11{bottom:243.363000px;}
.ye2{bottom:243.714000px;}
.y11d{bottom:244.147500px;}
.yca{bottom:246.715500px;}
.y14f{bottom:259.165500px;}
.y6e{bottom:261.123000px;}
.y10{bottom:261.250500px;}
.y7a{bottom:262.647000px;}
.yac{bottom:263.080500px;}
.y11c{bottom:263.298000px;}
.ye1{bottom:264.606000px;}
.yc9{bottom:267.607500px;}
.y14e{bottom:278.316000px;}
.yf{bottom:279.139500px;}
.y6d{bottom:282.015000px;}
.y11b{bottom:282.448500px;}
.y79{bottom:283.539000px;}
.yab{bottom:283.972500px;}
.ye0{bottom:285.496500px;}
.y3c{bottom:287.872500px;}
.yc8{bottom:288.499500px;}
.y14d{bottom:297.466500px;}
.y11a{bottom:301.599000px;}
.y6c{bottom:302.907000px;}
.y78{bottom:304.431000px;}
.yaa{bottom:304.864500px;}
.ye{bottom:305.994000px;}
.ydf{bottom:306.388500px;}
.y3b{bottom:308.763000px;}
.yc7{bottom:309.391500px;}
.y14c{bottom:316.617000px;}
.y119{bottom:320.749500px;}
.yf2{bottom:323.797500px;}
.yd{bottom:323.881500px;}
.y77{bottom:325.323000px;}
.ya9{bottom:325.755000px;}
.yde{bottom:327.280500px;}
.y6b{bottom:328.281000px;}
.yc6{bottom:330.282000px;}
.y14b{bottom:335.767500px;}
.y118{bottom:339.900000px;}
.yc{bottom:341.769000px;}
.yf1{bottom:344.689500px;}
.y76{bottom:346.213500px;}
.ya8{bottom:346.647000px;}
.y3a{bottom:347.587500px;}
.ydd{bottom:348.171000px;}
.yc5{bottom:351.174000px;}
.y14a{bottom:354.918000px;}
.y117{bottom:359.050500px;}
.yb{bottom:359.658000px;}
.yf0{bottom:365.581500px;}
.y6a{bottom:367.105500px;}
.ya7{bottom:367.539000px;}
.y39{bottom:368.479500px;}
.ydc{bottom:369.063000px;}
.yc4{bottom:372.066000px;}
.y149{bottom:374.070000px;}
.ya{bottom:377.545500px;}
.y116{bottom:378.201000px;}
.yef{bottom:386.472000px;}
.y69{bottom:387.997500px;}
.ya6{bottom:388.429500px;}
.y38{bottom:389.371500px;}
.ydb{bottom:389.955000px;}
.yc3{bottom:392.956500px;}
.y148{bottom:393.220500px;}
.y9{bottom:395.433000px;}
.y115{bottom:397.351500px;}
.yee{bottom:407.364000px;}
.y68{bottom:408.888000px;}
.ya5{bottom:409.321500px;}
.y37{bottom:410.262000px;}
.yda{bottom:410.845500px;}
.y147{bottom:412.371000px;}
.y8{bottom:413.322000px;}
.yc2{bottom:413.848500px;}
.y114{bottom:416.502000px;}
.yed{bottom:428.256000px;}
.y67{bottom:429.780000px;}
.ya4{bottom:430.213500px;}
.y36{bottom:431.154000px;}
.y146{bottom:431.521500px;}
.yd9{bottom:431.737500px;}
.yc1{bottom:434.740500px;}
.y113{bottom:435.652500px;}
.y7{bottom:437.187000px;}
.yec{bottom:449.146500px;}
.y66{bottom:450.672000px;}
.ya3{bottom:451.104000px;}
.y35{bottom:452.046000px;}
.yd8{bottom:452.629500px;}
.y112{bottom:454.803000px;}
.y6{bottom:455.074500px;}
.yc0{bottom:455.631000px;}
.y145{bottom:469.822500px;}
.yeb{bottom:470.038500px;}
.y65{bottom:471.562500px;}
.y34{bottom:472.936500px;}
.y5{bottom:472.963500px;}
.yd7{bottom:473.520000px;}
.y111{bottom:473.953500px;}
.ya2{bottom:476.479500px;}
.ybf{bottom:476.523000px;}
.y144{bottom:488.973000px;}
.y4{bottom:490.851000px;}
.yea{bottom:490.930500px;}
.y64{bottom:492.454500px;}
.y110{bottom:493.104000px;}
.y33{bottom:493.828500px;}
.yd6{bottom:494.412000px;}
.ybe{bottom:497.415000px;}
.y143{bottom:508.123500px;}
.ya1{bottom:511.822500px;}
.y10f{bottom:512.254500px;}
.y63{bottom:513.346500px;}
.y3{bottom:514.716000px;}
.y32{bottom:514.720500px;}
.yd5{bottom:515.304000px;}
.ybd{bottom:518.305500px;}
.y142{bottom:527.274000px;}
.y10e{bottom:531.405000px;}
.y2{bottom:532.605000px;}
.ya0{bottom:532.713000px;}
.y62{bottom:534.237000px;}
.y31{bottom:535.612500px;}
.yd4{bottom:536.194500px;}
.ybc{bottom:539.197500px;}
.y141{bottom:546.424500px;}
.y1{bottom:550.492500px;}
.y10d{bottom:550.555500px;}
.y9f{bottom:553.605000px;}
.y61{bottom:555.129000px;}
.y30{bottom:556.503000px;}
.yd3{bottom:557.086500px;}
.ybb{bottom:560.089500px;}
.y140{bottom:565.575000px;}
.y10c{bottom:569.707500px;}
.y9e{bottom:574.497000px;}
.y60{bottom:576.021000px;}
.y2f{bottom:577.395000px;}
.yba{bottom:580.980000px;}
.yd2{bottom:582.462000px;}
.y13f{bottom:584.725500px;}
.y10b{bottom:588.858000px;}
.y9d{bottom:595.387500px;}
.y5f{bottom:596.913000px;}
.y2e{bottom:598.287000px;}
.yb9{bottom:601.872000px;}
.y13e{bottom:603.876000px;}
.y10a{bottom:608.008500px;}
.y9c{bottom:616.279500px;}
.y5e{bottom:617.803500px;}
.y2d{bottom:619.177500px;}
.yb8{bottom:622.764000px;}
.y13d{bottom:623.026500px;}
.y109{bottom:627.159000px;}
.y9b{bottom:637.171500px;}
.y5d{bottom:638.695500px;}
.y2c{bottom:640.069500px;}
.y13c{bottom:642.177000px;}
.yb7{bottom:643.656000px;}
.y108{bottom:646.309500px;}
.y9a{bottom:658.062000px;}
.y5c{bottom:659.587500px;}
.y2b{bottom:660.961500px;}
.y13b{bottom:661.327500px;}
.y107{bottom:665.460000px;}
.yb6{bottom:669.030000px;}
.y99{bottom:678.954000px;}
.y5b{bottom:680.478000px;}
.y2a{bottom:681.852000px;}
.y106{bottom:684.610500px;}
.yb5{bottom:686.439000px;}
.y13a{bottom:699.628500px;}
.y98{bottom:699.846000px;}
.y5a{bottom:701.370000px;}
.y29{bottom:702.744000px;}
.y105{bottom:703.761000px;}
.ye9{bottom:704.329500px;}
.yb4{bottom:718.585500px;}
.y139{bottom:718.779000px;}
.y97{bottom:720.736500px;}
.y59{bottom:722.262000px;}
.y104{bottom:722.911500px;}
.y28{bottom:723.636000px;}
.yb3{bottom:737.818500px;}
.y138{bottom:737.929500px;}
.y96{bottom:741.628500px;}
.y103{bottom:742.062000px;}
.y58{bottom:743.152500px;}
.y27{bottom:744.526500px;}
.y159{bottom:752.350500px;}
.y137{bottom:757.081500px;}
.y102{bottom:761.212500px;}
.y95{bottom:762.520500px;}
.y57{bottom:764.044500px;}
.y26{bottom:765.418500px;}
.y158{bottom:771.501000px;}
.y136{bottom:776.232000px;}
.y101{bottom:780.363000px;}
.y94{bottom:783.411000px;}
.y56{bottom:784.936500px;}
.y25{bottom:786.310500px;}
.y157{bottom:790.651500px;}
.y135{bottom:795.382500px;}
.y100{bottom:799.513500px;}
.y93{bottom:804.303000px;}
.y55{bottom:805.827000px;}
.y24{bottom:807.202500px;}
.y134{bottom:814.533000px;}
.yff{bottom:818.664000px;}
.y92{bottom:825.195000px;}
.y54{bottom:826.719000px;}
.y133{bottom:833.683500px;}
.y23{bottom:837.060000px;}
.yfe{bottom:837.814500px;}
.y91{bottom:846.087000px;}
.y53{bottom:847.611000px;}
.y132{bottom:852.834000px;}
.yfd{bottom:861.448500px;}
.y90{bottom:866.977500px;}
.y52{bottom:868.503000px;}
.y131{bottom:871.984500px;}
.y22{bottom:874.564500px;}
.y8f{bottom:887.869500px;}
.y51{bottom:889.393500px;}
.y130{bottom:891.135000px;}
.y21{bottom:895.044000px;}
.yfc{bottom:900.273000px;}
.y8e{bottom:908.761500px;}
.y50{bottom:910.285500px;}
.y20{bottom:911.184000px;}
.y1f{bottom:922.984500px;}
.yfb{bottom:928.738500px;}
.y12f{bottom:929.436000px;}
.y8d{bottom:929.652000px;}
.y4f{bottom:931.177500px;}
.y1e{bottom:943.462500px;}
.y12e{bottom:948.586500px;}
.y8c{bottom:950.544000px;}
.y4e{bottom:952.068000px;}
.yfa{bottom:957.202500px;}
.y1d{bottom:959.602500px;}
.y12d{bottom:967.737000px;}
.y8b{bottom:971.436000px;}
.y4d{bottom:972.960000px;}
.yf9{bottom:985.668000px;}
.y12c{bottom:986.887500px;}
.y8a{bottom:992.326500px;}
.y4c{bottom:993.852000px;}
.y1c{bottom:1001.764500px;}
.y12b{bottom:1006.038000px;}
.y89{bottom:1013.218500px;}
.yf8{bottom:1014.133500px;}
.y4b{bottom:1014.742500px;}
.y12a{bottom:1025.188500px;}
.yf7{bottom:1033.632000px;}
.y88{bottom:1034.110500px;}
.y4a{bottom:1035.634500px;}
.y1b{bottom:1040.589000px;}
.y129{bottom:1044.339000px;}
.yf6{bottom:1053.130500px;}
.y49{bottom:1056.526500px;}
.y87{bottom:1059.484500px;}
.y128{bottom:1063.489500px;}
.y1a{bottom:1071.927000px;}
.yf5{bottom:1072.629000px;}
.y48{bottom:1077.417000px;}
.y86{bottom:1080.376500px;}
.y127{bottom:1082.640000px;}
.y47{bottom:1098.309000px;}
.yf4{bottom:1101.094500px;}
.y126{bottom:1101.790500px;}
.y19{bottom:1103.263500px;}
.y46{bottom:1119.201000px;}
.yf3{bottom:1120.593000px;}
.y125{bottom:1120.941000px;}
.y45{bottom:1140.091500px;}
.y44{bottom:1200.196500px;}
.h6{height:32.565965px;}
.he{height:37.551283px;}
.h2{height:37.993262px;}
.hb{height:41.723369px;}
.h8{height:43.038432px;}
.h7{height:43.421105px;}
.h3{height:43.815515px;}
.hc{height:48.848947px;}
.hd{height:49.117939px;}
.ha{height:51.646464px;}
.h9{height:54.276245px;}
.h5{height:54.411312px;}
.h4{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.xa6{left:85.848000px;}
.xa8{left:144.160500px;}
.xa9{left:156.469500px;}
.x7d{left:247.348500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x64{left:254.019000px;}
.x3{left:269.316000px;}
.x5{left:281.479500px;}
.xa4{left:288.721500px;}
.x65{left:292.603500px;}
.x12{left:294.933000px;}
.xa1{left:300.076500px;}
.xa5{left:303.666000px;}
.xa0{left:306.853500px;}
.x87{left:307.932000px;}
.xe{left:309.324000px;}
.x83{left:314.292000px;}
.xf{left:316.795500px;}
.x10{left:320.512500px;}
.x68{left:321.675000px;}
.x88{left:322.876500px;}
.x16{left:325.057500px;}
.x11{left:327.985500px;}
.x84{left:329.235000px;}
.x17{left:332.380500px;}
.x69{left:336.619500px;}
.x6a{left:344.017500px;}
.x18{left:347.325000px;}
.x7b{left:350.457000px;}
.xa2{left:354.120000px;}
.x19{left:359.613000px;}
.x7c{left:365.401500px;}
.x2a{left:371.242500px;}
.x1a{left:374.557500px;}
.xa3{left:376.536000px;}
.x1b{left:381.879000px;}
.x2b{left:386.187000px;}
.x23{left:389.946000px;}
.x2c{left:393.540000px;}
.x1c{left:396.823500px;}
.x24{left:404.349000px;}
.x34{left:406.317000px;}
.x2d{left:408.483000px;}
.x54{left:411.136500px;}
.x49{left:412.726500px;}
.x8d{left:417.862500px;}
.x25{left:419.292000px;}
.x35{left:421.261500px;}
.x36{left:425.023500px;}
.x55{left:426.079500px;}
.x3e{left:427.897500px;}
.x2e{left:430.585500px;}
.x4a{left:432.213000px;}
.x1d{left:437.905500px;}
.x37{left:439.968000px;}
.x3f{left:442.840500px;}
.x2f{left:445.530000px;}
.x4b{left:447.157500px;}
.x4c{left:450.967500px;}
.x1e{left:452.848500px;}
.x8e{left:455.206500px;}
.x6d{left:456.951000px;}
.x6b{left:459.108000px;}
.x1f{left:460.470000px;}
.x4d{left:465.912000px;}
.x30{left:468.073500px;}
.x5c{left:471.708000px;}
.x8f{left:473.880000px;}
.x20{left:475.414500px;}
.x5d{left:477.087000px;}
.x51{left:480.052500px;}
.x3a{left:483.543000px;}
.x42{left:485.331000px;}
.x13{left:486.346500px;}
.x5b{left:490.819500px;}
.x5e{left:492.031500px;}
.x52{left:494.995500px;}
.x3b{left:498.487500px;}
.x5f{left:499.653000px;}
.x85{left:500.785500px;}
.x3c{left:502.149000px;}
.x97{left:506.386500px;}
.x7e{left:511.761000px;}
.x53{left:513.750000px;}
.x86{left:515.728500px;}
.x3d{left:517.092000px;}
.x98{left:521.331000px;}
.x43{left:523.107000px;}
.x99{left:524.991000px;}
.x7f{left:526.705500px;}
.x44{left:538.050000px;}
.x9a{left:539.935500px;}
.x45{left:541.711500px;}
.x9b{left:543.597000px;}
.x94{left:554.536500px;}
.x46{left:556.656000px;}
.x9c{left:566.013000px;}
.x95{left:569.481000px;}
.x77{left:571.989000px;}
.x96{left:573.292500px;}
.x21{left:580.563000px;}
.x6c{left:585.144000px;}
.x40{left:586.494000px;}
.x4e{left:589.857000px;}
.x22{left:595.507500px;}
.x41{left:601.437000px;}
.x6e{left:602.692500px;}
.xc{left:604.608000px;}
.x4f{left:608.611500px;}
.xd{left:612.079500px;}
.x6f{left:617.635500px;}
.x90{left:619.804500px;}
.x70{left:621.447000px;}
.x50{left:623.556000px;}
.x75{left:626.737500px;}
.x71{left:636.390000px;}
.x72{left:640.201500px;}
.x76{left:641.680500px;}
.x38{left:643.425000px;}
.x89{left:649.005000px;}
.x26{left:653.062500px;}
.x73{left:655.144500px;}
.x39{left:658.368000px;}
.x47{left:664.686000px;}
.x27{left:668.005500px;}
.x31{left:669.639000px;}
.x74{left:673.900500px;}
.x28{left:675.328500px;}
.x48{left:677.863500px;}
.x32{left:684.583500px;}
.x29{left:690.273000px;}
.x91{left:692.637000px;}
.x92{left:700.258500px;}
.x14{left:703.693500px;}
.x78{left:705.622500px;}
.x15{left:711.165000px;}
.x79{left:713.244000px;}
.x93{left:715.201500px;}
.x56{left:717.777000px;}
.x57{left:722.185500px;}
.x33{left:725.697000px;}
.x7a{left:728.187000px;}
.x58{left:737.128500px;}
.x9d{left:739.791000px;}
.x9e{left:743.601000px;}
.xa7{left:745.786500px;}
.x80{left:750.391500px;}
.x59{left:753.339000px;}
.x9f{left:758.545500px;}
.x66{left:760.057500px;}
.x60{left:762.477000px;}
.xaa{left:763.972500px;}
.x81{left:765.334500px;}
.x5a{left:768.283500px;}
.x62{left:770.338500px;}
.x67{left:775.000500px;}
.x61{left:777.421500px;}
.x8a{left:780.480000px;}
.x82{left:784.089000px;}
.x63{left:785.283000px;}
.x6{left:792.039000px;}
.x8b{left:795.424500px;}
.x7{left:799.510500px;}
.x8{left:810.405000px;}
.x8c{left:814.111500px;}
.x9{left:817.876500px;}
.xa{left:825.289500px;}
.xb{left:832.761000px;}
.xab{left:837.945000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ls11{letter-spacing:0.000600pt;}
.ls20{letter-spacing:0.000711pt;}
.ls1b{letter-spacing:0.000921pt;}
.ls3{letter-spacing:0.001434pt;}
.lsf{letter-spacing:0.001505pt;}
.lse{letter-spacing:0.002525pt;}
.ls16{letter-spacing:0.004267pt;}
.ls1{letter-spacing:2.665203pt;}
.ls5{letter-spacing:10.626533pt;}
.lsd{letter-spacing:11.789018pt;}
.ls12{letter-spacing:11.821483pt;}
.ls1d{letter-spacing:11.851336pt;}
.ls13{letter-spacing:11.896652pt;}
.ls1a{letter-spacing:11.909477pt;}
.lsb{letter-spacing:11.914783pt;}
.ls1c{letter-spacing:11.921641pt;}
.ls7{letter-spacing:11.946624pt;}
.lsa{letter-spacing:11.954133pt;}
.ls8{letter-spacing:11.959467pt;}
.ls14{letter-spacing:12.063560pt;}
.ls17{letter-spacing:12.077058pt;}
.ls19{letter-spacing:12.082587pt;}
.ls15{letter-spacing:12.090638pt;}
.ls10{letter-spacing:12.104179pt;}
.ls24{letter-spacing:12.131697pt;}
.ls1e{letter-spacing:12.159086pt;}
.ls18{letter-spacing:12.177188pt;}
.ls21{letter-spacing:12.802970pt;}
.lsc{letter-spacing:13.571597pt;}
.ls22{letter-spacing:13.723231pt;}
.ls1f{letter-spacing:14.711467pt;}
.ls9{letter-spacing:14.910159pt;}
.ls23{letter-spacing:15.014735pt;}
.ls2{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.wsbf{word-spacing:-36.071229pt;}
.ws9{word-spacing:-12.760670pt;}
.ws94{word-spacing:-11.955200pt;}
.ws20{word-spacing:-10.626800pt;}
.ws8{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws55{word-spacing:-2.922363pt;}
.ws6d{word-spacing:-2.869229pt;}
.ws79{word-spacing:-2.816095pt;}
.ws76{word-spacing:-2.656693pt;}
.ws4f{word-spacing:-2.391024pt;}
.ws41{word-spacing:-2.337890pt;}
.ws8b{word-spacing:-2.125355pt;}
.ws8c{word-spacing:-2.019087pt;}
.ws4b{word-spacing:-1.912819pt;}
.ws8d{word-spacing:-1.865011pt;}
.ws8e{word-spacing:-1.817190pt;}
.ws52{word-spacing:-1.806551pt;}
.ws48{word-spacing:-1.753418pt;}
.wsa7{word-spacing:-1.721549pt;}
.ws47{word-spacing:-1.700284pt;}
.ws4a{word-spacing:-1.434614pt;}
.ws49{word-spacing:-1.381481pt;}
.ws72{word-spacing:-1.328347pt;}
.ws2f{word-spacing:-1.275213pt;}
.ws75{word-spacing:-1.222079pt;}
.ws3c{word-spacing:-1.062677pt;}
.ws77{word-spacing:-1.009543pt;}
.ws43{word-spacing:-0.956410pt;}
.wsbd{word-spacing:-0.860774pt;}
.wsa1{word-spacing:-0.765133pt;}
.ws40{word-spacing:-0.743874pt;}
.wse4{word-spacing:-0.717312pt;}
.ws44{word-spacing:-0.690740pt;}
.ws7e{word-spacing:-0.637606pt;}
.ws19{word-spacing:-0.531339pt;}
.wsac{word-spacing:-0.478208pt;}
.ws2c{word-spacing:-0.478205pt;}
.ws5f{word-spacing:-0.425071pt;}
.ws98{word-spacing:-0.382566pt;}
.wsb{word-spacing:-0.371937pt;}
.wsea{word-spacing:-0.334746pt;}
.ws3b{word-spacing:-0.318803pt;}
.wsb3{word-spacing:-0.286925pt;}
.ws3e{word-spacing:-0.265669pt;}
.wsad{word-spacing:-0.239104pt;}
.ws2b{word-spacing:-0.212535pt;}
.ws7d{word-spacing:-0.191283pt;}
.ws13{word-spacing:-0.159402pt;}
.ws96{word-spacing:-0.143462pt;}
.wsdc{word-spacing:-0.132526pt;}
.ws10{word-spacing:-0.106268pt;}
.ws5a{word-spacing:-0.095642pt;}
.wsf{word-spacing:-0.053134pt;}
.wsd9{word-spacing:-0.050286pt;}
.ws92{word-spacing:-0.047821pt;}
.wsce{word-spacing:-0.045425pt;}
.wsca{word-spacing:-0.007501pt;}
.wsd3{word-spacing:-0.006084pt;}
.wsb7{word-spacing:-0.005615pt;}
.wsb9{word-spacing:-0.003831pt;}
.wsf4{word-spacing:-0.003490pt;}
.wsae{word-spacing:-0.002236pt;}
.wsf0{word-spacing:-0.001263pt;}
.wscf{word-spacing:-0.000717pt;}
.ws0{word-spacing:0.000000pt;}
.wsd0{word-spacing:0.045886pt;}
.wsaf{word-spacing:0.047821pt;}
.ws22{word-spacing:0.053134pt;}
.ws7{word-spacing:0.095642pt;}
.ws17{word-spacing:0.106268pt;}
.wsc7{word-spacing:0.115685pt;}
.wsc0{word-spacing:0.131412pt;}
.ws93{word-spacing:0.143462pt;}
.wsc{word-spacing:0.159402pt;}
.ws6{word-spacing:0.185968pt;}
.ws35{word-spacing:0.191283pt;}
.ws21{word-spacing:0.212535pt;}
.ws9f{word-spacing:0.239104pt;}
.ws12{word-spacing:0.265669pt;}
.ws8f{word-spacing:0.286925pt;}
.ws18{word-spacing:0.318803pt;}
.wsf3{word-spacing:0.334746pt;}
.wsc8{word-spacing:0.430387pt;}
.ws30{word-spacing:0.478205pt;}
.wsc1{word-spacing:0.526029pt;}
.ws51{word-spacing:0.531339pt;}
.wsa2{word-spacing:0.573850pt;}
.ws62{word-spacing:0.584473pt;}
.wse1{word-spacing:0.621670pt;}
.ws38{word-spacing:0.637606pt;}
.wsee{word-spacing:0.669491pt;}
.ws74{word-spacing:0.690740pt;}
.ws26{word-spacing:0.743874pt;}
.ws57{word-spacing:0.797008pt;}
.ws14{word-spacing:0.850142pt;}
.ws65{word-spacing:0.903276pt;}
.ws64{word-spacing:0.956410pt;}
.wsb8{word-spacing:0.956416pt;}
.ws9d{word-spacing:1.004237pt;}
.ws61{word-spacing:1.009543pt;}
.ws99{word-spacing:1.099878pt;}
.ws33{word-spacing:1.115811pt;}
.wsb1{word-spacing:1.243341pt;}
.ws5c{word-spacing:1.275213pt;}
.ws3a{word-spacing:1.328347pt;}
.wsa8{word-spacing:1.386803pt;}
.ws7c{word-spacing:1.434614pt;}
.wsd5{word-spacing:1.482445pt;}
.ws7f{word-spacing:1.487748pt;}
.wse8{word-spacing:1.530266pt;}
.ws31{word-spacing:1.540882pt;}
.ws28{word-spacing:1.594016pt;}
.wsb2{word-spacing:1.625907pt;}
.ws11{word-spacing:1.647150pt;}
.ws3f{word-spacing:1.700284pt;}
.ws4c{word-spacing:1.753418pt;}
.wsef{word-spacing:1.769370pt;}
.ws4d{word-spacing:1.806551pt;}
.ws84{word-spacing:1.859685pt;}
.ws15{word-spacing:1.912819pt;}
.wsd8{word-spacing:1.960653pt;}
.ws59{word-spacing:1.965953pt;}
.wsed{word-spacing:2.056294pt;}
.wsa6{word-spacing:2.104115pt;}
.ws2a{word-spacing:2.125355pt;}
.wsba{word-spacing:2.151936pt;}
.ws63{word-spacing:2.178489pt;}
.ws5{word-spacing:2.231335pt;}
.ws3{word-spacing:2.231616pt;}
.ws5d{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232155pt;}
.ws85{word-spacing:2.284756pt;}
.ws9a{word-spacing:2.295398pt;}
.ws9b{word-spacing:2.317847pt;}
.ws29{word-spacing:2.337890pt;}
.wsd7{word-spacing:2.343219pt;}
.ws5e{word-spacing:2.391024pt;}
.wsd2{word-spacing:2.391040pt;}
.ws1e{word-spacing:2.444158pt;}
.ws87{word-spacing:2.497292pt;}
.ws68{word-spacing:2.550426pt;}
.wsa{word-spacing:2.550432pt;}
.ws6a{word-spacing:2.656693pt;}
.wse{word-spacing:2.709827pt;}
.ws36{word-spacing:2.762961pt;}
.wsa3{word-spacing:2.821427pt;}
.wsa4{word-spacing:2.859247pt;}
.wsbe{word-spacing:2.859913pt;}
.ws97{word-spacing:2.860979pt;}
.wsf5{word-spacing:2.861269pt;}
.wse7{word-spacing:2.861577pt;}
.wsd1{word-spacing:2.862327pt;}
.wse3{word-spacing:2.862507pt;}
.wsab{word-spacing:2.862601pt;}
.wscd{word-spacing:2.863138pt;}
.wsc5{word-spacing:2.863232pt;}
.wsd4{word-spacing:2.863556pt;}
.wsb5{word-spacing:2.863633pt;}
.wsf2{word-spacing:2.864495pt;}
.wscc{word-spacing:2.864785pt;}
.wsdd{word-spacing:2.864870pt;}
.wsc3{word-spacing:2.865212pt;}
.wsa9{word-spacing:2.865860pt;}
.wse6{word-spacing:2.866714pt;}
.wse5{word-spacing:2.866910pt;}
.wsbc{word-spacing:2.867174pt;}
.wsd6{word-spacing:2.868471pt;}
.wsaa{word-spacing:2.868565pt;}
.ws86{word-spacing:2.869229pt;}
.ws95{word-spacing:2.869248pt;}
.wsc4{word-spacing:2.870263pt;}
.wsa5{word-spacing:2.917069pt;}
.ws9c{word-spacing:2.964890pt;}
.ws60{word-spacing:2.975497pt;}
.wsb4{word-spacing:3.060531pt;}
.wsf6{word-spacing:3.108352pt;}
.wsde{word-spacing:3.130233pt;}
.ws1f{word-spacing:3.134898pt;}
.ws54{word-spacing:3.241166pt;}
.wsb0{word-spacing:3.251814pt;}
.ws24{word-spacing:3.347434pt;}
.wsb6{word-spacing:3.347456pt;}
.ws27{word-spacing:3.400567pt;}
.ws39{word-spacing:3.453701pt;}
.ws25{word-spacing:3.506835pt;}
.ws16{word-spacing:3.559969pt;}
.ws67{word-spacing:3.613103pt;}
.ws6c{word-spacing:3.666237pt;}
.ws4e{word-spacing:3.719371pt;}
.ws91{word-spacing:3.730022pt;}
.ws69{word-spacing:3.772505pt;}
.ws1d{word-spacing:3.825664pt;}
.wsd{word-spacing:3.985040pt;}
.ws80{word-spacing:4.038174pt;}
.wsc2{word-spacing:4.064768pt;}
.ws6e{word-spacing:4.144442pt;}
.ws23{word-spacing:4.197575pt;}
.ws78{word-spacing:4.250709pt;}
.wse2{word-spacing:4.256051pt;}
.ws70{word-spacing:4.303843pt;}
.wsc6{word-spacing:4.351693pt;}
.ws83{word-spacing:4.463245pt;}
.ws1c{word-spacing:4.569513pt;}
.ws34{word-spacing:4.622646pt;}
.wsa0{word-spacing:4.638618pt;}
.wsc9{word-spacing:4.686438pt;}
.ws7a{word-spacing:4.835182pt;}
.ws7b{word-spacing:4.941450pt;}
.wsbb{word-spacing:4.973363pt;}
.ws88{word-spacing:4.994583pt;}
.ws5b{word-spacing:5.047717pt;}
.wse9{word-spacing:5.069005pt;}
.ws6b{word-spacing:5.153985pt;}
.ws82{word-spacing:5.207119pt;}
.wseb{word-spacing:5.308109pt;}
.ws37{word-spacing:5.313387pt;}
.ws71{word-spacing:5.366521pt;}
.ws2d{word-spacing:5.419654pt;}
.ws32{word-spacing:5.472788pt;}
.wsda{word-spacing:5.499392pt;}
.wsdb{word-spacing:5.547213pt;}
.ws42{word-spacing:5.632190pt;}
.ws66{word-spacing:5.685324pt;}
.ws6f{word-spacing:5.791591pt;}
.ws1a{word-spacing:5.844725pt;}
.ws9e{word-spacing:5.881958pt;}
.ws3d{word-spacing:6.004127pt;}
.ws50{word-spacing:6.057261pt;}
.ws53{word-spacing:6.110395pt;}
.wse0{word-spacing:6.312346pt;}
.ws58{word-spacing:6.376064pt;}
.ws45{word-spacing:6.482332pt;}
.ws2e{word-spacing:6.641733pt;}
.ws46{word-spacing:7.066804pt;}
.ws8a{word-spacing:7.438741pt;}
.ws89{word-spacing:7.491875pt;}
.ws73{word-spacing:7.545009pt;}
.ws81{word-spacing:8.182615pt;}
.wsec{word-spacing:8.559923pt;}
.wsdf{word-spacing:9.755443pt;}
.ws90{word-spacing:10.511894pt;}
.wsf1{word-spacing:10.520576pt;}
.ws1b{word-spacing:12.505677pt;}
.wscb{word-spacing:13.342003pt;}
.ws56{word-spacing:14.239876pt;}
.ws1{word-spacing:25.293814pt;}
._22{margin-left:-18.670647pt;}
._11{margin-left:-7.422704pt;}
._9{margin-left:-5.791591pt;}
._6{margin-left:-4.675792pt;}
._1{margin-left:-3.421811pt;}
._21{margin-left:-2.430473pt;}
._2{margin-left:-1.376163pt;}
._20{width:1.474547pt;}
._5{width:2.666574pt;}
._b{width:3.931906pt;}
._c{width:9.814114pt;}
._0{width:11.530016pt;}
._18{width:12.587409pt;}
._14{width:14.186809pt;}
._16{width:15.509772pt;}
._7{width:16.524633pt;}
._10{width:17.534176pt;}
._f{width:18.596853pt;}
._8{width:20.174917pt;}
._12{width:21.248229pt;}
._19{width:22.156822pt;}
._3{width:23.060032pt;}
._1b{width:24.914466pt;}
._24{width:25.865681pt;}
._a{width:26.986687pt;}
._15{width:28.054682pt;}
._1c{width:29.011091pt;}
._4{width:30.031462pt;}
._25{width:31.444800pt;}
._1d{width:32.571060pt;}
._1a{width:33.846273pt;}
._17{width:35.174620pt;}
._13{width:36.290431pt;}
._1e{width:39.265927pt;}
._23{width:54.993920pt;}
._d{width:1506.653867pt;}
._1f{width:2052.147200pt;}
._e{width:2073.400533pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:40.818667pt;}
.y42{bottom:88.640000pt;}
.yd1{bottom:89.312000pt;}
.y156{bottom:94.188000pt;}
.y124{bottom:97.860000pt;}
.y85{bottom:101.022667pt;}
.y75{bottom:102.117333pt;}
.y81{bottom:103.473333pt;}
.y18{bottom:105.020000pt;}
.ye8{bottom:105.213333pt;}
.y41{bottom:107.209333pt;}
.yd0{bottom:107.881333pt;}
.y155{bottom:111.210667pt;}
.y123{bottom:114.882667pt;}
.y84{bottom:119.593333pt;}
.y74{bottom:120.688000pt;}
.y17{bottom:120.920000pt;}
.y80{bottom:122.042667pt;}
.yb2{bottom:122.428000pt;}
.ye7{bottom:123.782667pt;}
.y40{bottom:125.780000pt;}
.ycf{bottom:126.452000pt;}
.y154{bottom:128.233333pt;}
.y122{bottom:131.905333pt;}
.y16{bottom:136.820000pt;}
.y73{bottom:139.258667pt;}
.y7f{bottom:140.613333pt;}
.yb1{bottom:140.998667pt;}
.ye6{bottom:142.353333pt;}
.y3f{bottom:144.350667pt;}
.yce{bottom:145.022667pt;}
.y153{bottom:145.256000pt;}
.y121{bottom:148.928000pt;}
.y83{bottom:151.262667pt;}
.y15{bottom:152.721333pt;}
.y72{bottom:157.828000pt;}
.y7e{bottom:159.184000pt;}
.yb0{bottom:159.568000pt;}
.ye5{bottom:160.924000pt;}
.y152{bottom:162.278667pt;}
.y3e{bottom:162.920000pt;}
.ycd{bottom:163.592000pt;}
.y120{bottom:165.952000pt;}
.y82{bottom:168.357333pt;}
.y14{bottom:168.621333pt;}
.y71{bottom:176.398667pt;}
.y7d{bottom:177.753333pt;}
.yaf{bottom:178.138667pt;}
.y151{bottom:179.301333pt;}
.ye4{bottom:179.493333pt;}
.ycc{bottom:182.162667pt;}
.y11f{bottom:182.974667pt;}
.y13{bottom:184.521333pt;}
.y3d{bottom:185.476000pt;}
.y70{bottom:194.969333pt;}
.y7c{bottom:196.324000pt;}
.yae{bottom:196.709333pt;}
.ye3{bottom:198.064000pt;}
.y11e{bottom:199.997333pt;}
.y12{bottom:200.422667pt;}
.ycb{bottom:200.733333pt;}
.y150{bottom:213.346667pt;}
.y6f{bottom:213.540000pt;}
.y7b{bottom:214.894667pt;}
.yad{bottom:215.280000pt;}
.y11{bottom:216.322667pt;}
.ye2{bottom:216.634667pt;}
.y11d{bottom:217.020000pt;}
.yca{bottom:219.302667pt;}
.y14f{bottom:230.369333pt;}
.y6e{bottom:232.109333pt;}
.y10{bottom:232.222667pt;}
.y7a{bottom:233.464000pt;}
.yac{bottom:233.849333pt;}
.y11c{bottom:234.042667pt;}
.ye1{bottom:235.205333pt;}
.yc9{bottom:237.873333pt;}
.y14e{bottom:247.392000pt;}
.yf{bottom:248.124000pt;}
.y6d{bottom:250.680000pt;}
.y11b{bottom:251.065333pt;}
.y79{bottom:252.034667pt;}
.yab{bottom:252.420000pt;}
.ye0{bottom:253.774667pt;}
.y3c{bottom:255.886667pt;}
.yc8{bottom:256.444000pt;}
.y14d{bottom:264.414667pt;}
.y11a{bottom:268.088000pt;}
.y6c{bottom:269.250667pt;}
.y78{bottom:270.605333pt;}
.yaa{bottom:270.990667pt;}
.ye{bottom:271.994667pt;}
.ydf{bottom:272.345333pt;}
.y3b{bottom:274.456000pt;}
.yc7{bottom:275.014667pt;}
.y14c{bottom:281.437333pt;}
.y119{bottom:285.110667pt;}
.yf2{bottom:287.820000pt;}
.yd{bottom:287.894667pt;}
.y77{bottom:289.176000pt;}
.ya9{bottom:289.560000pt;}
.yde{bottom:290.916000pt;}
.y6b{bottom:291.805333pt;}
.yc6{bottom:293.584000pt;}
.y14b{bottom:298.460000pt;}
.y118{bottom:302.133333pt;}
.yc{bottom:303.794667pt;}
.yf1{bottom:306.390667pt;}
.y76{bottom:307.745333pt;}
.ya8{bottom:308.130667pt;}
.y3a{bottom:308.966667pt;}
.ydd{bottom:309.485333pt;}
.yc5{bottom:312.154667pt;}
.y14a{bottom:315.482667pt;}
.y117{bottom:319.156000pt;}
.yb{bottom:319.696000pt;}
.yf0{bottom:324.961333pt;}
.y6a{bottom:326.316000pt;}
.ya7{bottom:326.701333pt;}
.y39{bottom:327.537333pt;}
.ydc{bottom:328.056000pt;}
.yc4{bottom:330.725333pt;}
.y149{bottom:332.506667pt;}
.ya{bottom:335.596000pt;}
.y116{bottom:336.178667pt;}
.yef{bottom:343.530667pt;}
.y69{bottom:344.886667pt;}
.ya6{bottom:345.270667pt;}
.y38{bottom:346.108000pt;}
.ydb{bottom:346.626667pt;}
.yc3{bottom:349.294667pt;}
.y148{bottom:349.529333pt;}
.y9{bottom:351.496000pt;}
.y115{bottom:353.201333pt;}
.yee{bottom:362.101333pt;}
.y68{bottom:363.456000pt;}
.ya5{bottom:363.841333pt;}
.y37{bottom:364.677333pt;}
.yda{bottom:365.196000pt;}
.y147{bottom:366.552000pt;}
.y8{bottom:367.397333pt;}
.yc2{bottom:367.865333pt;}
.y114{bottom:370.224000pt;}
.yed{bottom:380.672000pt;}
.y67{bottom:382.026667pt;}
.ya4{bottom:382.412000pt;}
.y36{bottom:383.248000pt;}
.y146{bottom:383.574667pt;}
.yd9{bottom:383.766667pt;}
.yc1{bottom:386.436000pt;}
.y113{bottom:387.246667pt;}
.y7{bottom:388.610667pt;}
.yec{bottom:399.241333pt;}
.y66{bottom:400.597333pt;}
.ya3{bottom:400.981333pt;}
.y35{bottom:401.818667pt;}
.yd8{bottom:402.337333pt;}
.y112{bottom:404.269333pt;}
.y6{bottom:404.510667pt;}
.yc0{bottom:405.005333pt;}
.y145{bottom:417.620000pt;}
.yeb{bottom:417.812000pt;}
.y65{bottom:419.166667pt;}
.y34{bottom:420.388000pt;}
.y5{bottom:420.412000pt;}
.yd7{bottom:420.906667pt;}
.y111{bottom:421.292000pt;}
.ya2{bottom:423.537333pt;}
.ybf{bottom:423.576000pt;}
.y144{bottom:434.642667pt;}
.y4{bottom:436.312000pt;}
.yea{bottom:436.382667pt;}
.y64{bottom:437.737333pt;}
.y110{bottom:438.314667pt;}
.y33{bottom:438.958667pt;}
.yd6{bottom:439.477333pt;}
.ybe{bottom:442.146667pt;}
.y143{bottom:451.665333pt;}
.ya1{bottom:454.953333pt;}
.y10f{bottom:455.337333pt;}
.y63{bottom:456.308000pt;}
.y3{bottom:457.525333pt;}
.y32{bottom:457.529333pt;}
.yd5{bottom:458.048000pt;}
.ybd{bottom:460.716000pt;}
.y142{bottom:468.688000pt;}
.y10e{bottom:472.360000pt;}
.y2{bottom:473.426667pt;}
.ya0{bottom:473.522667pt;}
.y62{bottom:474.877333pt;}
.y31{bottom:476.100000pt;}
.yd4{bottom:476.617333pt;}
.ybc{bottom:479.286667pt;}
.y141{bottom:485.710667pt;}
.y1{bottom:489.326667pt;}
.y10d{bottom:489.382667pt;}
.y9f{bottom:492.093333pt;}
.y61{bottom:493.448000pt;}
.y30{bottom:494.669333pt;}
.yd3{bottom:495.188000pt;}
.ybb{bottom:497.857333pt;}
.y140{bottom:502.733333pt;}
.y10c{bottom:506.406667pt;}
.y9e{bottom:510.664000pt;}
.y60{bottom:512.018667pt;}
.y2f{bottom:513.240000pt;}
.yba{bottom:516.426667pt;}
.yd2{bottom:517.744000pt;}
.y13f{bottom:519.756000pt;}
.y10b{bottom:523.429333pt;}
.y9d{bottom:529.233333pt;}
.y5f{bottom:530.589333pt;}
.y2e{bottom:531.810667pt;}
.yb9{bottom:534.997333pt;}
.y13e{bottom:536.778667pt;}
.y10a{bottom:540.452000pt;}
.y9c{bottom:547.804000pt;}
.y5e{bottom:549.158667pt;}
.y2d{bottom:550.380000pt;}
.yb8{bottom:553.568000pt;}
.y13d{bottom:553.801333pt;}
.y109{bottom:557.474667pt;}
.y9b{bottom:566.374667pt;}
.y5d{bottom:567.729333pt;}
.y2c{bottom:568.950667pt;}
.y13c{bottom:570.824000pt;}
.yb7{bottom:572.138667pt;}
.y108{bottom:574.497333pt;}
.y9a{bottom:584.944000pt;}
.y5c{bottom:586.300000pt;}
.y2b{bottom:587.521333pt;}
.y13b{bottom:587.846667pt;}
.y107{bottom:591.520000pt;}
.yb6{bottom:594.693333pt;}
.y99{bottom:603.514667pt;}
.y5b{bottom:604.869333pt;}
.y2a{bottom:606.090667pt;}
.y106{bottom:608.542667pt;}
.yb5{bottom:610.168000pt;}
.y13a{bottom:621.892000pt;}
.y98{bottom:622.085333pt;}
.y5a{bottom:623.440000pt;}
.y29{bottom:624.661333pt;}
.y105{bottom:625.565333pt;}
.ye9{bottom:626.070667pt;}
.yb4{bottom:638.742667pt;}
.y139{bottom:638.914667pt;}
.y97{bottom:640.654667pt;}
.y59{bottom:642.010667pt;}
.y104{bottom:642.588000pt;}
.y28{bottom:643.232000pt;}
.yb3{bottom:655.838667pt;}
.y138{bottom:655.937333pt;}
.y96{bottom:659.225333pt;}
.y103{bottom:659.610667pt;}
.y58{bottom:660.580000pt;}
.y27{bottom:661.801333pt;}
.y159{bottom:668.756000pt;}
.y137{bottom:672.961333pt;}
.y102{bottom:676.633333pt;}
.y95{bottom:677.796000pt;}
.y57{bottom:679.150667pt;}
.y26{bottom:680.372000pt;}
.y158{bottom:685.778667pt;}
.y136{bottom:689.984000pt;}
.y101{bottom:693.656000pt;}
.y94{bottom:696.365333pt;}
.y56{bottom:697.721333pt;}
.y25{bottom:698.942667pt;}
.y157{bottom:702.801333pt;}
.y135{bottom:707.006667pt;}
.y100{bottom:710.678667pt;}
.y93{bottom:714.936000pt;}
.y55{bottom:716.290667pt;}
.y24{bottom:717.513333pt;}
.y134{bottom:724.029333pt;}
.yff{bottom:727.701333pt;}
.y92{bottom:733.506667pt;}
.y54{bottom:734.861333pt;}
.y133{bottom:741.052000pt;}
.y23{bottom:744.053333pt;}
.yfe{bottom:744.724000pt;}
.y91{bottom:752.077333pt;}
.y53{bottom:753.432000pt;}
.y132{bottom:758.074667pt;}
.yfd{bottom:765.732000pt;}
.y90{bottom:770.646667pt;}
.y52{bottom:772.002667pt;}
.y131{bottom:775.097333pt;}
.y22{bottom:777.390667pt;}
.y8f{bottom:789.217333pt;}
.y51{bottom:790.572000pt;}
.y130{bottom:792.120000pt;}
.y21{bottom:795.594667pt;}
.yfc{bottom:800.242667pt;}
.y8e{bottom:807.788000pt;}
.y50{bottom:809.142667pt;}
.y20{bottom:809.941333pt;}
.y1f{bottom:820.430667pt;}
.yfb{bottom:825.545333pt;}
.y12f{bottom:826.165333pt;}
.y8d{bottom:826.357333pt;}
.y4f{bottom:827.713333pt;}
.y1e{bottom:838.633333pt;}
.y12e{bottom:843.188000pt;}
.y8c{bottom:844.928000pt;}
.y4e{bottom:846.282667pt;}
.yfa{bottom:850.846667pt;}
.y1d{bottom:852.980000pt;}
.y12d{bottom:860.210667pt;}
.y8b{bottom:863.498667pt;}
.y4d{bottom:864.853333pt;}
.yf9{bottom:876.149333pt;}
.y12c{bottom:877.233333pt;}
.y8a{bottom:882.068000pt;}
.y4c{bottom:883.424000pt;}
.y1c{bottom:890.457333pt;}
.y12b{bottom:894.256000pt;}
.y89{bottom:900.638667pt;}
.yf8{bottom:901.452000pt;}
.y4b{bottom:901.993333pt;}
.y12a{bottom:911.278667pt;}
.yf7{bottom:918.784000pt;}
.y88{bottom:919.209333pt;}
.y4a{bottom:920.564000pt;}
.y1b{bottom:924.968000pt;}
.y129{bottom:928.301333pt;}
.yf6{bottom:936.116000pt;}
.y49{bottom:939.134667pt;}
.y87{bottom:941.764000pt;}
.y128{bottom:945.324000pt;}
.y1a{bottom:952.824000pt;}
.yf5{bottom:953.448000pt;}
.y48{bottom:957.704000pt;}
.y86{bottom:960.334667pt;}
.y127{bottom:962.346667pt;}
.y47{bottom:976.274667pt;}
.yf4{bottom:978.750667pt;}
.y126{bottom:979.369333pt;}
.y19{bottom:980.678667pt;}
.y46{bottom:994.845333pt;}
.yf3{bottom:996.082667pt;}
.y125{bottom:996.392000pt;}
.y45{bottom:1013.414667pt;}
.y44{bottom:1066.841333pt;}
.h6{height:28.947524pt;}
.he{height:33.378918pt;}
.h2{height:33.771789pt;}
.hb{height:37.087439pt;}
.h8{height:38.256384pt;}
.h7{height:38.596538pt;}
.h3{height:38.947124pt;}
.hc{height:43.421286pt;}
.hd{height:43.660390pt;}
.ha{height:45.907968pt;}
.h9{height:48.245551pt;}
.h5{height:48.365611pt;}
.h4{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.xa6{left:76.309333pt;}
.xa8{left:128.142667pt;}
.xa9{left:139.084000pt;}
.x7d{left:219.865333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x64{left:225.794667pt;}
.x3{left:239.392000pt;}
.x5{left:250.204000pt;}
.xa4{left:256.641333pt;}
.x65{left:260.092000pt;}
.x12{left:262.162667pt;}
.xa1{left:266.734667pt;}
.xa5{left:269.925333pt;}
.xa0{left:272.758667pt;}
.x87{left:273.717333pt;}
.xe{left:274.954667pt;}
.x83{left:279.370667pt;}
.xf{left:281.596000pt;}
.x10{left:284.900000pt;}
.x68{left:285.933333pt;}
.x88{left:287.001333pt;}
.x16{left:288.940000pt;}
.x11{left:291.542667pt;}
.x84{left:292.653333pt;}
.x17{left:295.449333pt;}
.x69{left:299.217333pt;}
.x6a{left:305.793333pt;}
.x18{left:308.733333pt;}
.x7b{left:311.517333pt;}
.xa2{left:314.773333pt;}
.x19{left:319.656000pt;}
.x7c{left:324.801333pt;}
.x2a{left:329.993333pt;}
.x1a{left:332.940000pt;}
.xa3{left:334.698667pt;}
.x1b{left:339.448000pt;}
.x2b{left:343.277333pt;}
.x23{left:346.618667pt;}
.x2c{left:349.813333pt;}
.x1c{left:352.732000pt;}
.x24{left:359.421333pt;}
.x34{left:361.170667pt;}
.x2d{left:363.096000pt;}
.x54{left:365.454667pt;}
.x49{left:366.868000pt;}
.x8d{left:371.433333pt;}
.x25{left:372.704000pt;}
.x35{left:374.454667pt;}
.x36{left:377.798667pt;}
.x55{left:378.737333pt;}
.x3e{left:380.353333pt;}
.x2e{left:382.742667pt;}
.x4a{left:384.189333pt;}
.x1d{left:389.249333pt;}
.x37{left:391.082667pt;}
.x3f{left:393.636000pt;}
.x2f{left:396.026667pt;}
.x4b{left:397.473333pt;}
.x4c{left:400.860000pt;}
.x1e{left:402.532000pt;}
.x8e{left:404.628000pt;}
.x6d{left:406.178667pt;}
.x6b{left:408.096000pt;}
.x1f{left:409.306667pt;}
.x4d{left:414.144000pt;}
.x30{left:416.065333pt;}
.x5c{left:419.296000pt;}
.x8f{left:421.226667pt;}
.x20{left:422.590667pt;}
.x5d{left:424.077333pt;}
.x51{left:426.713333pt;}
.x3a{left:429.816000pt;}
.x42{left:431.405333pt;}
.x13{left:432.308000pt;}
.x5b{left:436.284000pt;}
.x5e{left:437.361333pt;}
.x52{left:439.996000pt;}
.x3b{left:443.100000pt;}
.x5f{left:444.136000pt;}
.x85{left:445.142667pt;}
.x3c{left:446.354667pt;}
.x97{left:450.121333pt;}
.x7e{left:454.898667pt;}
.x53{left:456.666667pt;}
.x86{left:458.425333pt;}
.x3d{left:459.637333pt;}
.x98{left:463.405333pt;}
.x43{left:464.984000pt;}
.x99{left:466.658667pt;}
.x7f{left:468.182667pt;}
.x44{left:478.266667pt;}
.x9a{left:479.942667pt;}
.x45{left:481.521333pt;}
.x9b{left:483.197333pt;}
.x94{left:492.921333pt;}
.x46{left:494.805333pt;}
.x9c{left:503.122667pt;}
.x95{left:506.205333pt;}
.x77{left:508.434667pt;}
.x96{left:509.593333pt;}
.x21{left:516.056000pt;}
.x6c{left:520.128000pt;}
.x40{left:521.328000pt;}
.x4e{left:524.317333pt;}
.x22{left:529.340000pt;}
.x41{left:534.610667pt;}
.x6e{left:535.726667pt;}
.xc{left:537.429333pt;}
.x4f{left:540.988000pt;}
.xd{left:544.070667pt;}
.x6f{left:549.009333pt;}
.x90{left:550.937333pt;}
.x70{left:552.397333pt;}
.x50{left:554.272000pt;}
.x75{left:557.100000pt;}
.x71{left:565.680000pt;}
.x72{left:569.068000pt;}
.x76{left:570.382667pt;}
.x38{left:571.933333pt;}
.x89{left:576.893333pt;}
.x26{left:580.500000pt;}
.x73{left:582.350667pt;}
.x39{left:585.216000pt;}
.x47{left:590.832000pt;}
.x27{left:593.782667pt;}
.x31{left:595.234667pt;}
.x74{left:599.022667pt;}
.x28{left:600.292000pt;}
.x48{left:602.545333pt;}
.x32{left:608.518667pt;}
.x29{left:613.576000pt;}
.x91{left:615.677333pt;}
.x92{left:622.452000pt;}
.x14{left:625.505333pt;}
.x78{left:627.220000pt;}
.x15{left:632.146667pt;}
.x79{left:633.994667pt;}
.x93{left:635.734667pt;}
.x56{left:638.024000pt;}
.x57{left:641.942667pt;}
.x33{left:645.064000pt;}
.x7a{left:647.277333pt;}
.x58{left:655.225333pt;}
.x9d{left:657.592000pt;}
.x9e{left:660.978667pt;}
.xa7{left:662.921333pt;}
.x80{left:667.014667pt;}
.x59{left:669.634667pt;}
.x9f{left:674.262667pt;}
.x66{left:675.606667pt;}
.x60{left:677.757333pt;}
.xaa{left:679.086667pt;}
.x81{left:680.297333pt;}
.x5a{left:682.918667pt;}
.x62{left:684.745333pt;}
.x67{left:688.889333pt;}
.x61{left:691.041333pt;}
.x8a{left:693.760000pt;}
.x82{left:696.968000pt;}
.x63{left:698.029333pt;}
.x6{left:704.034667pt;}
.x8b{left:707.044000pt;}
.x7{left:710.676000pt;}
.x8{left:720.360000pt;}
.x8c{left:723.654667pt;}
.x9{left:727.001333pt;}
.xa{left:733.590667pt;}
.xb{left:740.232000pt;}
.xab{left:744.840000pt;}
}




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