
    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_49b19d324fcd5ab1419a1ed5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ee39a9f8e3be94e0a6988060.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_400bdde4aa329d9a0e1baf02.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d9d58584e50dc3375bcdabf5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.392578;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_d6d28da6c8ca0ae4814e692c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.392578;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_77a751f1ef38eebb45447283.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_ebcbae49bee4efcc3eb65ea4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_35a0c5387dd26ccfadd25d6a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_3f2d78d3665b1dedcb250f8a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_c8ace1743ee81bcbb16e6f08.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5e07eb2a13b9bc62ec2bbed1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.305400px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.022800px;}
.ls5{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.247800px;}
.lsd{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.270600px;}
.ls9{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.406080px;}
.lse{letter-spacing:0.567600px;}
.lsc{letter-spacing:2.988000px;}
.ls4{letter-spacing:35.585280px;}
.lsf{letter-spacing:59.489280px;}
.ls0{letter-spacing:846.156000px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.550600px;}
.wsc{word-spacing:-17.527800px;}
.wse{word-spacing:-17.302800px;}
.wsf{word-spacing:-17.280000px;}
.ws8{word-spacing:-17.127600px;}
.ws4{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.254600px;}
.ws2{word-spacing:-16.145400px;}
.ws5{word-spacing:-15.948000px;}
.wsb{word-spacing:-13.500000px;}
.ws0{word-spacing:0.000000px;}
._16{margin-left:-2.268000px;}
._0{margin-left:-1.202400px;}
._1{width:1.274400px;}
._3{width:3.276000px;}
._2{width:4.371840px;}
._e{width:5.430240px;}
._4{width:6.557760px;}
._5{width:7.760160px;}
._d{width:9.273600px;}
._f{width:10.460160px;}
._9{width:11.469600px;}
._8{width:12.519360px;}
._7{width:14.175360px;}
._6{width:15.301440px;}
._11{width:18.149760px;}
._10{width:19.275840px;}
._14{width:24.575040px;}
._12{width:26.760960px;}
._13{width:28.559520px;}
._c{width:30.867840px;}
._a{width:31.993920px;}
._b{width:33.998880px;}
._15{width:846.156000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y24{bottom:3.156000px;}
.y26{bottom:7.353150px;}
.y29{bottom:8.377500px;}
.y23{bottom:21.156000px;}
.y55{bottom:113.400000px;}
.y54{bottom:132.300000px;}
.ye0{bottom:141.660000px;}
.y53{bottom:151.410000px;}
.y84{bottom:151.590000px;}
.yad{bottom:159.150000px;}
.ydf{bottom:161.670000px;}
.y83{bottom:170.670000px;}
.y52{bottom:179.310000px;}
.yde{bottom:181.470000px;}
.yac{bottom:185.970000px;}
.y82{bottom:189.570000px;}
.ydd{bottom:201.270000px;}
.yab{bottom:205.050000px;}
.y51{bottom:207.390000px;}
.y81{bottom:208.650000px;}
.ydc{bottom:221.070000px;}
.yaa{bottom:223.950000px;}
.y21{bottom:233.670000px;}
.y80{bottom:236.550000px;}
.ydb{bottom:240.870000px;}
.ya9{bottom:243.030000px;}
.y50{bottom:246.090000px;}
.y7f{bottom:255.450000px;}
.yda{bottom:260.850000px;}
.y20{bottom:261.570000px;}
.ya8{bottom:261.930000px;}
.y4f{bottom:273.990000px;}
.y7e{bottom:274.530000px;}
.yd9{bottom:280.650000px;}
.ya7{bottom:281.010000px;}
.y1f{bottom:289.650000px;}
.y7d{bottom:293.430000px;}
.yd8{bottom:300.450000px;}
.y4e{bottom:301.890000px;}
.ya6{bottom:308.550000px;}
.y7c{bottom:312.510000px;}
.y1e{bottom:319.350000px;}
.yd7{bottom:320.250000px;}
.y4d{bottom:320.970000px;}
.ya5{bottom:336.810000px;}
.yd6{bottom:340.050000px;}
.y7b{bottom:340.410000px;}
.y1d{bottom:347.250000px;}
.y4c{bottom:348.870000px;}
.y7a{bottom:359.310000px;}
.yd5{bottom:360.030000px;}
.ya4{bottom:364.890000px;}
.y1c{bottom:366.150000px;}
.y4b{bottom:376.950000px;}
.y79{bottom:378.390000px;}
.yd4{bottom:379.830000px;}
.ya3{bottom:383.790000px;}
.y1b{bottom:385.230000px;}
.y78{bottom:397.335000px;}
.yd3{bottom:399.675000px;}
.ya2{bottom:402.915000px;}
.y1a{bottom:404.175000px;}
.y4a{bottom:404.895000px;}
.y77{bottom:416.415000px;}
.yd2{bottom:419.475000px;}
.ya1{bottom:421.815000px;}
.y19{bottom:423.255000px;}
.y49{bottom:423.795000px;}
.yd1{bottom:439.275000px;}
.ya0{bottom:440.715000px;}
.y18{bottom:442.155000px;}
.y76{bottom:444.315000px;}
.y48{bottom:451.875000px;}
.yd0{bottom:459.255000px;}
.y9f{bottom:459.795000px;}
.y75{bottom:463.395000px;}
.y17{bottom:470.235000px;}
.y9e{bottom:478.695000px;}
.ycf{bottom:479.055000px;}
.y47{bottom:479.775000px;}
.y74{bottom:491.295000px;}
.y9d{bottom:497.775000px;}
.yce{bottom:498.855000px;}
.y16{bottom:499.755000px;}
.y46{bottom:507.495000px;}
.y73{bottom:510.195000px;}
.ycd{bottom:518.655000px;}
.y9c{bottom:525.675000px;}
.y15{bottom:527.835000px;}
.y72{bottom:529.275000px;}
.y45{bottom:535.755000px;}
.ycc{bottom:538.455000px;}
.y9b{bottom:544.575000px;}
.yfd{bottom:545.115000px;}
.y71{bottom:548.175000px;}
.y44{bottom:554.655000px;}
.y14{bottom:555.915000px;}
.ycb{bottom:558.435000px;}
.yfc{bottom:565.455000px;}
.y9a{bottom:572.655000px;}
.y70{bottom:576.255000px;}
.yca{bottom:578.235000px;}
.y43{bottom:582.735000px;}
.y13{bottom:585.435000px;}
.y99{bottom:591.555000px;}
.y6f{bottom:595.155000px;}
.yc9{bottom:598.035000px;}
.y42{bottom:601.635000px;}
.y12{bottom:604.515000px;}
.yfb{bottom:605.235000px;}
.y98{bottom:610.635000px;}
.y6e{bottom:614.055000px;}
.yc8{bottom:617.835000px;}
.y41{bottom:620.715000px;}
.y11{bottom:623.415000px;}
.yfa{bottom:625.035000px;}
.yc7{bottom:637.635000px;}
.y97{bottom:638.535000px;}
.y40{bottom:639.615000px;}
.y6d{bottom:642.165000px;}
.y10{bottom:642.345000px;}
.yf9{bottom:644.865000px;}
.y96{bottom:657.465000px;}
.yc6{bottom:657.645000px;}
.y6c{bottom:661.065000px;}
.yf{bottom:661.425000px;}
.yf8{bottom:664.665000px;}
.y3f{bottom:667.545000px;}
.yc5{bottom:677.445000px;}
.y6b{bottom:680.145000px;}
.ye{bottom:680.325000px;}
.yf7{bottom:684.645000px;}
.y95{bottom:685.545000px;}
.y3e{bottom:686.625000px;}
.yc4{bottom:697.245000px;}
.y6a{bottom:699.045000px;}
.yd{bottom:699.405000px;}
.yf6{bottom:704.445000px;}
.y94{bottom:713.445000px;}
.y3d{bottom:714.165000px;}
.yc3{bottom:717.045000px;}
.yf5{bottom:724.245000px;}
.y69{bottom:726.945000px;}
.yc{bottom:727.485000px;}
.y93{bottom:732.525000px;}
.yc2{bottom:736.845000px;}
.y3c{bottom:742.605000px;}
.yf4{bottom:744.045000px;}
.y68{bottom:746.025000px;}
.y92{bottom:751.425000px;}
.yc1{bottom:756.825000px;}
.yb{bottom:757.005000px;}
.yf3{bottom:763.845000px;}
.y67{bottom:764.925000px;}
.y91{bottom:770.325000px;}
.yc0{bottom:776.625000px;}
.y3b{bottom:781.305000px;}
.yf2{bottom:783.825000px;}
.ya{bottom:784.905000px;}
.y90{bottom:789.405000px;}
.y66{bottom:793.005000px;}
.ybf{bottom:796.425000px;}
.y3a{bottom:800.205000px;}
.yf1{bottom:803.625000px;}
.y65{bottom:811.905000px;}
.y9{bottom:813.345000px;}
.ybe{bottom:816.225000px;}
.y8f{bottom:817.305000px;}
.y39{bottom:819.105000px;}
.yf0{bottom:823.425000px;}
.y64{bottom:830.805000px;}
.y8{bottom:834.045000px;}
.ybd{bottom:836.025000px;}
.y8e{bottom:836.385000px;}
.yef{bottom:843.225000px;}
.y38{bottom:847.185000px;}
.y7{bottom:854.745000px;}
.ybc{bottom:856.005000px;}
.y63{bottom:858.885000px;}
.yee{bottom:863.025000px;}
.y8d{bottom:865.545000px;}
.y37{bottom:866.085000px;}
.y6{bottom:875.445000px;}
.ybb{bottom:875.805000px;}
.y62{bottom:877.785000px;}
.yed{bottom:883.005000px;}
.y8c{bottom:884.625000px;}
.y36{bottom:885.165000px;}
.yba{bottom:895.650000px;}
.yec{bottom:902.850000px;}
.y35{bottom:904.110000px;}
.y61{bottom:905.910000px;}
.y5{bottom:909.510000px;}
.y8b{bottom:913.650000px;}
.yb9{bottom:915.450000px;}
.yeb{bottom:922.650000px;}
.y34{bottom:923.190000px;}
.y60{bottom:924.810000px;}
.y8a{bottom:932.730000px;}
.yb8{bottom:935.250000px;}
.yae{bottom:940.830000px;}
.y33{bottom:942.090000px;}
.yea{bottom:942.450000px;}
.y5f{bottom:943.710000px;}
.y4{bottom:944.070000px;}
.y89{bottom:951.630000px;}
.yb7{bottom:955.230000px;}
.ye9{bottom:962.250000px;}
.y32{bottom:969.990000px;}
.y88{bottom:970.530000px;}
.y5e{bottom:971.790000px;}
.yb6{bottom:975.030000px;}
.y3{bottom:978.630000px;}
.ye8{bottom:982.230000px;}
.y31{bottom:989.070000px;}
.y87{bottom:989.610000px;}
.y5d{bottom:990.690000px;}
.yb5{bottom:994.830000px;}
.ye7{bottom:1002.030000px;}
.y30{bottom:1007.970000px;}
.y5c{bottom:1009.770000px;}
.y2{bottom:1013.190000px;}
.yb4{bottom:1014.630000px;}
.y86{bottom:1018.770000px;}
.ye6{bottom:1021.830000px;}
.y2f{bottom:1027.050000px;}
.yb3{bottom:1034.430000px;}
.y5b{bottom:1037.670000px;}
.ye5{bottom:1041.630000px;}
.y1{bottom:1047.570000px;}
.yb2{bottom:1054.410000px;}
.y2e{bottom:1054.950000px;}
.y5a{bottom:1056.750000px;}
.ye4{bottom:1061.430000px;}
.y85{bottom:1065.750000px;}
.y2d{bottom:1073.850000px;}
.yb1{bottom:1074.210000px;}
.ye3{bottom:1081.410000px;}
.y59{bottom:1084.650000px;}
.y2c{bottom:1092.930000px;}
.ye2{bottom:1101.210000px;}
.yb0{bottom:1102.650000px;}
.y58{bottom:1103.550000px;}
.y2b{bottom:1111.830000px;}
.ye1{bottom:1121.010000px;}
.y57{bottom:1122.630000px;}
.y2a{bottom:1139.940000px;}
.yaf{bottom:1140.840000px;}
.y56{bottom:1141.560000px;}
.y28{bottom:1175.752500px;}
.y22{bottom:1208.879791px;}
.y27{bottom:1212.102000px;}
.y25{bottom:1213.273500px;}
.ha{height:27.000000px;}
.h8{height:36.300195px;}
.hf{height:60.226875px;}
.h5{height:64.978594px;}
.h4{height:65.010937px;}
.h9{height:65.156250px;}
.hd{height:66.757500px;}
.h10{height:67.837500px;}
.he{height:68.084282px;}
.h11{height:69.660000px;}
.h7{height:70.628906px;}
.h3{height:70.664062px;}
.h6{height:72.562500px;}
.hc{height:74.953125px;}
.hb{height:78.187500px;}
.h2{height:121.179375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:105.000000px;}
.w2{width:286.410000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:5.686500px;}
.xe{left:13.539000px;}
.xc{left:27.525000px;}
.xb{left:37.521900px;}
.x13{left:52.380000px;}
.x11{left:79.380000px;}
.x10{left:87.300000px;}
.x8{left:106.416000px;}
.x2{left:135.396000px;}
.x1{left:168.510000px;}
.xa{left:303.285004px;}
.x3{left:322.815000px;}
.x12{left:457.305000px;}
.x7{left:577.725000px;}
.x6{left:636.270000px;}
.x4{left:659.670000px;}
.xd{left:758.038500px;}
.x5{left:786.750000px;}
.x9{left:808.170000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.020267pt;}
.ls5{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.220267pt;}
.lsd{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.240533pt;}
.ls9{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.360960pt;}
.lse{letter-spacing:0.504533pt;}
.lsc{letter-spacing:2.656000pt;}
.ls4{letter-spacing:31.631360pt;}
.lsf{letter-spacing:52.879360pt;}
.ls0{letter-spacing:752.138667pt;}
.wsa{word-spacing:-58.880000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.600533pt;}
.wsc{word-spacing:-15.580267pt;}
.wse{word-spacing:-15.380267pt;}
.wsf{word-spacing:-15.360000pt;}
.ws8{word-spacing:-15.224533pt;}
.ws4{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.448533pt;}
.ws2{word-spacing:-14.351467pt;}
.ws5{word-spacing:-14.176000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws0{word-spacing:0.000000pt;}
._16{margin-left:-2.016000pt;}
._0{margin-left:-1.068800pt;}
._1{width:1.132800pt;}
._3{width:2.912000pt;}
._2{width:3.886080pt;}
._e{width:4.826880pt;}
._4{width:5.829120pt;}
._5{width:6.897920pt;}
._d{width:8.243200pt;}
._f{width:9.297920pt;}
._9{width:10.195200pt;}
._8{width:11.128320pt;}
._7{width:12.600320pt;}
._6{width:13.601280pt;}
._11{width:16.133120pt;}
._10{width:17.134080pt;}
._14{width:21.844480pt;}
._12{width:23.787520pt;}
._13{width:25.386240pt;}
._c{width:27.438080pt;}
._a{width:28.439040pt;}
._b{width:30.221227pt;}
._15{width:752.138667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:2.805333pt;}
.y26{bottom:6.536133pt;}
.y29{bottom:7.446667pt;}
.y23{bottom:18.805333pt;}
.y55{bottom:100.800000pt;}
.y54{bottom:117.600000pt;}
.ye0{bottom:125.920000pt;}
.y53{bottom:134.586667pt;}
.y84{bottom:134.746667pt;}
.yad{bottom:141.466667pt;}
.ydf{bottom:143.706667pt;}
.y83{bottom:151.706667pt;}
.y52{bottom:159.386667pt;}
.yde{bottom:161.306667pt;}
.yac{bottom:165.306667pt;}
.y82{bottom:168.506667pt;}
.ydd{bottom:178.906667pt;}
.yab{bottom:182.266667pt;}
.y51{bottom:184.346667pt;}
.y81{bottom:185.466667pt;}
.ydc{bottom:196.506667pt;}
.yaa{bottom:199.066667pt;}
.y21{bottom:207.706667pt;}
.y80{bottom:210.266667pt;}
.ydb{bottom:214.106667pt;}
.ya9{bottom:216.026667pt;}
.y50{bottom:218.746667pt;}
.y7f{bottom:227.066667pt;}
.yda{bottom:231.866667pt;}
.y20{bottom:232.506667pt;}
.ya8{bottom:232.826667pt;}
.y4f{bottom:243.546667pt;}
.y7e{bottom:244.026667pt;}
.yd9{bottom:249.466667pt;}
.ya7{bottom:249.786667pt;}
.y1f{bottom:257.466667pt;}
.y7d{bottom:260.826667pt;}
.yd8{bottom:267.066667pt;}
.y4e{bottom:268.346667pt;}
.ya6{bottom:274.266667pt;}
.y7c{bottom:277.786667pt;}
.y1e{bottom:283.866667pt;}
.yd7{bottom:284.666667pt;}
.y4d{bottom:285.306667pt;}
.ya5{bottom:299.386667pt;}
.yd6{bottom:302.266667pt;}
.y7b{bottom:302.586667pt;}
.y1d{bottom:308.666667pt;}
.y4c{bottom:310.106667pt;}
.y7a{bottom:319.386667pt;}
.yd5{bottom:320.026667pt;}
.ya4{bottom:324.346667pt;}
.y1c{bottom:325.466667pt;}
.y4b{bottom:335.066667pt;}
.y79{bottom:336.346667pt;}
.yd4{bottom:337.626667pt;}
.ya3{bottom:341.146667pt;}
.y1b{bottom:342.426667pt;}
.y78{bottom:353.186667pt;}
.yd3{bottom:355.266667pt;}
.ya2{bottom:358.146667pt;}
.y1a{bottom:359.266667pt;}
.y4a{bottom:359.906667pt;}
.y77{bottom:370.146667pt;}
.yd2{bottom:372.866667pt;}
.ya1{bottom:374.946667pt;}
.y19{bottom:376.226667pt;}
.y49{bottom:376.706667pt;}
.yd1{bottom:390.466667pt;}
.ya0{bottom:391.746667pt;}
.y18{bottom:393.026667pt;}
.y76{bottom:394.946667pt;}
.y48{bottom:401.666667pt;}
.yd0{bottom:408.226667pt;}
.y9f{bottom:408.706667pt;}
.y75{bottom:411.906667pt;}
.y17{bottom:417.986667pt;}
.y9e{bottom:425.506667pt;}
.ycf{bottom:425.826667pt;}
.y47{bottom:426.466667pt;}
.y74{bottom:436.706667pt;}
.y9d{bottom:442.466667pt;}
.yce{bottom:443.426667pt;}
.y16{bottom:444.226667pt;}
.y46{bottom:451.106667pt;}
.y73{bottom:453.506667pt;}
.ycd{bottom:461.026667pt;}
.y9c{bottom:467.266667pt;}
.y15{bottom:469.186667pt;}
.y72{bottom:470.466667pt;}
.y45{bottom:476.226667pt;}
.ycc{bottom:478.626667pt;}
.y9b{bottom:484.066667pt;}
.yfd{bottom:484.546667pt;}
.y71{bottom:487.266667pt;}
.y44{bottom:493.026667pt;}
.y14{bottom:494.146667pt;}
.ycb{bottom:496.386667pt;}
.yfc{bottom:502.626667pt;}
.y9a{bottom:509.026667pt;}
.y70{bottom:512.226667pt;}
.yca{bottom:513.986667pt;}
.y43{bottom:517.986667pt;}
.y13{bottom:520.386667pt;}
.y99{bottom:525.826667pt;}
.y6f{bottom:529.026667pt;}
.yc9{bottom:531.586667pt;}
.y42{bottom:534.786667pt;}
.y12{bottom:537.346667pt;}
.yfb{bottom:537.986667pt;}
.y98{bottom:542.786667pt;}
.y6e{bottom:545.826667pt;}
.yc8{bottom:549.186667pt;}
.y41{bottom:551.746667pt;}
.y11{bottom:554.146667pt;}
.yfa{bottom:555.586667pt;}
.yc7{bottom:566.786667pt;}
.y97{bottom:567.586667pt;}
.y40{bottom:568.546667pt;}
.y6d{bottom:570.813333pt;}
.y10{bottom:570.973333pt;}
.yf9{bottom:573.213333pt;}
.y96{bottom:584.413333pt;}
.yc6{bottom:584.573333pt;}
.y6c{bottom:587.613333pt;}
.yf{bottom:587.933333pt;}
.yf8{bottom:590.813333pt;}
.y3f{bottom:593.373333pt;}
.yc5{bottom:602.173333pt;}
.y6b{bottom:604.573333pt;}
.ye{bottom:604.733333pt;}
.yf7{bottom:608.573333pt;}
.y95{bottom:609.373333pt;}
.y3e{bottom:610.333333pt;}
.yc4{bottom:619.773333pt;}
.y6a{bottom:621.373333pt;}
.yd{bottom:621.693333pt;}
.yf6{bottom:626.173333pt;}
.y94{bottom:634.173333pt;}
.y3d{bottom:634.813333pt;}
.yc3{bottom:637.373333pt;}
.yf5{bottom:643.773333pt;}
.y69{bottom:646.173333pt;}
.yc{bottom:646.653333pt;}
.y93{bottom:651.133333pt;}
.yc2{bottom:654.973333pt;}
.y3c{bottom:660.093333pt;}
.yf4{bottom:661.373333pt;}
.y68{bottom:663.133333pt;}
.y92{bottom:667.933333pt;}
.yc1{bottom:672.733333pt;}
.yb{bottom:672.893333pt;}
.yf3{bottom:678.973333pt;}
.y67{bottom:679.933333pt;}
.y91{bottom:684.733333pt;}
.yc0{bottom:690.333333pt;}
.y3b{bottom:694.493333pt;}
.yf2{bottom:696.733333pt;}
.ya{bottom:697.693333pt;}
.y90{bottom:701.693333pt;}
.y66{bottom:704.893333pt;}
.ybf{bottom:707.933333pt;}
.y3a{bottom:711.293333pt;}
.yf1{bottom:714.333333pt;}
.y65{bottom:721.693333pt;}
.y9{bottom:722.973333pt;}
.ybe{bottom:725.533333pt;}
.y8f{bottom:726.493333pt;}
.y39{bottom:728.093333pt;}
.yf0{bottom:731.933333pt;}
.y64{bottom:738.493333pt;}
.y8{bottom:741.373333pt;}
.ybd{bottom:743.133333pt;}
.y8e{bottom:743.453333pt;}
.yef{bottom:749.533333pt;}
.y38{bottom:753.053333pt;}
.y7{bottom:759.773333pt;}
.ybc{bottom:760.893333pt;}
.y63{bottom:763.453333pt;}
.yee{bottom:767.133333pt;}
.y8d{bottom:769.373333pt;}
.y37{bottom:769.853333pt;}
.y6{bottom:778.173333pt;}
.ybb{bottom:778.493333pt;}
.y62{bottom:780.253333pt;}
.yed{bottom:784.893333pt;}
.y8c{bottom:786.333333pt;}
.y36{bottom:786.813333pt;}
.yba{bottom:796.133333pt;}
.yec{bottom:802.533333pt;}
.y35{bottom:803.653333pt;}
.y61{bottom:805.253333pt;}
.y5{bottom:808.453333pt;}
.y8b{bottom:812.133333pt;}
.yb9{bottom:813.733333pt;}
.yeb{bottom:820.133333pt;}
.y34{bottom:820.613333pt;}
.y60{bottom:822.053333pt;}
.y8a{bottom:829.093333pt;}
.yb8{bottom:831.333333pt;}
.yae{bottom:836.293333pt;}
.y33{bottom:837.413333pt;}
.yea{bottom:837.733333pt;}
.y5f{bottom:838.853333pt;}
.y4{bottom:839.173333pt;}
.y89{bottom:845.893333pt;}
.yb7{bottom:849.093333pt;}
.ye9{bottom:855.333333pt;}
.y32{bottom:862.213333pt;}
.y88{bottom:862.693333pt;}
.y5e{bottom:863.813333pt;}
.yb6{bottom:866.693333pt;}
.y3{bottom:869.893333pt;}
.ye8{bottom:873.093333pt;}
.y31{bottom:879.173333pt;}
.y87{bottom:879.653333pt;}
.y5d{bottom:880.613333pt;}
.yb5{bottom:884.293333pt;}
.ye7{bottom:890.693333pt;}
.y30{bottom:895.973333pt;}
.y5c{bottom:897.573333pt;}
.y2{bottom:900.613333pt;}
.yb4{bottom:901.893333pt;}
.y86{bottom:905.573333pt;}
.ye6{bottom:908.293333pt;}
.y2f{bottom:912.933333pt;}
.yb3{bottom:919.493333pt;}
.y5b{bottom:922.373333pt;}
.ye5{bottom:925.893333pt;}
.y1{bottom:931.173333pt;}
.yb2{bottom:937.253333pt;}
.y2e{bottom:937.733333pt;}
.y5a{bottom:939.333333pt;}
.ye4{bottom:943.493333pt;}
.y85{bottom:947.333333pt;}
.y2d{bottom:954.533333pt;}
.yb1{bottom:954.853333pt;}
.ye3{bottom:961.253333pt;}
.y59{bottom:964.133333pt;}
.y2c{bottom:971.493333pt;}
.ye2{bottom:978.853333pt;}
.yb0{bottom:980.133333pt;}
.y58{bottom:980.933333pt;}
.y2b{bottom:988.293333pt;}
.ye1{bottom:996.453333pt;}
.y57{bottom:997.893333pt;}
.y2a{bottom:1013.280000pt;}
.yaf{bottom:1014.080000pt;}
.y56{bottom:1014.720000pt;}
.y28{bottom:1045.113333pt;}
.y22{bottom:1074.559814pt;}
.y27{bottom:1077.424000pt;}
.y25{bottom:1078.465333pt;}
.ha{height:24.000000pt;}
.h8{height:32.266840pt;}
.hf{height:53.535000pt;}
.h5{height:57.758750pt;}
.h4{height:57.787500pt;}
.h9{height:57.916667pt;}
.hd{height:59.340000pt;}
.h10{height:60.300000pt;}
.he{height:60.519362pt;}
.h11{height:61.920000pt;}
.h7{height:62.781250pt;}
.h3{height:62.812500pt;}
.h6{height:64.500000pt;}
.hc{height:66.625000pt;}
.hb{height:69.500000pt;}
.h2{height:107.715000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:93.333333pt;}
.w2{width:254.586667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:5.054667pt;}
.xe{left:12.034667pt;}
.xc{left:24.466667pt;}
.xb{left:33.352800pt;}
.x13{left:46.560000pt;}
.x11{left:70.560000pt;}
.x10{left:77.600000pt;}
.x8{left:94.592000pt;}
.x2{left:120.352000pt;}
.x1{left:149.786667pt;}
.xa{left:269.586670pt;}
.x3{left:286.946667pt;}
.x12{left:406.493333pt;}
.x7{left:513.533333pt;}
.x6{left:565.573333pt;}
.x4{left:586.373333pt;}
.xd{left:673.812000pt;}
.x5{left:699.333333pt;}
.x9{left:718.373333pt;}
}




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