
    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_d7bac0736d322b6d31a1ef62.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_4ace51e73ea8320b3ddf7668.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_281edbee37a8543ca22e0e9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_daa1090fb63ed9be4da413ba.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.137000;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_817c734709aa4570425369d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_dd946e13bb71a53a06078f0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.961000;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_298b9db723b5dbb5d5be393f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_1e5b9f482bce43f7bae4e5af.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_50ad5f3ee8b6c5ee841b729b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.987000;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_87e709e445203e3d99f4682f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_ec3b089eea1165aeecfc0d09.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_1e5b9f482bce43f7bae4e5af.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.106934;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_67909d618fb93b98cea94981.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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);}
.v2{vertical-align:-19.980000px;}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls22{letter-spacing:-8.814000px;}
.ls31{letter-spacing:-3.744000px;}
.ls10{letter-spacing:-3.480000px;}
.lse{letter-spacing:-2.964000px;}
.lsf{letter-spacing:-2.640000px;}
.ls2{letter-spacing:-2.304000px;}
.ls29{letter-spacing:-1.950000px;}
.ls35{letter-spacing:-1.920000px;}
.ls2b{letter-spacing:-1.794000px;}
.ls27{letter-spacing:-1.740000px;}
.ls15{letter-spacing:-1.716000px;}
.lsc{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.200000px;}
.ls17{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.576000px;}
.ls24{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.420000px;}
.ls21{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.162000px;}
.ls2a{letter-spacing:-0.120000px;}
.ls11{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000600px;}
.ls2f{letter-spacing:0.004296px;}
.ls20{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.162000px;}
.ls1c{letter-spacing:0.180000px;}
.ls34{letter-spacing:0.192000px;}
.lsd{letter-spacing:0.240000px;}
.ls36{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.300000px;}
.ls2c{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.336000px;}
.ls23{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.384000px;}
.ls1{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.480000px;}
.ls2d{letter-spacing:0.528000px;}
.ls1e{letter-spacing:0.588000px;}
.ls2e{letter-spacing:0.624000px;}
.ls28{letter-spacing:0.660000px;}
.ls7{letter-spacing:0.672000px;}
.ls4{letter-spacing:0.960000px;}
.ls32{letter-spacing:1.104000px;}
.ls30{letter-spacing:1.248000px;}
.ls1a{letter-spacing:1.602000px;}
.ls3{letter-spacing:1.680000px;}
.ls1f{letter-spacing:3.211800px;}
.ls25{letter-spacing:4.186200px;}
.ls16{letter-spacing:4.202400px;}
.ls1b{letter-spacing:9.199800px;}
.ls19{letter-spacing:17.346600px;}
.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;}
}
.ws7c{word-spacing:-45.006000px;}
.ws45{word-spacing:-37.986000px;}
.ws4f{word-spacing:-17.040000px;}
.ws4e{word-spacing:-16.980000px;}
.ws12{word-spacing:-16.920000px;}
.ws33{word-spacing:-16.800000px;}
.ws6c{word-spacing:-16.740000px;}
.ws32{word-spacing:-16.680000px;}
.ws11{word-spacing:-16.620000px;}
.ws6d{word-spacing:-16.560000px;}
.ws43{word-spacing:-16.380000px;}
.ws2{word-spacing:-15.174000px;}
.ws3{word-spacing:-15.120000px;}
.ws8e{word-spacing:-15.012000px;}
.ws87{word-spacing:-14.592000px;}
.ws89{word-spacing:-14.448000px;}
.ws1{word-spacing:-14.304000px;}
.ws10{word-spacing:-14.040000px;}
.ws8b{word-spacing:-14.016000px;}
.ws86{word-spacing:-13.968000px;}
.ws0{word-spacing:-13.776000px;}
.ws8a{word-spacing:-13.728000px;}
.ws8d{word-spacing:-13.680000px;}
.ws8c{word-spacing:-13.632000px;}
.ws44{word-spacing:-13.200000px;}
.ws82{word-spacing:-12.768000px;}
.ws42{word-spacing:-9.724440px;}
.ws88{word-spacing:-9.600000px;}
.ws27{word-spacing:-2.940000px;}
.ws55{word-spacing:-2.880000px;}
.ws68{word-spacing:-2.760000px;}
.ws26{word-spacing:-2.580000px;}
.ws40{word-spacing:-2.460000px;}
.ws64{word-spacing:-2.160000px;}
.ws7e{word-spacing:-2.040000px;}
.ws66{word-spacing:-1.980000px;}
.ws31{word-spacing:-1.860000px;}
.ws67{word-spacing:-1.740000px;}
.ws6{word-spacing:-1.680000px;}
.ws1c{word-spacing:-1.500000px;}
.ws72{word-spacing:-1.440000px;}
.wsa{word-spacing:-1.296000px;}
.ws17{word-spacing:-1.260000px;}
.ws2e{word-spacing:-1.080000px;}
.ws3c{word-spacing:-0.960000px;}
.ws60{word-spacing:-0.900000px;}
.ws54{word-spacing:-0.780000px;}
.ws78{word-spacing:-0.720000px;}
.wsb{word-spacing:-0.672000px;}
.ws6a{word-spacing:-0.660000px;}
.ws85{word-spacing:-0.624000px;}
.ws41{word-spacing:-0.588000px;}
.ws84{word-spacing:-0.528000px;}
.ws24{word-spacing:-0.480000px;}
.ws13{word-spacing:-0.432000px;}
.ws5a{word-spacing:-0.360000px;}
.wsd{word-spacing:-0.336000px;}
.ws83{word-spacing:-0.324000px;}
.ws56{word-spacing:-0.300000px;}
.ws15{word-spacing:-0.240000px;}
.ws8f{word-spacing:-0.192000px;}
.ws3d{word-spacing:-0.180000px;}
.ws7{word-spacing:-0.156000px;}
.ws7a{word-spacing:-0.120000px;}
.ws59{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws1b{word-spacing:0.060000px;}
.ws25{word-spacing:0.120000px;}
.wse{word-spacing:0.162000px;}
.ws22{word-spacing:0.180000px;}
.ws20{word-spacing:0.240000px;}
.ws2d{word-spacing:0.300000px;}
.ws9{word-spacing:0.336000px;}
.ws5c{word-spacing:0.420000px;}
.ws21{word-spacing:0.480000px;}
.ws52{word-spacing:0.540000px;}
.ws8{word-spacing:0.576000px;}
.ws73{word-spacing:0.600000px;}
.wsc{word-spacing:0.648000px;}
.ws4c{word-spacing:0.660000px;}
.ws30{word-spacing:0.720000px;}
.ws2f{word-spacing:1.080000px;}
.ws1d{word-spacing:1.200000px;}
.wsf{word-spacing:1.440000px;}
.ws1a{word-spacing:1.560000px;}
.ws28{word-spacing:1.716000px;}
.ws16{word-spacing:1.740000px;}
.ws1e{word-spacing:1.800000px;}
.ws90{word-spacing:1.920000px;}
.ws6f{word-spacing:1.950000px;}
.ws75{word-spacing:2.160000px;}
.ws74{word-spacing:2.220000px;}
.ws5{word-spacing:2.304000px;}
.ws2b{word-spacing:2.400000px;}
.ws79{word-spacing:2.460000px;}
.ws58{word-spacing:2.580000px;}
.ws7b{word-spacing:2.640000px;}
.ws5d{word-spacing:2.880000px;}
.ws14{word-spacing:2.964000px;}
.ws51{word-spacing:3.000000px;}
.ws6e{word-spacing:3.060000px;}
.ws61{word-spacing:3.120000px;}
.ws46{word-spacing:3.180000px;}
.ws47{word-spacing:3.240000px;}
.ws49{word-spacing:3.300000px;}
.ws65{word-spacing:3.360000px;}
.ws19{word-spacing:3.480000px;}
.ws2a{word-spacing:3.600000px;}
.ws57{word-spacing:3.840000px;}
.ws4d{word-spacing:3.900000px;}
.ws7d{word-spacing:3.960000px;}
.ws62{word-spacing:4.140000px;}
.ws63{word-spacing:4.200000px;}
.ws50{word-spacing:4.260000px;}
.ws3b{word-spacing:4.320000px;}
.ws5b{word-spacing:4.500000px;}
.ws80{word-spacing:4.620000px;}
.ws18{word-spacing:5.040000px;}
.ws6b{word-spacing:5.160000px;}
.ws81{word-spacing:5.580000px;}
.ws69{word-spacing:5.940000px;}
.ws48{word-spacing:6.240000px;}
.ws2c{word-spacing:6.360000px;}
.ws71{word-spacing:6.600000px;}
.ws70{word-spacing:6.660000px;}
.ws5f{word-spacing:6.840000px;}
.ws1f{word-spacing:6.960000px;}
.ws4b{word-spacing:7.140000px;}
.ws3a{word-spacing:7.500000px;}
.ws7f{word-spacing:7.560000px;}
.ws53{word-spacing:7.680000px;}
.ws39{word-spacing:7.860000px;}
.ws77{word-spacing:7.920000px;}
.ws5e{word-spacing:9.180000px;}
.ws3f{word-spacing:9.240000px;}
.ws4a{word-spacing:9.900000px;}
.ws37{word-spacing:10.620000px;}
.ws36{word-spacing:15.060000px;}
.ws76{word-spacing:16.200000px;}
.ws35{word-spacing:16.740000px;}
.ws38{word-spacing:17.340000px;}
.ws29{word-spacing:19.020000px;}
.ws3e{word-spacing:21.300000px;}
.ws34{word-spacing:23.400000px;}
.ws23{word-spacing:607.080600px;}
._13{margin-left:-9.198000px;}
._7{margin-left:-6.942600px;}
._9{margin-left:-5.617200px;}
._4{margin-left:-4.536000px;}
._6{margin-left:-3.244800px;}
._0{margin-left:-2.238000px;}
._3{margin-left:-1.088400px;}
._1{width:1.646400px;}
._2{width:3.297600px;}
._5{width:5.140800px;}
._8{width:6.873600px;}
._c{width:8.325600px;}
._a{width:10.002000px;}
._14{width:11.474400px;}
._11{width:12.477600px;}
._d{width:13.659600px;}
._e{width:15.000000px;}
._15{width:19.395600px;}
._12{width:20.784600px;}
._10{width:23.616000px;}
._f{width:24.690000px;}
._b{width:451.884600px;}
.fc7{color:rgb(238,38,40);}
.fc6{color:rgb(140,24,29);}
.fc5{color:rgb(40,41,42);}
.fc4{color:rgb(27,27,28);}
.fc3{color:rgb(79,76,77);}
.fc1{color:rgb(145,143,143);}
.fc2{color:rgb(57,53,54);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:27.984000px;}
.fs6{font-size:34.980000px;}
.fs4{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:21.259800px;}
.y2b{bottom:75.813150px;}
.y2c{bottom:76.000650px;}
.y4b{bottom:76.188150px;}
.y29{bottom:86.378400px;}
.y28{bottom:100.778550px;}
.y27{bottom:115.178400px;}
.y5d{bottom:120.701700px;}
.ya8{bottom:126.973200px;}
.y9f{bottom:127.728000px;}
.y67{bottom:129.483150px;}
.ye9{bottom:130.237800px;}
.y46{bottom:131.132700px;}
.yc9{bottom:134.887800px;}
.y114{bottom:137.028000px;}
.y11e{bottom:141.528000px;}
.y5b{bottom:142.647600px;}
.y85{bottom:145.723200px;}
.y9e{bottom:146.478000px;}
.y66{bottom:148.233150px;}
.ye8{bottom:148.987800px;}
.y45{bottom:149.882700px;}
.yc8{bottom:153.637800px;}
.y113{bottom:155.778000px;}
.y11d{bottom:155.928000px;}
.y5a{bottom:161.397600px;}
.y84{bottom:164.473200px;}
.y9d{bottom:165.228000px;}
.y65{bottom:166.983150px;}
.ye7{bottom:167.737800px;}
.y44{bottom:168.632700px;}
.y11c{bottom:170.328000px;}
.y26{bottom:172.098150px;}
.yc7{bottom:172.387800px;}
.y112{bottom:174.528000px;}
.y59{bottom:180.147600px;}
.y100{bottom:180.713400px;}
.y83{bottom:183.223200px;}
.y9c{bottom:183.978000px;}
.y64{bottom:185.733150px;}
.ye6{bottom:186.487800px;}
.y43{bottom:187.382700px;}
.y25{bottom:188.298150px;}
.yc6{bottom:191.137800px;}
.y11b{bottom:193.231950px;}
.y111{bottom:193.278000px;}
.ya9{bottom:195.444600px;}
.y58{bottom:198.897600px;}
.yff{bottom:199.463400px;}
.y82{bottom:201.973200px;}
.y9b{bottom:202.728000px;}
.y63{bottom:204.483150px;}
.ye5{bottom:205.237800px;}
.y42{bottom:206.132700px;}
.y11a{bottom:207.631950px;}
.yc5{bottom:209.887800px;}
.y110{bottom:212.028000px;}
.y24{bottom:213.002100px;}
.y57{bottom:217.647600px;}
.yfe{bottom:218.213400px;}
.y81{bottom:220.723200px;}
.yf2{bottom:221.478000px;}
.yce{bottom:223.233150px;}
.ye4{bottom:223.987800px;}
.y41{bottom:224.882700px;}
.y23{bottom:227.402100px;}
.yc4{bottom:228.637800px;}
.y119{bottom:230.535900px;}
.y56{bottom:236.397600px;}
.yfd{bottom:236.963400px;}
.y68{bottom:238.438500px;}
.y80{bottom:239.473200px;}
.y22{bottom:241.802100px;}
.ycd{bottom:241.983150px;}
.ye3{bottom:242.737800px;}
.y40{bottom:243.632700px;}
.y118{bottom:244.935900px;}
.y9a{bottom:246.989850px;}
.yc3{bottom:247.387800px;}
.y10f{bottom:252.037800px;}
.y55{bottom:255.147600px;}
.yfc{bottom:255.713400px;}
.y21{bottom:256.202100px;}
.y7f{bottom:258.223200px;}
.ycc{bottom:260.733150px;}
.ye2{bottom:261.487800px;}
.y3f{bottom:262.382700px;}
.yc2{bottom:266.137800px;}
.y117{bottom:267.839850px;}
.y99{bottom:270.389850px;}
.y20{bottom:270.602100px;}
.y10e{bottom:270.787800px;}
.y54{bottom:273.897600px;}
.yfb{bottom:274.463400px;}
.y7e{bottom:276.973200px;}
.ycb{bottom:279.483150px;}
.ye1{bottom:280.237800px;}
.y3e{bottom:281.132700px;}
.y1f{bottom:285.002100px;}
.y13c{bottom:285.594300px;}
.y10d{bottom:289.537800px;}
.y53{bottom:292.647600px;}
.yfa{bottom:293.213400px;}
.y98{bottom:293.789850px;}
.ya2{bottom:295.723200px;}
.yca{bottom:298.233150px;}
.ye0{bottom:298.987800px;}
.y116{bottom:299.247600px;}
.y1e{bottom:299.402100px;}
.y3d{bottom:299.882700px;}
.yc1{bottom:306.147600px;}
.y10c{bottom:308.287800px;}
.y52{bottom:311.397600px;}
.yf9{bottom:311.963400px;}
.y1d{bottom:313.802100px;}
.ya1{bottom:314.473200px;}
.y7d{bottom:316.983150px;}
.ydf{bottom:317.737800px;}
.y3c{bottom:318.632700px;}
.yc0{bottom:324.897600px;}
.y10b{bottom:327.037800px;}
.y1c{bottom:328.202100px;}
.yf8{bottom:330.713400px;}
.ya0{bottom:333.223200px;}
.y7c{bottom:335.733150px;}
.yde{bottom:336.487800px;}
.y3b{bottom:337.382700px;}
.y1b{bottom:342.602100px;}
.ybf{bottom:343.647600px;}
.y10a{bottom:345.787800px;}
.ycf{bottom:350.616600px;}
.y13b{bottom:351.618000px;}
.y7b{bottom:354.483150px;}
.ydd{bottom:355.237800px;}
.y51{bottom:355.659450px;}
.y3a{bottom:356.132700px;}
.y1a{bottom:361.254000px;}
.ybe{bottom:362.397600px;}
.y109{bottom:364.537800px;}
.y13a{bottom:370.014000px;}
.yf7{bottom:370.723200px;}
.y7a{bottom:373.233150px;}
.yf1{bottom:373.987800px;}
.y39{bottom:374.882700px;}
.y50{bottom:379.059450px;}
.ybd{bottom:381.147600px;}
.y108{bottom:383.287800px;}
.y97{bottom:389.473200px;}
.y79{bottom:391.983150px;}
.yf0{bottom:392.737800px;}
.y38{bottom:393.632700px;}
.ydc{bottom:395.247600px;}
.y139{bottom:397.425900px;}
.ybc{bottom:399.897600px;}
.y107{bottom:402.037800px;}
.y96{bottom:408.223200px;}
.y78{bottom:410.733150px;}
.y19{bottom:411.469800px;}
.yef{bottom:411.487800px;}
.y37{bottom:412.382700px;}
.ydb{bottom:413.997600px;}
.ybb{bottom:418.647600px;}
.y106{bottom:420.787800px;}
.y5c{bottom:423.534900px;}
.y95{bottom:426.973200px;}
.y77{bottom:429.483150px;}
.yee{bottom:430.237800px;}
.y36{bottom:431.132700px;}
.yda{bottom:432.747600px;}
.y18{bottom:436.669800px;}
.yba{bottom:437.397600px;}
.y105{bottom:439.537800px;}
.y94{bottom:445.723200px;}
.y76{bottom:448.233150px;}
.yed{bottom:448.987800px;}
.y35{bottom:449.882700px;}
.yd9{bottom:451.497600px;}
.y138{bottom:456.145500px;}
.yb9{bottom:456.147600px;}
.y104{bottom:458.287800px;}
.y17{bottom:460.069800px;}
.y93{bottom:464.473200px;}
.y75{bottom:466.983150px;}
.y34{bottom:468.632700px;}
.yd8{bottom:470.247600px;}
.y137{bottom:470.545500px;}
.yb8{bottom:474.897600px;}
.y92{bottom:483.223200px;}
.y74{bottom:485.733150px;}
.y33{bottom:487.382700px;}
.yd7{bottom:488.997600px;}
.yec{bottom:493.249650px;}
.y136{bottom:493.449450px;}
.yb7{bottom:493.647600px;}
.y91{bottom:501.973200px;}
.y103{bottom:502.549650px;}
.y73{bottom:504.483150px;}
.y32{bottom:506.132700px;}
.yd6{bottom:507.747600px;}
.y135{bottom:507.849450px;}
.yb6{bottom:512.397600px;}
.yeb{bottom:516.649650px;}
.y16{bottom:517.485600px;}
.y90{bottom:520.723350px;}
.y134{bottom:522.249450px;}
.y72{bottom:523.233150px;}
.y31{bottom:524.882700px;}
.yd5{bottom:526.497600px;}
.yb5{bottom:531.147600px;}
.y15{bottom:533.685450px;}
.y133{bottom:536.649450px;}
.yf6{bottom:539.473350px;}
.yea{bottom:540.049650px;}
.y71{bottom:541.983150px;}
.y30{bottom:543.632700px;}
.yd4{bottom:545.247600px;}
.yb4{bottom:549.897600px;}
.yf5{bottom:558.223350px;}
.y14{bottom:558.389400px;}
.y132{bottom:559.553400px;}
.y8f{bottom:560.733150px;}
.yd3{bottom:563.997600px;}
.yb3{bottom:568.647600px;}
.y13{bottom:572.789550px;}
.y131{bottom:573.953400px;}
.y48{bottom:576.105600px;}
.yf4{bottom:576.973350px;}
.y8e{bottom:579.483150px;}
.y70{bottom:581.992950px;}
.y12{bottom:587.189550px;}
.yb2{bottom:587.397600px;}
.y130{bottom:588.353400px;}
.y47{bottom:588.717600px;}
.y115{bottom:595.723350px;}
.y8d{bottom:598.233150px;}
.y6f{bottom:600.742950px;}
.y11{bottom:601.589550px;}
.yb1{bottom:606.147600px;}
.yd2{bottom:608.259450px;}
.y12f{bottom:611.257350px;}
.y10{bottom:615.989550px;}
.y8c{bottom:616.983150px;}
.yf3{bottom:617.965050px;}
.y6e{bottom:619.492950px;}
.yb0{bottom:624.897600px;}
.y12e{bottom:625.657350px;}
.yf{bottom:630.389400px;}
.yd1{bottom:631.659450px;}
.y102{bottom:632.491950px;}
.y8b{bottom:635.733150px;}
.y6d{bottom:638.242950px;}
.y12d{bottom:640.057350px;}
.yaf{bottom:643.647600px;}
.ye{bottom:644.789550px;}
.y101{bottom:645.091950px;}
.y8a{bottom:654.483150px;}
.yd0{bottom:655.059450px;}
.y6c{bottom:656.992950px;}
.yd{bottom:659.189550px;}
.yae{bottom:662.397600px;}
.y12c{bottom:662.961300px;}
.y86{bottom:671.686500px;}
.y89{bottom:673.233150px;}
.yc{bottom:673.589550px;}
.y6b{bottom:675.742950px;}
.y12b{bottom:677.361300px;}
.yad{bottom:681.147600px;}
.yb{bottom:687.989550px;}
.y88{bottom:691.983150px;}
.y6a{bottom:694.492950px;}
.yac{bottom:699.897600px;}
.y12a{bottom:700.265250px;}
.ya{bottom:706.641450px;}
.y87{bottom:710.733150px;}
.y69{bottom:713.242950px;}
.y129{bottom:714.665250px;}
.ya7{bottom:729.483150px;}
.y62{bottom:731.992950px;}
.y128{bottom:737.569200px;}
.yab{bottom:744.159450px;}
.ya6{bottom:748.233150px;}
.y61{bottom:750.742950px;}
.y127{bottom:751.969200px;}
.y9{bottom:756.857250px;}
.y126{bottom:766.369200px;}
.ya5{bottom:766.983150px;}
.yaa{bottom:767.559450px;}
.y60{bottom:769.492950px;}
.y8{bottom:773.709150px;}
.y125{bottom:780.769200px;}
.ya4{bottom:785.733150px;}
.y5f{bottom:788.242950px;}
.y124{bottom:803.673000px;}
.ya3{bottom:804.483150px;}
.y5e{bottom:806.992950px;}
.y123{bottom:818.073150px;}
.y4f{bottom:825.742950px;}
.y7{bottom:829.324950px;}
.y2f{bottom:831.644550px;}
.y122{bottom:832.473150px;}
.y4e{bottom:844.492950px;}
.y6{bottom:854.524950px;}
.y2e{bottom:855.044550px;}
.y121{bottom:855.376950px;}
.y4d{bottom:863.242950px;}
.y120{bottom:869.777100px;}
.y5{bottom:877.924950px;}
.y2d{bottom:878.444550px;}
.y4c{bottom:881.992950px;}
.y11f{bottom:884.177100px;}
.y4{bottom:919.156650px;}
.y3{bottom:933.556650px;}
.y4a{bottom:938.589450px;}
.y2a{bottom:946.002000px;}
.y2{bottom:947.956650px;}
.y49{bottom:952.989300px;}
.h11{height:25.087219px;}
.he{height:30.597656px;}
.hf{height:34.945312px;}
.h8{height:34.968750px;}
.h12{height:35.952000px;}
.hd{height:37.604344px;}
.h6{height:37.652344px;}
.h10{height:39.339844px;}
.h3{height:43.031250px;}
.hc{height:43.681641px;}
.ha{height:43.710938px;}
.h9{height:44.400000px;}
.h7{height:48.410156px;}
.h2{height:53.789062px;}
.h5{height:64.546875px;}
.h4{height:72.150000px;}
.hb{height:74.880000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:74.409450px;}
.xc{left:102.047250px;}
.x6{left:116.929200px;}
.x15{left:127.547250px;}
.xb{left:144.567000px;}
.x10{left:153.283500px;}
.x8{left:176.456700px;}
.xe{left:192.553800px;}
.x7{left:204.094500px;}
.xf{left:234.499800px;}
.x16{left:293.031900px;}
.x9{left:303.574500px;}
.x1{left:344.192250px;}
.xa{left:391.657800px;}
.x11{left:433.100700px;}
.x13{left:468.602400px;}
.x12{left:499.315650px;}
.xd{left:543.568650px;}
.x4{left:545.798700px;}
.x14{left:550.257600px;}
.x3{left:557.579850px;}
.x5{left:594.338700px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls22{letter-spacing:-7.834667pt;}
.ls31{letter-spacing:-3.328000pt;}
.ls10{letter-spacing:-3.093333pt;}
.lse{letter-spacing:-2.634667pt;}
.lsf{letter-spacing:-2.346667pt;}
.ls2{letter-spacing:-2.048000pt;}
.ls29{letter-spacing:-1.733333pt;}
.ls35{letter-spacing:-1.706667pt;}
.ls2b{letter-spacing:-1.594667pt;}
.ls27{letter-spacing:-1.546667pt;}
.ls15{letter-spacing:-1.525333pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-1.066667pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.512000pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.373333pt;}
.ls21{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.144000pt;}
.ls2a{letter-spacing:-0.106667pt;}
.ls11{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000533pt;}
.ls2f{letter-spacing:0.003819pt;}
.ls20{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.144000pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls34{letter-spacing:0.170667pt;}
.lsd{letter-spacing:0.213333pt;}
.ls36{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.266667pt;}
.ls2c{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.298667pt;}
.ls23{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.341333pt;}
.ls1{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.426667pt;}
.ls2d{letter-spacing:0.469333pt;}
.ls1e{letter-spacing:0.522667pt;}
.ls2e{letter-spacing:0.554667pt;}
.ls28{letter-spacing:0.586667pt;}
.ls7{letter-spacing:0.597333pt;}
.ls4{letter-spacing:0.853333pt;}
.ls32{letter-spacing:0.981333pt;}
.ls30{letter-spacing:1.109333pt;}
.ls1a{letter-spacing:1.424000pt;}
.ls3{letter-spacing:1.493333pt;}
.ls1f{letter-spacing:2.854933pt;}
.ls25{letter-spacing:3.721067pt;}
.ls16{letter-spacing:3.735467pt;}
.ls1b{letter-spacing:8.177600pt;}
.ls19{letter-spacing:15.419200pt;}
.ws7c{word-spacing:-40.005333pt;}
.ws45{word-spacing:-33.765333pt;}
.ws4f{word-spacing:-15.146667pt;}
.ws4e{word-spacing:-15.093333pt;}
.ws12{word-spacing:-15.040000pt;}
.ws33{word-spacing:-14.933333pt;}
.ws6c{word-spacing:-14.880000pt;}
.ws32{word-spacing:-14.826667pt;}
.ws11{word-spacing:-14.773333pt;}
.ws6d{word-spacing:-14.720000pt;}
.ws43{word-spacing:-14.560000pt;}
.ws2{word-spacing:-13.488000pt;}
.ws3{word-spacing:-13.440000pt;}
.ws8e{word-spacing:-13.344000pt;}
.ws87{word-spacing:-12.970667pt;}
.ws89{word-spacing:-12.842667pt;}
.ws1{word-spacing:-12.714667pt;}
.ws10{word-spacing:-12.480000pt;}
.ws8b{word-spacing:-12.458667pt;}
.ws86{word-spacing:-12.416000pt;}
.ws0{word-spacing:-12.245333pt;}
.ws8a{word-spacing:-12.202667pt;}
.ws8d{word-spacing:-12.160000pt;}
.ws8c{word-spacing:-12.117333pt;}
.ws44{word-spacing:-11.733333pt;}
.ws82{word-spacing:-11.349333pt;}
.ws42{word-spacing:-8.643947pt;}
.ws88{word-spacing:-8.533333pt;}
.ws27{word-spacing:-2.613333pt;}
.ws55{word-spacing:-2.560000pt;}
.ws68{word-spacing:-2.453333pt;}
.ws26{word-spacing:-2.293333pt;}
.ws40{word-spacing:-2.186667pt;}
.ws64{word-spacing:-1.920000pt;}
.ws7e{word-spacing:-1.813333pt;}
.ws66{word-spacing:-1.760000pt;}
.ws31{word-spacing:-1.653333pt;}
.ws67{word-spacing:-1.546667pt;}
.ws6{word-spacing:-1.493333pt;}
.ws1c{word-spacing:-1.333333pt;}
.ws72{word-spacing:-1.280000pt;}
.wsa{word-spacing:-1.152000pt;}
.ws17{word-spacing:-1.120000pt;}
.ws2e{word-spacing:-0.960000pt;}
.ws3c{word-spacing:-0.853333pt;}
.ws60{word-spacing:-0.800000pt;}
.ws54{word-spacing:-0.693333pt;}
.ws78{word-spacing:-0.640000pt;}
.wsb{word-spacing:-0.597333pt;}
.ws6a{word-spacing:-0.586667pt;}
.ws85{word-spacing:-0.554667pt;}
.ws41{word-spacing:-0.522667pt;}
.ws84{word-spacing:-0.469333pt;}
.ws24{word-spacing:-0.426667pt;}
.ws13{word-spacing:-0.384000pt;}
.ws5a{word-spacing:-0.320000pt;}
.wsd{word-spacing:-0.298667pt;}
.ws83{word-spacing:-0.288000pt;}
.ws56{word-spacing:-0.266667pt;}
.ws15{word-spacing:-0.213333pt;}
.ws8f{word-spacing:-0.170667pt;}
.ws3d{word-spacing:-0.160000pt;}
.ws7{word-spacing:-0.138667pt;}
.ws7a{word-spacing:-0.106667pt;}
.ws59{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.053333pt;}
.ws25{word-spacing:0.106667pt;}
.wse{word-spacing:0.144000pt;}
.ws22{word-spacing:0.160000pt;}
.ws20{word-spacing:0.213333pt;}
.ws2d{word-spacing:0.266667pt;}
.ws9{word-spacing:0.298667pt;}
.ws5c{word-spacing:0.373333pt;}
.ws21{word-spacing:0.426667pt;}
.ws52{word-spacing:0.480000pt;}
.ws8{word-spacing:0.512000pt;}
.ws73{word-spacing:0.533333pt;}
.wsc{word-spacing:0.576000pt;}
.ws4c{word-spacing:0.586667pt;}
.ws30{word-spacing:0.640000pt;}
.ws2f{word-spacing:0.960000pt;}
.ws1d{word-spacing:1.066667pt;}
.wsf{word-spacing:1.280000pt;}
.ws1a{word-spacing:1.386667pt;}
.ws28{word-spacing:1.525333pt;}
.ws16{word-spacing:1.546667pt;}
.ws1e{word-spacing:1.600000pt;}
.ws90{word-spacing:1.706667pt;}
.ws6f{word-spacing:1.733333pt;}
.ws75{word-spacing:1.920000pt;}
.ws74{word-spacing:1.973333pt;}
.ws5{word-spacing:2.048000pt;}
.ws2b{word-spacing:2.133333pt;}
.ws79{word-spacing:2.186667pt;}
.ws58{word-spacing:2.293333pt;}
.ws7b{word-spacing:2.346667pt;}
.ws5d{word-spacing:2.560000pt;}
.ws14{word-spacing:2.634667pt;}
.ws51{word-spacing:2.666667pt;}
.ws6e{word-spacing:2.720000pt;}
.ws61{word-spacing:2.773333pt;}
.ws46{word-spacing:2.826667pt;}
.ws47{word-spacing:2.880000pt;}
.ws49{word-spacing:2.933333pt;}
.ws65{word-spacing:2.986667pt;}
.ws19{word-spacing:3.093333pt;}
.ws2a{word-spacing:3.200000pt;}
.ws57{word-spacing:3.413333pt;}
.ws4d{word-spacing:3.466667pt;}
.ws7d{word-spacing:3.520000pt;}
.ws62{word-spacing:3.680000pt;}
.ws63{word-spacing:3.733333pt;}
.ws50{word-spacing:3.786667pt;}
.ws3b{word-spacing:3.840000pt;}
.ws5b{word-spacing:4.000000pt;}
.ws80{word-spacing:4.106667pt;}
.ws18{word-spacing:4.480000pt;}
.ws6b{word-spacing:4.586667pt;}
.ws81{word-spacing:4.960000pt;}
.ws69{word-spacing:5.280000pt;}
.ws48{word-spacing:5.546667pt;}
.ws2c{word-spacing:5.653333pt;}
.ws71{word-spacing:5.866667pt;}
.ws70{word-spacing:5.920000pt;}
.ws5f{word-spacing:6.080000pt;}
.ws1f{word-spacing:6.186667pt;}
.ws4b{word-spacing:6.346667pt;}
.ws3a{word-spacing:6.666667pt;}
.ws7f{word-spacing:6.720000pt;}
.ws53{word-spacing:6.826667pt;}
.ws39{word-spacing:6.986667pt;}
.ws77{word-spacing:7.040000pt;}
.ws5e{word-spacing:8.160000pt;}
.ws3f{word-spacing:8.213333pt;}
.ws4a{word-spacing:8.800000pt;}
.ws37{word-spacing:9.440000pt;}
.ws36{word-spacing:13.386667pt;}
.ws76{word-spacing:14.400000pt;}
.ws35{word-spacing:14.880000pt;}
.ws38{word-spacing:15.413333pt;}
.ws29{word-spacing:16.906667pt;}
.ws3e{word-spacing:18.933333pt;}
.ws34{word-spacing:20.800000pt;}
.ws23{word-spacing:539.627200pt;}
._13{margin-left:-8.176000pt;}
._7{margin-left:-6.171200pt;}
._9{margin-left:-4.993067pt;}
._4{margin-left:-4.032000pt;}
._6{margin-left:-2.884267pt;}
._0{margin-left:-1.989333pt;}
._3{margin-left:-0.967467pt;}
._1{width:1.463467pt;}
._2{width:2.931200pt;}
._5{width:4.569600pt;}
._8{width:6.109867pt;}
._c{width:7.400533pt;}
._a{width:8.890667pt;}
._14{width:10.199467pt;}
._11{width:11.091200pt;}
._d{width:12.141867pt;}
._e{width:13.333333pt;}
._15{width:17.240533pt;}
._12{width:18.475200pt;}
._10{width:20.992000pt;}
._f{width:21.946667pt;}
._b{width:401.675200pt;}
.fs7{font-size:24.874667pt;}
.fs6{font-size:31.093333pt;}
.fs4{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:18.897600pt;}
.y2b{bottom:67.389467pt;}
.y2c{bottom:67.556133pt;}
.y4b{bottom:67.722800pt;}
.y29{bottom:76.780800pt;}
.y28{bottom:89.580933pt;}
.y27{bottom:102.380800pt;}
.y5d{bottom:107.290400pt;}
.ya8{bottom:112.865067pt;}
.y9f{bottom:113.536000pt;}
.y67{bottom:115.096133pt;}
.ye9{bottom:115.766933pt;}
.y46{bottom:116.562400pt;}
.yc9{bottom:119.900267pt;}
.y114{bottom:121.802667pt;}
.y11e{bottom:125.802667pt;}
.y5b{bottom:126.797867pt;}
.y85{bottom:129.531733pt;}
.y9e{bottom:130.202667pt;}
.y66{bottom:131.762800pt;}
.ye8{bottom:132.433600pt;}
.y45{bottom:133.229067pt;}
.yc8{bottom:136.566933pt;}
.y113{bottom:138.469333pt;}
.y11d{bottom:138.602667pt;}
.y5a{bottom:143.464533pt;}
.y84{bottom:146.198400pt;}
.y9d{bottom:146.869333pt;}
.y65{bottom:148.429467pt;}
.ye7{bottom:149.100267pt;}
.y44{bottom:149.895733pt;}
.y11c{bottom:151.402667pt;}
.y26{bottom:152.976133pt;}
.yc7{bottom:153.233600pt;}
.y112{bottom:155.136000pt;}
.y59{bottom:160.131200pt;}
.y100{bottom:160.634133pt;}
.y83{bottom:162.865067pt;}
.y9c{bottom:163.536000pt;}
.y64{bottom:165.096133pt;}
.ye6{bottom:165.766933pt;}
.y43{bottom:166.562400pt;}
.y25{bottom:167.376133pt;}
.yc6{bottom:169.900267pt;}
.y11b{bottom:171.761733pt;}
.y111{bottom:171.802667pt;}
.ya9{bottom:173.728533pt;}
.y58{bottom:176.797867pt;}
.yff{bottom:177.300800pt;}
.y82{bottom:179.531733pt;}
.y9b{bottom:180.202667pt;}
.y63{bottom:181.762800pt;}
.ye5{bottom:182.433600pt;}
.y42{bottom:183.229067pt;}
.y11a{bottom:184.561733pt;}
.yc5{bottom:186.566933pt;}
.y110{bottom:188.469333pt;}
.y24{bottom:189.335200pt;}
.y57{bottom:193.464533pt;}
.yfe{bottom:193.967467pt;}
.y81{bottom:196.198400pt;}
.yf2{bottom:196.869333pt;}
.yce{bottom:198.429467pt;}
.ye4{bottom:199.100267pt;}
.y41{bottom:199.895733pt;}
.y23{bottom:202.135200pt;}
.yc4{bottom:203.233600pt;}
.y119{bottom:204.920800pt;}
.y56{bottom:210.131200pt;}
.yfd{bottom:210.634133pt;}
.y68{bottom:211.945333pt;}
.y80{bottom:212.865067pt;}
.y22{bottom:214.935200pt;}
.ycd{bottom:215.096133pt;}
.ye3{bottom:215.766933pt;}
.y40{bottom:216.562400pt;}
.y118{bottom:217.720800pt;}
.y9a{bottom:219.546533pt;}
.yc3{bottom:219.900267pt;}
.y10f{bottom:224.033600pt;}
.y55{bottom:226.797867pt;}
.yfc{bottom:227.300800pt;}
.y21{bottom:227.735200pt;}
.y7f{bottom:229.531733pt;}
.ycc{bottom:231.762800pt;}
.ye2{bottom:232.433600pt;}
.y3f{bottom:233.229067pt;}
.yc2{bottom:236.566933pt;}
.y117{bottom:238.079867pt;}
.y99{bottom:240.346533pt;}
.y20{bottom:240.535200pt;}
.y10e{bottom:240.700267pt;}
.y54{bottom:243.464533pt;}
.yfb{bottom:243.967467pt;}
.y7e{bottom:246.198400pt;}
.ycb{bottom:248.429467pt;}
.ye1{bottom:249.100267pt;}
.y3e{bottom:249.895733pt;}
.y1f{bottom:253.335200pt;}
.y13c{bottom:253.861600pt;}
.y10d{bottom:257.366933pt;}
.y53{bottom:260.131200pt;}
.yfa{bottom:260.634133pt;}
.y98{bottom:261.146533pt;}
.ya2{bottom:262.865067pt;}
.yca{bottom:265.096133pt;}
.ye0{bottom:265.766933pt;}
.y116{bottom:265.997867pt;}
.y1e{bottom:266.135200pt;}
.y3d{bottom:266.562400pt;}
.yc1{bottom:272.131200pt;}
.y10c{bottom:274.033600pt;}
.y52{bottom:276.797867pt;}
.yf9{bottom:277.300800pt;}
.y1d{bottom:278.935200pt;}
.ya1{bottom:279.531733pt;}
.y7d{bottom:281.762800pt;}
.ydf{bottom:282.433600pt;}
.y3c{bottom:283.229067pt;}
.yc0{bottom:288.797867pt;}
.y10b{bottom:290.700267pt;}
.y1c{bottom:291.735200pt;}
.yf8{bottom:293.967467pt;}
.ya0{bottom:296.198400pt;}
.y7c{bottom:298.429467pt;}
.yde{bottom:299.100267pt;}
.y3b{bottom:299.895733pt;}
.y1b{bottom:304.535200pt;}
.ybf{bottom:305.464533pt;}
.y10a{bottom:307.366933pt;}
.ycf{bottom:311.659200pt;}
.y13b{bottom:312.549333pt;}
.y7b{bottom:315.096133pt;}
.ydd{bottom:315.766933pt;}
.y51{bottom:316.141733pt;}
.y3a{bottom:316.562400pt;}
.y1a{bottom:321.114667pt;}
.ybe{bottom:322.131200pt;}
.y109{bottom:324.033600pt;}
.y13a{bottom:328.901333pt;}
.yf7{bottom:329.531733pt;}
.y7a{bottom:331.762800pt;}
.yf1{bottom:332.433600pt;}
.y39{bottom:333.229067pt;}
.y50{bottom:336.941733pt;}
.ybd{bottom:338.797867pt;}
.y108{bottom:340.700267pt;}
.y97{bottom:346.198400pt;}
.y79{bottom:348.429467pt;}
.yf0{bottom:349.100267pt;}
.y38{bottom:349.895733pt;}
.ydc{bottom:351.331200pt;}
.y139{bottom:353.267467pt;}
.ybc{bottom:355.464533pt;}
.y107{bottom:357.366933pt;}
.y96{bottom:362.865067pt;}
.y78{bottom:365.096133pt;}
.y19{bottom:365.750933pt;}
.yef{bottom:365.766933pt;}
.y37{bottom:366.562400pt;}
.ydb{bottom:367.997867pt;}
.ybb{bottom:372.131200pt;}
.y106{bottom:374.033600pt;}
.y5c{bottom:376.475467pt;}
.y95{bottom:379.531733pt;}
.y77{bottom:381.762800pt;}
.yee{bottom:382.433600pt;}
.y36{bottom:383.229067pt;}
.yda{bottom:384.664533pt;}
.y18{bottom:388.150933pt;}
.yba{bottom:388.797867pt;}
.y105{bottom:390.700267pt;}
.y94{bottom:396.198400pt;}
.y76{bottom:398.429467pt;}
.yed{bottom:399.100267pt;}
.y35{bottom:399.895733pt;}
.yd9{bottom:401.331200pt;}
.y138{bottom:405.462667pt;}
.yb9{bottom:405.464533pt;}
.y104{bottom:407.366933pt;}
.y17{bottom:408.950933pt;}
.y93{bottom:412.865067pt;}
.y75{bottom:415.096133pt;}
.y34{bottom:416.562400pt;}
.yd8{bottom:417.997867pt;}
.y137{bottom:418.262667pt;}
.yb8{bottom:422.131200pt;}
.y92{bottom:429.531733pt;}
.y74{bottom:431.762800pt;}
.y33{bottom:433.229067pt;}
.yd7{bottom:434.664533pt;}
.yec{bottom:438.444133pt;}
.y136{bottom:438.621733pt;}
.yb7{bottom:438.797867pt;}
.y91{bottom:446.198400pt;}
.y103{bottom:446.710800pt;}
.y73{bottom:448.429467pt;}
.y32{bottom:449.895733pt;}
.yd6{bottom:451.331200pt;}
.y135{bottom:451.421733pt;}
.yb6{bottom:455.464533pt;}
.yeb{bottom:459.244133pt;}
.y16{bottom:459.987200pt;}
.y90{bottom:462.865200pt;}
.y134{bottom:464.221733pt;}
.y72{bottom:465.096133pt;}
.y31{bottom:466.562400pt;}
.yd5{bottom:467.997867pt;}
.yb5{bottom:472.131200pt;}
.y15{bottom:474.387067pt;}
.y133{bottom:477.021733pt;}
.yf6{bottom:479.531867pt;}
.yea{bottom:480.044133pt;}
.y71{bottom:481.762800pt;}
.y30{bottom:483.229067pt;}
.yd4{bottom:484.664533pt;}
.yb4{bottom:488.797867pt;}
.yf5{bottom:496.198533pt;}
.y14{bottom:496.346133pt;}
.y132{bottom:497.380800pt;}
.y8f{bottom:498.429467pt;}
.yd3{bottom:501.331200pt;}
.yb3{bottom:505.464533pt;}
.y13{bottom:509.146267pt;}
.y131{bottom:510.180800pt;}
.y48{bottom:512.093867pt;}
.yf4{bottom:512.865200pt;}
.y8e{bottom:515.096133pt;}
.y70{bottom:517.327067pt;}
.y12{bottom:521.946267pt;}
.yb2{bottom:522.131200pt;}
.y130{bottom:522.980800pt;}
.y47{bottom:523.304533pt;}
.y115{bottom:529.531867pt;}
.y8d{bottom:531.762800pt;}
.y6f{bottom:533.993733pt;}
.y11{bottom:534.746267pt;}
.yb1{bottom:538.797867pt;}
.yd2{bottom:540.675067pt;}
.y12f{bottom:543.339867pt;}
.y10{bottom:547.546267pt;}
.y8c{bottom:548.429467pt;}
.yf3{bottom:549.302267pt;}
.y6e{bottom:550.660400pt;}
.yb0{bottom:555.464533pt;}
.y12e{bottom:556.139867pt;}
.yf{bottom:560.346133pt;}
.yd1{bottom:561.475067pt;}
.y102{bottom:562.215067pt;}
.y8b{bottom:565.096133pt;}
.y6d{bottom:567.327067pt;}
.y12d{bottom:568.939867pt;}
.yaf{bottom:572.131200pt;}
.ye{bottom:573.146267pt;}
.y101{bottom:573.415067pt;}
.y8a{bottom:581.762800pt;}
.yd0{bottom:582.275067pt;}
.y6c{bottom:583.993733pt;}
.yd{bottom:585.946267pt;}
.yae{bottom:588.797867pt;}
.y12c{bottom:589.298933pt;}
.y86{bottom:597.054667pt;}
.y89{bottom:598.429467pt;}
.yc{bottom:598.746267pt;}
.y6b{bottom:600.660400pt;}
.y12b{bottom:602.098933pt;}
.yad{bottom:605.464533pt;}
.yb{bottom:611.546267pt;}
.y88{bottom:615.096133pt;}
.y6a{bottom:617.327067pt;}
.yac{bottom:622.131200pt;}
.y12a{bottom:622.458000pt;}
.ya{bottom:628.125733pt;}
.y87{bottom:631.762800pt;}
.y69{bottom:633.993733pt;}
.y129{bottom:635.258000pt;}
.ya7{bottom:648.429467pt;}
.y62{bottom:650.660400pt;}
.y128{bottom:655.617067pt;}
.yab{bottom:661.475067pt;}
.ya6{bottom:665.096133pt;}
.y61{bottom:667.327067pt;}
.y127{bottom:668.417067pt;}
.y9{bottom:672.762000pt;}
.y126{bottom:681.217067pt;}
.ya5{bottom:681.762800pt;}
.yaa{bottom:682.275067pt;}
.y60{bottom:683.993733pt;}
.y8{bottom:687.741467pt;}
.y125{bottom:694.017067pt;}
.ya4{bottom:698.429467pt;}
.y5f{bottom:700.660400pt;}
.y124{bottom:714.376000pt;}
.ya3{bottom:715.096133pt;}
.y5e{bottom:717.327067pt;}
.y123{bottom:727.176133pt;}
.y4f{bottom:733.993733pt;}
.y7{bottom:737.177733pt;}
.y2f{bottom:739.239600pt;}
.y122{bottom:739.976133pt;}
.y4e{bottom:750.660400pt;}
.y6{bottom:759.577733pt;}
.y2e{bottom:760.039600pt;}
.y121{bottom:760.335067pt;}
.y4d{bottom:767.327067pt;}
.y120{bottom:773.135200pt;}
.y5{bottom:780.377733pt;}
.y2d{bottom:780.839600pt;}
.y4c{bottom:783.993733pt;}
.y11f{bottom:785.935200pt;}
.y4{bottom:817.028133pt;}
.y3{bottom:829.828133pt;}
.y4a{bottom:834.301733pt;}
.y2a{bottom:840.890667pt;}
.y2{bottom:842.628133pt;}
.y49{bottom:847.101600pt;}
.h11{height:22.299750pt;}
.he{height:27.197917pt;}
.hf{height:31.062500pt;}
.h8{height:31.083333pt;}
.h12{height:31.957333pt;}
.hd{height:33.426083pt;}
.h6{height:33.468750pt;}
.h10{height:34.968750pt;}
.h3{height:38.250000pt;}
.hc{height:38.828125pt;}
.ha{height:38.854167pt;}
.h9{height:39.466667pt;}
.h7{height:43.031250pt;}
.h2{height:47.812500pt;}
.h5{height:57.375000pt;}
.h4{height:64.133333pt;}
.hb{height:66.560000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:66.141733pt;}
.xc{left:90.708667pt;}
.x6{left:103.937067pt;}
.x15{left:113.375333pt;}
.xb{left:128.504000pt;}
.x10{left:136.252000pt;}
.x8{left:156.850400pt;}
.xe{left:171.158933pt;}
.x7{left:181.417333pt;}
.xf{left:208.444267pt;}
.x16{left:260.472800pt;}
.x9{left:269.844000pt;}
.x1{left:305.948667pt;}
.xa{left:348.140267pt;}
.x11{left:384.978400pt;}
.x13{left:416.535467pt;}
.x12{left:443.836133pt;}
.xd{left:483.172133pt;}
.x4{left:485.154400pt;}
.x14{left:489.117867pt;}
.x3{left:495.626533pt;}
.x5{left:528.301067pt;}
}




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