
    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_c18c9f1bd265ce9e39c1eb34.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6c21c738f626f9adcae4817d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.688477;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_12cac31dd6b6cb1150fe5555.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952637;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_eb17386c993cc8e1f2568f3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_953dea94dce782f708057532.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.829102;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_d8dd59f05fe3cd2dda03df5d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c65fea84b79a3ecc710b6884.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.952637;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;}
.lse{letter-spacing:-1.524000px;}
.ls7{letter-spacing:-0.768000px;}
.ls10{letter-spacing:-0.036000px;}
.ls9{letter-spacing:-0.024000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.012000px;}
.lsd{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.732000px;}
.ls3{letter-spacing:0.744000px;}
.lsc{letter-spacing:0.756000px;}
.lsa{letter-spacing:0.864000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws5{word-spacing:-18.756000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.976000px;}
.ws6{word-spacing:-17.964000px;}
.ws0{word-spacing:-15.000000px;}
.ws2{word-spacing:-12.000000px;}
.ws1{word-spacing:0.000000px;}
._16{margin-left:-5.976000px;}
._c{margin-left:-4.032000px;}
._b{margin-left:-2.928000px;}
._0{margin-left:-1.056000px;}
._1{width:1.188000px;}
._3{width:2.304000px;}
._2{width:4.152000px;}
._8{width:5.280000px;}
._4{width:6.900000px;}
._5{width:8.400000px;}
._d{width:9.768000px;}
._7{width:11.760000px;}
._6{width:12.876000px;}
._14{width:13.896000px;}
._17{width:15.384000px;}
._1a{width:16.776000px;}
._a{width:19.896000px;}
._9{width:21.204000px;}
._18{width:22.440000px;}
._15{width:24.240000px;}
._f{width:25.392000px;}
._10{width:27.036000px;}
._11{width:28.440000px;}
._e{width:30.060000px;}
._19{width:31.980000px;}
._12{width:52.260000px;}
._13{width:53.364000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:39.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:132.000000px;}
.fs4{font-size:405.150000px;}
.y0{bottom:0.000000px;}
.y29{bottom:4.125000px;}
.y24{bottom:4.875000px;}
.y27{bottom:90.037500px;}
.y52{bottom:154.905000px;}
.y57{bottom:168.030000px;}
.y51{bottom:171.780000px;}
.y56{bottom:188.325000px;}
.y50{bottom:188.700000px;}
.y4f{bottom:205.575000px;}
.y55{bottom:208.575000px;}
.y4e{bottom:222.450000px;}
.y54{bottom:228.825000px;}
.y4d{bottom:238.950000px;}
.y22{bottom:240.075000px;}
.y75{bottom:244.575000px;}
.y53{bottom:249.075000px;}
.y21{bottom:260.325000px;}
.y74{bottom:264.825000px;}
.y4c{bottom:269.325000px;}
.y20{bottom:280.575000px;}
.y73{bottom:285.075000px;}
.y4b{bottom:289.575000px;}
.y1f{bottom:300.870000px;}
.y72{bottom:305.370000px;}
.y4a{bottom:309.855000px;}
.y1e{bottom:321.120000px;}
.y71{bottom:325.620000px;}
.y49{bottom:330.120000px;}
.y1d{bottom:341.370000px;}
.y70{bottom:345.870000px;}
.y48{bottom:350.370000px;}
.y1c{bottom:361.620000px;}
.y6f{bottom:366.120000px;}
.y47{bottom:370.620000px;}
.y1b{bottom:381.870000px;}
.y6e{bottom:386.370000px;}
.y46{bottom:390.870000px;}
.y1a{bottom:402.120000px;}
.y6d{bottom:406.620000px;}
.y45{bottom:411.120000px;}
.y19{bottom:422.400000px;}
.y6c{bottom:426.900000px;}
.y44{bottom:431.400000px;}
.y18{bottom:442.650000px;}
.y6b{bottom:447.150000px;}
.y43{bottom:451.650000px;}
.y23{bottom:458.025000px;}
.y17{bottom:462.900000px;}
.y6a{bottom:467.400000px;}
.y42{bottom:471.900000px;}
.y16{bottom:483.150000px;}
.y69{bottom:487.650000px;}
.y41{bottom:492.150000px;}
.y15{bottom:503.400000px;}
.y68{bottom:507.900000px;}
.y40{bottom:512.400000px;}
.y14{bottom:523.650000px;}
.y67{bottom:528.150000px;}
.y3f{bottom:532.650000px;}
.y13{bottom:546.195000px;}
.y66{bottom:548.445000px;}
.y3e{bottom:552.945000px;}
.y65{bottom:568.695000px;}
.y3d{bottom:573.195000px;}
.y12{bottom:576.570000px;}
.y64{bottom:588.945000px;}
.y3c{bottom:593.445000px;}
.y11{bottom:603.945000px;}
.y63{bottom:609.195000px;}
.y3b{bottom:613.695000px;}
.y10{bottom:620.820000px;}
.y62{bottom:629.445000px;}
.y3a{bottom:633.945000px;}
.yf{bottom:637.695000px;}
.y61{bottom:649.695000px;}
.y39{bottom:654.225000px;}
.ye{bottom:654.600000px;}
.y60{bottom:669.975000px;}
.yd{bottom:671.475000px;}
.y38{bottom:674.475000px;}
.yc{bottom:688.350000px;}
.y5f{bottom:690.225000px;}
.y37{bottom:694.725000px;}
.yb{bottom:708.225000px;}
.y5e{bottom:710.475000px;}
.y36{bottom:714.975000px;}
.y5d{bottom:730.725000px;}
.y35{bottom:735.225000px;}
.ya{bottom:735.600000px;}
.y5c{bottom:750.975000px;}
.y9{bottom:752.475000px;}
.y34{bottom:755.475000px;}
.y8{bottom:769.350000px;}
.y5b{bottom:771.225000px;}
.y33{bottom:775.755000px;}
.y7{bottom:786.255000px;}
.y5a{bottom:791.520000px;}
.y32{bottom:796.005000px;}
.y6{bottom:806.130000px;}
.y59{bottom:811.755000px;}
.y31{bottom:816.255000px;}
.y58{bottom:832.005000px;}
.y5{bottom:836.505000px;}
.y30{bottom:856.755000px;}
.y4{bottom:869.130000px;}
.y2f{bottom:877.005000px;}
.y3{bottom:896.175000px;}
.y2e{bottom:897.300000px;}
.y2d{bottom:917.550000px;}
.y2{bottom:928.050000px;}
.y2c{bottom:937.800000px;}
.y2b{bottom:958.050000px;}
.y1{bottom:965.175000px;}
.y2a{bottom:978.300000px;}
.y26{bottom:1050.330000px;}
.y28{bottom:1063.080000px;}
.y25{bottom:1067.205000px;}
.ha{height:16.875000px;}
.hb{height:32.639648px;}
.hd{height:48.761719px;}
.he{height:50.132812px;}
.h5{height:50.214844px;}
.h7{height:60.257812px;}
.h6{height:73.142578px;}
.hc{height:74.004654px;}
.h3{height:75.199219px;}
.h8{height:81.037500px;}
.h2{height:89.396484px;}
.h4{height:90.386719px;}
.h1{height:110.472656px;}
.h9{height:299.708130px;}
.h0{height:1188.000000px;}
.w3{width:7.125000px;}
.w2{width:95.662500px;}
.w4{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:10.875000px;}
.x8{left:140.325000px;}
.x5{left:151.199986px;}
.x1{left:181.949986px;}
.x6{left:205.199986px;}
.x10{left:209.699986px;}
.x7{left:235.994986px;}
.xe{left:259.244986px;}
.x11{left:307.994986px;}
.xb{left:334.274986px;}
.x3{left:354.524986px;}
.xf{left:367.274986px;}
.x4{left:379.274986px;}
.xa{left:382.649986px;}
.x14{left:390.149986px;}
.x13{left:447.569986px;}
.xc{left:451.694973px;}
.xd{left:456.194986px;}
.x2{left:459.194986px;}
.x12{left:760.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.354667pt;}
.ls7{letter-spacing:-0.682667pt;}
.ls10{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:-0.021333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.010667pt;}
.lsd{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.650667pt;}
.ls3{letter-spacing:0.661333pt;}
.lsc{letter-spacing:0.672000pt;}
.lsa{letter-spacing:0.768000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.672000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.978667pt;}
.ws6{word-spacing:-15.968000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws1{word-spacing:0.000000pt;}
._16{margin-left:-5.312000pt;}
._c{margin-left:-3.584000pt;}
._b{margin-left:-2.602667pt;}
._0{margin-left:-0.938667pt;}
._1{width:1.056000pt;}
._3{width:2.048000pt;}
._2{width:3.690667pt;}
._8{width:4.693333pt;}
._4{width:6.133333pt;}
._5{width:7.466667pt;}
._d{width:8.682667pt;}
._7{width:10.453333pt;}
._6{width:11.445333pt;}
._14{width:12.352000pt;}
._17{width:13.674667pt;}
._1a{width:14.912000pt;}
._a{width:17.685333pt;}
._9{width:18.848000pt;}
._18{width:19.946667pt;}
._15{width:21.546667pt;}
._f{width:22.570667pt;}
._10{width:24.032000pt;}
._11{width:25.280000pt;}
._e{width:26.720000pt;}
._19{width:28.426667pt;}
._12{width:46.453333pt;}
._13{width:47.434667pt;}
.fs6{font-size:34.666667pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:117.333333pt;}
.fs4{font-size:360.133333pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:3.666667pt;}
.y24{bottom:4.333333pt;}
.y27{bottom:80.033333pt;}
.y52{bottom:137.693333pt;}
.y57{bottom:149.360000pt;}
.y51{bottom:152.693333pt;}
.y56{bottom:167.400000pt;}
.y50{bottom:167.733333pt;}
.y4f{bottom:182.733333pt;}
.y55{bottom:185.400000pt;}
.y4e{bottom:197.733333pt;}
.y54{bottom:203.400000pt;}
.y4d{bottom:212.400000pt;}
.y22{bottom:213.400000pt;}
.y75{bottom:217.400000pt;}
.y53{bottom:221.400000pt;}
.y21{bottom:231.400000pt;}
.y74{bottom:235.400000pt;}
.y4c{bottom:239.400000pt;}
.y20{bottom:249.400000pt;}
.y73{bottom:253.400000pt;}
.y4b{bottom:257.400000pt;}
.y1f{bottom:267.440000pt;}
.y72{bottom:271.440000pt;}
.y4a{bottom:275.426667pt;}
.y1e{bottom:285.440000pt;}
.y71{bottom:289.440000pt;}
.y49{bottom:293.440000pt;}
.y1d{bottom:303.440000pt;}
.y70{bottom:307.440000pt;}
.y48{bottom:311.440000pt;}
.y1c{bottom:321.440000pt;}
.y6f{bottom:325.440000pt;}
.y47{bottom:329.440000pt;}
.y1b{bottom:339.440000pt;}
.y6e{bottom:343.440000pt;}
.y46{bottom:347.440000pt;}
.y1a{bottom:357.440000pt;}
.y6d{bottom:361.440000pt;}
.y45{bottom:365.440000pt;}
.y19{bottom:375.466667pt;}
.y6c{bottom:379.466667pt;}
.y44{bottom:383.466667pt;}
.y18{bottom:393.466667pt;}
.y6b{bottom:397.466667pt;}
.y43{bottom:401.466667pt;}
.y23{bottom:407.133333pt;}
.y17{bottom:411.466667pt;}
.y6a{bottom:415.466667pt;}
.y42{bottom:419.466667pt;}
.y16{bottom:429.466667pt;}
.y69{bottom:433.466667pt;}
.y41{bottom:437.466667pt;}
.y15{bottom:447.466667pt;}
.y68{bottom:451.466667pt;}
.y40{bottom:455.466667pt;}
.y14{bottom:465.466667pt;}
.y67{bottom:469.466667pt;}
.y3f{bottom:473.466667pt;}
.y13{bottom:485.506667pt;}
.y66{bottom:487.506667pt;}
.y3e{bottom:491.506667pt;}
.y65{bottom:505.506667pt;}
.y3d{bottom:509.506667pt;}
.y12{bottom:512.506667pt;}
.y64{bottom:523.506667pt;}
.y3c{bottom:527.506667pt;}
.y11{bottom:536.840000pt;}
.y63{bottom:541.506667pt;}
.y3b{bottom:545.506667pt;}
.y10{bottom:551.840000pt;}
.y62{bottom:559.506667pt;}
.y3a{bottom:563.506667pt;}
.yf{bottom:566.840000pt;}
.y61{bottom:577.506667pt;}
.y39{bottom:581.533333pt;}
.ye{bottom:581.866667pt;}
.y60{bottom:595.533333pt;}
.yd{bottom:596.866667pt;}
.y38{bottom:599.533333pt;}
.yc{bottom:611.866667pt;}
.y5f{bottom:613.533333pt;}
.y37{bottom:617.533333pt;}
.yb{bottom:629.533333pt;}
.y5e{bottom:631.533333pt;}
.y36{bottom:635.533333pt;}
.y5d{bottom:649.533333pt;}
.y35{bottom:653.533333pt;}
.ya{bottom:653.866667pt;}
.y5c{bottom:667.533333pt;}
.y9{bottom:668.866667pt;}
.y34{bottom:671.533333pt;}
.y8{bottom:683.866667pt;}
.y5b{bottom:685.533333pt;}
.y33{bottom:689.560000pt;}
.y7{bottom:698.893333pt;}
.y5a{bottom:703.573333pt;}
.y32{bottom:707.560000pt;}
.y6{bottom:716.560000pt;}
.y59{bottom:721.560000pt;}
.y31{bottom:725.560000pt;}
.y58{bottom:739.560000pt;}
.y5{bottom:743.560000pt;}
.y30{bottom:761.560000pt;}
.y4{bottom:772.560000pt;}
.y2f{bottom:779.560000pt;}
.y3{bottom:796.600000pt;}
.y2e{bottom:797.600000pt;}
.y2d{bottom:815.600000pt;}
.y2{bottom:824.933333pt;}
.y2c{bottom:833.600000pt;}
.y2b{bottom:851.600000pt;}
.y1{bottom:857.933333pt;}
.y2a{bottom:869.600000pt;}
.y26{bottom:933.626667pt;}
.y28{bottom:944.960000pt;}
.y25{bottom:948.626667pt;}
.ha{height:15.000000pt;}
.hb{height:29.013021pt;}
.hd{height:43.343750pt;}
.he{height:44.562500pt;}
.h5{height:44.635417pt;}
.h7{height:53.562500pt;}
.h6{height:65.015625pt;}
.hc{height:65.781915pt;}
.h3{height:66.843750pt;}
.h8{height:72.033333pt;}
.h2{height:79.463542pt;}
.h4{height:80.343750pt;}
.h1{height:98.197917pt;}
.h9{height:266.407227pt;}
.h0{height:1056.000000pt;}
.w3{width:6.333333pt;}
.w2{width:85.033333pt;}
.w4{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:9.666667pt;}
.x8{left:124.733333pt;}
.x5{left:134.399988pt;}
.x1{left:161.733321pt;}
.x6{left:182.399988pt;}
.x10{left:186.399988pt;}
.x7{left:209.773321pt;}
.xe{left:230.439988pt;}
.x11{left:273.773321pt;}
.xb{left:297.133321pt;}
.x3{left:315.133321pt;}
.xf{left:326.466655pt;}
.x4{left:337.133321pt;}
.xa{left:340.133321pt;}
.x14{left:346.799988pt;}
.x13{left:397.839988pt;}
.xc{left:401.506642pt;}
.xd{left:405.506655pt;}
.x2{left:408.173321pt;}
.x12{left:675.600000pt;}
}




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