
    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_7bcfcf71881f5a53afb229b2.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_1adab4970b635534f3930fa9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_424b0ff722b6ca31c303b8f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_c3d640d5cfee06455b1167ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_6c764c41f71a1362c1ebe35d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f9b355f266d876e7db259c36.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_e9ea40d0535f7250f77a2de7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064453;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_f21be6f8e82b422129183cda.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172363;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_970cf94d588b31a6553dd9c3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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:-67.680000px;}
.v3{vertical-align:-66.240000px;}
.v4{vertical-align:-62.640000px;}
.v5{vertical-align:-57.600000px;}
.v2{vertical-align:-52.560000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.854000px;}
.ls39{letter-spacing:-1.800000px;}
.ls3a{letter-spacing:-1.494000px;}
.ls15{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.260000px;}
.ls16{letter-spacing:-1.176000px;}
.ls17{letter-spacing:-1.134000px;}
.lsb{letter-spacing:-1.080000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls2a{letter-spacing:-0.612000px;}
.ls29{letter-spacing:-0.457800px;}
.ls2b{letter-spacing:-0.414600px;}
.lsa{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.051840px;}
.lse{letter-spacing:0.106800px;}
.ls38{letter-spacing:0.109200px;}
.ls27{letter-spacing:0.120000px;}
.ls21{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls33{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.262200px;}
.ls11{letter-spacing:0.305280px;}
.ls19{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.513600px;}
.ls23{letter-spacing:0.567600px;}
.ls2{letter-spacing:0.666720px;}
.ls25{letter-spacing:1.440000px;}
.ls3f{letter-spacing:2.106720px;}
.ls2c{letter-spacing:2.160000px;}
.ls2d{letter-spacing:2.309760px;}
.ls40{letter-spacing:2.826720px;}
.ls22{letter-spacing:3.029760px;}
.ls9{letter-spacing:3.060000px;}
.ls1{letter-spacing:3.546720px;}
.ls13{letter-spacing:4.469760px;}
.ls37{letter-spacing:4.500000px;}
.ls2e{letter-spacing:5.040000px;}
.ls2f{letter-spacing:5.189760px;}
.ls28{letter-spacing:5.909760px;}
.ls14{letter-spacing:6.629760px;}
.ls1c{letter-spacing:7.349760px;}
.ls1e{letter-spacing:8.069760px;}
.ls30{letter-spacing:8.789760px;}
.ls36{letter-spacing:11.700000px;}
.ls3b{letter-spacing:13.140000px;}
.ls31{letter-spacing:13.626720px;}
.ls24{letter-spacing:13.829760px;}
.ls35{letter-spacing:13.860000px;}
.ls26{letter-spacing:14.400000px;}
.ls1d{letter-spacing:15.269760px;}
.ls12{letter-spacing:15.840000px;}
.ls1f{letter-spacing:18.000000px;}
.ls20{letter-spacing:18.149760px;}
.ls32{letter-spacing:18.666720px;}
.ls6{letter-spacing:21.060000px;}
.ls4{letter-spacing:191.700000px;}
.ls3d{letter-spacing:355.860000px;}
.ls3e{letter-spacing:562.680000px;}
.ls34{letter-spacing:576.180000px;}
.ls8{letter-spacing:1086.276000px;}
.ls0{letter-spacing:1293.456000px;}
.ls7{letter-spacing:2023.656000px;}
.ls3c{letter-spacing:2610.636000px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.wsb{word-spacing:-17.127600px;}
.wsc{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.822200px;}
.ws6{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.102200px;}
.wsa{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.453600px;}
.ws8{word-spacing:-15.384000px;}
.ws0{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.120000px;}
.ws3{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.446000px;}
.wse{word-spacing:-13.140000px;}
.ws5{word-spacing:0.000000px;}
._8{margin-left:-3.410160px;}
._5{margin-left:-2.283120px;}
._1{margin-left:-1.192320px;}
._0{width:1.015920px;}
._4{width:2.340000px;}
._3{width:3.444480px;}
._2{width:4.968000px;}
._e{width:6.138240px;}
._11{width:7.278720px;}
._f{width:8.603520px;}
._a{width:10.001520px;}
._9{width:11.321040px;}
._c{width:12.679680px;}
._b{width:13.876560px;}
._14{width:15.162720px;}
._1a{width:16.655520px;}
._10{width:17.766240px;}
._d{width:18.771840px;}
._7{width:19.992720px;}
._6{width:21.069360px;}
._19{width:22.094160px;}
._12{width:23.276160px;}
._17{width:24.606240px;}
._13{width:25.675440px;}
._18{width:27.204480px;}
._16{width:31.385760px;}
._15{width:32.590080px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.600000px;}
.y4{bottom:56.700000px;}
.y43{bottom:88.236000px;}
.y98{bottom:95.616000px;}
.y79{bottom:102.816000px;}
.y42{bottom:103.716000px;}
.y97{bottom:112.896000px;}
.y41{bottom:118.476000px;}
.ycf{bottom:119.016000px;}
.y78{bottom:121.716000px;}
.y96{bottom:130.176000px;}
.y40{bottom:131.796000px;}
.yce{bottom:133.776000px;}
.y77{bottom:140.796000px;}
.y95{bottom:147.276000px;}
.y3f{bottom:149.076000px;}
.ycd{bottom:152.850000px;}
.y76{bottom:159.690000px;}
.y94{bottom:164.550000px;}
.y3e{bottom:166.350000px;}
.ycc{bottom:171.750000px;}
.y75{bottom:178.590000px;}
.y93{bottom:181.830000px;}
.y3d{bottom:183.630000px;}
.ycb{bottom:190.830000px;}
.y74{bottom:197.670000px;}
.y92{bottom:199.110000px;}
.y3c{bottom:200.730000px;}
.yca{bottom:209.730000px;}
.y91{bottom:216.390000px;}
.y73{bottom:216.570000px;}
.y3b{bottom:218.010000px;}
.yc9{bottom:228.630000px;}
.y90{bottom:233.670000px;}
.y3a{bottom:235.290000px;}
.y72{bottom:235.650000px;}
.yc8{bottom:247.710000px;}
.y8f{bottom:250.770000px;}
.y39{bottom:252.570000px;}
.y71{bottom:254.550000px;}
.yc7{bottom:266.610000px;}
.y38{bottom:269.850000px;}
.y70{bottom:273.630000px;}
.y8e{bottom:281.550000px;}
.yc6{bottom:285.690000px;}
.y37{bottom:287.130000px;}
.y6f{bottom:292.530000px;}
.y8d{bottom:298.830000px;}
.y36{bottom:304.230000px;}
.yc5{bottom:304.590000px;}
.y6e{bottom:311.430000px;}
.y8c{bottom:315.930000px;}
.y35{bottom:321.510000px;}
.yc4{bottom:323.490000px;}
.y6d{bottom:330.555000px;}
.y8b{bottom:332.895000px;}
.y34{bottom:338.835000px;}
.yc3{bottom:342.615000px;}
.y8a{bottom:347.475000px;}
.y6c{bottom:349.455000px;}
.y33{bottom:356.115000px;}
.yc2{bottom:361.515000px;}
.y89{bottom:364.755000px;}
.y6b{bottom:368.535000px;}
.y32{bottom:373.395000px;}
.yc1{bottom:380.595000px;}
.y88{bottom:382.035000px;}
.y6a{bottom:387.435000px;}
.y31{bottom:389.055000px;}
.y87{bottom:399.135000px;}
.yc0{bottom:399.495000px;}
.y30{bottom:400.935000px;}
.y69{bottom:406.335000px;}
.y86{bottom:416.415000px;}
.y2f{bottom:418.215000px;}
.ybf{bottom:418.395000px;}
.y68{bottom:425.415000px;}
.y85{bottom:433.695000px;}
.y2e{bottom:435.495000px;}
.ybe{bottom:437.475000px;}
.y67{bottom:444.315000px;}
.y84{bottom:450.975000px;}
.y2d{bottom:452.775000px;}
.ybd{bottom:456.375000px;}
.y66{bottom:463.395000px;}
.y83{bottom:468.255000px;}
.ybc{bottom:475.455000px;}
.y65{bottom:482.295000px;}
.y2c{bottom:485.535000px;}
.ybb{bottom:494.355000px;}
.y2b{bottom:497.235000px;}
.y64{bottom:501.195000px;}
.y82{bottom:502.635000px;}
.yba{bottom:513.255000px;}
.y2a{bottom:514.335000px;}
.y81{bottom:519.915000px;}
.y63{bottom:520.275000px;}
.yb9{bottom:530.895000px;}
.y29{bottom:531.615000px;}
.y80{bottom:537.195000px;}
.y62{bottom:539.175000px;}
.yb8{bottom:544.035000px;}
.y28{bottom:547.815000px;}
.y7f{bottom:554.475000px;}
.y61{bottom:558.255000px;}
.y27{bottom:561.315000px;}
.y7e{bottom:571.755000px;}
.y60{bottom:577.155000px;}
.y26{bottom:578.595000px;}
.y7d{bottom:589.035000px;}
.yb7{bottom:595.905000px;}
.y5f{bottom:596.085000px;}
.y7c{bottom:606.165000px;}
.y25{bottom:612.465000px;}
.yb6{bottom:613.185000px;}
.y5e{bottom:615.165000px;}
.y7b{bottom:623.445000px;}
.y24{bottom:626.865000px;}
.yb5{bottom:630.465000px;}
.y5d{bottom:634.065000px;}
.y23{bottom:644.145000px;}
.yb4{bottom:647.565000px;}
.y5c{bottom:653.145000px;}
.y7a{bottom:657.285000px;}
.y22{bottom:661.425000px;}
.yb3{bottom:664.845000px;}
.y5b{bottom:672.045000px;}
.y21{bottom:678.705000px;}
.yb2{bottom:682.125000px;}
.y5a{bottom:690.945000px;}
.y20{bottom:695.985000px;}
.yb1{bottom:699.405000px;}
.y59{bottom:710.025000px;}
.y1f{bottom:713.085000px;}
.yb0{bottom:716.685000px;}
.y58{bottom:728.925000px;}
.y1e{bottom:730.365000px;}
.yaf{bottom:732.345000px;}
.yae{bottom:744.225000px;}
.y1d{bottom:747.645000px;}
.y57{bottom:748.005000px;}
.yad{bottom:761.505000px;}
.y1c{bottom:764.925000px;}
.y56{bottom:766.905000px;}
.yac{bottom:778.785000px;}
.y1b{bottom:782.205000px;}
.y55{bottom:785.985000px;}
.yab{bottom:795.885000px;}
.y1a{bottom:799.485000px;}
.y54{bottom:804.885000px;}
.yaa{bottom:813.165000px;}
.y19{bottom:816.585000px;}
.y53{bottom:823.785000px;}
.ya9{bottom:830.445000px;}
.y18{bottom:833.865000px;}
.y52{bottom:842.865000px;}
.y17{bottom:851.145000px;}
.y51{bottom:861.765000px;}
.y16{bottom:867.210000px;}
.ya8{bottom:878.370000px;}
.y15{bottom:880.530000px;}
.y50{bottom:880.890000px;}
.ya7{bottom:895.290000px;}
.y14{bottom:897.810000px;}
.y4f{bottom:899.790000px;}
.ya6{bottom:909.870000px;}
.y4e{bottom:918.690000px;}
.y13{bottom:926.790000px;}
.ya5{bottom:927.150000px;}
.y4d{bottom:937.770000px;}
.y12{bottom:944.070000px;}
.ya4{bottom:944.430000px;}
.y4c{bottom:956.670000px;}
.y11{bottom:960.450000px;}
.y10{bottom:973.590000px;}
.ya3{bottom:975.390000px;}
.y4b{bottom:975.750000px;}
.yf{bottom:990.870000px;}
.ya2{bottom:992.670000px;}
.y4a{bottom:994.650000px;}
.ye{bottom:1008.150000px;}
.ya1{bottom:1009.950000px;}
.y49{bottom:1013.550000px;}
.yd{bottom:1025.430000px;}
.ya0{bottom:1027.050000px;}
.y48{bottom:1032.630000px;}
.yc{bottom:1042.710000px;}
.y9f{bottom:1044.330000px;}
.y47{bottom:1051.530000px;}
.yb{bottom:1059.990000px;}
.y9e{bottom:1061.610000px;}
.y46{bottom:1070.610000px;}
.y9d{bottom:1078.890000px;}
.y45{bottom:1089.510000px;}
.ya{bottom:1093.650000px;}
.y9c{bottom:1096.170000px;}
.y9{bottom:1108.410000px;}
.y9b{bottom:1113.450000px;}
.y8{bottom:1127.490000px;}
.y9a{bottom:1130.580000px;}
.y7{bottom:1146.420000px;}
.y99{bottom:1147.860000px;}
.y3{bottom:1164.240000px;}
.y2{bottom:1179.000000px;}
.y5{bottom:1189.260000px;}
.y44{bottom:1192.320000px;}
.y1{bottom:1196.280000px;}
.h4{height:17.280000px;}
.hc{height:35.314453px;}
.hd{height:35.332031px;}
.h8{height:40.985156px;}
.hb{height:42.086250px;}
.h6{height:47.344922px;}
.h3{height:49.583118px;}
.h12{height:51.677227px;}
.he{height:52.998047px;}
.ha{height:53.252930px;}
.h2{height:58.651172px;}
.h11{height:59.027344px;}
.h9{height:60.226875px;}
.h7{height:61.423863px;}
.h5{height:65.010937px;}
.h10{height:65.884219px;}
.hf{height:66.757500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:14.940000px;}
.w3{width:16.920000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:63.900000px;}
.x1{left:106.415987px;}
.x15{left:117.395987px;}
.x7{left:129.275987px;}
.x4{left:133.235987px;}
.x3{left:148.895987px;}
.x5{left:157.889987px;}
.xb{left:172.289987px;}
.x6{left:177.509987px;}
.x1c{left:232.769987px;}
.xa{left:239.609987px;}
.x16{left:254.009987px;}
.x11{left:262.109987px;}
.x18{left:288.614987px;}
.xc{left:313.634987px;}
.x1d{left:368.714987px;}
.x17{left:438.014987px;}
.x12{left:441.254987px;}
.x1f{left:558.824987px;}
.x1e{left:568.904987px;}
.xd{left:593.924987px;}
.x19{left:604.364987px;}
.x1a{left:612.464987px;}
.x9{left:621.644987px;}
.x1b{left:622.904987px;}
.x8{left:650.984987px;}
.xf{left:670.469987px;}
.x21{left:748.409987px;}
.x20{left:767.669987px;}
.x13{left:786.749987px;}
.xe{left:810.149987px;}
.x2{left:819.150000px;}
.x10{left:829.229987px;}
@media print{
.v1{vertical-align:-60.160000pt;}
.v3{vertical-align:-58.880000pt;}
.v4{vertical-align:-55.680000pt;}
.v5{vertical-align:-51.200000pt;}
.v2{vertical-align:-46.720000pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.648000pt;}
.ls39{letter-spacing:-1.600000pt;}
.ls3a{letter-spacing:-1.328000pt;}
.ls15{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.120000pt;}
.ls16{letter-spacing:-1.045333pt;}
.ls17{letter-spacing:-1.008000pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls2a{letter-spacing:-0.544000pt;}
.ls29{letter-spacing:-0.406933pt;}
.ls2b{letter-spacing:-0.368533pt;}
.lsa{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.046080pt;}
.lse{letter-spacing:0.094933pt;}
.ls38{letter-spacing:0.097067pt;}
.ls27{letter-spacing:0.106667pt;}
.ls21{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls33{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.233067pt;}
.ls11{letter-spacing:0.271360pt;}
.ls19{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.456533pt;}
.ls23{letter-spacing:0.504533pt;}
.ls2{letter-spacing:0.592640pt;}
.ls25{letter-spacing:1.280000pt;}
.ls3f{letter-spacing:1.872640pt;}
.ls2c{letter-spacing:1.920000pt;}
.ls2d{letter-spacing:2.053120pt;}
.ls40{letter-spacing:2.512640pt;}
.ls22{letter-spacing:2.693120pt;}
.ls9{letter-spacing:2.720000pt;}
.ls1{letter-spacing:3.152640pt;}
.ls13{letter-spacing:3.973120pt;}
.ls37{letter-spacing:4.000000pt;}
.ls2e{letter-spacing:4.480000pt;}
.ls2f{letter-spacing:4.613120pt;}
.ls28{letter-spacing:5.253120pt;}
.ls14{letter-spacing:5.893120pt;}
.ls1c{letter-spacing:6.533120pt;}
.ls1e{letter-spacing:7.173120pt;}
.ls30{letter-spacing:7.813120pt;}
.ls36{letter-spacing:10.400000pt;}
.ls3b{letter-spacing:11.680000pt;}
.ls31{letter-spacing:12.112640pt;}
.ls24{letter-spacing:12.293120pt;}
.ls35{letter-spacing:12.320000pt;}
.ls26{letter-spacing:12.800000pt;}
.ls1d{letter-spacing:13.573120pt;}
.ls12{letter-spacing:14.080000pt;}
.ls1f{letter-spacing:16.000000pt;}
.ls20{letter-spacing:16.133120pt;}
.ls32{letter-spacing:16.592640pt;}
.ls6{letter-spacing:18.720000pt;}
.ls4{letter-spacing:170.400000pt;}
.ls3d{letter-spacing:316.320000pt;}
.ls3e{letter-spacing:500.160000pt;}
.ls34{letter-spacing:512.160000pt;}
.ls8{letter-spacing:965.578667pt;}
.ls0{letter-spacing:1149.738667pt;}
.ls7{letter-spacing:1798.805333pt;}
.ls3c{letter-spacing:2320.565333pt;}
.ws10{word-spacing:-53.120000pt;}
.wsb{word-spacing:-15.224533pt;}
.wsc{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.953067pt;}
.ws6{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.313067pt;}
.wsa{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.736533pt;}
.ws8{word-spacing:-13.674667pt;}
.ws0{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.320000pt;}
.wsf{word-spacing:-11.952000pt;}
.wse{word-spacing:-11.680000pt;}
.ws5{word-spacing:0.000000pt;}
._8{margin-left:-3.031253pt;}
._5{margin-left:-2.029440pt;}
._1{margin-left:-1.059840pt;}
._0{width:0.903040pt;}
._4{width:2.080000pt;}
._3{width:3.061760pt;}
._2{width:4.416000pt;}
._e{width:5.456213pt;}
._11{width:6.469973pt;}
._f{width:7.647573pt;}
._a{width:8.890240pt;}
._9{width:10.063147pt;}
._c{width:11.270827pt;}
._b{width:12.334720pt;}
._14{width:13.477973pt;}
._1a{width:14.804907pt;}
._10{width:15.792213pt;}
._d{width:16.686080pt;}
._7{width:17.771307pt;}
._6{width:18.728320pt;}
._19{width:19.639253pt;}
._12{width:20.689920pt;}
._17{width:21.872213pt;}
._13{width:22.822613pt;}
._18{width:24.181760pt;}
._16{width:27.898453pt;}
._15{width:28.968960pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.200000pt;}
.y4{bottom:50.400000pt;}
.y43{bottom:78.432000pt;}
.y98{bottom:84.992000pt;}
.y79{bottom:91.392000pt;}
.y42{bottom:92.192000pt;}
.y97{bottom:100.352000pt;}
.y41{bottom:105.312000pt;}
.ycf{bottom:105.792000pt;}
.y78{bottom:108.192000pt;}
.y96{bottom:115.712000pt;}
.y40{bottom:117.152000pt;}
.yce{bottom:118.912000pt;}
.y77{bottom:125.152000pt;}
.y95{bottom:130.912000pt;}
.y3f{bottom:132.512000pt;}
.ycd{bottom:135.866667pt;}
.y76{bottom:141.946667pt;}
.y94{bottom:146.266667pt;}
.y3e{bottom:147.866667pt;}
.ycc{bottom:152.666667pt;}
.y75{bottom:158.746667pt;}
.y93{bottom:161.626667pt;}
.y3d{bottom:163.226667pt;}
.ycb{bottom:169.626667pt;}
.y74{bottom:175.706667pt;}
.y92{bottom:176.986667pt;}
.y3c{bottom:178.426667pt;}
.yca{bottom:186.426667pt;}
.y91{bottom:192.346667pt;}
.y73{bottom:192.506667pt;}
.y3b{bottom:193.786667pt;}
.yc9{bottom:203.226667pt;}
.y90{bottom:207.706667pt;}
.y3a{bottom:209.146667pt;}
.y72{bottom:209.466667pt;}
.yc8{bottom:220.186667pt;}
.y8f{bottom:222.906667pt;}
.y39{bottom:224.506667pt;}
.y71{bottom:226.266667pt;}
.yc7{bottom:236.986667pt;}
.y38{bottom:239.866667pt;}
.y70{bottom:243.226667pt;}
.y8e{bottom:250.266667pt;}
.yc6{bottom:253.946667pt;}
.y37{bottom:255.226667pt;}
.y6f{bottom:260.026667pt;}
.y8d{bottom:265.626667pt;}
.y36{bottom:270.426667pt;}
.yc5{bottom:270.746667pt;}
.y6e{bottom:276.826667pt;}
.y8c{bottom:280.826667pt;}
.y35{bottom:285.786667pt;}
.yc4{bottom:287.546667pt;}
.y6d{bottom:293.826667pt;}
.y8b{bottom:295.906667pt;}
.y34{bottom:301.186667pt;}
.yc3{bottom:304.546667pt;}
.y8a{bottom:308.866667pt;}
.y6c{bottom:310.626667pt;}
.y33{bottom:316.546667pt;}
.yc2{bottom:321.346667pt;}
.y89{bottom:324.226667pt;}
.y6b{bottom:327.586667pt;}
.y32{bottom:331.906667pt;}
.yc1{bottom:338.306667pt;}
.y88{bottom:339.586667pt;}
.y6a{bottom:344.386667pt;}
.y31{bottom:345.826667pt;}
.y87{bottom:354.786667pt;}
.yc0{bottom:355.106667pt;}
.y30{bottom:356.386667pt;}
.y69{bottom:361.186667pt;}
.y86{bottom:370.146667pt;}
.y2f{bottom:371.746667pt;}
.ybf{bottom:371.906667pt;}
.y68{bottom:378.146667pt;}
.y85{bottom:385.506667pt;}
.y2e{bottom:387.106667pt;}
.ybe{bottom:388.866667pt;}
.y67{bottom:394.946667pt;}
.y84{bottom:400.866667pt;}
.y2d{bottom:402.466667pt;}
.ybd{bottom:405.666667pt;}
.y66{bottom:411.906667pt;}
.y83{bottom:416.226667pt;}
.ybc{bottom:422.626667pt;}
.y65{bottom:428.706667pt;}
.y2c{bottom:431.586667pt;}
.ybb{bottom:439.426667pt;}
.y2b{bottom:441.986667pt;}
.y64{bottom:445.506667pt;}
.y82{bottom:446.786667pt;}
.yba{bottom:456.226667pt;}
.y2a{bottom:457.186667pt;}
.y81{bottom:462.146667pt;}
.y63{bottom:462.466667pt;}
.yb9{bottom:471.906667pt;}
.y29{bottom:472.546667pt;}
.y80{bottom:477.506667pt;}
.y62{bottom:479.266667pt;}
.yb8{bottom:483.586667pt;}
.y28{bottom:486.946667pt;}
.y7f{bottom:492.866667pt;}
.y61{bottom:496.226667pt;}
.y27{bottom:498.946667pt;}
.y7e{bottom:508.226667pt;}
.y60{bottom:513.026667pt;}
.y26{bottom:514.306667pt;}
.y7d{bottom:523.586667pt;}
.yb7{bottom:529.693333pt;}
.y5f{bottom:529.853333pt;}
.y7c{bottom:538.813333pt;}
.y25{bottom:544.413333pt;}
.yb6{bottom:545.053333pt;}
.y5e{bottom:546.813333pt;}
.y7b{bottom:554.173333pt;}
.y24{bottom:557.213333pt;}
.yb5{bottom:560.413333pt;}
.y5d{bottom:563.613333pt;}
.y23{bottom:572.573333pt;}
.yb4{bottom:575.613333pt;}
.y5c{bottom:580.573333pt;}
.y7a{bottom:584.253333pt;}
.y22{bottom:587.933333pt;}
.yb3{bottom:590.973333pt;}
.y5b{bottom:597.373333pt;}
.y21{bottom:603.293333pt;}
.yb2{bottom:606.333333pt;}
.y5a{bottom:614.173333pt;}
.y20{bottom:618.653333pt;}
.yb1{bottom:621.693333pt;}
.y59{bottom:631.133333pt;}
.y1f{bottom:633.853333pt;}
.yb0{bottom:637.053333pt;}
.y58{bottom:647.933333pt;}
.y1e{bottom:649.213333pt;}
.yaf{bottom:650.973333pt;}
.yae{bottom:661.533333pt;}
.y1d{bottom:664.573333pt;}
.y57{bottom:664.893333pt;}
.yad{bottom:676.893333pt;}
.y1c{bottom:679.933333pt;}
.y56{bottom:681.693333pt;}
.yac{bottom:692.253333pt;}
.y1b{bottom:695.293333pt;}
.y55{bottom:698.653333pt;}
.yab{bottom:707.453333pt;}
.y1a{bottom:710.653333pt;}
.y54{bottom:715.453333pt;}
.yaa{bottom:722.813333pt;}
.y19{bottom:725.853333pt;}
.y53{bottom:732.253333pt;}
.ya9{bottom:738.173333pt;}
.y18{bottom:741.213333pt;}
.y52{bottom:749.213333pt;}
.y17{bottom:756.573333pt;}
.y51{bottom:766.013333pt;}
.y16{bottom:770.853333pt;}
.ya8{bottom:780.773333pt;}
.y15{bottom:782.693333pt;}
.y50{bottom:783.013333pt;}
.ya7{bottom:795.813333pt;}
.y14{bottom:798.053333pt;}
.y4f{bottom:799.813333pt;}
.ya6{bottom:808.773333pt;}
.y4e{bottom:816.613333pt;}
.y13{bottom:823.813333pt;}
.ya5{bottom:824.133333pt;}
.y4d{bottom:833.573333pt;}
.y12{bottom:839.173333pt;}
.ya4{bottom:839.493333pt;}
.y4c{bottom:850.373333pt;}
.y11{bottom:853.733333pt;}
.y10{bottom:865.413333pt;}
.ya3{bottom:867.013333pt;}
.y4b{bottom:867.333333pt;}
.yf{bottom:880.773333pt;}
.ya2{bottom:882.373333pt;}
.y4a{bottom:884.133333pt;}
.ye{bottom:896.133333pt;}
.ya1{bottom:897.733333pt;}
.y49{bottom:900.933333pt;}
.yd{bottom:911.493333pt;}
.ya0{bottom:912.933333pt;}
.y48{bottom:917.893333pt;}
.yc{bottom:926.853333pt;}
.y9f{bottom:928.293333pt;}
.y47{bottom:934.693333pt;}
.yb{bottom:942.213333pt;}
.y9e{bottom:943.653333pt;}
.y46{bottom:951.653333pt;}
.y9d{bottom:959.013333pt;}
.y45{bottom:968.453333pt;}
.ya{bottom:972.133333pt;}
.y9c{bottom:974.373333pt;}
.y9{bottom:985.253333pt;}
.y9b{bottom:989.733333pt;}
.y8{bottom:1002.213333pt;}
.y9a{bottom:1004.960000pt;}
.y7{bottom:1019.040000pt;}
.y99{bottom:1020.320000pt;}
.y3{bottom:1034.880000pt;}
.y2{bottom:1048.000000pt;}
.y5{bottom:1057.120000pt;}
.y44{bottom:1059.840000pt;}
.y1{bottom:1063.360000pt;}
.h4{height:15.360000pt;}
.hc{height:31.390625pt;}
.hd{height:31.406250pt;}
.h8{height:36.431250pt;}
.hb{height:37.410000pt;}
.h6{height:42.084375pt;}
.h3{height:44.073883pt;}
.h12{height:45.935313pt;}
.he{height:47.109375pt;}
.ha{height:47.335938pt;}
.h2{height:52.134375pt;}
.h11{height:52.468750pt;}
.h9{height:53.535000pt;}
.h7{height:54.598989pt;}
.h5{height:57.787500pt;}
.h10{height:58.563750pt;}
.hf{height:59.340000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:13.280000pt;}
.w3{width:15.040000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:56.800000pt;}
.x1{left:94.591988pt;}
.x15{left:104.351988pt;}
.x7{left:114.911988pt;}
.x4{left:118.431988pt;}
.x3{left:132.351988pt;}
.x5{left:140.346655pt;}
.xb{left:153.146655pt;}
.x6{left:157.786655pt;}
.x1c{left:206.906655pt;}
.xa{left:212.986655pt;}
.x16{left:225.786655pt;}
.x11{left:232.986655pt;}
.x18{left:256.546655pt;}
.xc{left:278.786655pt;}
.x1d{left:327.746655pt;}
.x17{left:389.346655pt;}
.x12{left:392.226655pt;}
.x1f{left:496.733322pt;}
.x1e{left:505.693322pt;}
.xd{left:527.933322pt;}
.x19{left:537.213322pt;}
.x1a{left:544.413322pt;}
.x9{left:552.573322pt;}
.x1b{left:553.693322pt;}
.x8{left:578.653322pt;}
.xf{left:595.973322pt;}
.x21{left:665.253322pt;}
.x20{left:682.373322pt;}
.x13{left:699.333322pt;}
.xe{left:720.133322pt;}
.x2{left:728.133333pt;}
.x10{left:737.093322pt;}
}




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