
    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_108f40ab8279ed590b6a0144.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_7a217bb78d4dd430800fb3f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_111c21ca857e5afe1745d53d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6e9597b9bf7399a37e3fe840.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_75124150f7e6ce7e2a075faf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b699f12ede5191aed1e240af.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5aa1829238119a446e1f75bd.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_0a02bf44efce5e283a254a72.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_71c5fd9170ad3e6db6152b29.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_f7b818d326e3c666c07ed080.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_34347f3f4a83398988f7bf4c.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v1{vertical-align:-92.880000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.262200px;}
.ls5{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.ls0{letter-spacing:0.187200px;}
.ls8{letter-spacing:0.360000px;}
.ls7{letter-spacing:40.661280px;}
.ls2{letter-spacing:81.300000px;}
.ls1{letter-spacing:255.744000px;}
.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;}
}
.ws0{word-spacing:-21.795720px;}
.ws6{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.060000px;}
.ws2{word-spacing:-19.800000px;}
.ws1{word-spacing:-19.620000px;}
.ws3{word-spacing:-14.970240px;}
.ws5{word-spacing:0.000000px;}
._1b{margin-left:-5.644080px;}
._5{margin-left:-4.435680px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.657200px;}
._2{width:1.236000px;}
._6{width:2.424000px;}
._b{width:3.473040px;}
._e{width:5.896800px;}
._f{width:7.722480px;}
._12{width:9.771840px;}
._9{width:11.456640px;}
._a{width:12.665040px;}
._11{width:14.037600px;}
._10{width:15.697680px;}
._7{width:17.437680px;}
._8{width:18.491520px;}
._21{width:19.516080px;}
._22{width:22.070880px;}
._20{width:23.301840px;}
._23{width:24.761040px;}
._17{width:25.879920px;}
._18{width:27.152640px;}
._19{width:28.445520px;}
._1a{width:30.229200px;}
._d{width:32.658480px;}
._3{width:33.947760px;}
._4{width:35.269920px;}
._1e{width:38.160720px;}
._1f{width:39.929760px;}
._1c{width:43.467840px;}
._1d{width:44.956560px;}
._15{width:47.005920px;}
._16{width:48.578880px;}
._c{width:51.302160px;}
._13{width:74.548080px;}
._14{width:75.624240px;}
.fc4{color:rgb(36,63,96);}
.fc3{color:rgb(4,98,193);}
.fc2{color:rgb(30,78,120);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(196,88,17);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.860000px;}
.y4{bottom:7.200000px;}
.y8{bottom:11.340000px;}
.y7{bottom:12.780000px;}
.y5{bottom:19.440000px;}
.ya{bottom:22.320000px;}
.y3{bottom:35.640000px;}
.y2c{bottom:64.800000px;}
.y4b{bottom:71.100000px;}
.y2{bottom:72.720000px;}
.y2b{bottom:92.736000px;}
.y4a{bottom:99.036000px;}
.y49{bottom:126.756000px;}
.y2a{bottom:141.516000px;}
.y29{bottom:169.230000px;}
.y48{bottom:175.530000px;}
.y28{bottom:196.950000px;}
.y47{bottom:224.310000px;}
.y27{bottom:224.670000px;}
.y26{bottom:252.570000px;}
.y46{bottom:273.090000px;}
.y25{bottom:280.290000px;}
.y45{bottom:321.870000px;}
.y24{bottom:329.070000px;}
.y23{bottom:356.835000px;}
.y44{bottom:370.695000px;}
.y22{bottom:384.735000px;}
.y21{bottom:412.455000px;}
.y43{bottom:419.475000px;}
.y20{bottom:440.175000px;}
.y42{bottom:447.195000px;}
.y41{bottom:474.915000px;}
.y1f{bottom:488.955000px;}
.y40{bottom:502.635000px;}
.y1e{bottom:516.675000px;}
.y3f{bottom:530.535000px;}
.y1d{bottom:544.575000px;}
.y1c{bottom:572.295000px;}
.y3e{bottom:579.315000px;}
.y1b{bottom:600.015000px;}
.y3d{bottom:607.065000px;}
.y3c{bottom:634.785000px;}
.y1a{bottom:648.825000px;}
.y3b{bottom:662.505000px;}
.y19{bottom:676.545000px;}
.y3a{bottom:690.405000px;}
.y18{bottom:704.445000px;}
.y56{bottom:715.065000px;}
.y39{bottom:718.125000px;}
.y17{bottom:732.165000px;}
.y55{bottom:742.965000px;}
.y16{bottom:762.945000px;}
.y38{bottom:766.905000px;}
.y54{bottom:770.685000px;}
.y15{bottom:790.665000px;}
.y37{bottom:794.625000px;}
.y53{bottom:798.405000px;}
.y14{bottom:818.385000px;}
.y36{bottom:822.345000px;}
.y52{bottom:826.125000px;}
.y13{bottom:846.285000px;}
.y35{bottom:850.245000px;}
.y51{bottom:854.025000px;}
.y12{bottom:874.050000px;}
.y34{bottom:878.010000px;}
.y50{bottom:881.790000px;}
.y11{bottom:901.770000px;}
.y33{bottom:905.730000px;}
.y4f{bottom:909.510000px;}
.y10{bottom:932.550000px;}
.y32{bottom:933.630000px;}
.y4e{bottom:937.230000px;}
.yf{bottom:960.270000px;}
.y31{bottom:982.410000px;}
.y4d{bottom:986.010000px;}
.ye{bottom:988.170000px;}
.y30{bottom:1010.130000px;}
.y4c{bottom:1016.790000px;}
.y2f{bottom:1037.850000px;}
.yd{bottom:1039.110000px;}
.yc{bottom:1062.690000px;}
.y2e{bottom:1065.570000px;}
.yb{bottom:1090.410000px;}
.y2d{bottom:1093.470000px;}
.y1{bottom:1165.320000px;}
.y9{bottom:1256.580000px;}
.h5{height:19.440000px;}
.h7{height:26.100000px;}
.h3{height:48.224531px;}
.h8{height:58.651172px;}
.he{height:58.819922px;}
.hc{height:59.436914px;}
.ha{height:65.010937px;}
.h6{height:65.884219px;}
.h4{height:75.849609px;}
.h9{height:82.635820px;}
.hd{height:82.676953px;}
.hb{height:84.898125px;}
.hf{height:86.585445px;}
.h2{height:92.340000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:64.836000px;}
.w3{width:207.255000px;}
.w2{width:625.470000px;}
.w1{width:893.250000px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.x6{left:4.500000px;}
.x4{left:62.280000px;}
.x7{left:63.899987px;}
.x8{left:110.195987px;}
.x1{left:137.736000px;}
.xa{left:281.954987px;}
.xb{left:286.094987px;}
.x9{left:326.234987px;}
.xd{left:329.834987px;}
.x2{left:340.269000px;}
.xc{left:452.084987px;}
.x5{left:752.550000px;}
@media print{
.v1{vertical-align:-82.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.ls0{letter-spacing:0.166400pt;}
.ls8{letter-spacing:0.320000pt;}
.ls7{letter-spacing:36.143360pt;}
.ls2{letter-spacing:72.266667pt;}
.ls1{letter-spacing:227.328000pt;}
.ws0{word-spacing:-19.373973pt;}
.ws6{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws2{word-spacing:-17.600000pt;}
.ws1{word-spacing:-17.440000pt;}
.ws3{word-spacing:-13.306880pt;}
.ws5{word-spacing:0.000000pt;}
._1b{margin-left:-5.016960pt;}
._5{margin-left:-3.942827pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-1.473067pt;}
._2{width:1.098667pt;}
._6{width:2.154667pt;}
._b{width:3.087147pt;}
._e{width:5.241600pt;}
._f{width:6.864427pt;}
._12{width:8.686080pt;}
._9{width:10.183680pt;}
._a{width:11.257813pt;}
._11{width:12.477867pt;}
._10{width:13.953493pt;}
._7{width:15.500160pt;}
._8{width:16.436907pt;}
._21{width:17.347627pt;}
._22{width:19.618560pt;}
._20{width:20.712747pt;}
._23{width:22.009813pt;}
._17{width:23.004373pt;}
._18{width:24.135680pt;}
._19{width:25.284907pt;}
._1a{width:26.870400pt;}
._d{width:29.029760pt;}
._3{width:30.175787pt;}
._4{width:31.351040pt;}
._1e{width:33.920640pt;}
._1f{width:35.493120pt;}
._1c{width:38.638080pt;}
._1d{width:39.961387pt;}
._15{width:41.783040pt;}
._16{width:43.181227pt;}
._c{width:45.601920pt;}
._13{width:66.264960pt;}
._14{width:67.221547pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.320000pt;}
.y4{bottom:6.400000pt;}
.y8{bottom:10.080000pt;}
.y7{bottom:11.360000pt;}
.y5{bottom:17.280000pt;}
.ya{bottom:19.840000pt;}
.y3{bottom:31.680000pt;}
.y2c{bottom:57.600000pt;}
.y4b{bottom:63.200000pt;}
.y2{bottom:64.640000pt;}
.y2b{bottom:82.432000pt;}
.y4a{bottom:88.032000pt;}
.y49{bottom:112.672000pt;}
.y2a{bottom:125.792000pt;}
.y29{bottom:150.426667pt;}
.y48{bottom:156.026667pt;}
.y28{bottom:175.066667pt;}
.y47{bottom:199.386667pt;}
.y27{bottom:199.706667pt;}
.y26{bottom:224.506667pt;}
.y46{bottom:242.746667pt;}
.y25{bottom:249.146667pt;}
.y45{bottom:286.106667pt;}
.y24{bottom:292.506667pt;}
.y23{bottom:317.186667pt;}
.y44{bottom:329.506667pt;}
.y22{bottom:341.986667pt;}
.y21{bottom:366.626667pt;}
.y43{bottom:372.866667pt;}
.y20{bottom:391.266667pt;}
.y42{bottom:397.506667pt;}
.y41{bottom:422.146667pt;}
.y1f{bottom:434.626667pt;}
.y40{bottom:446.786667pt;}
.y1e{bottom:459.266667pt;}
.y3f{bottom:471.586667pt;}
.y1d{bottom:484.066667pt;}
.y1c{bottom:508.706667pt;}
.y3e{bottom:514.946667pt;}
.y1b{bottom:533.346667pt;}
.y3d{bottom:539.613333pt;}
.y3c{bottom:564.253333pt;}
.y1a{bottom:576.733333pt;}
.y3b{bottom:588.893333pt;}
.y19{bottom:601.373333pt;}
.y3a{bottom:613.693333pt;}
.y18{bottom:626.173333pt;}
.y56{bottom:635.613333pt;}
.y39{bottom:638.333333pt;}
.y17{bottom:650.813333pt;}
.y55{bottom:660.413333pt;}
.y16{bottom:678.173333pt;}
.y38{bottom:681.693333pt;}
.y54{bottom:685.053333pt;}
.y15{bottom:702.813333pt;}
.y37{bottom:706.333333pt;}
.y53{bottom:709.693333pt;}
.y14{bottom:727.453333pt;}
.y36{bottom:730.973333pt;}
.y52{bottom:734.333333pt;}
.y13{bottom:752.253333pt;}
.y35{bottom:755.773333pt;}
.y51{bottom:759.133333pt;}
.y12{bottom:776.933333pt;}
.y34{bottom:780.453333pt;}
.y50{bottom:783.813333pt;}
.y11{bottom:801.573333pt;}
.y33{bottom:805.093333pt;}
.y4f{bottom:808.453333pt;}
.y10{bottom:828.933333pt;}
.y32{bottom:829.893333pt;}
.y4e{bottom:833.093333pt;}
.yf{bottom:853.573333pt;}
.y31{bottom:873.253333pt;}
.y4d{bottom:876.453333pt;}
.ye{bottom:878.373333pt;}
.y30{bottom:897.893333pt;}
.y4c{bottom:903.813333pt;}
.y2f{bottom:922.533333pt;}
.yd{bottom:923.653333pt;}
.yc{bottom:944.613333pt;}
.y2e{bottom:947.173333pt;}
.yb{bottom:969.253333pt;}
.y2d{bottom:971.973333pt;}
.y1{bottom:1035.840000pt;}
.y9{bottom:1116.960000pt;}
.h5{height:17.280000pt;}
.h7{height:23.200000pt;}
.h3{height:42.866250pt;}
.h8{height:52.134375pt;}
.he{height:52.284375pt;}
.hc{height:52.832812pt;}
.ha{height:57.787500pt;}
.h6{height:58.563750pt;}
.h4{height:67.421875pt;}
.h9{height:73.454062pt;}
.hd{height:73.490625pt;}
.hb{height:75.465000pt;}
.hf{height:76.964840pt;}
.h2{height:82.080000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:57.632000pt;}
.w3{width:184.226667pt;}
.w2{width:555.973333pt;}
.w1{width:794.000000pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.x6{left:4.000000pt;}
.x4{left:55.360000pt;}
.x7{left:56.799988pt;}
.x8{left:97.951988pt;}
.x1{left:122.432000pt;}
.xa{left:250.626655pt;}
.xb{left:254.306655pt;}
.x9{left:289.986655pt;}
.xd{left:293.186655pt;}
.x2{left:302.461333pt;}
.xc{left:401.853321pt;}
.x5{left:668.933333pt;}
}




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