
    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_edb5b1b38dbf7ed27825dbf0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_431a9c96ff67e1f3bd9f8b4d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_5daff9ee4a16e55919fbdfab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_8de60556a8ff93b90a16b25a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_51d23f52509dca691755638a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_0abec8f4dc360dd114b8d927.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_51667b179db487c6fb4492d9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e3571826157cf6a6af2d0cf0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_01ce8cbd34e42b9a86a59126.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0633485d3cd89005739370e1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005371;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_a36fb21bf07ea0c16d694814.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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;}
.m1{transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244048,0.000000,0.000000,0.250000,0,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);}
.m2{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;}
.ls5{letter-spacing:-0.810000px;}
.ls6{letter-spacing:-0.684000px;}
.ls12{letter-spacing:-0.342600px;}
.ls10{letter-spacing:-0.306000px;}
.lsd{letter-spacing:-0.283200px;}
.lsf{letter-spacing:-0.277200px;}
.ls1b{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.169200px;}
.ls4{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.056160px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.007200px;}
.ls22{letter-spacing:0.021600px;}
.ls2{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.041040px;}
.ls11{letter-spacing:0.072600px;}
.ls20{letter-spacing:0.111600px;}
.ls19{letter-spacing:0.112800px;}
.ls23{letter-spacing:0.119400px;}
.ls1{letter-spacing:0.126000px;}
.ls21{letter-spacing:0.132600px;}
.ls1d{letter-spacing:0.140400px;}
.ls13{letter-spacing:0.174000px;}
.ls1e{letter-spacing:0.177000px;}
.ls1f{letter-spacing:0.197280px;}
.ls1a{letter-spacing:0.231600px;}
.ls18{letter-spacing:0.237000px;}
.lsc{letter-spacing:0.302400px;}
.ls15{letter-spacing:0.305280px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.480000px;}
.ls8{letter-spacing:40.986720px;}
.lsa{letter-spacing:41.706720px;}
.ls9{letter-spacing:45.306720px;}
.lsb{letter-spacing:48.906720px;}
.ls14{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-59.760000px;}
.wsf{word-spacing:-15.769200px;}
.wsa{word-spacing:-15.711600px;}
.ws11{word-spacing:-15.678000px;}
.ws12{word-spacing:-15.670200px;}
.wse{word-spacing:-15.650400px;}
.ws8{word-spacing:-15.610200px;}
.ws13{word-spacing:-15.559200px;}
.ws5{word-spacing:-15.544800px;}
.wsc{word-spacing:-15.537600px;}
.wsd{word-spacing:-15.368400px;}
.ws10{word-spacing:-15.331200px;}
.ws6{word-spacing:-15.260400px;}
.ws4{word-spacing:-15.254400px;}
.ws7{word-spacing:-15.231600px;}
.ws9{word-spacing:-15.195000px;}
.ws1{word-spacing:-14.076000px;}
.ws0{word-spacing:-13.878000px;}
.ws2{word-spacing:-13.356000px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-2.808000px;}
._1{margin-left:-1.041600px;}
._0{width:1.819440px;}
._3{width:2.824560px;}
._5{width:3.943920px;}
._6{width:7.362720px;}
._2{width:12.960000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(61,61,60);}
.fc4{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:10.260000px;}
.y30{bottom:11.160000px;}
.y2a{bottom:28.800000px;}
.y2f{bottom:32.394000px;}
.y29{bottom:47.340000px;}
.y2e{bottom:53.634000px;}
.y4{bottom:57.060000px;}
.y28{bottom:65.700000px;}
.y2d{bottom:74.694000px;}
.y3{bottom:75.420000px;}
.y5f{bottom:112.356000px;}
.y5e{bottom:117.576000px;}
.ydd{bottom:118.116000px;}
.y26{bottom:127.296000px;}
.y2c{bottom:129.996000px;}
.y5d{bottom:132.696000px;}
.y5c{bottom:137.916000px;}
.ydc{bottom:138.636000px;}
.y5b{bottom:153.210000px;}
.y80{bottom:155.370000px;}
.y5a{bottom:158.430000px;}
.ydb{bottom:158.970000px;}
.ye0{bottom:172.110000px;}
.y59{bottom:173.550000px;}
.y7f{bottom:175.710000px;}
.yda{bottom:179.490000px;}
.yad{bottom:192.450000px;}
.y58{bottom:194.070000px;}
.y7e{bottom:196.230000px;}
.y57{bottom:199.290000px;}
.yd9{bottom:199.830000px;}
.yab{bottom:212.970000px;}
.y56{bottom:214.410000px;}
.y7d{bottom:216.570000px;}
.yac{bottom:218.190000px;}
.yd8{bottom:220.350000px;}
.y25{bottom:223.590000px;}
.yaa{bottom:233.310000px;}
.y55{bottom:234.930000px;}
.y7c{bottom:237.090000px;}
.y54{bottom:240.150000px;}
.yd7{bottom:240.690000px;}
.y24{bottom:241.950000px;}
.ya9{bottom:253.830000px;}
.y53{bottom:255.270000px;}
.y23{bottom:256.350000px;}
.y7b{bottom:257.430000px;}
.y27{bottom:259.050000px;}
.yd6{bottom:261.210000px;}
.ya8{bottom:274.170000px;}
.y7a{bottom:277.950000px;}
.yd5{bottom:281.550000px;}
.ya7{bottom:294.690000px;}
.y79{bottom:298.290000px;}
.yd4{bottom:302.070000px;}
.ya6{bottom:315.030000px;}
.y78{bottom:318.810000px;}
.ye3{bottom:320.250000px;}
.yd3{bottom:322.410000px;}
.ya5{bottom:335.550000px;}
.y77{bottom:339.150000px;}
.yd2{bottom:342.930000px;}
.y22{bottom:343.470000px;}
.y52{bottom:355.170000px;}
.ya4{bottom:355.890000px;}
.y76{bottom:359.670000px;}
.y21{bottom:362.370000px;}
.yd1{bottom:363.270000px;}
.y51{bottom:375.555000px;}
.ya3{bottom:376.455000px;}
.y75{bottom:380.055000px;}
.y20{bottom:382.755000px;}
.yd0{bottom:383.835000px;}
.y50{bottom:396.075000px;}
.ya2{bottom:396.795000px;}
.y74{bottom:400.395000px;}
.ye2{bottom:402.015000px;}
.y1f{bottom:403.275000px;}
.ycf{bottom:404.175000px;}
.ydf{bottom:408.315000px;}
.y4e{bottom:416.415000px;}
.ya1{bottom:417.315000px;}
.y73{bottom:420.915000px;}
.y4f{bottom:421.635000px;}
.y1e{bottom:423.615000px;}
.yce{bottom:424.695000px;}
.y4d{bottom:436.935000px;}
.ya0{bottom:437.655000px;}
.y72{bottom:441.255000px;}
.y1d{bottom:444.135000px;}
.ycd{bottom:445.035000px;}
.y4c{bottom:457.275000px;}
.y9f{bottom:458.175000px;}
.y71{bottom:461.775000px;}
.y1c{bottom:464.475000px;}
.ycc{bottom:465.555000px;}
.y9e{bottom:478.515000px;}
.y70{bottom:482.115000px;}
.y1b{bottom:484.995000px;}
.ycb{bottom:485.895000px;}
.y4b{bottom:489.315000px;}
.y9d{bottom:499.035000px;}
.y6f{bottom:502.635000px;}
.y1a{bottom:505.335000px;}
.yca{bottom:506.415000px;}
.y9c{bottom:519.375000px;}
.y6e{bottom:522.975000px;}
.y19{bottom:525.855000px;}
.yc9{bottom:526.755000px;}
.y9b{bottom:539.895000px;}
.y6d{bottom:543.495000px;}
.y18{bottom:546.195000px;}
.y4a{bottom:546.375000px;}
.yc8{bottom:547.275000px;}
.y9a{bottom:560.235000px;}
.y6c{bottom:563.835000px;}
.y17{bottom:566.715000px;}
.y49{bottom:566.895000px;}
.yc7{bottom:567.615000px;}
.y99{bottom:580.755000px;}
.y6b{bottom:584.355000px;}
.y16{bottom:587.055000px;}
.y48{bottom:587.235000px;}
.yc6{bottom:588.135000px;}
.y98{bottom:601.095000px;}
.y6a{bottom:604.695000px;}
.y15{bottom:607.575000px;}
.y47{bottom:607.755000px;}
.yc5{bottom:608.475000px;}
.y97{bottom:621.435000px;}
.y69{bottom:625.245000px;}
.y14{bottom:627.945000px;}
.y46{bottom:628.125000px;}
.yc4{bottom:629.025000px;}
.y96{bottom:641.985000px;}
.y67{bottom:645.585000px;}
.y13{bottom:648.465000px;}
.yc3{bottom:649.365000px;}
.y68{bottom:650.805000px;}
.y95{bottom:662.325000px;}
.y66{bottom:666.105000px;}
.y12{bottom:668.805000px;}
.y45{bottom:668.985000px;}
.yc2{bottom:669.885000px;}
.y94{bottom:682.845000px;}
.y65{bottom:686.445000px;}
.y11{bottom:689.325000px;}
.yc1{bottom:690.225000px;}
.y93{bottom:703.185000px;}
.y64{bottom:706.965000px;}
.y10{bottom:709.665000px;}
.y44{bottom:709.845000px;}
.yc0{bottom:710.745000px;}
.y92{bottom:723.705000px;}
.yf{bottom:730.185000px;}
.ybf{bottom:731.085000px;}
.y63{bottom:738.825000px;}
.y91{bottom:744.045000px;}
.ye{bottom:750.525000px;}
.y43{bottom:750.705000px;}
.ybe{bottom:751.605000px;}
.y90{bottom:764.565000px;}
.yd{bottom:771.045000px;}
.ybd{bottom:771.945000px;}
.y8f{bottom:784.905000px;}
.yc{bottom:791.385000px;}
.y42{bottom:791.565000px;}
.ybc{bottom:792.285000px;}
.y62{bottom:795.525000px;}
.y8e{bottom:805.425000px;}
.yb{bottom:811.905000px;}
.ybb{bottom:812.805000px;}
.y61{bottom:814.065000px;}
.y8d{bottom:825.765000px;}
.ya{bottom:832.245000px;}
.y41{bottom:832.425000px;}
.yba{bottom:833.145000px;}
.y8c{bottom:846.285000px;}
.y60{bottom:846.645000px;}
.y40{bottom:852.765000px;}
.yb9{bottom:853.665000px;}
.y9{bottom:855.285000px;}
.y8b{bottom:866.625000px;}
.y3f{bottom:873.285000px;}
.yb8{bottom:874.005000px;}
.y8a{bottom:887.190000px;}
.y8{bottom:888.090000px;}
.y3e{bottom:893.670000px;}
.yb7{bottom:894.570000px;}
.y89{bottom:907.530000px;}
.y3d{bottom:914.190000px;}
.yb6{bottom:914.910000px;}
.ye1{bottom:919.050000px;}
.y7{bottom:920.670000px;}
.y88{bottom:928.050000px;}
.y3b{bottom:934.530000px;}
.yb5{bottom:935.430000px;}
.y3c{bottom:939.750000px;}
.y87{bottom:948.390000px;}
.y6{bottom:953.430000px;}
.y3a{bottom:955.050000px;}
.yb4{bottom:955.770000px;}
.y86{bottom:968.910000px;}
.y39{bottom:975.390000px;}
.yb3{bottom:976.290000px;}
.y5{bottom:978.990000px;}
.y85{bottom:989.250000px;}
.y37{bottom:995.910000px;}
.yb2{bottom:996.630000px;}
.y38{bottom:1001.130000px;}
.y84{bottom:1009.770000px;}
.y36{bottom:1016.250000px;}
.yb1{bottom:1017.150000px;}
.y35{bottom:1036.770000px;}
.yb0{bottom:1037.490000px;}
.y83{bottom:1041.630000px;}
.y33{bottom:1057.110000px;}
.yaf{bottom:1058.010000px;}
.y34{bottom:1062.330000px;}
.y32{bottom:1077.630000px;}
.yae{bottom:1078.350000px;}
.yde{bottom:1083.570000px;}
.y82{bottom:1098.870000px;}
.y31{bottom:1109.490000px;}
.y81{bottom:1119.210000px;}
.y2{bottom:1162.620000px;}
.y1{bottom:1182.960000px;}
.h8{height:29.748516px;}
.h3{height:41.317383px;}
.hb{height:45.403594px;}
.h7{height:45.509766px;}
.h2{height:45.724570px;}
.ha{height:59.439023px;}
.h9{height:61.423863px;}
.h4{height:72.755156px;}
.h5{height:80.100000px;}
.h6{height:89.100000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:776.700000px;}
.w4{width:778.500000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.776000px;}
.xb{left:10.656000px;}
.x2{left:80.819987px;}
.x1e{left:86.435987px;}
.x29{left:92.015987px;}
.x16{left:107.855987px;}
.x6{left:111.995987px;}
.x17{left:134.855987px;}
.x18{left:161.849987px;}
.x21{left:233.489973px;}
.x9{left:236.009987px;}
.x22{left:239.069987px;}
.x1d{left:296.894987px;}
.x23{left:314.894973px;}
.x24{left:320.474987px;}
.x7{left:347.654987px;}
.x12{left:351.434973px;}
.x13{left:357.014987px;}
.xf{left:358.454987px;}
.x19{left:393.554973px;}
.x1a{left:399.134987px;}
.x1b{left:401.294973px;}
.x1c{left:406.874987px;}
.x8{left:446.504987px;}
.x4{left:580.244987px;}
.x14{left:587.084973px;}
.x15{left:592.664987px;}
.xd{left:612.330000px;}
.xe{left:622.410000px;}
.x5{left:625.829987px;}
.x25{left:627.089973px;}
.x26{left:632.669987px;}
.x27{left:655.889973px;}
.x28{left:667.049987px;}
.x10{left:674.249973px;}
.x11{left:679.829987px;}
.x3{left:685.409987px;}
.x1f{left:747.509973px;}
.x20{left:753.089987px;}
.x1{left:812.339987px;}
.xa{left:861.659987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.720000pt;}
.ls6{letter-spacing:-0.608000pt;}
.ls12{letter-spacing:-0.304533pt;}
.ls10{letter-spacing:-0.272000pt;}
.lsd{letter-spacing:-0.251733pt;}
.lsf{letter-spacing:-0.246400pt;}
.ls1b{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.150400pt;}
.ls4{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.049920pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.006400pt;}
.ls22{letter-spacing:0.019200pt;}
.ls2{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.036480pt;}
.ls11{letter-spacing:0.064533pt;}
.ls20{letter-spacing:0.099200pt;}
.ls19{letter-spacing:0.100267pt;}
.ls23{letter-spacing:0.106133pt;}
.ls1{letter-spacing:0.112000pt;}
.ls21{letter-spacing:0.117867pt;}
.ls1d{letter-spacing:0.124800pt;}
.ls13{letter-spacing:0.154667pt;}
.ls1e{letter-spacing:0.157333pt;}
.ls1f{letter-spacing:0.175360pt;}
.ls1a{letter-spacing:0.205867pt;}
.ls18{letter-spacing:0.210667pt;}
.lsc{letter-spacing:0.268800pt;}
.ls15{letter-spacing:0.271360pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.426667pt;}
.ls8{letter-spacing:36.432640pt;}
.lsa{letter-spacing:37.072640pt;}
.ls9{letter-spacing:40.272640pt;}
.lsb{letter-spacing:43.472640pt;}
.ls14{letter-spacing:56.912640pt;}
.wsb{word-spacing:-53.120000pt;}
.wsf{word-spacing:-14.017067pt;}
.wsa{word-spacing:-13.965867pt;}
.ws11{word-spacing:-13.936000pt;}
.ws12{word-spacing:-13.929067pt;}
.wse{word-spacing:-13.911467pt;}
.ws8{word-spacing:-13.875733pt;}
.ws13{word-spacing:-13.830400pt;}
.ws5{word-spacing:-13.817600pt;}
.wsc{word-spacing:-13.811200pt;}
.wsd{word-spacing:-13.660800pt;}
.ws10{word-spacing:-13.627733pt;}
.ws6{word-spacing:-13.564800pt;}
.ws4{word-spacing:-13.559467pt;}
.ws7{word-spacing:-13.539200pt;}
.ws9{word-spacing:-13.506667pt;}
.ws1{word-spacing:-12.512000pt;}
.ws0{word-spacing:-12.336000pt;}
.ws2{word-spacing:-11.872000pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-2.496000pt;}
._1{margin-left:-0.925867pt;}
._0{width:1.617280pt;}
._3{width:2.510720pt;}
._5{width:3.505707pt;}
._6{width:6.544640pt;}
._2{width:11.520000pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:9.120000pt;}
.y30{bottom:9.920000pt;}
.y2a{bottom:25.600000pt;}
.y2f{bottom:28.794667pt;}
.y29{bottom:42.080000pt;}
.y2e{bottom:47.674667pt;}
.y4{bottom:50.720000pt;}
.y28{bottom:58.400000pt;}
.y2d{bottom:66.394667pt;}
.y3{bottom:67.040000pt;}
.y5f{bottom:99.872000pt;}
.y5e{bottom:104.512000pt;}
.ydd{bottom:104.992000pt;}
.y26{bottom:113.152000pt;}
.y2c{bottom:115.552000pt;}
.y5d{bottom:117.952000pt;}
.y5c{bottom:122.592000pt;}
.ydc{bottom:123.232000pt;}
.y5b{bottom:136.186667pt;}
.y80{bottom:138.106667pt;}
.y5a{bottom:140.826667pt;}
.ydb{bottom:141.306667pt;}
.ye0{bottom:152.986667pt;}
.y59{bottom:154.266667pt;}
.y7f{bottom:156.186667pt;}
.yda{bottom:159.546667pt;}
.yad{bottom:171.066667pt;}
.y58{bottom:172.506667pt;}
.y7e{bottom:174.426667pt;}
.y57{bottom:177.146667pt;}
.yd9{bottom:177.626667pt;}
.yab{bottom:189.306667pt;}
.y56{bottom:190.586667pt;}
.y7d{bottom:192.506667pt;}
.yac{bottom:193.946667pt;}
.yd8{bottom:195.866667pt;}
.y25{bottom:198.746667pt;}
.yaa{bottom:207.386667pt;}
.y55{bottom:208.826667pt;}
.y7c{bottom:210.746667pt;}
.y54{bottom:213.466667pt;}
.yd7{bottom:213.946667pt;}
.y24{bottom:215.066667pt;}
.ya9{bottom:225.626667pt;}
.y53{bottom:226.906667pt;}
.y23{bottom:227.866667pt;}
.y7b{bottom:228.826667pt;}
.y27{bottom:230.266667pt;}
.yd6{bottom:232.186667pt;}
.ya8{bottom:243.706667pt;}
.y7a{bottom:247.066667pt;}
.yd5{bottom:250.266667pt;}
.ya7{bottom:261.946667pt;}
.y79{bottom:265.146667pt;}
.yd4{bottom:268.506667pt;}
.ya6{bottom:280.026667pt;}
.y78{bottom:283.386667pt;}
.ye3{bottom:284.666667pt;}
.yd3{bottom:286.586667pt;}
.ya5{bottom:298.266667pt;}
.y77{bottom:301.466667pt;}
.yd2{bottom:304.826667pt;}
.y22{bottom:305.306667pt;}
.y52{bottom:315.706667pt;}
.ya4{bottom:316.346667pt;}
.y76{bottom:319.706667pt;}
.y21{bottom:322.106667pt;}
.yd1{bottom:322.906667pt;}
.y51{bottom:333.826667pt;}
.ya3{bottom:334.626667pt;}
.y75{bottom:337.826667pt;}
.y20{bottom:340.226667pt;}
.yd0{bottom:341.186667pt;}
.y50{bottom:352.066667pt;}
.ya2{bottom:352.706667pt;}
.y74{bottom:355.906667pt;}
.ye2{bottom:357.346667pt;}
.y1f{bottom:358.466667pt;}
.ycf{bottom:359.266667pt;}
.ydf{bottom:362.946667pt;}
.y4e{bottom:370.146667pt;}
.ya1{bottom:370.946667pt;}
.y73{bottom:374.146667pt;}
.y4f{bottom:374.786667pt;}
.y1e{bottom:376.546667pt;}
.yce{bottom:377.506667pt;}
.y4d{bottom:388.386667pt;}
.ya0{bottom:389.026667pt;}
.y72{bottom:392.226667pt;}
.y1d{bottom:394.786667pt;}
.ycd{bottom:395.586667pt;}
.y4c{bottom:406.466667pt;}
.y9f{bottom:407.266667pt;}
.y71{bottom:410.466667pt;}
.y1c{bottom:412.866667pt;}
.ycc{bottom:413.826667pt;}
.y9e{bottom:425.346667pt;}
.y70{bottom:428.546667pt;}
.y1b{bottom:431.106667pt;}
.ycb{bottom:431.906667pt;}
.y4b{bottom:434.946667pt;}
.y9d{bottom:443.586667pt;}
.y6f{bottom:446.786667pt;}
.y1a{bottom:449.186667pt;}
.yca{bottom:450.146667pt;}
.y9c{bottom:461.666667pt;}
.y6e{bottom:464.866667pt;}
.y19{bottom:467.426667pt;}
.yc9{bottom:468.226667pt;}
.y9b{bottom:479.906667pt;}
.y6d{bottom:483.106667pt;}
.y18{bottom:485.506667pt;}
.y4a{bottom:485.666667pt;}
.yc8{bottom:486.466667pt;}
.y9a{bottom:497.986667pt;}
.y6c{bottom:501.186667pt;}
.y17{bottom:503.746667pt;}
.y49{bottom:503.906667pt;}
.yc7{bottom:504.546667pt;}
.y99{bottom:516.226667pt;}
.y6b{bottom:519.426667pt;}
.y16{bottom:521.826667pt;}
.y48{bottom:521.986667pt;}
.yc6{bottom:522.786667pt;}
.y98{bottom:534.306667pt;}
.y6a{bottom:537.506667pt;}
.y15{bottom:540.066667pt;}
.y47{bottom:540.226667pt;}
.yc5{bottom:540.866667pt;}
.y97{bottom:552.386667pt;}
.y69{bottom:555.773333pt;}
.y14{bottom:558.173333pt;}
.y46{bottom:558.333333pt;}
.yc4{bottom:559.133333pt;}
.y96{bottom:570.653333pt;}
.y67{bottom:573.853333pt;}
.y13{bottom:576.413333pt;}
.yc3{bottom:577.213333pt;}
.y68{bottom:578.493333pt;}
.y95{bottom:588.733333pt;}
.y66{bottom:592.093333pt;}
.y12{bottom:594.493333pt;}
.y45{bottom:594.653333pt;}
.yc2{bottom:595.453333pt;}
.y94{bottom:606.973333pt;}
.y65{bottom:610.173333pt;}
.y11{bottom:612.733333pt;}
.yc1{bottom:613.533333pt;}
.y93{bottom:625.053333pt;}
.y64{bottom:628.413333pt;}
.y10{bottom:630.813333pt;}
.y44{bottom:630.973333pt;}
.yc0{bottom:631.773333pt;}
.y92{bottom:643.293333pt;}
.yf{bottom:649.053333pt;}
.ybf{bottom:649.853333pt;}
.y63{bottom:656.733333pt;}
.y91{bottom:661.373333pt;}
.ye{bottom:667.133333pt;}
.y43{bottom:667.293333pt;}
.ybe{bottom:668.093333pt;}
.y90{bottom:679.613333pt;}
.yd{bottom:685.373333pt;}
.ybd{bottom:686.173333pt;}
.y8f{bottom:697.693333pt;}
.yc{bottom:703.453333pt;}
.y42{bottom:703.613333pt;}
.ybc{bottom:704.253333pt;}
.y62{bottom:707.133333pt;}
.y8e{bottom:715.933333pt;}
.yb{bottom:721.693333pt;}
.ybb{bottom:722.493333pt;}
.y61{bottom:723.613333pt;}
.y8d{bottom:734.013333pt;}
.ya{bottom:739.773333pt;}
.y41{bottom:739.933333pt;}
.yba{bottom:740.573333pt;}
.y8c{bottom:752.253333pt;}
.y60{bottom:752.573333pt;}
.y40{bottom:758.013333pt;}
.yb9{bottom:758.813333pt;}
.y9{bottom:760.253333pt;}
.y8b{bottom:770.333333pt;}
.y3f{bottom:776.253333pt;}
.yb8{bottom:776.893333pt;}
.y8a{bottom:788.613333pt;}
.y8{bottom:789.413333pt;}
.y3e{bottom:794.373333pt;}
.yb7{bottom:795.173333pt;}
.y89{bottom:806.693333pt;}
.y3d{bottom:812.613333pt;}
.yb6{bottom:813.253333pt;}
.ye1{bottom:816.933333pt;}
.y7{bottom:818.373333pt;}
.y88{bottom:824.933333pt;}
.y3b{bottom:830.693333pt;}
.yb5{bottom:831.493333pt;}
.y3c{bottom:835.333333pt;}
.y87{bottom:843.013333pt;}
.y6{bottom:847.493333pt;}
.y3a{bottom:848.933333pt;}
.yb4{bottom:849.573333pt;}
.y86{bottom:861.253333pt;}
.y39{bottom:867.013333pt;}
.yb3{bottom:867.813333pt;}
.y5{bottom:870.213333pt;}
.y85{bottom:879.333333pt;}
.y37{bottom:885.253333pt;}
.yb2{bottom:885.893333pt;}
.y38{bottom:889.893333pt;}
.y84{bottom:897.573333pt;}
.y36{bottom:903.333333pt;}
.yb1{bottom:904.133333pt;}
.y35{bottom:921.573333pt;}
.yb0{bottom:922.213333pt;}
.y83{bottom:925.893333pt;}
.y33{bottom:939.653333pt;}
.yaf{bottom:940.453333pt;}
.y34{bottom:944.293333pt;}
.y32{bottom:957.893333pt;}
.yae{bottom:958.533333pt;}
.yde{bottom:963.173333pt;}
.y82{bottom:976.773333pt;}
.y31{bottom:986.213333pt;}
.y81{bottom:994.853333pt;}
.y2{bottom:1033.440000pt;}
.y1{bottom:1051.520000pt;}
.h8{height:26.443125pt;}
.h3{height:36.726562pt;}
.hb{height:40.358750pt;}
.h7{height:40.453125pt;}
.h2{height:40.644063pt;}
.ha{height:52.834688pt;}
.h9{height:54.598989pt;}
.h4{height:64.671250pt;}
.h5{height:71.200000pt;}
.h6{height:79.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:690.400000pt;}
.w4{width:692.000000pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.912000pt;}
.xb{left:9.472000pt;}
.x2{left:71.839988pt;}
.x1e{left:76.831988pt;}
.x29{left:81.791988pt;}
.x16{left:95.871988pt;}
.x6{left:99.551988pt;}
.x17{left:119.871988pt;}
.x18{left:143.866655pt;}
.x21{left:207.546643pt;}
.x9{left:209.786655pt;}
.x22{left:212.506655pt;}
.x1d{left:263.906655pt;}
.x23{left:279.906643pt;}
.x24{left:284.866655pt;}
.x7{left:309.026655pt;}
.x12{left:312.386643pt;}
.x13{left:317.346655pt;}
.xf{left:318.626655pt;}
.x19{left:349.826643pt;}
.x1a{left:354.786655pt;}
.x1b{left:356.706643pt;}
.x1c{left:361.666655pt;}
.x8{left:396.893322pt;}
.x4{left:515.773322pt;}
.x14{left:521.853310pt;}
.x15{left:526.813322pt;}
.xd{left:544.293333pt;}
.xe{left:553.253333pt;}
.x5{left:556.293322pt;}
.x25{left:557.413310pt;}
.x26{left:562.373322pt;}
.x27{left:583.013310pt;}
.x28{left:592.933322pt;}
.x10{left:599.333310pt;}
.x11{left:604.293322pt;}
.x3{left:609.253322pt;}
.x1f{left:664.453310pt;}
.x20{left:669.413322pt;}
.x1{left:722.079988pt;}
.xa{left:765.919988pt;}
}




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