
    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_67b62b573cb758090717645a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_ecda667a3a1ecec2ce5c284a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4a0e6c72b75f2403ef42c19a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_cb0701a64ec76750e221937e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.961914;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_c15e64c7118ead4c43df5629.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1eb02bb9a23c3234e3440fa7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_76ce6bf16541b0f568ca2077.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-8.640000px;}
.ls1{letter-spacing:-0.137400px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:1.584000px;}
.ls6{letter-spacing:1.740000px;}
.ls3{letter-spacing:43.110000px;}
.ls8{letter-spacing:43.260000px;}
.lsb{letter-spacing:45.810000px;}
.lsd{letter-spacing:58.467300px;}
.lsc{letter-spacing:60.528300px;}
.ls4{letter-spacing:70.147500px;}
.ls2{letter-spacing:70.297500px;}
.ls9{letter-spacing:71.722500px;}
.lsa{letter-spacing:71.872500px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,49,82),0 0.015em rgb(0,49,82),0.015em 0 rgb(0,49,82),0 -0.015em  rgb(0,49,82);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(0,49,82);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws5{word-spacing:-112.811400px;}
.ws1{word-spacing:-40.073700px;}
.ws4{word-spacing:-31.433700px;}
.ws2{word-spacing:-30.065700px;}
.ws6{word-spacing:-28.814700px;}
.ws7{word-spacing:-16.304700px;}
.ws3{word-spacing:-16.263000px;}
.ws0{word-spacing:0.000000px;}
._16{margin-left:-19.644300px;}
._a{margin-left:-18.192300px;}
._e{margin-left:-16.525950px;}
._10{margin-left:-14.595300px;}
._14{margin-left:-13.374450px;}
._d{margin-left:-12.112800px;}
._f{margin-left:-10.744950px;}
._7{margin-left:-9.441900px;}
._8{margin-left:-7.716300px;}
._1{margin-left:-6.705600px;}
._3{margin-left:-5.448300px;}
._0{margin-left:-4.191000px;}
._4{margin-left:-2.933700px;}
._2{margin-left:-1.676400px;}
._b{width:1.154400px;}
._6{width:2.899050px;}
._c{width:3.907050px;}
._13{width:5.420700px;}
._12{width:14.464350px;}
._5{width:30.090150px;}
._15{width:33.385800px;}
._9{width:104.205300px;}
._11{width:106.892100px;}
.fc2{color:rgb(0,49,82);}
.fc3{color:rgb(0,179,255);}
.fc1{color:rgb(13,51,81);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:58.500000px;}
.fs7{font-size:58.650000px;}
.fsa{font-size:103.500000px;}
.fs9{font-size:103.650000px;}
.fs6{font-size:108.150000px;}
.fs1{font-size:121.650000px;}
.fs4{font-size:144.150000px;}
.fs5{font-size:144.300000px;}
.fs0{font-size:419.100000px;}
.fs2{font-size:482.100000px;}
.fs3{font-size:482.250000px;}
.fsb{font-size:599.400000px;}
.y0{bottom:0.000000px;}
.y27{bottom:3.750000px;}
.y3c{bottom:10.275000px;}
.y9c{bottom:18.337500px;}
.y77{bottom:19.800000px;}
.y32{bottom:20.962500px;}
.y5{bottom:24.712500px;}
.y3f{bottom:35.175000px;}
.y31{bottom:42.375000px;}
.y37{bottom:47.925000px;}
.y56{bottom:58.050000px;}
.y36{bottom:69.337500px;}
.y63{bottom:100.987500px;}
.y71{bottom:111.037500px;}
.y90{bottom:112.687500px;}
.y49{bottom:126.112500px;}
.y9d{bottom:128.887500px;}
.y62{bottom:132.525000px;}
.y91{bottom:133.050000px;}
.y8f{bottom:136.350000px;}
.y70{bottom:142.612500px;}
.y21{bottom:146.475000px;}
.yf{bottom:152.625000px;}
.y61{bottom:162.930000px;}
.y8e{bottom:169.005000px;}
.y48{bottom:180.180000px;}
.y6f{bottom:183.150000px;}
.y9a{bottom:183.600000px;}
.y20{bottom:185.925000px;}
.y15{bottom:194.655000px;}
.ye{bottom:195.450000px;}
.y8d{bottom:205.050000px;}
.y76{bottom:206.025000px;}
.y82{bottom:208.200000px;}
.y60{bottom:214.755000px;}
.y6e{bottom:215.820000px;}
.y47{bottom:233.100000px;}
.y1f{bottom:233.220000px;}
.y75{bottom:237.570000px;}
.yd{bottom:238.230000px;}
.y14{bottom:238.575000px;}
.y81{bottom:240.870000px;}
.y8{bottom:249.405000px;}
.y6d{bottom:255.255000px;}
.y50{bottom:255.300000px;}
.y30{bottom:255.750000px;}
.y5f{bottom:265.455000px;}
.y74{bottom:270.225000px;}
.y9b{bottom:272.895000px;}
.y80{bottom:280.320000px;}
.y1e{bottom:280.530000px;}
.yc{bottom:282.195000px;}
.y46{bottom:287.175000px;}
.y8c{bottom:287.280000px;}
.y4f{bottom:287.970000px;}
.y2f{bottom:288.405000px;}
.y6c{bottom:295.800000px;}
.y5e{bottom:297.000000px;}
.y73{bottom:302.925000px;}
.y7f{bottom:312.975000px;}
.y99{bottom:314.280000px;}
.y3e{bottom:315.195000px;}
.y8b{bottom:319.995000px;}
.y1d{bottom:321.105000px;}
.y6b{bottom:327.345000px;}
.y94{bottom:327.855000px;}
.y2e{bottom:335.745000px;}
.y45{bottom:340.125000px;}
.y4e{bottom:340.905000px;}
.y5d{bottom:348.825000px;}
.y3{bottom:354.150000px;}
.y9f{bottom:357.945000px;}
.y8a{bottom:359.400000px;}
.y7e{bottom:360.300000px;}
.y1c{bottom:360.525000px;}
.y72{bottom:368.250000px;}
.y93{bottom:368.400000px;}
.y6a{bottom:375.795000px;}
.y22{bottom:379.845000px;}
.y7{bottom:380.070000px;}
.y2d{bottom:383.070000px;}
.y89{bottom:384.195000px;}
.y55{bottom:393.855000px;}
.y44{bottom:394.200000px;}
.y4d{bottom:394.995000px;}
.y5c{bottom:399.525000px;}
.y7d{bottom:400.845000px;}
.y1b{bottom:401.070000px;}
.y69{bottom:407.325000px;}
.y92{bottom:407.850000px;}
.y88{bottom:408.975000px;}
.y2c{bottom:415.725000px;}
.y3b{bottom:417.975000px;}
.y5b{bottom:431.070000px;}
.y9e{bottom:438.495000px;}
.y35{bottom:440.505000px;}
.y3d{bottom:444.750000px;}
.y98{bottom:444.975000px;}
.y54{bottom:446.820000px;}
.y43{bottom:447.150000px;}
.y68{bottom:447.900000px;}
.y4c{bottom:447.945000px;}
.y7c{bottom:448.155000px;}
.y1a{bottom:448.380000px;}
.y13{bottom:459.630000px;}
.y2b{bottom:463.050000px;}
.y3a{bottom:465.300000px;}
.y2{bottom:469.050000px;}
.y34{bottom:473.175000px;}
.y26{bottom:479.505000px;}
.y87{bottom:479.925000px;}
.y5a{bottom:481.755000px;}
.y7b{bottom:487.575000px;}
.y19{bottom:487.830000px;}
.y67{bottom:495.195000px;}
.y2a{bottom:495.720000px;}
.y25{bottom:497.550000px;}
.y53{bottom:500.880000px;}
.y42{bottom:501.225000px;}
.yb{bottom:502.005000px;}
.y12{bottom:502.470000px;}
.y6{bottom:509.625000px;}
.y86{bottom:511.500000px;}
.y39{bottom:512.625000px;}
.y33{bottom:520.500000px;}
.y18{bottom:528.375000px;}
.y59{bottom:533.550000px;}
.y7a{bottom:534.900000px;}
.y96{bottom:541.905000px;}
.y66{bottom:542.505000px;}
.y29{bottom:543.045000px;}
.y11{bottom:545.280000px;}
.ya{bottom:545.970000px;}
.y85{bottom:552.030000px;}
.y52{bottom:553.830000px;}
.y41{bottom:554.175000px;}
.y4b{bottom:554.970000px;}
.y24{bottom:556.695000px;}
.y38{bottom:561.030000px;}
.y58{bottom:565.125000px;}
.y79{bottom:567.570000px;}
.y17{bottom:567.825000px;}
.y97{bottom:574.530000px;}
.y65{bottom:575.175000px;}
.y28{bottom:575.700000px;}
.y1{bottom:582.825000px;}
.y84{bottom:583.575000px;}
.y10{bottom:589.200000px;}
.y95{bottom:598.245000px;}
.y23{bottom:604.005000px;}
.y64{bottom:607.875000px;}
.y51{bottom:607.905000px;}
.y78{bottom:608.130000px;}
.y40{bottom:608.250000px;}
.y16{bottom:608.370000px;}
.y4a{bottom:609.030000px;}
.y83{bottom:615.120000px;}
.y57{bottom:615.825000px;}
.y4{bottom:712.800000px;}
.y9{bottom:727.755000px;}
.ha{height:42.760986px;}
.h9{height:42.870630px;}
.hc{height:75.654053px;}
.hb{height:75.763696px;}
.he{height:76.775903px;}
.h8{height:79.053003px;}
.hf{height:80.109155px;}
.hd{height:81.323730px;}
.h2{height:88.920923px;}
.h7{height:108.323657px;}
.h5{height:108.394043px;}
.h6{height:108.436377px;}
.h1{height:408.663428px;}
.h3{height:470.094580px;}
.h4{height:470.240845px;}
.h10{height:584.473535px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x14{left:40.162479px;}
.x4{left:53.174979px;}
.x1b{left:54.224979px;}
.x1{left:73.199979px;}
.x25{left:74.849979px;}
.x5{left:76.949979px;}
.x16{left:80.212479px;}
.x1d{left:81.224979px;}
.x2{left:84.712479px;}
.x13{left:107.249979px;}
.x1c{left:108.262479px;}
.x6{left:125.849979px;}
.x1f{left:134.137479px;}
.x26{left:143.887479px;}
.x27{left:156.779979px;}
.x20{left:161.174979px;}
.x21{left:188.174979px;}
.x9{left:215.324979px;}
.x8{left:224.699979px;}
.x7{left:229.829979px;}
.xa{left:266.249979px;}
.xd{left:576.449979px;}
.xc{left:605.699979px;}
.xb{left:607.874979px;}
.xe{left:625.949979px;}
.x19{left:726.374979px;}
.x17{left:730.949979px;}
.x15{left:763.649979px;}
.x24{left:785.954979px;}
.x1e{left:798.599979px;}
.x11{left:829.004979px;}
.x12{left:865.124979px;}
.x22{left:884.594979px;}
.x18{left:930.674979px;}
.x1a{left:946.874979px;}
.x23{left:970.349979px;}
.x3{left:1052.729979px;}
.xf{left:1093.349979px;}
.x10{left:1132.574979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-7.680000pt;}
.ls1{letter-spacing:-0.122133pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:1.408000pt;}
.ls6{letter-spacing:1.546667pt;}
.ls3{letter-spacing:38.320000pt;}
.ls8{letter-spacing:38.453333pt;}
.lsb{letter-spacing:40.720000pt;}
.lsd{letter-spacing:51.970933pt;}
.lsc{letter-spacing:53.802933pt;}
.ls4{letter-spacing:62.353333pt;}
.ls2{letter-spacing:62.486667pt;}
.ls9{letter-spacing:63.753333pt;}
.lsa{letter-spacing:63.886667pt;}
.ws5{word-spacing:-100.276800pt;}
.ws1{word-spacing:-35.621067pt;}
.ws4{word-spacing:-27.941067pt;}
.ws2{word-spacing:-26.725067pt;}
.ws6{word-spacing:-25.613067pt;}
.ws7{word-spacing:-14.493067pt;}
.ws3{word-spacing:-14.456000pt;}
.ws0{word-spacing:0.000000pt;}
._16{margin-left:-17.461600pt;}
._a{margin-left:-16.170933pt;}
._e{margin-left:-14.689733pt;}
._10{margin-left:-12.973600pt;}
._14{margin-left:-11.888400pt;}
._d{margin-left:-10.766933pt;}
._f{margin-left:-9.551067pt;}
._7{margin-left:-8.392800pt;}
._8{margin-left:-6.858933pt;}
._1{margin-left:-5.960533pt;}
._3{margin-left:-4.842933pt;}
._0{margin-left:-3.725333pt;}
._4{margin-left:-2.607733pt;}
._2{margin-left:-1.490133pt;}
._b{width:1.026133pt;}
._6{width:2.576933pt;}
._c{width:3.472933pt;}
._13{width:4.818400pt;}
._12{width:12.857200pt;}
._5{width:26.746800pt;}
._15{width:29.676267pt;}
._9{width:92.626933pt;}
._11{width:95.015200pt;}
.fs8{font-size:52.000000pt;}
.fs7{font-size:52.133333pt;}
.fsa{font-size:92.000000pt;}
.fs9{font-size:92.133333pt;}
.fs6{font-size:96.133333pt;}
.fs1{font-size:108.133333pt;}
.fs4{font-size:128.133333pt;}
.fs5{font-size:128.266667pt;}
.fs0{font-size:372.533333pt;}
.fs2{font-size:428.533333pt;}
.fs3{font-size:428.666667pt;}
.fsb{font-size:532.800000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:3.333333pt;}
.y3c{bottom:9.133333pt;}
.y9c{bottom:16.300000pt;}
.y77{bottom:17.600000pt;}
.y32{bottom:18.633333pt;}
.y5{bottom:21.966667pt;}
.y3f{bottom:31.266667pt;}
.y31{bottom:37.666667pt;}
.y37{bottom:42.600000pt;}
.y56{bottom:51.600000pt;}
.y36{bottom:61.633333pt;}
.y63{bottom:89.766667pt;}
.y71{bottom:98.700000pt;}
.y90{bottom:100.166667pt;}
.y49{bottom:112.100000pt;}
.y9d{bottom:114.566667pt;}
.y62{bottom:117.800000pt;}
.y91{bottom:118.266667pt;}
.y8f{bottom:121.200000pt;}
.y70{bottom:126.766667pt;}
.y21{bottom:130.200000pt;}
.yf{bottom:135.666667pt;}
.y61{bottom:144.826667pt;}
.y8e{bottom:150.226667pt;}
.y48{bottom:160.160000pt;}
.y6f{bottom:162.800000pt;}
.y9a{bottom:163.200000pt;}
.y20{bottom:165.266667pt;}
.y15{bottom:173.026667pt;}
.ye{bottom:173.733333pt;}
.y8d{bottom:182.266667pt;}
.y76{bottom:183.133333pt;}
.y82{bottom:185.066667pt;}
.y60{bottom:190.893333pt;}
.y6e{bottom:191.840000pt;}
.y47{bottom:207.200000pt;}
.y1f{bottom:207.306667pt;}
.y75{bottom:211.173333pt;}
.yd{bottom:211.760000pt;}
.y14{bottom:212.066667pt;}
.y81{bottom:214.106667pt;}
.y8{bottom:221.693333pt;}
.y6d{bottom:226.893333pt;}
.y50{bottom:226.933333pt;}
.y30{bottom:227.333333pt;}
.y5f{bottom:235.960000pt;}
.y74{bottom:240.200000pt;}
.y9b{bottom:242.573333pt;}
.y80{bottom:249.173333pt;}
.y1e{bottom:249.360000pt;}
.yc{bottom:250.840000pt;}
.y46{bottom:255.266667pt;}
.y8c{bottom:255.360000pt;}
.y4f{bottom:255.973333pt;}
.y2f{bottom:256.360000pt;}
.y6c{bottom:262.933333pt;}
.y5e{bottom:264.000000pt;}
.y73{bottom:269.266667pt;}
.y7f{bottom:278.200000pt;}
.y99{bottom:279.360000pt;}
.y3e{bottom:280.173333pt;}
.y8b{bottom:284.440000pt;}
.y1d{bottom:285.426667pt;}
.y6b{bottom:290.973333pt;}
.y94{bottom:291.426667pt;}
.y2e{bottom:298.440000pt;}
.y45{bottom:302.333333pt;}
.y4e{bottom:303.026667pt;}
.y5d{bottom:310.066667pt;}
.y3{bottom:314.800000pt;}
.y9f{bottom:318.173333pt;}
.y8a{bottom:319.466667pt;}
.y7e{bottom:320.266667pt;}
.y1c{bottom:320.466667pt;}
.y72{bottom:327.333333pt;}
.y93{bottom:327.466667pt;}
.y6a{bottom:334.040000pt;}
.y22{bottom:337.640000pt;}
.y7{bottom:337.840000pt;}
.y2d{bottom:340.506667pt;}
.y89{bottom:341.506667pt;}
.y55{bottom:350.093333pt;}
.y44{bottom:350.400000pt;}
.y4d{bottom:351.106667pt;}
.y5c{bottom:355.133333pt;}
.y7d{bottom:356.306667pt;}
.y1b{bottom:356.506667pt;}
.y69{bottom:362.066667pt;}
.y92{bottom:362.533333pt;}
.y88{bottom:363.533333pt;}
.y2c{bottom:369.533333pt;}
.y3b{bottom:371.533333pt;}
.y5b{bottom:383.173333pt;}
.y9e{bottom:389.773333pt;}
.y35{bottom:391.560000pt;}
.y3d{bottom:395.333333pt;}
.y98{bottom:395.533333pt;}
.y54{bottom:397.173333pt;}
.y43{bottom:397.466667pt;}
.y68{bottom:398.133333pt;}
.y4c{bottom:398.173333pt;}
.y7c{bottom:398.360000pt;}
.y1a{bottom:398.560000pt;}
.y13{bottom:408.560000pt;}
.y2b{bottom:411.600000pt;}
.y3a{bottom:413.600000pt;}
.y2{bottom:416.933333pt;}
.y34{bottom:420.600000pt;}
.y26{bottom:426.226667pt;}
.y87{bottom:426.600000pt;}
.y5a{bottom:428.226667pt;}
.y7b{bottom:433.400000pt;}
.y19{bottom:433.626667pt;}
.y67{bottom:440.173333pt;}
.y2a{bottom:440.640000pt;}
.y25{bottom:442.266667pt;}
.y53{bottom:445.226667pt;}
.y42{bottom:445.533333pt;}
.yb{bottom:446.226667pt;}
.y12{bottom:446.640000pt;}
.y6{bottom:453.000000pt;}
.y86{bottom:454.666667pt;}
.y39{bottom:455.666667pt;}
.y33{bottom:462.666667pt;}
.y18{bottom:469.666667pt;}
.y59{bottom:474.266667pt;}
.y7a{bottom:475.466667pt;}
.y96{bottom:481.693333pt;}
.y66{bottom:482.226667pt;}
.y29{bottom:482.706667pt;}
.y11{bottom:484.693333pt;}
.ya{bottom:485.306667pt;}
.y85{bottom:490.693333pt;}
.y52{bottom:492.293333pt;}
.y41{bottom:492.600000pt;}
.y4b{bottom:493.306667pt;}
.y24{bottom:494.840000pt;}
.y38{bottom:498.693333pt;}
.y58{bottom:502.333333pt;}
.y79{bottom:504.506667pt;}
.y17{bottom:504.733333pt;}
.y97{bottom:510.693333pt;}
.y65{bottom:511.266667pt;}
.y28{bottom:511.733333pt;}
.y1{bottom:518.066667pt;}
.y84{bottom:518.733333pt;}
.y10{bottom:523.733333pt;}
.y95{bottom:531.773333pt;}
.y23{bottom:536.893333pt;}
.y64{bottom:540.333333pt;}
.y51{bottom:540.360000pt;}
.y78{bottom:540.560000pt;}
.y40{bottom:540.666667pt;}
.y16{bottom:540.773333pt;}
.y4a{bottom:541.360000pt;}
.y83{bottom:546.773333pt;}
.y57{bottom:547.400000pt;}
.y4{bottom:633.600000pt;}
.y9{bottom:646.893333pt;}
.ha{height:38.009766pt;}
.h9{height:38.107227pt;}
.hc{height:67.248047pt;}
.hb{height:67.345508pt;}
.he{height:68.245247pt;}
.h8{height:70.269336pt;}
.hf{height:71.208138pt;}
.hd{height:72.287760pt;}
.h2{height:79.040820pt;}
.h7{height:96.287695pt;}
.h5{height:96.350260pt;}
.h6{height:96.387891pt;}
.h1{height:363.256380pt;}
.h3{height:417.861849pt;}
.h4{height:417.991862pt;}
.h10{height:519.532031pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x14{left:35.699981pt;}
.x4{left:47.266648pt;}
.x1b{left:48.199981pt;}
.x1{left:65.066648pt;}
.x25{left:66.533314pt;}
.x5{left:68.399981pt;}
.x16{left:71.299981pt;}
.x1d{left:72.199981pt;}
.x2{left:75.299981pt;}
.x13{left:95.333314pt;}
.x1c{left:96.233314pt;}
.x6{left:111.866648pt;}
.x1f{left:119.233314pt;}
.x26{left:127.899981pt;}
.x27{left:139.359981pt;}
.x20{left:143.266648pt;}
.x21{left:167.266648pt;}
.x9{left:191.399981pt;}
.x8{left:199.733314pt;}
.x7{left:204.293314pt;}
.xa{left:236.666648pt;}
.xd{left:512.399981pt;}
.xc{left:538.399981pt;}
.xb{left:540.333314pt;}
.xe{left:556.399981pt;}
.x19{left:645.666648pt;}
.x17{left:649.733314pt;}
.x15{left:678.799981pt;}
.x24{left:698.626648pt;}
.x1e{left:709.866648pt;}
.x11{left:736.893314pt;}
.x12{left:768.999981pt;}
.x22{left:786.306648pt;}
.x18{left:827.266648pt;}
.x1a{left:841.666648pt;}
.x23{left:862.533314pt;}
.x3{left:935.759981pt;}
.xf{left:971.866648pt;}
.x10{left:1006.733314pt;}
}




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