
    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_d63d5a9a38beb8c1320849b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.102000;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_ca5303ed57995cd694c11df2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_52a9bfa137b89e0dbcd2df27.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.052000;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_a94f39ac72538a0aa5401f9a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966000;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_6bb33ccc213e151778e63697.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.110000;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_bb310b69f80bd1f696852114.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.988000;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_1dc2818171d0cf5ef0178cd1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.994000;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_bd7b1eca6d974835522f0323.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.907000;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_9d2afa4c1ef7f0ef44d22523.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.110000;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_4d4727083177ad2635e46baa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_43332e85ba607bd4067ec660.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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);}
.v1{vertical-align:-47.580000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-6.600000px;}
.lsb{letter-spacing:-3.600000px;}
.ls9{letter-spacing:-3.000000px;}
.ls6{letter-spacing:-2.808000px;}
.lsd{letter-spacing:-2.592000px;}
.ls5{letter-spacing:-2.484000px;}
.ls3{letter-spacing:-2.160000px;}
.lsc{letter-spacing:-1.350000px;}
.ls8{letter-spacing:-1.200000px;}
.ls1{letter-spacing:-0.840000px;}
.ls4{letter-spacing:-0.756000px;}
.ls7{letter-spacing:-0.600000px;}
.lse{letter-spacing:-0.330000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:481.860000px;}
.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;}
}
.ws0{word-spacing:-21.816000px;}
.ws37{word-spacing:-21.708000px;}
.ws1{word-spacing:-21.492000px;}
.ws38{word-spacing:-14.850000px;}
.ws4{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.900000px;}
.ws8{word-spacing:-12.300000px;}
.wsb{word-spacing:-12.150000px;}
.ws5{word-spacing:-10.500000px;}
.ws9{word-spacing:-9.900000px;}
.ws7{word-spacing:-6.900000px;}
.ws51{word-spacing:-1.890000px;}
.ws4b{word-spacing:-1.560000px;}
.ws50{word-spacing:-1.242000px;}
.ws40{word-spacing:-0.840000px;}
.ws47{word-spacing:-0.720000px;}
.ws58{word-spacing:-0.660000px;}
.ws27{word-spacing:-0.480000px;}
.ws3b{word-spacing:-0.120000px;}
.wsc{word-spacing:0.000000px;}
.ws31{word-spacing:0.180000px;}
.ws4a{word-spacing:0.300000px;}
.ws46{word-spacing:0.360000px;}
.ws48{word-spacing:0.420000px;}
.ws1a{word-spacing:0.480000px;}
.wse{word-spacing:0.756000px;}
.ws3f{word-spacing:0.780000px;}
.ws3a{word-spacing:0.840000px;}
.ws11{word-spacing:1.140000px;}
.ws24{word-spacing:1.500000px;}
.ws41{word-spacing:1.620000px;}
.ws13{word-spacing:1.680000px;}
.ws4c{word-spacing:2.106000px;}
.wsd{word-spacing:2.160000px;}
.ws12{word-spacing:2.220000px;}
.ws4d{word-spacing:2.322000px;}
.ws25{word-spacing:2.340000px;}
.ws45{word-spacing:2.580000px;}
.ws3e{word-spacing:2.760000px;}
.ws2b{word-spacing:2.820000px;}
.ws14{word-spacing:2.880000px;}
.ws43{word-spacing:3.000000px;}
.ws52{word-spacing:3.132000px;}
.ws36{word-spacing:3.300000px;}
.ws1b{word-spacing:3.420000px;}
.ws1e{word-spacing:3.540000px;}
.ws29{word-spacing:3.600000px;}
.ws33{word-spacing:3.660000px;}
.ws1f{word-spacing:3.840000px;}
.ws44{word-spacing:3.900000px;}
.ws2a{word-spacing:4.080000px;}
.ws26{word-spacing:4.200000px;}
.ws28{word-spacing:4.380000px;}
.ws23{word-spacing:4.440000px;}
.ws16{word-spacing:4.860000px;}
.ws2f{word-spacing:4.920000px;}
.ws2e{word-spacing:5.460000px;}
.ws21{word-spacing:5.760000px;}
.ws19{word-spacing:6.000000px;}
.wsf{word-spacing:6.060000px;}
.ws18{word-spacing:6.120000px;}
.ws10{word-spacing:6.180000px;}
.ws49{word-spacing:6.360000px;}
.ws20{word-spacing:6.480000px;}
.ws2d{word-spacing:7.020000px;}
.ws32{word-spacing:7.140000px;}
.ws30{word-spacing:7.260000px;}
.ws2c{word-spacing:7.500000px;}
.ws4e{word-spacing:7.560000px;}
.ws34{word-spacing:8.340000px;}
.ws1c{word-spacing:9.060000px;}
.ws3d{word-spacing:9.180000px;}
.ws1d{word-spacing:9.300000px;}
.ws57{word-spacing:9.666000px;}
.ws35{word-spacing:10.320000px;}
.ws4f{word-spacing:10.476000px;}
.ws54{word-spacing:10.962000px;}
.ws17{word-spacing:11.460000px;}
.ws53{word-spacing:11.556000px;}
.ws56{word-spacing:13.122000px;}
.ws42{word-spacing:13.440000px;}
.ws22{word-spacing:13.560000px;}
.ws15{word-spacing:15.720000px;}
.ws55{word-spacing:18.576000px;}
.ws39{word-spacing:32.940000px;}
.ws3c{word-spacing:37.800000px;}
.ws2{word-spacing:289.500000px;}
.ws3{word-spacing:426.840000px;}
.ws6{word-spacing:427.260000px;}
._0{margin-left:-7.300800px;}
._a{margin-left:-5.940000px;}
._4{margin-left:-4.838400px;}
._2{margin-left:-3.520800px;}
._1{margin-left:-2.419200px;}
._3{margin-left:-1.404000px;}
._5{width:1.663200px;}
._7{width:2.851200px;}
._6{width:4.471200px;}
._9{width:6.600000px;}
._8{width:59.347200px;}
.fc4{color:rgb(145,143,143);}
.fc5{color:rgb(242,81,89);}
.fc1{color:rgb(79,76,77);}
.fc3{color:rgb(57,53,54);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs6{font-size:102.000000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:2.366550px;}
.y2{bottom:28.696650px;}
.y30{bottom:56.976450px;}
.y2f{bottom:79.476450px;}
.y4d{bottom:79.500750px;}
.y98{bottom:92.107200px;}
.y2e{bottom:101.976450px;}
.y4c{bottom:102.000750px;}
.y97{bottom:111.907200px;}
.y2d{bottom:124.476450px;}
.y4b{bottom:124.500750px;}
.y2c{bottom:146.976450px;}
.y4a{bottom:147.000750px;}
.y96{bottom:152.959200px;}
.y72{bottom:164.476500px;}
.y49{bottom:169.500750px;}
.y95{bottom:172.759200px;}
.y71{bottom:179.475000px;}
.y2b{bottom:191.976450px;}
.y48{bottom:192.000750px;}
.y94{bottom:192.559200px;}
.y70{bottom:194.473500px;}
.y6f{bottom:209.472000px;}
.y93{bottom:212.359200px;}
.y2a{bottom:214.476450px;}
.y47{bottom:214.500750px;}
.y92{bottom:232.159200px;}
.y6e{bottom:232.975500px;}
.y29{bottom:236.976450px;}
.y46{bottom:237.000750px;}
.y6d{bottom:247.974000px;}
.y91{bottom:251.959200px;}
.y28{bottom:259.476450px;}
.y45{bottom:259.500750px;}
.y6c{bottom:262.972500px;}
.y90{bottom:271.759200px;}
.y27{bottom:281.976450px;}
.y44{bottom:282.000750px;}
.y6b{bottom:286.476000px;}
.y8f{bottom:291.559200px;}
.y6a{bottom:301.474500px;}
.y26{bottom:304.476450px;}
.y43{bottom:304.500750px;}
.y8e{bottom:311.359200px;}
.y69{bottom:316.473000px;}
.y25{bottom:326.976450px;}
.y42{bottom:327.000750px;}
.y68{bottom:331.471500px;}
.y24{bottom:349.476450px;}
.y41{bottom:349.500750px;}
.y8d{bottom:352.411200px;}
.y67{bottom:354.975000px;}
.y66{bottom:369.973500px;}
.y23{bottom:371.976450px;}
.y8c{bottom:372.211200px;}
.y65{bottom:384.972000px;}
.y8b{bottom:392.011200px;}
.y22{bottom:394.476450px;}
.y52{bottom:407.864100px;}
.y64{bottom:408.475500px;}
.y8a{bottom:411.811200px;}
.y21{bottom:416.976450px;}
.y63{bottom:423.474000px;}
.y51{bottom:424.361100px;}
.y89{bottom:431.611200px;}
.y62{bottom:438.472500px;}
.y20{bottom:439.476450px;}
.y50{bottom:440.858100px;}
.y88{bottom:451.411200px;}
.y4f{bottom:457.355100px;}
.y1f{bottom:461.976450px;}
.y87{bottom:471.211200px;}
.y4e{bottom:473.852100px;}
.y1e{bottom:484.476450px;}
.y86{bottom:491.011200px;}
.y40{bottom:503.115750px;}
.y1d{bottom:506.976450px;}
.y85{bottom:510.811200px;}
.y3f{bottom:526.920750px;}
.y1c{bottom:529.476450px;}
.y3d{bottom:550.725750px;}
.y84{bottom:551.863200px;}
.y1b{bottom:551.976450px;}
.y83{bottom:571.663200px;}
.y1a{bottom:574.476450px;}
.y3e{bottom:574.530750px;}
.y82{bottom:591.463200px;}
.y19{bottom:596.976450px;}
.y3c{bottom:598.335750px;}
.y81{bottom:611.263200px;}
.y18{bottom:619.476450px;}
.y3b{bottom:622.140750px;}
.y80{bottom:631.063200px;}
.y61{bottom:641.976450px;}
.y3a{bottom:645.930750px;}
.y7f{bottom:650.863200px;}
.y17{bottom:664.400100px;}
.y60{bottom:664.476450px;}
.y7e{bottom:670.663200px;}
.y16{bottom:679.400100px;}
.y39{bottom:681.675750px;}
.y5f{bottom:686.976450px;}
.y7d{bottom:690.463200px;}
.y15{bottom:694.400100px;}
.y14{bottom:709.400100px;}
.y5e{bottom:709.476450px;}
.y7c{bottom:710.263200px;}
.y13{bottom:724.400100px;}
.y7b{bottom:730.063200px;}
.y38{bottom:731.976450px;}
.y12{bottom:739.400100px;}
.y7a{bottom:749.863200px;}
.y37{bottom:754.476450px;}
.y11{bottom:762.905100px;}
.y79{bottom:769.663200px;}
.y36{bottom:776.976450px;}
.y10{bottom:777.905100px;}
.y78{bottom:789.463200px;}
.yf{bottom:792.905100px;}
.y35{bottom:799.476450px;}
.ye{bottom:807.905100px;}
.y77{bottom:809.263200px;}
.y34{bottom:821.976450px;}
.yd{bottom:822.905100px;}
.yc{bottom:837.905100px;}
.y33{bottom:844.476450px;}
.yb{bottom:861.410100px;}
.y32{bottom:866.976450px;}
.ya{bottom:876.410100px;}
.y31{bottom:889.476450px;}
.y9{bottom:891.410100px;}
.y5d{bottom:911.976450px;}
.y5c{bottom:934.476450px;}
.y8{bottom:948.485100px;}
.y5b{bottom:956.976450px;}
.y7{bottom:966.485100px;}
.y5a{bottom:979.476450px;}
.y6{bottom:998.971200px;}
.y59{bottom:1001.976450px;}
.y76{bottom:1012.205850px;}
.y5{bottom:1019.977200px;}
.y58{bottom:1024.476450px;}
.y75{bottom:1036.201350px;}
.y4{bottom:1040.953200px;}
.y74{bottom:1060.196850px;}
.y57{bottom:1069.476450px;}
.y73{bottom:1084.192350px;}
.y3{bottom:1084.477200px;}
.y56{bottom:1091.976450px;}
.y55{bottom:1114.476450px;}
.y54{bottom:1149.732300px;}
.y1{bottom:1152.339450px;}
.hc{height:40.662000px;}
.h6{height:45.180000px;}
.ha{height:47.100000px;}
.hd{height:48.006000px;}
.hb{height:48.708000px;}
.h9{height:53.340000px;}
.h7{height:54.120000px;}
.h5{height:54.216000px;}
.hf{height:59.532000px;}
.h2{height:64.008000px;}
.h1{height:74.676000px;}
.he{height:76.806000px;}
.h8{height:83.700000px;}
.h4{height:94.824000px;}
.h3{height:195.048000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:51.023700px;}
.x19{left:59.525400px;}
.x2{left:64.023300px;}
.x18{left:76.535400px;}
.x16{left:85.140150px;}
.x9{left:92.460150px;}
.x14{left:94.485150px;}
.xc{left:98.220150px;}
.xa{left:103.365150px;}
.x12{left:108.945150px;}
.x10{left:110.145150px;}
.xd{left:111.435150px;}
.x15{left:122.685150px;}
.xe{left:124.140150px;}
.x11{left:128.895150px;}
.xb{left:133.290150px;}
.xf{left:139.545150px;}
.x13{left:143.640150px;}
.x17{left:156.660150px;}
.x26{left:269.577450px;}
.x24{left:279.420450px;}
.x3{left:300.495000px;}
.x25{left:306.985950px;}
.x27{left:315.171450px;}
.x4{left:415.785000px;}
.x8{left:448.440150px;}
.x1a{left:480.260400px;}
.x5{left:490.659600px;}
.x1c{left:497.321850px;}
.x20{left:539.839200px;}
.x28{left:564.183000px;}
.x1d{left:570.929700px;}
.x1e{left:574.628700px;}
.x6{left:577.599600px;}
.x21{left:587.224200px;}
.x29{left:589.692000px;}
.x1f{left:592.516200px;}
.x7{left:636.753750px;}
.x23{left:650.463300px;}
.x1b{left:748.781850px;}
.x22{left:838.604850px;}
@media print{
.v1{vertical-align:-42.293333pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-5.866667pt;}
.lsb{letter-spacing:-3.200000pt;}
.ls9{letter-spacing:-2.666667pt;}
.ls6{letter-spacing:-2.496000pt;}
.lsd{letter-spacing:-2.304000pt;}
.ls5{letter-spacing:-2.208000pt;}
.ls3{letter-spacing:-1.920000pt;}
.lsc{letter-spacing:-1.200000pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls1{letter-spacing:-0.746667pt;}
.ls4{letter-spacing:-0.672000pt;}
.ls7{letter-spacing:-0.533333pt;}
.lse{letter-spacing:-0.293333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:428.320000pt;}
.ws0{word-spacing:-19.392000pt;}
.ws37{word-spacing:-19.296000pt;}
.ws1{word-spacing:-19.104000pt;}
.ws38{word-spacing:-13.200000pt;}
.ws4{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.466667pt;}
.ws8{word-spacing:-10.933333pt;}
.wsb{word-spacing:-10.800000pt;}
.ws5{word-spacing:-9.333333pt;}
.ws9{word-spacing:-8.800000pt;}
.ws7{word-spacing:-6.133333pt;}
.ws51{word-spacing:-1.680000pt;}
.ws4b{word-spacing:-1.386667pt;}
.ws50{word-spacing:-1.104000pt;}
.ws40{word-spacing:-0.746667pt;}
.ws47{word-spacing:-0.640000pt;}
.ws58{word-spacing:-0.586667pt;}
.ws27{word-spacing:-0.426667pt;}
.ws3b{word-spacing:-0.106667pt;}
.wsc{word-spacing:0.000000pt;}
.ws31{word-spacing:0.160000pt;}
.ws4a{word-spacing:0.266667pt;}
.ws46{word-spacing:0.320000pt;}
.ws48{word-spacing:0.373333pt;}
.ws1a{word-spacing:0.426667pt;}
.wse{word-spacing:0.672000pt;}
.ws3f{word-spacing:0.693333pt;}
.ws3a{word-spacing:0.746667pt;}
.ws11{word-spacing:1.013333pt;}
.ws24{word-spacing:1.333333pt;}
.ws41{word-spacing:1.440000pt;}
.ws13{word-spacing:1.493333pt;}
.ws4c{word-spacing:1.872000pt;}
.wsd{word-spacing:1.920000pt;}
.ws12{word-spacing:1.973333pt;}
.ws4d{word-spacing:2.064000pt;}
.ws25{word-spacing:2.080000pt;}
.ws45{word-spacing:2.293333pt;}
.ws3e{word-spacing:2.453333pt;}
.ws2b{word-spacing:2.506667pt;}
.ws14{word-spacing:2.560000pt;}
.ws43{word-spacing:2.666667pt;}
.ws52{word-spacing:2.784000pt;}
.ws36{word-spacing:2.933333pt;}
.ws1b{word-spacing:3.040000pt;}
.ws1e{word-spacing:3.146667pt;}
.ws29{word-spacing:3.200000pt;}
.ws33{word-spacing:3.253333pt;}
.ws1f{word-spacing:3.413333pt;}
.ws44{word-spacing:3.466667pt;}
.ws2a{word-spacing:3.626667pt;}
.ws26{word-spacing:3.733333pt;}
.ws28{word-spacing:3.893333pt;}
.ws23{word-spacing:3.946667pt;}
.ws16{word-spacing:4.320000pt;}
.ws2f{word-spacing:4.373333pt;}
.ws2e{word-spacing:4.853333pt;}
.ws21{word-spacing:5.120000pt;}
.ws19{word-spacing:5.333333pt;}
.wsf{word-spacing:5.386667pt;}
.ws18{word-spacing:5.440000pt;}
.ws10{word-spacing:5.493333pt;}
.ws49{word-spacing:5.653333pt;}
.ws20{word-spacing:5.760000pt;}
.ws2d{word-spacing:6.240000pt;}
.ws32{word-spacing:6.346667pt;}
.ws30{word-spacing:6.453333pt;}
.ws2c{word-spacing:6.666667pt;}
.ws4e{word-spacing:6.720000pt;}
.ws34{word-spacing:7.413333pt;}
.ws1c{word-spacing:8.053333pt;}
.ws3d{word-spacing:8.160000pt;}
.ws1d{word-spacing:8.266667pt;}
.ws57{word-spacing:8.592000pt;}
.ws35{word-spacing:9.173333pt;}
.ws4f{word-spacing:9.312000pt;}
.ws54{word-spacing:9.744000pt;}
.ws17{word-spacing:10.186667pt;}
.ws53{word-spacing:10.272000pt;}
.ws56{word-spacing:11.664000pt;}
.ws42{word-spacing:11.946667pt;}
.ws22{word-spacing:12.053333pt;}
.ws15{word-spacing:13.973333pt;}
.ws55{word-spacing:16.512000pt;}
.ws39{word-spacing:29.280000pt;}
.ws3c{word-spacing:33.600000pt;}
.ws2{word-spacing:257.333333pt;}
.ws3{word-spacing:379.413333pt;}
.ws6{word-spacing:379.786667pt;}
._0{margin-left:-6.489600pt;}
._a{margin-left:-5.280000pt;}
._4{margin-left:-4.300800pt;}
._2{margin-left:-3.129600pt;}
._1{margin-left:-2.150400pt;}
._3{margin-left:-1.248000pt;}
._5{width:1.478400pt;}
._7{width:2.534400pt;}
._6{width:3.974400pt;}
._9{width:5.866667pt;}
._8{width:52.753067pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs6{font-size:90.666667pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:2.103600pt;}
.y2{bottom:25.508133pt;}
.y30{bottom:50.645733pt;}
.y2f{bottom:70.645733pt;}
.y4d{bottom:70.667333pt;}
.y98{bottom:81.873067pt;}
.y2e{bottom:90.645733pt;}
.y4c{bottom:90.667333pt;}
.y97{bottom:99.473067pt;}
.y2d{bottom:110.645733pt;}
.y4b{bottom:110.667333pt;}
.y2c{bottom:130.645733pt;}
.y4a{bottom:130.667333pt;}
.y96{bottom:135.963733pt;}
.y72{bottom:146.201333pt;}
.y49{bottom:150.667333pt;}
.y95{bottom:153.563733pt;}
.y71{bottom:159.533333pt;}
.y2b{bottom:170.645733pt;}
.y48{bottom:170.667333pt;}
.y94{bottom:171.163733pt;}
.y70{bottom:172.865333pt;}
.y6f{bottom:186.197333pt;}
.y93{bottom:188.763733pt;}
.y2a{bottom:190.645733pt;}
.y47{bottom:190.667333pt;}
.y92{bottom:206.363733pt;}
.y6e{bottom:207.089333pt;}
.y29{bottom:210.645733pt;}
.y46{bottom:210.667333pt;}
.y6d{bottom:220.421333pt;}
.y91{bottom:223.963733pt;}
.y28{bottom:230.645733pt;}
.y45{bottom:230.667333pt;}
.y6c{bottom:233.753333pt;}
.y90{bottom:241.563733pt;}
.y27{bottom:250.645733pt;}
.y44{bottom:250.667333pt;}
.y6b{bottom:254.645333pt;}
.y8f{bottom:259.163733pt;}
.y6a{bottom:267.977333pt;}
.y26{bottom:270.645733pt;}
.y43{bottom:270.667333pt;}
.y8e{bottom:276.763733pt;}
.y69{bottom:281.309333pt;}
.y25{bottom:290.645733pt;}
.y42{bottom:290.667333pt;}
.y68{bottom:294.641333pt;}
.y24{bottom:310.645733pt;}
.y41{bottom:310.667333pt;}
.y8d{bottom:313.254400pt;}
.y67{bottom:315.533333pt;}
.y66{bottom:328.865333pt;}
.y23{bottom:330.645733pt;}
.y8c{bottom:330.854400pt;}
.y65{bottom:342.197333pt;}
.y8b{bottom:348.454400pt;}
.y22{bottom:350.645733pt;}
.y52{bottom:362.545867pt;}
.y64{bottom:363.089333pt;}
.y8a{bottom:366.054400pt;}
.y21{bottom:370.645733pt;}
.y63{bottom:376.421333pt;}
.y51{bottom:377.209867pt;}
.y89{bottom:383.654400pt;}
.y62{bottom:389.753333pt;}
.y20{bottom:390.645733pt;}
.y50{bottom:391.873867pt;}
.y88{bottom:401.254400pt;}
.y4f{bottom:406.537867pt;}
.y1f{bottom:410.645733pt;}
.y87{bottom:418.854400pt;}
.y4e{bottom:421.201867pt;}
.y1e{bottom:430.645733pt;}
.y86{bottom:436.454400pt;}
.y40{bottom:447.214000pt;}
.y1d{bottom:450.645733pt;}
.y85{bottom:454.054400pt;}
.y3f{bottom:468.374000pt;}
.y1c{bottom:470.645733pt;}
.y3d{bottom:489.534000pt;}
.y84{bottom:490.545067pt;}
.y1b{bottom:490.645733pt;}
.y83{bottom:508.145067pt;}
.y1a{bottom:510.645733pt;}
.y3e{bottom:510.694000pt;}
.y82{bottom:525.745067pt;}
.y19{bottom:530.645733pt;}
.y3c{bottom:531.854000pt;}
.y81{bottom:543.345067pt;}
.y18{bottom:550.645733pt;}
.y3b{bottom:553.014000pt;}
.y80{bottom:560.945067pt;}
.y61{bottom:570.645733pt;}
.y3a{bottom:574.160667pt;}
.y7f{bottom:578.545067pt;}
.y17{bottom:590.577867pt;}
.y60{bottom:590.645733pt;}
.y7e{bottom:596.145067pt;}
.y16{bottom:603.911200pt;}
.y39{bottom:605.934000pt;}
.y5f{bottom:610.645733pt;}
.y7d{bottom:613.745067pt;}
.y15{bottom:617.244533pt;}
.y14{bottom:630.577867pt;}
.y5e{bottom:630.645733pt;}
.y7c{bottom:631.345067pt;}
.y13{bottom:643.911200pt;}
.y7b{bottom:648.945067pt;}
.y38{bottom:650.645733pt;}
.y12{bottom:657.244533pt;}
.y7a{bottom:666.545067pt;}
.y37{bottom:670.645733pt;}
.y11{bottom:678.137867pt;}
.y79{bottom:684.145067pt;}
.y36{bottom:690.645733pt;}
.y10{bottom:691.471200pt;}
.y78{bottom:701.745067pt;}
.yf{bottom:704.804533pt;}
.y35{bottom:710.645733pt;}
.ye{bottom:718.137867pt;}
.y77{bottom:719.345067pt;}
.y34{bottom:730.645733pt;}
.yd{bottom:731.471200pt;}
.yc{bottom:744.804533pt;}
.y33{bottom:750.645733pt;}
.yb{bottom:765.697867pt;}
.y32{bottom:770.645733pt;}
.ya{bottom:779.031200pt;}
.y31{bottom:790.645733pt;}
.y9{bottom:792.364533pt;}
.y5d{bottom:810.645733pt;}
.y5c{bottom:830.645733pt;}
.y8{bottom:843.097867pt;}
.y5b{bottom:850.645733pt;}
.y7{bottom:859.097867pt;}
.y5a{bottom:870.645733pt;}
.y6{bottom:887.974400pt;}
.y59{bottom:890.645733pt;}
.y76{bottom:899.738533pt;}
.y5{bottom:906.646400pt;}
.y58{bottom:910.645733pt;}
.y75{bottom:921.067867pt;}
.y4{bottom:925.291733pt;}
.y74{bottom:942.397200pt;}
.y57{bottom:950.645733pt;}
.y73{bottom:963.726533pt;}
.y3{bottom:963.979733pt;}
.y56{bottom:970.645733pt;}
.y55{bottom:990.645733pt;}
.y54{bottom:1021.984267pt;}
.y1{bottom:1024.301733pt;}
.hc{height:36.144000pt;}
.h6{height:40.160000pt;}
.ha{height:41.866667pt;}
.hd{height:42.672000pt;}
.hb{height:43.296000pt;}
.h9{height:47.413333pt;}
.h7{height:48.106667pt;}
.h5{height:48.192000pt;}
.hf{height:52.917333pt;}
.h2{height:56.896000pt;}
.h1{height:66.378667pt;}
.he{height:68.272000pt;}
.h8{height:74.400000pt;}
.h4{height:84.288000pt;}
.h3{height:173.376000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:45.354400pt;}
.x19{left:52.911467pt;}
.x2{left:56.909600pt;}
.x18{left:68.031467pt;}
.x16{left:75.680133pt;}
.x9{left:82.186800pt;}
.x14{left:83.986800pt;}
.xc{left:87.306800pt;}
.xa{left:91.880133pt;}
.x12{left:96.840133pt;}
.x10{left:97.906800pt;}
.xd{left:99.053467pt;}
.x15{left:109.053467pt;}
.xe{left:110.346800pt;}
.x11{left:114.573467pt;}
.xb{left:118.480133pt;}
.xf{left:124.040133pt;}
.x13{left:127.680133pt;}
.x17{left:139.253467pt;}
.x26{left:239.624400pt;}
.x24{left:248.373733pt;}
.x3{left:267.106667pt;}
.x25{left:272.876400pt;}
.x27{left:280.152400pt;}
.x4{left:369.586667pt;}
.x8{left:398.613467pt;}
.x1a{left:426.898133pt;}
.x5{left:436.141867pt;}
.x1c{left:442.063867pt;}
.x20{left:479.857067pt;}
.x28{left:501.496000pt;}
.x1d{left:507.493067pt;}
.x1e{left:510.781067pt;}
.x6{left:513.421867pt;}
.x21{left:521.977067pt;}
.x29{left:524.170667pt;}
.x1f{left:526.681067pt;}
.x7{left:566.003333pt;}
.x23{left:578.189600pt;}
.x1b{left:665.583867pt;}
.x22{left:745.426533pt;}
}




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