
    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_b4ac6cad00b7276a8e0df062.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;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_eb71b19102730bb9c5b0b47f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.885000;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_b065d29105c0b2facd632b03.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_ff762557a8510c309d39fea9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.119286;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_35b270790f8f2969b43ea1e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.138184;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_29e5bd2f3bb37066ad6a798f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_bbba27e76629afc8e107bc9d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.069336;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_2e8068f32b8ca624c4636c2e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951000;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_73e9053588077cdd4b1dbec7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f22e042a4625bc42ad58c0e3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.075195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ad1171c2231f5c58880cebb7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e042a1ab47f68072dbe80f2d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.953000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fd40cf283cb06d6aae86250d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.929133;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;}
.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);}
.m1{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:-19.350000px;}
.v2{vertical-align:-15.750000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.350000px;}
.ls65{letter-spacing:-13.820625px;}
.ls48{letter-spacing:-12.987000px;}
.ls5c{letter-spacing:-11.451375px;}
.ls59{letter-spacing:-10.573875px;}
.ls5f{letter-spacing:-9.828000px;}
.ls62{letter-spacing:-9.740250px;}
.ls46{letter-spacing:-9.213750px;}
.ls5b{letter-spacing:-8.950500px;}
.ls61{letter-spacing:-8.116875px;}
.ls66{letter-spacing:-7.941375px;}
.ls1a{letter-spacing:-1.290000px;}
.ls5d{letter-spacing:-1.170000px;}
.ls2c{letter-spacing:-1.050000px;}
.ls5e{letter-spacing:-0.877500px;}
.ls2b{letter-spacing:-0.682500px;}
.ls3{letter-spacing:-0.420000px;}
.ls43{letter-spacing:-0.322500px;}
.ls47{letter-spacing:-0.292500px;}
.ls2{letter-spacing:0.000000px;}
.ls6d{letter-spacing:0.000225px;}
.ls6{letter-spacing:0.000300px;}
.ls45{letter-spacing:0.006000px;}
.ls68{letter-spacing:0.007650px;}
.ls6a{letter-spacing:0.008400px;}
.ls52{letter-spacing:0.009000px;}
.ls57{letter-spacing:0.009300px;}
.ls53{letter-spacing:0.009600px;}
.ls49{letter-spacing:0.010200px;}
.ls44{letter-spacing:0.015000px;}
.ls9{letter-spacing:0.026700px;}
.lsf{letter-spacing:0.034125px;}
.lsa{letter-spacing:0.039300px;}
.ls11{letter-spacing:0.041925px;}
.lsb{letter-spacing:0.052500px;}
.ls7{letter-spacing:0.064500px;}
.ls3c{letter-spacing:0.068250px;}
.ls15{letter-spacing:0.083850px;}
.ls16{letter-spacing:0.102375px;}
.ls3b{letter-spacing:0.105000px;}
.ls58{letter-spacing:0.117000px;}
.ls13{letter-spacing:0.129000px;}
.ls42{letter-spacing:0.136500px;}
.lse{letter-spacing:0.157500px;}
.ls3f{letter-spacing:0.167700px;}
.ls3e{letter-spacing:0.170625px;}
.lsd{letter-spacing:0.193500px;}
.ls1c{letter-spacing:0.209625px;}
.ls41{letter-spacing:0.210000px;}
.ls5{letter-spacing:0.258000px;}
.ls3d{letter-spacing:0.262500px;}
.ls2a{letter-spacing:0.273000px;}
.ls69{letter-spacing:0.292500px;}
.ls32{letter-spacing:0.293475px;}
.ls24{letter-spacing:0.307125px;}
.ls4{letter-spacing:0.322500px;}
.ls17{letter-spacing:0.367500px;}
.lsc{letter-spacing:0.387000px;}
.ls39{letter-spacing:0.419250px;}
.ls14{letter-spacing:0.420000px;}
.ls18{letter-spacing:0.451500px;}
.ls31{letter-spacing:0.453000px;}
.ls23{letter-spacing:0.472500px;}
.ls3a{letter-spacing:0.516000px;}
.ls4b{letter-spacing:0.567300px;}
.ls4d{letter-spacing:0.567600px;}
.ls4c{letter-spacing:0.570375px;}
.ls10{letter-spacing:0.580500px;}
.ls4e{letter-spacing:0.585000px;}
.ls37{letter-spacing:0.628875px;}
.ls1e{letter-spacing:0.645000px;}
.ls6e{letter-spacing:0.682500px;}
.ls36{letter-spacing:0.709500px;}
.ls29{letter-spacing:0.732600px;}
.ls2e{letter-spacing:0.774000px;}
.ls26{letter-spacing:0.787500px;}
.ls50{letter-spacing:0.817200px;}
.ls51{letter-spacing:0.819000px;}
.ls4f{letter-spacing:0.827400px;}
.ls21{letter-spacing:0.903000px;}
.ls38{letter-spacing:0.964275px;}
.ls1f{letter-spacing:0.967500px;}
.ls54{letter-spacing:0.981900px;}
.ls55{letter-spacing:0.991200px;}
.ls56{letter-spacing:0.994500px;}
.ls2d{letter-spacing:1.032000px;}
.ls27{letter-spacing:1.057875px;}
.ls8{letter-spacing:1.096500px;}
.ls1b{letter-spacing:1.225500px;}
.ls63{letter-spacing:1.228500px;}
.ls30{letter-spacing:1.290000px;}
.ls6f{letter-spacing:1.345500px;}
.ls6c{letter-spacing:1.380000px;}
.ls71{letter-spacing:1.404000px;}
.ls4a{letter-spacing:1.432800px;}
.ls5a{letter-spacing:1.462500px;}
.ls34{letter-spacing:1.483500px;}
.ls2f{letter-spacing:1.487400px;}
.ls25{letter-spacing:1.627500px;}
.ls35{letter-spacing:1.870500px;}
.ls72{letter-spacing:2.047500px;}
.ls1d{letter-spacing:2.580000px;}
.ls33{letter-spacing:3.096000px;}
.ls67{letter-spacing:3.276000px;}
.ls12{letter-spacing:4.184400px;}
.ls60{letter-spacing:4.446000px;}
.ls64{letter-spacing:5.791500px;}
.ls6b{letter-spacing:6.128400px;}
.ls70{letter-spacing:6.142500px;}
.ls20{letter-spacing:8.385000px;}
.ls0{letter-spacing:10.656000px;}
.ls1{letter-spacing:12.510000px;}
.ls19{letter-spacing:13.125000px;}
.ls40{letter-spacing:13.346400px;}
.ls28{letter-spacing:13.531800px;}
.ls22{letter-spacing:13.588200px;}
.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;}
}
.ws27{word-spacing:-17.157000px;}
.ws1e{word-spacing:-17.092500px;}
.ws20{word-spacing:-16.770000px;}
.ws15{word-spacing:-16.576500px;}
.wsf{word-spacing:-16.512000px;}
.wsd{word-spacing:-16.447500px;}
.ws10{word-spacing:-16.383000px;}
.ws11{word-spacing:-16.318500px;}
.ws16{word-spacing:-16.254000px;}
.ws1b{word-spacing:-16.189500px;}
.ws4{word-spacing:-16.125000px;}
.ws33{word-spacing:-14.742000px;}
.wse{word-spacing:-14.625000px;}
.ws13{word-spacing:-13.597500px;}
.ws18{word-spacing:-13.545000px;}
.ws26{word-spacing:-13.335000px;}
.ws19{word-spacing:-13.282500px;}
.ws6{word-spacing:-13.125000px;}
.ws5{word-spacing:-12.750000px;}
.ws2c{word-spacing:-11.539125px;}
.ws1f{word-spacing:-11.445525px;}
.ws1d{word-spacing:-11.110125px;}
.ws21{word-spacing:-10.900500px;}
.ws1c{word-spacing:-10.774725px;}
.wsc{word-spacing:-10.690875px;}
.ws24{word-spacing:-10.648950px;}
.wsa{word-spacing:-10.565100px;}
.ws8{word-spacing:-10.523175px;}
.ws3{word-spacing:-10.481250px;}
.ws14{word-spacing:-9.589125px;}
.ws0{word-spacing:-9.324000px;}
.ws1{word-spacing:-8.904000px;}
.ws12{word-spacing:-8.838375px;}
.ws17{word-spacing:-8.804250px;}
.ws23{word-spacing:-8.701875px;}
.ws25{word-spacing:-8.667750px;}
.wsb{word-spacing:-8.633625px;}
.ws22{word-spacing:-8.599500px;}
.ws7{word-spacing:-8.565375px;}
.ws9{word-spacing:-8.531250px;}
.ws1a{word-spacing:-7.848750px;}
.ws2{word-spacing:0.000000px;}
.ws32{word-spacing:5.879250px;}
.ws2f{word-spacing:6.098625px;}
.ws2b{word-spacing:6.932250px;}
.ws28{word-spacing:7.151625px;}
.ws2e{word-spacing:7.809750px;}
.ws30{word-spacing:8.511750px;}
.ws2a{word-spacing:10.179000px;}
.ws2d{word-spacing:11.056500px;}
.ws29{word-spacing:15.005250px;}
.ws31{word-spacing:16.672500px;}
._10{margin-left:-16.446900px;}
._3{margin-left:-15.046800px;}
._13{margin-left:-13.125000px;}
._12{margin-left:-11.939700px;}
._2{margin-left:-10.662600px;}
._a{margin-left:-9.324000px;}
._15{margin-left:-5.781675px;}
._14{margin-left:-4.405875px;}
._11{margin-left:-2.532000px;}
._9{margin-left:-1.336800px;}
._5{width:1.392000px;}
._4{width:3.383400px;}
._d{width:4.386300px;}
._6{width:5.664000px;}
._7{width:6.667800px;}
._c{width:8.127000px;}
._f{width:9.315000px;}
._8{width:11.676000px;}
._1{width:13.344000px;}
._b{width:869.585400px;}
._e{width:1148.611800px;}
._0{width:1818.756000px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.125000px;}
.fs8{font-size:41.925000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:43.875000px;}
.fs5{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fsa{font-size:52.500000px;}
.fs0{font-size:57.000000px;}
.fsb{font-size:58.500000px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:64.500000px;}
.fs1{font-size:171.052800px;}
.y0{bottom:0.000000px;}
.y25{bottom:85.643700px;}
.y1{bottom:85.649550px;}
.y55{bottom:124.578900px;}
.yf9{bottom:124.579050px;}
.y87{bottom:124.584750px;}
.ye5{bottom:124.584900px;}
.y24{bottom:126.644550px;}
.y4d{bottom:128.516400px;}
.y5d{bottom:128.516550px;}
.y98{bottom:128.522250px;}
.y9d{bottom:128.522400px;}
.y23{bottom:138.644550px;}
.y54{bottom:138.971400px;}
.y133{bottom:138.971550px;}
.y97{bottom:138.977400px;}
.y16a{bottom:139.581750px;}
.y4c{bottom:142.908900px;}
.y5c{bottom:142.909050px;}
.y86{bottom:142.914900px;}
.y60{bottom:153.363900px;}
.y5b{bottom:153.364050px;}
.y85{bottom:153.369750px;}
.y96{bottom:153.369900px;}
.y22{bottom:154.896600px;}
.y169{bottom:155.901750px;}
.y4b{bottom:157.301400px;}
.y112{bottom:157.301550px;}
.yd1{bottom:157.307400px;}
.y53{bottom:167.756400px;}
.yc7{bottom:167.756550px;}
.y95{bottom:167.762400px;}
.y21{bottom:169.022550px;}
.y4a{bottom:171.693900px;}
.y5a{bottom:171.694050px;}
.y84{bottom:171.699750px;}
.y9c{bottom:171.699900px;}
.y168{bottom:172.221750px;}
.y49{bottom:182.148900px;}
.yc6{bottom:182.149050px;}
.y83{bottom:182.154900px;}
.yc1{bottom:182.232750px;}
.y18e{bottom:184.477350px;}
.y20{bottom:185.274600px;}
.y52{bottom:186.086400px;}
.y94{bottom:186.092400px;}
.y167{bottom:188.541750px;}
.y111{bottom:195.369600px;}
.y10f{bottom:195.375150px;}
.y143{bottom:195.657000px;}
.y1f{bottom:196.455600px;}
.y48{bottom:196.541400px;}
.y93{bottom:196.547400px;}
.y18d{bottom:198.869850px;}
.yc0{bottom:199.829250px;}
.y59{bottom:200.478900px;}
.y82{bottom:200.484900px;}
.y166{bottom:204.861750px;}
.y47{bottom:210.934050px;}
.y81{bottom:210.939900px;}
.y1e{bottom:211.888500px;}
.y142{bottom:211.977000px;}
.y110{bottom:212.966100px;}
.y132{bottom:212.967900px;}
.y10e{bottom:212.971650px;}
.y18c{bottom:213.262350px;}
.yc2{bottom:214.871550px;}
.y92{bottom:214.877400px;}
.ybf{bottom:217.425750px;}
.y165{bottom:221.181750px;}
.y1d{bottom:223.069500px;}
.yc5{bottom:225.326550px;}
.y80{bottom:225.332400px;}
.y18b{bottom:227.654850px;}
.y141{bottom:228.297000px;}
.y46{bottom:229.264050px;}
.ye9{bottom:229.269900px;}
.yc3{bottom:230.562600px;}
.y131{bottom:230.564400px;}
.y10d{bottom:230.568150px;}
.y100{bottom:230.568450px;}
.ybe{bottom:235.022250px;}
.y9b{bottom:235.398750px;}
.y164{bottom:237.501750px;}
.y45{bottom:239.718900px;}
.yce{bottom:239.719050px;}
.yfe{bottom:239.724750px;}
.ye8{bottom:239.724900px;}
.y18a{bottom:242.047350px;}
.y51{bottom:243.656550px;}
.y7f{bottom:243.662400px;}
.y140{bottom:244.617000px;}
.y5f{bottom:248.159100px;}
.y130{bottom:248.160900px;}
.y58{bottom:248.164650px;}
.ye6{bottom:248.164950px;}
.y9a{bottom:251.385750px;}
.ybd{bottom:252.618750px;}
.y163{bottom:253.821750px;}
.y44{bottom:254.111400px;}
.ycd{bottom:254.111550px;}
.yfd{bottom:254.117250px;}
.ye4{bottom:254.117400px;}
.y189{bottom:256.439850px;}
.yf8{bottom:258.049050px;}
.ye7{bottom:258.054900px;}
.y13f{bottom:260.937000px;}
.y5e{bottom:265.755600px;}
.y12f{bottom:265.757400px;}
.y57{bottom:265.761150px;}
.yd0{bottom:265.761450px;}
.y91{bottom:265.767000px;}
.y99{bottom:267.372750px;}
.y43{bottom:268.503900px;}
.yfc{bottom:268.509750px;}
.y162{bottom:270.141750px;}
.ybc{bottom:270.215250px;}
.y188{bottom:270.832350px;}
.yc4{bottom:272.441400px;}
.ycc{bottom:272.441550px;}
.ye3{bottom:272.447400px;}
.y13e{bottom:277.257000px;}
.ycb{bottom:282.896400px;}
.yff{bottom:282.902250px;}
.y50{bottom:283.352100px;}
.y12e{bottom:283.353900px;}
.yf7{bottom:283.357650px;}
.ycf{bottom:283.357950px;}
.y90{bottom:283.363500px;}
.y187{bottom:285.224850px;}
.y161{bottom:286.461750px;}
.y42{bottom:286.833900px;}
.yfb{bottom:286.839750px;}
.ybb{bottom:287.811750px;}
.y13d{bottom:293.577000px;}
.yca{bottom:297.288900px;}
.y186{bottom:299.617350px;}
.y4f{bottom:300.948600px;}
.y12d{bottom:300.950400px;}
.y56{bottom:300.952350px;}
.yf6{bottom:300.954150px;}
.y7e{bottom:300.954450px;}
.y8f{bottom:300.960000px;}
.y160{bottom:302.781750px;}
.yba{bottom:305.408250px;}
.yc9{bottom:311.681400px;}
.y185{bottom:314.009850px;}
.y4e{bottom:318.545100px;}
.y12c{bottom:318.546900px;}
.yf5{bottom:318.550650px;}
.y7d{bottom:318.550950px;}
.y8e{bottom:318.556500px;}
.y15f{bottom:319.101750px;}
.yb9{bottom:323.004750px;}
.y13c{bottom:327.491700px;}
.yc8{bottom:330.011400px;}
.y15e{bottom:335.421750px;}
.y41{bottom:336.141600px;}
.y12b{bottom:336.143400px;}
.yf4{bottom:336.147150px;}
.y7c{bottom:336.147450px;}
.y8d{bottom:336.153000px;}
.y184{bottom:337.199700px;}
.yb8{bottom:340.601250px;}
.y15d{bottom:351.741750px;}
.y40{bottom:353.738100px;}
.y12a{bottom:353.739900px;}
.yf3{bottom:353.743650px;}
.y7b{bottom:353.743950px;}
.y8c{bottom:353.749500px;}
.yb7{bottom:358.197750px;}
.y15c{bottom:368.061750px;}
.y3f{bottom:371.334600px;}
.y129{bottom:371.336400px;}
.yf2{bottom:371.340150px;}
.y7a{bottom:371.340450px;}
.y8b{bottom:371.346000px;}
.yb6{bottom:375.794250px;}
.y13b{bottom:380.277450px;}
.y15b{bottom:384.381750px;}
.y183{bottom:386.781450px;}
.y3e{bottom:388.931100px;}
.y128{bottom:388.932900px;}
.yf1{bottom:388.936650px;}
.y79{bottom:388.936950px;}
.y8a{bottom:388.942500px;}
.yb5{bottom:393.390750px;}
.y13a{bottom:396.597450px;}
.y15a{bottom:400.701750px;}
.y182{bottom:403.101450px;}
.y3d{bottom:406.527600px;}
.y127{bottom:406.529400px;}
.yf0{bottom:406.533150px;}
.y78{bottom:406.533450px;}
.y89{bottom:406.539000px;}
.yb4{bottom:410.987250px;}
.y1c{bottom:411.701250px;}
.y139{bottom:412.917450px;}
.y159{bottom:417.021750px;}
.y181{bottom:419.421450px;}
.y3c{bottom:424.124100px;}
.y126{bottom:424.125900px;}
.yef{bottom:424.129650px;}
.y77{bottom:424.129950px;}
.ye2{bottom:424.135500px;}
.yb3{bottom:428.583750px;}
.y138{bottom:429.237450px;}
.y1b{bottom:430.829100px;}
.y158{bottom:433.341750px;}
.y180{bottom:435.741450px;}
.y3b{bottom:441.720600px;}
.y125{bottom:441.722400px;}
.yee{bottom:441.726150px;}
.y76{bottom:441.726450px;}
.y88{bottom:441.730200px;}
.ye1{bottom:441.732000px;}
.y1a{bottom:443.579100px;}
.y137{bottom:445.557450px;}
.yb2{bottom:446.180400px;}
.y157{bottom:449.661750px;}
.y17f{bottom:452.061450px;}
.y19{bottom:456.329100px;}
.y3a{bottom:459.317100px;}
.y124{bottom:459.318900px;}
.yed{bottom:459.322650px;}
.y75{bottom:459.322950px;}
.ye0{bottom:459.328500px;}
.y136{bottom:461.877450px;}
.yb1{bottom:463.776750px;}
.y156{bottom:465.981750px;}
.y17e{bottom:468.381450px;}
.y18{bottom:469.079100px;}
.y39{bottom:476.913600px;}
.y123{bottom:476.915400px;}
.yec{bottom:476.919150px;}
.y74{bottom:476.919450px;}
.ydf{bottom:476.925000px;}
.y135{bottom:478.197450px;}
.yb0{bottom:481.373250px;}
.y17{bottom:481.829100px;}
.y155{bottom:482.301750px;}
.y17d{bottom:484.701450px;}
.y38{bottom:494.510100px;}
.y122{bottom:494.511900px;}
.yeb{bottom:494.515650px;}
.y73{bottom:494.515950px;}
.yde{bottom:494.521500px;}
.y16{bottom:494.579100px;}
.y154{bottom:498.621750px;}
.yaf{bottom:498.969750px;}
.y17c{bottom:501.021450px;}
.y15{bottom:507.329100px;}
.y37{bottom:512.106600px;}
.y121{bottom:512.108400px;}
.y10c{bottom:512.112150px;}
.y72{bottom:512.112450px;}
.ydd{bottom:512.118000px;}
.y153{bottom:514.941750px;}
.yae{bottom:516.566250px;}
.y17b{bottom:517.341450px;}
.y36{bottom:529.703100px;}
.y120{bottom:529.704900px;}
.yea{bottom:529.706850px;}
.y10b{bottom:529.708650px;}
.y71{bottom:529.708950px;}
.yfa{bottom:529.712700px;}
.ydc{bottom:529.714500px;}
.y152{bottom:531.261750px;}
.y14{bottom:532.835100px;}
.y17a{bottom:533.661450px;}
.yad{bottom:534.162750px;}
.y13{bottom:545.585100px;}
.y35{bottom:547.299600px;}
.y11f{bottom:547.301400px;}
.y134{bottom:547.303350px;}
.y10a{bottom:547.305150px;}
.y70{bottom:547.305450px;}
.ydb{bottom:547.311000px;}
.y151{bottom:547.581750px;}
.y179{bottom:549.981450px;}
.yac{bottom:551.759250px;}
.y150{bottom:563.901750px;}
.y12{bottom:564.712950px;}
.y34{bottom:564.896100px;}
.y11e{bottom:564.897900px;}
.y109{bottom:564.901650px;}
.y6f{bottom:564.901950px;}
.yda{bottom:564.907500px;}
.y178{bottom:566.301450px;}
.y11{bottom:577.462950px;}
.y14f{bottom:580.221750px;}
.y33{bottom:582.492600px;}
.y11d{bottom:582.494400px;}
.y108{bottom:582.498150px;}
.y6e{bottom:582.498450px;}
.yd9{bottom:582.504000px;}
.y177{bottom:582.621450px;}
.yab{bottom:586.950450px;}
.y10{bottom:590.212950px;}
.y14e{bottom:596.541750px;}
.y176{bottom:598.941450px;}
.y32{bottom:600.089100px;}
.y11c{bottom:600.090900px;}
.y107{bottom:600.094650px;}
.y6d{bottom:600.094950px;}
.yd8{bottom:600.100500px;}
.yaa{bottom:602.937450px;}
.yf{bottom:602.962950px;}
.y14d{bottom:612.861750px;}
.y175{bottom:615.261450px;}
.ye{bottom:615.712950px;}
.y31{bottom:617.685600px;}
.y11b{bottom:617.687400px;}
.y106{bottom:617.691150px;}
.y6c{bottom:617.691450px;}
.yd7{bottom:617.697000px;}
.ya9{bottom:618.924450px;}
.yd{bottom:628.462950px;}
.y14c{bottom:629.181750px;}
.y174{bottom:631.581450px;}
.ya8{bottom:634.911450px;}
.y30{bottom:635.282100px;}
.y11a{bottom:635.283900px;}
.y105{bottom:635.287650px;}
.y6b{bottom:635.287950px;}
.yd6{bottom:635.293500px;}
.yc{bottom:641.212950px;}
.y14b{bottom:645.501750px;}
.y173{bottom:647.901450px;}
.ya7{bottom:650.898450px;}
.y2f{bottom:652.878600px;}
.y119{bottom:652.880400px;}
.y104{bottom:652.884150px;}
.y6a{bottom:652.884450px;}
.yd5{bottom:652.890000px;}
.yb{bottom:653.962950px;}
.y14a{bottom:661.821750px;}
.y172{bottom:664.221450px;}
.ya6{bottom:666.885450px;}
.y2e{bottom:670.475100px;}
.y118{bottom:670.476900px;}
.y103{bottom:670.480650px;}
.y69{bottom:670.480950px;}
.yd4{bottom:670.486500px;}
.y149{bottom:678.141750px;}
.y171{bottom:680.541450px;}
.ya5{bottom:682.872450px;}
.y2d{bottom:688.071600px;}
.y117{bottom:688.073400px;}
.y102{bottom:688.077150px;}
.y68{bottom:688.077450px;}
.yd3{bottom:688.083000px;}
.ya{bottom:693.105000px;}
.y148{bottom:694.461750px;}
.y170{bottom:696.861450px;}
.ya4{bottom:698.859450px;}
.y2c{bottom:705.668100px;}
.y116{bottom:705.669900px;}
.y67{bottom:705.673950px;}
.y147{bottom:710.781900px;}
.y16f{bottom:713.181450px;}
.ya3{bottom:714.846450px;}
.y9{bottom:717.079350px;}
.y2b{bottom:723.264600px;}
.y115{bottom:723.266400px;}
.y101{bottom:723.268350px;}
.y66{bottom:723.270450px;}
.yd2{bottom:723.274200px;}
.y146{bottom:727.101750px;}
.y16e{bottom:729.501450px;}
.ya2{bottom:730.833450px;}
.y8{bottom:736.268850px;}
.y2a{bottom:740.861100px;}
.y114{bottom:740.862900px;}
.y65{bottom:740.866950px;}
.y145{bottom:743.421750px;}
.y16d{bottom:745.821450px;}
.ya1{bottom:746.820450px;}
.y29{bottom:758.457600px;}
.y113{bottom:758.459400px;}
.y64{bottom:758.463450px;}
.y144{bottom:759.741750px;}
.y16c{bottom:762.141450px;}
.ya0{bottom:762.807450px;}
.y7{bottom:775.310850px;}
.y28{bottom:776.054100px;}
.y63{bottom:776.059950px;}
.y16b{bottom:778.461450px;}
.y9f{bottom:778.794450px;}
.y27{bottom:793.650600px;}
.y62{bottom:793.656450px;}
.y6{bottom:794.500350px;}
.y9e{bottom:794.781450px;}
.y26{bottom:832.323600px;}
.y61{bottom:832.329450px;}
.y3{bottom:835.330050px;}
.y2{bottom:855.705150px;}
.y5{bottom:867.891600px;}
.y4{bottom:881.391600px;}
.he{height:30.912000px;}
.h11{height:31.341064px;}
.h5{height:35.328000px;}
.h17{height:37.957500px;}
.hc{height:38.388000px;}
.hd{height:41.130000px;}
.hb{height:42.539062px;}
.ha{height:43.054688px;}
.h4{height:44.496000px;}
.h9{height:44.671875px;}
.hf{height:45.745605px;}
.h12{height:47.091064px;}
.h18{height:48.667500px;}
.h2{height:51.127441px;}
.h16{height:51.844482px;}
.h14{height:52.472900px;}
.h7{height:53.173828px;}
.h8{height:53.818359px;}
.h6{height:55.839844px;}
.h15{height:57.161865px;}
.h10{height:57.854736px;}
.h13{height:60.027832px;}
.h3{height:148.644883px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.xc{left:93.543300px;}
.x1{left:107.148450px;}
.xf{left:114.803100px;}
.xe{left:119.055150px;}
.x14{left:123.307050px;}
.x10{left:128.409450px;}
.x4{left:131.328600px;}
.x9{left:132.661500px;}
.x13{left:136.913400px;}
.x11{left:151.098000px;}
.x12{left:164.704200px;}
.xa{left:167.305950px;}
.xb{left:172.930950px;}
.x6{left:174.717150px;}
.x5{left:267.573600px;}
.x7{left:286.799700px;}
.x3{left:415.535250px;}
.x8{left:456.824100px;}
.xd{left:469.084800px;}
.x2{left:520.665750px;}
@media print{
.v3{vertical-align:-17.200000pt;}
.v2{vertical-align:-14.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.200000pt;}
.ls65{letter-spacing:-12.285000pt;}
.ls48{letter-spacing:-11.544000pt;}
.ls5c{letter-spacing:-10.179000pt;}
.ls59{letter-spacing:-9.399000pt;}
.ls5f{letter-spacing:-8.736000pt;}
.ls62{letter-spacing:-8.658000pt;}
.ls46{letter-spacing:-8.190000pt;}
.ls5b{letter-spacing:-7.956000pt;}
.ls61{letter-spacing:-7.215000pt;}
.ls66{letter-spacing:-7.059000pt;}
.ls1a{letter-spacing:-1.146667pt;}
.ls5d{letter-spacing:-1.040000pt;}
.ls2c{letter-spacing:-0.933333pt;}
.ls5e{letter-spacing:-0.780000pt;}
.ls2b{letter-spacing:-0.606667pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls43{letter-spacing:-0.286667pt;}
.ls47{letter-spacing:-0.260000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6d{letter-spacing:0.000200pt;}
.ls6{letter-spacing:0.000267pt;}
.ls45{letter-spacing:0.005333pt;}
.ls68{letter-spacing:0.006800pt;}
.ls6a{letter-spacing:0.007467pt;}
.ls52{letter-spacing:0.008000pt;}
.ls57{letter-spacing:0.008267pt;}
.ls53{letter-spacing:0.008533pt;}
.ls49{letter-spacing:0.009067pt;}
.ls44{letter-spacing:0.013333pt;}
.ls9{letter-spacing:0.023733pt;}
.lsf{letter-spacing:0.030333pt;}
.lsa{letter-spacing:0.034933pt;}
.ls11{letter-spacing:0.037267pt;}
.lsb{letter-spacing:0.046667pt;}
.ls7{letter-spacing:0.057333pt;}
.ls3c{letter-spacing:0.060667pt;}
.ls15{letter-spacing:0.074533pt;}
.ls16{letter-spacing:0.091000pt;}
.ls3b{letter-spacing:0.093333pt;}
.ls58{letter-spacing:0.104000pt;}
.ls13{letter-spacing:0.114667pt;}
.ls42{letter-spacing:0.121333pt;}
.lse{letter-spacing:0.140000pt;}
.ls3f{letter-spacing:0.149067pt;}
.ls3e{letter-spacing:0.151667pt;}
.lsd{letter-spacing:0.172000pt;}
.ls1c{letter-spacing:0.186333pt;}
.ls41{letter-spacing:0.186667pt;}
.ls5{letter-spacing:0.229333pt;}
.ls3d{letter-spacing:0.233333pt;}
.ls2a{letter-spacing:0.242667pt;}
.ls69{letter-spacing:0.260000pt;}
.ls32{letter-spacing:0.260867pt;}
.ls24{letter-spacing:0.273000pt;}
.ls4{letter-spacing:0.286667pt;}
.ls17{letter-spacing:0.326667pt;}
.lsc{letter-spacing:0.344000pt;}
.ls39{letter-spacing:0.372667pt;}
.ls14{letter-spacing:0.373333pt;}
.ls18{letter-spacing:0.401333pt;}
.ls31{letter-spacing:0.402667pt;}
.ls23{letter-spacing:0.420000pt;}
.ls3a{letter-spacing:0.458667pt;}
.ls4b{letter-spacing:0.504267pt;}
.ls4d{letter-spacing:0.504533pt;}
.ls4c{letter-spacing:0.507000pt;}
.ls10{letter-spacing:0.516000pt;}
.ls4e{letter-spacing:0.520000pt;}
.ls37{letter-spacing:0.559000pt;}
.ls1e{letter-spacing:0.573333pt;}
.ls6e{letter-spacing:0.606667pt;}
.ls36{letter-spacing:0.630667pt;}
.ls29{letter-spacing:0.651200pt;}
.ls2e{letter-spacing:0.688000pt;}
.ls26{letter-spacing:0.700000pt;}
.ls50{letter-spacing:0.726400pt;}
.ls51{letter-spacing:0.728000pt;}
.ls4f{letter-spacing:0.735467pt;}
.ls21{letter-spacing:0.802667pt;}
.ls38{letter-spacing:0.857133pt;}
.ls1f{letter-spacing:0.860000pt;}
.ls54{letter-spacing:0.872800pt;}
.ls55{letter-spacing:0.881067pt;}
.ls56{letter-spacing:0.884000pt;}
.ls2d{letter-spacing:0.917333pt;}
.ls27{letter-spacing:0.940333pt;}
.ls8{letter-spacing:0.974667pt;}
.ls1b{letter-spacing:1.089333pt;}
.ls63{letter-spacing:1.092000pt;}
.ls30{letter-spacing:1.146667pt;}
.ls6f{letter-spacing:1.196000pt;}
.ls6c{letter-spacing:1.226667pt;}
.ls71{letter-spacing:1.248000pt;}
.ls4a{letter-spacing:1.273600pt;}
.ls5a{letter-spacing:1.300000pt;}
.ls34{letter-spacing:1.318667pt;}
.ls2f{letter-spacing:1.322133pt;}
.ls25{letter-spacing:1.446667pt;}
.ls35{letter-spacing:1.662667pt;}
.ls72{letter-spacing:1.820000pt;}
.ls1d{letter-spacing:2.293333pt;}
.ls33{letter-spacing:2.752000pt;}
.ls67{letter-spacing:2.912000pt;}
.ls12{letter-spacing:3.719467pt;}
.ls60{letter-spacing:3.952000pt;}
.ls64{letter-spacing:5.148000pt;}
.ls6b{letter-spacing:5.447467pt;}
.ls70{letter-spacing:5.460000pt;}
.ls20{letter-spacing:7.453333pt;}
.ls0{letter-spacing:9.472000pt;}
.ls1{letter-spacing:11.120000pt;}
.ls19{letter-spacing:11.666667pt;}
.ls40{letter-spacing:11.863467pt;}
.ls28{letter-spacing:12.028267pt;}
.ls22{letter-spacing:12.078400pt;}
.ws27{word-spacing:-15.250667pt;}
.ws1e{word-spacing:-15.193333pt;}
.ws20{word-spacing:-14.906667pt;}
.ws15{word-spacing:-14.734667pt;}
.wsf{word-spacing:-14.677333pt;}
.wsd{word-spacing:-14.620000pt;}
.ws10{word-spacing:-14.562667pt;}
.ws11{word-spacing:-14.505333pt;}
.ws16{word-spacing:-14.448000pt;}
.ws1b{word-spacing:-14.390667pt;}
.ws4{word-spacing:-14.333333pt;}
.ws33{word-spacing:-13.104000pt;}
.wse{word-spacing:-13.000000pt;}
.ws13{word-spacing:-12.086667pt;}
.ws18{word-spacing:-12.040000pt;}
.ws26{word-spacing:-11.853333pt;}
.ws19{word-spacing:-11.806667pt;}
.ws6{word-spacing:-11.666667pt;}
.ws5{word-spacing:-11.333333pt;}
.ws2c{word-spacing:-10.257000pt;}
.ws1f{word-spacing:-10.173800pt;}
.ws1d{word-spacing:-9.875667pt;}
.ws21{word-spacing:-9.689333pt;}
.ws1c{word-spacing:-9.577533pt;}
.wsc{word-spacing:-9.503000pt;}
.ws24{word-spacing:-9.465733pt;}
.wsa{word-spacing:-9.391200pt;}
.ws8{word-spacing:-9.353933pt;}
.ws3{word-spacing:-9.316667pt;}
.ws14{word-spacing:-8.523667pt;}
.ws0{word-spacing:-8.288000pt;}
.ws1{word-spacing:-7.914667pt;}
.ws12{word-spacing:-7.856333pt;}
.ws17{word-spacing:-7.826000pt;}
.ws23{word-spacing:-7.735000pt;}
.ws25{word-spacing:-7.704667pt;}
.wsb{word-spacing:-7.674333pt;}
.ws22{word-spacing:-7.644000pt;}
.ws7{word-spacing:-7.613667pt;}
.ws9{word-spacing:-7.583333pt;}
.ws1a{word-spacing:-6.976667pt;}
.ws2{word-spacing:0.000000pt;}
.ws32{word-spacing:5.226000pt;}
.ws2f{word-spacing:5.421000pt;}
.ws2b{word-spacing:6.162000pt;}
.ws28{word-spacing:6.357000pt;}
.ws2e{word-spacing:6.942000pt;}
.ws30{word-spacing:7.566000pt;}
.ws2a{word-spacing:9.048000pt;}
.ws2d{word-spacing:9.828000pt;}
.ws29{word-spacing:13.338000pt;}
.ws31{word-spacing:14.820000pt;}
._10{margin-left:-14.619467pt;}
._3{margin-left:-13.374933pt;}
._13{margin-left:-11.666667pt;}
._12{margin-left:-10.613067pt;}
._2{margin-left:-9.477867pt;}
._a{margin-left:-8.288000pt;}
._15{margin-left:-5.139267pt;}
._14{margin-left:-3.916333pt;}
._11{margin-left:-2.250667pt;}
._9{margin-left:-1.188267pt;}
._5{width:1.237333pt;}
._4{width:3.007467pt;}
._d{width:3.898933pt;}
._6{width:5.034667pt;}
._7{width:5.926933pt;}
._c{width:7.224000pt;}
._f{width:8.280000pt;}
._8{width:10.378667pt;}
._1{width:11.861333pt;}
._b{width:772.964800pt;}
._e{width:1020.988267pt;}
._0{width:1616.672000pt;}
.fs9{font-size:30.333333pt;}
.fs8{font-size:37.266667pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:39.000000pt;}
.fs5{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fsa{font-size:46.666667pt;}
.fs0{font-size:50.666667pt;}
.fsb{font-size:52.000000pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:57.333333pt;}
.fs1{font-size:152.046933pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:76.127733pt;}
.y1{bottom:76.132933pt;}
.y55{bottom:110.736800pt;}
.yf9{bottom:110.736933pt;}
.y87{bottom:110.742000pt;}
.ye5{bottom:110.742133pt;}
.y24{bottom:112.572933pt;}
.y4d{bottom:114.236800pt;}
.y5d{bottom:114.236933pt;}
.y98{bottom:114.242000pt;}
.y9d{bottom:114.242133pt;}
.y23{bottom:123.239600pt;}
.y54{bottom:123.530133pt;}
.y133{bottom:123.530267pt;}
.y97{bottom:123.535467pt;}
.y16a{bottom:124.072667pt;}
.y4c{bottom:127.030133pt;}
.y5c{bottom:127.030267pt;}
.y86{bottom:127.035467pt;}
.y60{bottom:136.323467pt;}
.y5b{bottom:136.323600pt;}
.y85{bottom:136.328667pt;}
.y96{bottom:136.328800pt;}
.y22{bottom:137.685867pt;}
.y169{bottom:138.579333pt;}
.y4b{bottom:139.823467pt;}
.y112{bottom:139.823600pt;}
.yd1{bottom:139.828800pt;}
.y53{bottom:149.116800pt;}
.yc7{bottom:149.116933pt;}
.y95{bottom:149.122133pt;}
.y21{bottom:150.242267pt;}
.y4a{bottom:152.616800pt;}
.y5a{bottom:152.616933pt;}
.y84{bottom:152.622000pt;}
.y9c{bottom:152.622133pt;}
.y168{bottom:153.086000pt;}
.y49{bottom:161.910133pt;}
.yc6{bottom:161.910267pt;}
.y83{bottom:161.915467pt;}
.yc1{bottom:161.984667pt;}
.y18e{bottom:163.979867pt;}
.y20{bottom:164.688533pt;}
.y52{bottom:165.410133pt;}
.y94{bottom:165.415467pt;}
.y167{bottom:167.592667pt;}
.y111{bottom:173.661867pt;}
.y10f{bottom:173.666800pt;}
.y143{bottom:173.917333pt;}
.y1f{bottom:174.627200pt;}
.y48{bottom:174.703467pt;}
.y93{bottom:174.708800pt;}
.y18d{bottom:176.773200pt;}
.yc0{bottom:177.626000pt;}
.y59{bottom:178.203467pt;}
.y82{bottom:178.208800pt;}
.y166{bottom:182.099333pt;}
.y47{bottom:187.496933pt;}
.y81{bottom:187.502133pt;}
.y1e{bottom:188.345333pt;}
.y142{bottom:188.424000pt;}
.y110{bottom:189.303200pt;}
.y132{bottom:189.304800pt;}
.y10e{bottom:189.308133pt;}
.y18c{bottom:189.566533pt;}
.yc2{bottom:190.996933pt;}
.y92{bottom:191.002133pt;}
.ybf{bottom:193.267333pt;}
.y165{bottom:196.606000pt;}
.y1d{bottom:198.284000pt;}
.yc5{bottom:200.290267pt;}
.y80{bottom:200.295467pt;}
.y18b{bottom:202.359867pt;}
.y141{bottom:202.930667pt;}
.y46{bottom:203.790267pt;}
.ye9{bottom:203.795467pt;}
.yc3{bottom:204.944533pt;}
.y131{bottom:204.946133pt;}
.y10d{bottom:204.949467pt;}
.y100{bottom:204.949733pt;}
.ybe{bottom:208.908667pt;}
.y9b{bottom:209.243333pt;}
.y164{bottom:211.112667pt;}
.y45{bottom:213.083467pt;}
.yce{bottom:213.083600pt;}
.yfe{bottom:213.088667pt;}
.ye8{bottom:213.088800pt;}
.y18a{bottom:215.153200pt;}
.y51{bottom:216.583600pt;}
.y7f{bottom:216.588800pt;}
.y140{bottom:217.437333pt;}
.y5f{bottom:220.585867pt;}
.y130{bottom:220.587467pt;}
.y58{bottom:220.590800pt;}
.ye6{bottom:220.591067pt;}
.y9a{bottom:223.454000pt;}
.ybd{bottom:224.550000pt;}
.y163{bottom:225.619333pt;}
.y44{bottom:225.876800pt;}
.ycd{bottom:225.876933pt;}
.yfd{bottom:225.882000pt;}
.ye4{bottom:225.882133pt;}
.y189{bottom:227.946533pt;}
.yf8{bottom:229.376933pt;}
.ye7{bottom:229.382133pt;}
.y13f{bottom:231.944000pt;}
.y5e{bottom:236.227200pt;}
.y12f{bottom:236.228800pt;}
.y57{bottom:236.232133pt;}
.yd0{bottom:236.232400pt;}
.y91{bottom:236.237333pt;}
.y99{bottom:237.664667pt;}
.y43{bottom:238.670133pt;}
.yfc{bottom:238.675333pt;}
.y162{bottom:240.126000pt;}
.ybc{bottom:240.191333pt;}
.y188{bottom:240.739867pt;}
.yc4{bottom:242.170133pt;}
.ycc{bottom:242.170267pt;}
.ye3{bottom:242.175467pt;}
.y13e{bottom:246.450667pt;}
.ycb{bottom:251.463467pt;}
.yff{bottom:251.468667pt;}
.y50{bottom:251.868533pt;}
.y12e{bottom:251.870133pt;}
.yf7{bottom:251.873467pt;}
.ycf{bottom:251.873733pt;}
.y90{bottom:251.878667pt;}
.y187{bottom:253.533200pt;}
.y161{bottom:254.632667pt;}
.y42{bottom:254.963467pt;}
.yfb{bottom:254.968667pt;}
.ybb{bottom:255.832667pt;}
.y13d{bottom:260.957333pt;}
.yca{bottom:264.256800pt;}
.y186{bottom:266.326533pt;}
.y4f{bottom:267.509867pt;}
.y12d{bottom:267.511467pt;}
.y56{bottom:267.513200pt;}
.yf6{bottom:267.514800pt;}
.y7e{bottom:267.515067pt;}
.y8f{bottom:267.520000pt;}
.y160{bottom:269.139333pt;}
.yba{bottom:271.474000pt;}
.yc9{bottom:277.050133pt;}
.y185{bottom:279.119867pt;}
.y4e{bottom:283.151200pt;}
.y12c{bottom:283.152800pt;}
.yf5{bottom:283.156133pt;}
.y7d{bottom:283.156400pt;}
.y8e{bottom:283.161333pt;}
.y15f{bottom:283.646000pt;}
.yb9{bottom:287.115333pt;}
.y13c{bottom:291.103733pt;}
.yc8{bottom:293.343467pt;}
.y15e{bottom:298.152667pt;}
.y41{bottom:298.792533pt;}
.y12b{bottom:298.794133pt;}
.yf4{bottom:298.797467pt;}
.y7c{bottom:298.797733pt;}
.y8d{bottom:298.802667pt;}
.y184{bottom:299.733067pt;}
.yb8{bottom:302.756667pt;}
.y15d{bottom:312.659333pt;}
.y40{bottom:314.433867pt;}
.y12a{bottom:314.435467pt;}
.yf3{bottom:314.438800pt;}
.y7b{bottom:314.439067pt;}
.y8c{bottom:314.444000pt;}
.yb7{bottom:318.398000pt;}
.y15c{bottom:327.166000pt;}
.y3f{bottom:330.075200pt;}
.y129{bottom:330.076800pt;}
.yf2{bottom:330.080133pt;}
.y7a{bottom:330.080400pt;}
.y8b{bottom:330.085333pt;}
.yb6{bottom:334.039333pt;}
.y13b{bottom:338.024400pt;}
.y15b{bottom:341.672667pt;}
.y183{bottom:343.805733pt;}
.y3e{bottom:345.716533pt;}
.y128{bottom:345.718133pt;}
.yf1{bottom:345.721467pt;}
.y79{bottom:345.721733pt;}
.y8a{bottom:345.726667pt;}
.yb5{bottom:349.680667pt;}
.y13a{bottom:352.531067pt;}
.y15a{bottom:356.179333pt;}
.y182{bottom:358.312400pt;}
.y3d{bottom:361.357867pt;}
.y127{bottom:361.359467pt;}
.yf0{bottom:361.362800pt;}
.y78{bottom:361.363067pt;}
.y89{bottom:361.368000pt;}
.yb4{bottom:365.322000pt;}
.y1c{bottom:365.956667pt;}
.y139{bottom:367.037733pt;}
.y159{bottom:370.686000pt;}
.y181{bottom:372.819067pt;}
.y3c{bottom:376.999200pt;}
.y126{bottom:377.000800pt;}
.yef{bottom:377.004133pt;}
.y77{bottom:377.004400pt;}
.ye2{bottom:377.009333pt;}
.yb3{bottom:380.963333pt;}
.y138{bottom:381.544400pt;}
.y1b{bottom:382.959200pt;}
.y158{bottom:385.192667pt;}
.y180{bottom:387.325733pt;}
.y3b{bottom:392.640533pt;}
.y125{bottom:392.642133pt;}
.yee{bottom:392.645467pt;}
.y76{bottom:392.645733pt;}
.y88{bottom:392.649067pt;}
.ye1{bottom:392.650667pt;}
.y1a{bottom:394.292533pt;}
.y137{bottom:396.051067pt;}
.yb2{bottom:396.604800pt;}
.y157{bottom:399.699333pt;}
.y17f{bottom:401.832400pt;}
.y19{bottom:405.625867pt;}
.y3a{bottom:408.281867pt;}
.y124{bottom:408.283467pt;}
.yed{bottom:408.286800pt;}
.y75{bottom:408.287067pt;}
.ye0{bottom:408.292000pt;}
.y136{bottom:410.557733pt;}
.yb1{bottom:412.246000pt;}
.y156{bottom:414.206000pt;}
.y17e{bottom:416.339067pt;}
.y18{bottom:416.959200pt;}
.y39{bottom:423.923200pt;}
.y123{bottom:423.924800pt;}
.yec{bottom:423.928133pt;}
.y74{bottom:423.928400pt;}
.ydf{bottom:423.933333pt;}
.y135{bottom:425.064400pt;}
.yb0{bottom:427.887333pt;}
.y17{bottom:428.292533pt;}
.y155{bottom:428.712667pt;}
.y17d{bottom:430.845733pt;}
.y38{bottom:439.564533pt;}
.y122{bottom:439.566133pt;}
.yeb{bottom:439.569467pt;}
.y73{bottom:439.569733pt;}
.yde{bottom:439.574667pt;}
.y16{bottom:439.625867pt;}
.y154{bottom:443.219333pt;}
.yaf{bottom:443.528667pt;}
.y17c{bottom:445.352400pt;}
.y15{bottom:450.959200pt;}
.y37{bottom:455.205867pt;}
.y121{bottom:455.207467pt;}
.y10c{bottom:455.210800pt;}
.y72{bottom:455.211067pt;}
.ydd{bottom:455.216000pt;}
.y153{bottom:457.726000pt;}
.yae{bottom:459.170000pt;}
.y17b{bottom:459.859067pt;}
.y36{bottom:470.847200pt;}
.y120{bottom:470.848800pt;}
.yea{bottom:470.850533pt;}
.y10b{bottom:470.852133pt;}
.y71{bottom:470.852400pt;}
.yfa{bottom:470.855733pt;}
.ydc{bottom:470.857333pt;}
.y152{bottom:472.232667pt;}
.y14{bottom:473.631200pt;}
.y17a{bottom:474.365733pt;}
.yad{bottom:474.811333pt;}
.y13{bottom:484.964533pt;}
.y35{bottom:486.488533pt;}
.y11f{bottom:486.490133pt;}
.y134{bottom:486.491867pt;}
.y10a{bottom:486.493467pt;}
.y70{bottom:486.493733pt;}
.ydb{bottom:486.498667pt;}
.y151{bottom:486.739333pt;}
.y179{bottom:488.872400pt;}
.yac{bottom:490.452667pt;}
.y150{bottom:501.246000pt;}
.y12{bottom:501.967067pt;}
.y34{bottom:502.129867pt;}
.y11e{bottom:502.131467pt;}
.y109{bottom:502.134800pt;}
.y6f{bottom:502.135067pt;}
.yda{bottom:502.140000pt;}
.y178{bottom:503.379067pt;}
.y11{bottom:513.300400pt;}
.y14f{bottom:515.752667pt;}
.y33{bottom:517.771200pt;}
.y11d{bottom:517.772800pt;}
.y108{bottom:517.776133pt;}
.y6e{bottom:517.776400pt;}
.yd9{bottom:517.781333pt;}
.y177{bottom:517.885733pt;}
.yab{bottom:521.733733pt;}
.y10{bottom:524.633733pt;}
.y14e{bottom:530.259333pt;}
.y176{bottom:532.392400pt;}
.y32{bottom:533.412533pt;}
.y11c{bottom:533.414133pt;}
.y107{bottom:533.417467pt;}
.y6d{bottom:533.417733pt;}
.yd8{bottom:533.422667pt;}
.yaa{bottom:535.944400pt;}
.yf{bottom:535.967067pt;}
.y14d{bottom:544.766000pt;}
.y175{bottom:546.899067pt;}
.ye{bottom:547.300400pt;}
.y31{bottom:549.053867pt;}
.y11b{bottom:549.055467pt;}
.y106{bottom:549.058800pt;}
.y6c{bottom:549.059067pt;}
.yd7{bottom:549.064000pt;}
.ya9{bottom:550.155067pt;}
.yd{bottom:558.633733pt;}
.y14c{bottom:559.272667pt;}
.y174{bottom:561.405733pt;}
.ya8{bottom:564.365733pt;}
.y30{bottom:564.695200pt;}
.y11a{bottom:564.696800pt;}
.y105{bottom:564.700133pt;}
.y6b{bottom:564.700400pt;}
.yd6{bottom:564.705333pt;}
.yc{bottom:569.967067pt;}
.y14b{bottom:573.779333pt;}
.y173{bottom:575.912400pt;}
.ya7{bottom:578.576400pt;}
.y2f{bottom:580.336533pt;}
.y119{bottom:580.338133pt;}
.y104{bottom:580.341467pt;}
.y6a{bottom:580.341733pt;}
.yd5{bottom:580.346667pt;}
.yb{bottom:581.300400pt;}
.y14a{bottom:588.286000pt;}
.y172{bottom:590.419067pt;}
.ya6{bottom:592.787067pt;}
.y2e{bottom:595.977867pt;}
.y118{bottom:595.979467pt;}
.y103{bottom:595.982800pt;}
.y69{bottom:595.983067pt;}
.yd4{bottom:595.988000pt;}
.y149{bottom:602.792667pt;}
.y171{bottom:604.925733pt;}
.ya5{bottom:606.997733pt;}
.y2d{bottom:611.619200pt;}
.y117{bottom:611.620800pt;}
.y102{bottom:611.624133pt;}
.y68{bottom:611.624400pt;}
.yd3{bottom:611.629333pt;}
.ya{bottom:616.093333pt;}
.y148{bottom:617.299333pt;}
.y170{bottom:619.432400pt;}
.ya4{bottom:621.208400pt;}
.y2c{bottom:627.260533pt;}
.y116{bottom:627.262133pt;}
.y67{bottom:627.265733pt;}
.y147{bottom:631.806133pt;}
.y16f{bottom:633.939067pt;}
.ya3{bottom:635.419067pt;}
.y9{bottom:637.403867pt;}
.y2b{bottom:642.901867pt;}
.y115{bottom:642.903467pt;}
.y101{bottom:642.905200pt;}
.y66{bottom:642.907067pt;}
.yd2{bottom:642.910400pt;}
.y146{bottom:646.312667pt;}
.y16e{bottom:648.445733pt;}
.ya2{bottom:649.629733pt;}
.y8{bottom:654.461200pt;}
.y2a{bottom:658.543200pt;}
.y114{bottom:658.544800pt;}
.y65{bottom:658.548400pt;}
.y145{bottom:660.819333pt;}
.y16d{bottom:662.952400pt;}
.ya1{bottom:663.840400pt;}
.y29{bottom:674.184533pt;}
.y113{bottom:674.186133pt;}
.y64{bottom:674.189733pt;}
.y144{bottom:675.326000pt;}
.y16c{bottom:677.459067pt;}
.ya0{bottom:678.051067pt;}
.y7{bottom:689.165200pt;}
.y28{bottom:689.825867pt;}
.y63{bottom:689.831067pt;}
.y16b{bottom:691.965733pt;}
.y9f{bottom:692.261733pt;}
.y27{bottom:705.467200pt;}
.y62{bottom:705.472400pt;}
.y6{bottom:706.222533pt;}
.y9e{bottom:706.472400pt;}
.y26{bottom:739.843200pt;}
.y61{bottom:739.848400pt;}
.y3{bottom:742.515600pt;}
.y2{bottom:760.626800pt;}
.y5{bottom:771.459200pt;}
.y4{bottom:783.459200pt;}
.he{height:27.477333pt;}
.h11{height:27.858724pt;}
.h5{height:31.402667pt;}
.h17{height:33.740000pt;}
.hc{height:34.122667pt;}
.hd{height:36.560000pt;}
.hb{height:37.812500pt;}
.ha{height:38.270833pt;}
.h4{height:39.552000pt;}
.h9{height:39.708333pt;}
.hf{height:40.662760pt;}
.h12{height:41.858724pt;}
.h18{height:43.260000pt;}
.h2{height:45.446615pt;}
.h16{height:46.083984pt;}
.h14{height:46.642578pt;}
.h7{height:47.265625pt;}
.h8{height:47.838542pt;}
.h6{height:49.635417pt;}
.h15{height:50.810547pt;}
.h10{height:51.426432pt;}
.h13{height:53.358073pt;}
.h3{height:132.128785pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.xc{left:83.149600pt;}
.x1{left:95.243067pt;}
.xf{left:102.047200pt;}
.xe{left:105.826800pt;}
.x14{left:109.606267pt;}
.x10{left:114.141733pt;}
.x4{left:116.736533pt;}
.x9{left:117.921333pt;}
.x13{left:121.700800pt;}
.x11{left:134.309333pt;}
.x12{left:146.403733pt;}
.xa{left:148.716400pt;}
.xb{left:153.716400pt;}
.x6{left:155.304133pt;}
.x5{left:237.843200pt;}
.x7{left:254.933067pt;}
.x3{left:369.364667pt;}
.x8{left:406.065867pt;}
.xd{left:416.964267pt;}
.x2{left:462.814000pt;}
}




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