
    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_9e1e142ed4440a17fad80f8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.776367;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_1738a43863e34e655abe6fa6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_fd2d7a55c0cd9520f9449dfd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_4b85da67f19951793a7d081c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_98de71590caa952271451191.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_1d08b211c9f6f9748b96715c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.963867;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_8ff2dbb69dfc9600b7115959.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.728516;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_e47a53e2645fedf6cccb0ecd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.728027;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_cea9d88de655f6c22cadbcc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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_3197ac2a84924fe6f9a24b07.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.687500;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_191e2dcfbfd99831615f7466.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_21ae80f0e327d4823a1a4622.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100098;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(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-85.680000px;}
.v3{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls7{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.166800px;}
.ls6{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.127200px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:87.480000px;}
.ls2{letter-spacing:117.360000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-20.566320px;}
.ws4{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-6.516000px;}
._4{margin-left:-5.412000px;}
._2{margin-left:-2.832000px;}
._0{margin-left:-1.212000px;}
._1{width:1.434240px;}
._18{width:2.580000px;}
._17{width:3.888000px;}
._19{width:5.892000px;}
._10{width:6.984000px;}
._11{width:8.280000px;}
._12{width:9.288000px;}
._1c{width:10.368000px;}
._1d{width:11.381760px;}
._13{width:12.816000px;}
._1b{width:14.184000px;}
._14{width:15.192000px;}
._f{width:16.704000px;}
._9{width:19.512000px;}
._7{width:21.432000px;}
._15{width:24.192000px;}
._1a{width:25.277760px;}
._1e{width:26.460000px;}
._8{width:27.792000px;}
._16{width:29.880000px;}
._c{width:31.752000px;}
._b{width:32.976000px;}
._d{width:40.176000px;}
._e{width:41.477760px;}
._a{width:86.616000px;}
._5{width:90.936000px;}
._6{width:92.064000px;}
.fc4{color:transparent;}
.fc3{color:rgb(13,13,13);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:12.240000px;}
.fsb{font-size:15.120000px;}
.fs3{font-size:18.000000px;}
.fs6{font-size:30.240000px;}
.fs8{font-size:33.120000px;}
.fs5{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsc{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fsd{font-size:120.240000px;}
.y52{bottom:-18.000000px;}
.y0{bottom:0.000000px;}
.y51{bottom:2.340000px;}
.y9f{bottom:4.125000px;}
.y85{bottom:4.140000px;}
.ya0{bottom:4.485000px;}
.ya3{bottom:4.492500px;}
.y87{bottom:4.500000px;}
.y9a{bottom:4.530000px;}
.y57{bottom:11.152500px;}
.y4d{bottom:14.220000px;}
.y7{bottom:17.280000px;}
.y6{bottom:28.440000px;}
.y4{bottom:46.620000px;}
.y55{bottom:54.180000px;}
.y50{bottom:58.320000px;}
.y54{bottom:58.536000px;}
.y3{bottom:66.456000px;}
.y56{bottom:74.743500px;}
.y2{bottom:86.436000px;}
.yce{bottom:114.516000px;}
.y33{bottom:123.516000px;}
.y83{bottom:128.016000px;}
.ya2{bottom:129.463500px;}
.ycd{bottom:135.216000px;}
.y32{bottom:140.616000px;}
.y82{bottom:149.076000px;}
.ycc{bottom:155.910000px;}
.y31{bottom:158.790000px;}
.ya1{bottom:166.725000px;}
.y81{bottom:169.770000px;}
.ycb{bottom:176.610000px;}
.y30{bottom:176.790000px;}
.y80{bottom:190.470000px;}
.y2f{bottom:194.970000px;}
.yca{bottom:197.310000px;}
.y9e{bottom:203.985000px;}
.y7f{bottom:211.170000px;}
.y2e{bottom:212.970000px;}
.yc9{bottom:218.010000px;}
.y7e{bottom:231.870000px;}
.y2d{bottom:232.410000px;}
.y9d{bottom:238.170000px;}
.yc8{bottom:238.710000px;}
.y7d{bottom:252.210000px;}
.y2c{bottom:253.110000px;}
.y9c{bottom:258.510000px;}
.yc7{bottom:259.410000px;}
.y7c{bottom:273.270000px;}
.y2b{bottom:273.810000px;}
.y9b{bottom:279.570000px;}
.yc6{bottom:280.110000px;}
.y4b{bottom:285.690000px;}
.y7b{bottom:293.970000px;}
.y2a{bottom:294.150000px;}
.yc5{bottom:300.810000px;}
.y99{bottom:304.785000px;}
.y4a{bottom:306.390000px;}
.y7a{bottom:314.715000px;}
.y29{bottom:315.255000px;}
.yc4{bottom:321.555000px;}
.y79{bottom:335.415000px;}
.y28{bottom:335.955000px;}
.y98{bottom:341.895000px;}
.yc3{bottom:342.255000px;}
.y49{bottom:347.835000px;}
.y78{bottom:356.115000px;}
.y27{bottom:356.655000px;}
.yc2{bottom:362.955000px;}
.y48{bottom:368.535000px;}
.y77{bottom:376.455000px;}
.y26{bottom:377.355000px;}
.y97{bottom:379.155000px;}
.yc1{bottom:383.655000px;}
.y47{bottom:389.235000px;}
.y76{bottom:397.515000px;}
.y25{bottom:397.695000px;}
.yc0{bottom:404.355000px;}
.y46{bottom:409.935000px;}
.y96{bottom:416.415000px;}
.y75{bottom:418.215000px;}
.y24{bottom:418.755000px;}
.ybf{bottom:425.055000px;}
.y45{bottom:430.635000px;}
.y74{bottom:438.915000px;}
.y23{bottom:439.455000px;}
.ybe{bottom:445.755000px;}
.y44{bottom:451.335000px;}
.y95{bottom:453.495000px;}
.y73{bottom:459.615000px;}
.y22{bottom:460.155000px;}
.ybd{bottom:466.455000px;}
.y43{bottom:472.035000px;}
.y72{bottom:480.315000px;}
.y21{bottom:480.855000px;}
.ybc{bottom:486.795000px;}
.y94{bottom:490.755000px;}
.y42{bottom:492.735000px;}
.y71{bottom:501.015000px;}
.y20{bottom:501.195000px;}
.ybb{bottom:507.855000px;}
.y41{bottom:513.435000px;}
.y70{bottom:521.715000px;}
.y1f{bottom:522.255000px;}
.y93{bottom:527.835000px;}
.yba{bottom:528.555000px;}
.y40{bottom:534.135000px;}
.y6f{bottom:542.415000px;}
.y1e{bottom:542.955000px;}
.yb9{bottom:549.255000px;}
.y3f{bottom:554.835000px;}
.y92{bottom:562.065000px;}
.y6e{bottom:563.145000px;}
.y1d{bottom:563.685000px;}
.yb8{bottom:569.625000px;}
.y3e{bottom:575.565000px;}
.y91{bottom:582.405000px;}
.y6d{bottom:583.845000px;}
.y1c{bottom:584.385000px;}
.yb7{bottom:590.685000px;}
.y3d{bottom:596.265000px;}
.y90{bottom:603.465000px;}
.y6c{bottom:604.545000px;}
.y1b{bottom:604.725000px;}
.yb6{bottom:611.385000px;}
.y3c{bottom:616.965000px;}
.y6b{bottom:625.245000px;}
.y1a{bottom:625.785000px;}
.y8f{bottom:628.665000px;}
.yb5{bottom:632.085000px;}
.y3b{bottom:637.665000px;}
.y6a{bottom:645.945000px;}
.y19{bottom:646.485000px;}
.yb4{bottom:652.785000px;}
.y3a{bottom:658.365000px;}
.y8e{bottom:665.925000px;}
.y69{bottom:666.465000px;}
.y18{bottom:667.185000px;}
.yb3{bottom:673.485000px;}
.y39{bottom:679.065000px;}
.y68{bottom:687.165000px;}
.y17{bottom:687.885000px;}
.yb2{bottom:693.825000px;}
.y38{bottom:699.765000px;}
.y8d{bottom:703.185000px;}
.y67{bottom:707.865000px;}
.y16{bottom:708.585000px;}
.yb1{bottom:714.885000px;}
.y37{bottom:720.465000px;}
.y66{bottom:728.565000px;}
.y15{bottom:728.925000px;}
.yb0{bottom:735.585000px;}
.y8c{bottom:740.265000px;}
.y36{bottom:741.165000px;}
.y14{bottom:748.725000px;}
.y65{bottom:748.905000px;}
.yd1{bottom:749.265000px;}
.yaf{bottom:756.285000px;}
.y35{bottom:761.865000px;}
.y13{bottom:766.725000px;}
.y64{bottom:769.965000px;}
.yae{bottom:776.985000px;}
.y8b{bottom:777.525000px;}
.y34{bottom:782.565000px;}
.y12{bottom:785.805000px;}
.y63{bottom:790.665000px;}
.yad{bottom:797.685000px;}
.y11{bottom:799.665000px;}
.y10{bottom:809.385000px;}
.y62{bottom:811.410000px;}
.y8a{bottom:814.830000px;}
.yac{bottom:818.070000px;}
.yf{bottom:818.250000px;}
.y61{bottom:832.110000px;}
.yab{bottom:839.130000px;}
.y5{bottom:846.690000px;}
.y89{bottom:851.910000px;}
.y60{bottom:852.810000px;}
.yaa{bottom:859.830000px;}
.y5f{bottom:873.510000px;}
.ya9{bottom:880.530000px;}
.y88{bottom:889.170000px;}
.y5e{bottom:893.850000px;}
.yd0{bottom:894.210000px;}
.ya8{bottom:901.230000px;}
.ye{bottom:910.590000px;}
.y5d{bottom:914.910000px;}
.ya7{bottom:921.570000px;}
.yd{bottom:923.370000px;}
.y86{bottom:926.430000px;}
.y5c{bottom:935.610000px;}
.ya6{bottom:942.630000px;}
.y5b{bottom:956.310000px;}
.y84{bottom:963.510000px;}
.ya5{bottom:967.830000px;}
.yc{bottom:968.910000px;}
.y5a{bottom:977.010000px;}
.y59{bottom:997.710000px;}
.ya4{bottom:1004.910000px;}
.y58{bottom:1018.050000px;}
.ycf{bottom:1018.410000px;}
.y9{bottom:1030.290000px;}
.y8{bottom:1050.990000px;}
.y4f{bottom:1063.590000px;}
.y4e{bottom:1084.320000px;}
.yb{bottom:1106.460000px;}
.y4c{bottom:1108.080000px;}
.y53{bottom:1117.620000px;}
.ya{bottom:1120.680000px;}
.y1{bottom:1171.620000px;}
.hd{height:8.773594px;}
.he{height:10.830586px;}
.h4{height:18.430664px;}
.h16{height:18.720000px;}
.h1a{height:20.685000px;}
.h1d{height:20.692500px;}
.h1b{height:20.700000px;}
.h1c{height:20.721000px;}
.ha{height:25.163437px;}
.h8{height:29.678906px;}
.h14{height:29.700000px;}
.h18{height:34.912500px;}
.hf{height:40.472227px;}
.h5{height:42.602344px;}
.h7{height:44.518359px;}
.h2{height:44.985000px;}
.h10{height:45.403594px;}
.hc{height:45.457031px;}
.h15{height:47.221875px;}
.h1{height:50.326875px;}
.h6{height:51.328125px;}
.hb{height:55.760625px;}
.h13{height:60.226875px;}
.h17{height:61.189805px;}
.h12{height:70.664062px;}
.h11{height:72.562500px;}
.h3{height:81.736875px;}
.h9{height:84.898125px;}
.h19{height:91.354219px;}
.h0{height:1188.000000px;}
.w4{width:176.235000px;}
.w3{width:253.800000px;}
.w5{width:349.453500px;}
.w6{width:349.455000px;}
.w2{width:406.260000px;}
.w1{width:783.495000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:5.398500px;}
.x1d{left:6.694500px;}
.x14{left:8.385000px;}
.x1b{left:10.785000px;}
.x1{left:58.500000px;}
.x4{left:67.321500px;}
.x9{left:76.500000px;}
.x1c{left:93.061500px;}
.x19{left:108.036000px;}
.x16{left:109.440000px;}
.x8{left:117.936000px;}
.x18{left:126.930000px;}
.x1f{left:162.030000px;}
.x6{left:206.310000px;}
.x15{left:207.390000px;}
.x17{left:215.355000px;}
.x12{left:351.435000px;}
.xa{left:369.075000px;}
.xb{left:383.475000px;}
.xc{left:393.735000px;}
.xd{left:401.655000px;}
.xe{left:411.915000px;}
.xf{left:423.795000px;}
.x10{left:438.195000px;}
.x1e{left:444.135000px;}
.x3{left:450.075000px;}
.x2{left:459.075000px;}
.x7{left:472.215000px;}
.x11{left:509.325000px;}
.x13{left:511.560000px;}
.x1a{left:642.900000px;}
@media print{
.v2{vertical-align:-76.160000pt;}
.v3{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.148267pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.113067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:77.760000pt;}
.ls2{letter-spacing:104.320000pt;}
.ws0{word-spacing:-18.281173pt;}
.ws4{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-5.792000pt;}
._4{margin-left:-4.810667pt;}
._2{margin-left:-2.517333pt;}
._0{margin-left:-1.077333pt;}
._1{width:1.274880pt;}
._18{width:2.293333pt;}
._17{width:3.456000pt;}
._19{width:5.237333pt;}
._10{width:6.208000pt;}
._11{width:7.360000pt;}
._12{width:8.256000pt;}
._1c{width:9.216000pt;}
._1d{width:10.117120pt;}
._13{width:11.392000pt;}
._1b{width:12.608000pt;}
._14{width:13.504000pt;}
._f{width:14.848000pt;}
._9{width:17.344000pt;}
._7{width:19.050667pt;}
._15{width:21.504000pt;}
._1a{width:22.469120pt;}
._1e{width:23.520000pt;}
._8{width:24.704000pt;}
._16{width:26.560000pt;}
._c{width:28.224000pt;}
._b{width:29.312000pt;}
._d{width:35.712000pt;}
._e{width:36.869120pt;}
._a{width:76.992000pt;}
._5{width:80.832000pt;}
._6{width:81.834667pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:13.440000pt;}
.fs3{font-size:16.000000pt;}
.fs6{font-size:26.880000pt;}
.fs8{font-size:29.440000pt;}
.fs5{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsc{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fsd{font-size:106.880000pt;}
.y52{bottom:-16.000000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:2.080000pt;}
.y9f{bottom:3.666667pt;}
.y85{bottom:3.680000pt;}
.ya0{bottom:3.986667pt;}
.ya3{bottom:3.993333pt;}
.y87{bottom:4.000000pt;}
.y9a{bottom:4.026667pt;}
.y57{bottom:9.913333pt;}
.y4d{bottom:12.640000pt;}
.y7{bottom:15.360000pt;}
.y6{bottom:25.280000pt;}
.y4{bottom:41.440000pt;}
.y55{bottom:48.160000pt;}
.y50{bottom:51.840000pt;}
.y54{bottom:52.032000pt;}
.y3{bottom:59.072000pt;}
.y56{bottom:66.438667pt;}
.y2{bottom:76.832000pt;}
.yce{bottom:101.792000pt;}
.y33{bottom:109.792000pt;}
.y83{bottom:113.792000pt;}
.ya2{bottom:115.078667pt;}
.ycd{bottom:120.192000pt;}
.y32{bottom:124.992000pt;}
.y82{bottom:132.512000pt;}
.ycc{bottom:138.586667pt;}
.y31{bottom:141.146667pt;}
.ya1{bottom:148.200000pt;}
.y81{bottom:150.906667pt;}
.ycb{bottom:156.986667pt;}
.y30{bottom:157.146667pt;}
.y80{bottom:169.306667pt;}
.y2f{bottom:173.306667pt;}
.yca{bottom:175.386667pt;}
.y9e{bottom:181.320000pt;}
.y7f{bottom:187.706667pt;}
.y2e{bottom:189.306667pt;}
.yc9{bottom:193.786667pt;}
.y7e{bottom:206.106667pt;}
.y2d{bottom:206.586667pt;}
.y9d{bottom:211.706667pt;}
.yc8{bottom:212.186667pt;}
.y7d{bottom:224.186667pt;}
.y2c{bottom:224.986667pt;}
.y9c{bottom:229.786667pt;}
.yc7{bottom:230.586667pt;}
.y7c{bottom:242.906667pt;}
.y2b{bottom:243.386667pt;}
.y9b{bottom:248.506667pt;}
.yc6{bottom:248.986667pt;}
.y4b{bottom:253.946667pt;}
.y7b{bottom:261.306667pt;}
.y2a{bottom:261.466667pt;}
.yc5{bottom:267.386667pt;}
.y99{bottom:270.920000pt;}
.y4a{bottom:272.346667pt;}
.y7a{bottom:279.746667pt;}
.y29{bottom:280.226667pt;}
.yc4{bottom:285.826667pt;}
.y79{bottom:298.146667pt;}
.y28{bottom:298.626667pt;}
.y98{bottom:303.906667pt;}
.yc3{bottom:304.226667pt;}
.y49{bottom:309.186667pt;}
.y78{bottom:316.546667pt;}
.y27{bottom:317.026667pt;}
.yc2{bottom:322.626667pt;}
.y48{bottom:327.586667pt;}
.y77{bottom:334.626667pt;}
.y26{bottom:335.426667pt;}
.y97{bottom:337.026667pt;}
.yc1{bottom:341.026667pt;}
.y47{bottom:345.986667pt;}
.y76{bottom:353.346667pt;}
.y25{bottom:353.506667pt;}
.yc0{bottom:359.426667pt;}
.y46{bottom:364.386667pt;}
.y96{bottom:370.146667pt;}
.y75{bottom:371.746667pt;}
.y24{bottom:372.226667pt;}
.ybf{bottom:377.826667pt;}
.y45{bottom:382.786667pt;}
.y74{bottom:390.146667pt;}
.y23{bottom:390.626667pt;}
.ybe{bottom:396.226667pt;}
.y44{bottom:401.186667pt;}
.y95{bottom:403.106667pt;}
.y73{bottom:408.546667pt;}
.y22{bottom:409.026667pt;}
.ybd{bottom:414.626667pt;}
.y43{bottom:419.586667pt;}
.y72{bottom:426.946667pt;}
.y21{bottom:427.426667pt;}
.ybc{bottom:432.706667pt;}
.y94{bottom:436.226667pt;}
.y42{bottom:437.986667pt;}
.y71{bottom:445.346667pt;}
.y20{bottom:445.506667pt;}
.ybb{bottom:451.426667pt;}
.y41{bottom:456.386667pt;}
.y70{bottom:463.746667pt;}
.y1f{bottom:464.226667pt;}
.y93{bottom:469.186667pt;}
.yba{bottom:469.826667pt;}
.y40{bottom:474.786667pt;}
.y6f{bottom:482.146667pt;}
.y1e{bottom:482.626667pt;}
.yb9{bottom:488.226667pt;}
.y3f{bottom:493.186667pt;}
.y92{bottom:499.613333pt;}
.y6e{bottom:500.573333pt;}
.y1d{bottom:501.053333pt;}
.yb8{bottom:506.333333pt;}
.y3e{bottom:511.613333pt;}
.y91{bottom:517.693333pt;}
.y6d{bottom:518.973333pt;}
.y1c{bottom:519.453333pt;}
.yb7{bottom:525.053333pt;}
.y3d{bottom:530.013333pt;}
.y90{bottom:536.413333pt;}
.y6c{bottom:537.373333pt;}
.y1b{bottom:537.533333pt;}
.yb6{bottom:543.453333pt;}
.y3c{bottom:548.413333pt;}
.y6b{bottom:555.773333pt;}
.y1a{bottom:556.253333pt;}
.y8f{bottom:558.813333pt;}
.yb5{bottom:561.853333pt;}
.y3b{bottom:566.813333pt;}
.y6a{bottom:574.173333pt;}
.y19{bottom:574.653333pt;}
.yb4{bottom:580.253333pt;}
.y3a{bottom:585.213333pt;}
.y8e{bottom:591.933333pt;}
.y69{bottom:592.413333pt;}
.y18{bottom:593.053333pt;}
.yb3{bottom:598.653333pt;}
.y39{bottom:603.613333pt;}
.y68{bottom:610.813333pt;}
.y17{bottom:611.453333pt;}
.yb2{bottom:616.733333pt;}
.y38{bottom:622.013333pt;}
.y8d{bottom:625.053333pt;}
.y67{bottom:629.213333pt;}
.y16{bottom:629.853333pt;}
.yb1{bottom:635.453333pt;}
.y37{bottom:640.413333pt;}
.y66{bottom:647.613333pt;}
.y15{bottom:647.933333pt;}
.yb0{bottom:653.853333pt;}
.y8c{bottom:658.013333pt;}
.y36{bottom:658.813333pt;}
.y14{bottom:665.533333pt;}
.y65{bottom:665.693333pt;}
.yd1{bottom:666.013333pt;}
.yaf{bottom:672.253333pt;}
.y35{bottom:677.213333pt;}
.y13{bottom:681.533333pt;}
.y64{bottom:684.413333pt;}
.yae{bottom:690.653333pt;}
.y8b{bottom:691.133333pt;}
.y34{bottom:695.613333pt;}
.y12{bottom:698.493333pt;}
.y63{bottom:702.813333pt;}
.yad{bottom:709.053333pt;}
.y11{bottom:710.813333pt;}
.y10{bottom:719.453333pt;}
.y62{bottom:721.253333pt;}
.y8a{bottom:724.293333pt;}
.yac{bottom:727.173333pt;}
.yf{bottom:727.333333pt;}
.y61{bottom:739.653333pt;}
.yab{bottom:745.893333pt;}
.y5{bottom:752.613333pt;}
.y89{bottom:757.253333pt;}
.y60{bottom:758.053333pt;}
.yaa{bottom:764.293333pt;}
.y5f{bottom:776.453333pt;}
.ya9{bottom:782.693333pt;}
.y88{bottom:790.373333pt;}
.y5e{bottom:794.533333pt;}
.yd0{bottom:794.853333pt;}
.ya8{bottom:801.093333pt;}
.ye{bottom:809.413333pt;}
.y5d{bottom:813.253333pt;}
.ya7{bottom:819.173333pt;}
.yd{bottom:820.773333pt;}
.y86{bottom:823.493333pt;}
.y5c{bottom:831.653333pt;}
.ya6{bottom:837.893333pt;}
.y5b{bottom:850.053333pt;}
.y84{bottom:856.453333pt;}
.ya5{bottom:860.293333pt;}
.yc{bottom:861.253333pt;}
.y5a{bottom:868.453333pt;}
.y59{bottom:886.853333pt;}
.ya4{bottom:893.253333pt;}
.y58{bottom:904.933333pt;}
.ycf{bottom:905.253333pt;}
.y9{bottom:915.813333pt;}
.y8{bottom:934.213333pt;}
.y4f{bottom:945.413333pt;}
.y4e{bottom:963.840000pt;}
.yb{bottom:983.520000pt;}
.y4c{bottom:984.960000pt;}
.y53{bottom:993.440000pt;}
.ya{bottom:996.160000pt;}
.y1{bottom:1041.440000pt;}
.hd{height:7.798750pt;}
.he{height:9.627187pt;}
.h4{height:16.382812pt;}
.h16{height:16.640000pt;}
.h1a{height:18.386667pt;}
.h1d{height:18.393333pt;}
.h1b{height:18.400000pt;}
.h1c{height:18.418667pt;}
.ha{height:22.367500pt;}
.h8{height:26.381250pt;}
.h14{height:26.400000pt;}
.h18{height:31.033333pt;}
.hf{height:35.975313pt;}
.h5{height:37.868750pt;}
.h7{height:39.571875pt;}
.h2{height:39.986667pt;}
.h10{height:40.358750pt;}
.hc{height:40.406250pt;}
.h15{height:41.975000pt;}
.h1{height:44.735000pt;}
.h6{height:45.625000pt;}
.hb{height:49.565000pt;}
.h13{height:53.535000pt;}
.h17{height:54.390938pt;}
.h12{height:62.812500pt;}
.h11{height:64.500000pt;}
.h3{height:72.655000pt;}
.h9{height:75.465000pt;}
.h19{height:81.203750pt;}
.h0{height:1056.000000pt;}
.w4{width:156.653333pt;}
.w3{width:225.600000pt;}
.w5{width:310.625333pt;}
.w6{width:310.626667pt;}
.w2{width:361.120000pt;}
.w1{width:696.440000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:4.798667pt;}
.x1d{left:5.950667pt;}
.x14{left:7.453333pt;}
.x1b{left:9.586667pt;}
.x1{left:52.000000pt;}
.x4{left:59.841333pt;}
.x9{left:68.000000pt;}
.x1c{left:82.721333pt;}
.x19{left:96.032000pt;}
.x16{left:97.280000pt;}
.x8{left:104.832000pt;}
.x18{left:112.826667pt;}
.x1f{left:144.026667pt;}
.x6{left:183.386667pt;}
.x15{left:184.346667pt;}
.x17{left:191.426667pt;}
.x12{left:312.386667pt;}
.xa{left:328.066667pt;}
.xb{left:340.866667pt;}
.xc{left:349.986667pt;}
.xd{left:357.026667pt;}
.xe{left:366.146667pt;}
.xf{left:376.706667pt;}
.x10{left:389.506667pt;}
.x1e{left:394.786667pt;}
.x3{left:400.066667pt;}
.x2{left:408.066667pt;}
.x7{left:419.746667pt;}
.x11{left:452.733333pt;}
.x13{left:454.720000pt;}
.x1a{left:571.466667pt;}
}




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