
    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_6a073be60d7b7d2db545e956.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_61f3b3e1b0899fc189b9143a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_8155255a15be03c4b96c4475.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_b2c915428b1b27a292f24a16.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_6ab4a7d8663a66561c2cc368.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_59f88115d46b4cb00a16a796.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-83.520000px;}
.v3{vertical-align:-18.720000px;}
.v4{vertical-align:-14.400000px;}
.v1{vertical-align:-2.880000px;}
.v6{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.720000px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.298075px;}
.ls3{letter-spacing:1.734913px;}
.ls7{letter-spacing:1.756513px;}
.ls4{letter-spacing:3.175201px;}
.ls1{letter-spacing:4.455938px;}
.ls2{letter-spacing:9.911809px;}
.ls5{letter-spacing:11.294497px;}
.ls6{letter-spacing:12.075265px;}
.ls0{letter-spacing:24.619971px;}
.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:-20.816640px;}
.ws5{word-spacing:-16.416000px;}
.wsa{word-spacing:-12.804480px;}
.wsc{word-spacing:-10.808640px;}
.ws1{word-spacing:-10.177920px;}
.ws2{word-spacing:-8.864640px;}
.wsb{word-spacing:-0.265035px;}
.wsd{word-spacing:0.000000px;}
.ws6{word-spacing:1.478311px;}
.ws7{word-spacing:2.192843px;}
.ws8{word-spacing:2.233451px;}
.ws9{word-spacing:12.253260px;}
.ws3{word-spacing:23.769507px;}
.ws4{word-spacing:49.652945px;}
._18{margin-left:-1603.066526px;}
._19{margin-left:-1591.531263px;}
._17{margin-left:-1172.391886px;}
._16{margin-left:-1135.712490px;}
._13{margin-left:-1114.121129px;}
._15{margin-left:-1095.397384px;}
._10{margin-left:-859.877889px;}
._f{margin-left:-851.236160px;}
._11{margin-left:-802.266366px;}
._14{margin-left:-448.072711px;}
._12{margin-left:-355.089322px;}
._d{margin-left:-343.567018px;}
._e{margin-left:-314.748298px;}
._0{margin-left:-2.171520px;}
._4{margin-left:-1.073927px;}
._1{width:1.722240px;}
._8{width:2.733408px;}
._2{width:3.743182px;}
._3{width:5.468551px;}
._7{width:7.343978px;}
._5{width:9.141142px;}
._c{width:10.784188px;}
._9{width:12.323527px;}
._a{width:14.442464px;}
._b{width:20.281170px;}
._6{width:676.460471px;}
.fc1{color:rgb(0,0,153);}
.fc3{color:rgb(192,192,192);}
.fc2{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:28.800000px;}
.fs6{font-size:30.240000px;}
.fs9{font-size:33.119400px;}
.fs3{font-size:38.880000px;}
.fs1{font-size:44.640000px;}
.fs7{font-size:56.160000px;}
.fs2{font-size:59.040000px;}
.fs8{font-size:66.239400px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:74.880000px;}
.y0{bottom:0.000000px;}
.y24{bottom:51.120000px;}
.y3a{bottom:81.360000px;}
.y39{bottom:91.440000px;}
.y38{bottom:101.520000px;}
.y37{bottom:111.600000px;}
.y36{bottom:121.680000px;}
.y35{bottom:131.760000px;}
.y34{bottom:141.840000px;}
.y33{bottom:151.920000px;}
.y32{bottom:162.000000px;}
.y31{bottom:172.080000px;}
.y28{bottom:189.360000px;}
.y29{bottom:189.720000px;}
.y30{bottom:216.360000px;}
.y2f{bottom:231.480000px;}
.y2e{bottom:246.960000px;}
.y2d{bottom:262.080000px;}
.y2c{bottom:277.560000px;}
.y2b{bottom:293.040000px;}
.y2a{bottom:308.160000px;}
.y26{bottom:330.480000px;}
.y27{bottom:331.200000px;}
.y3d{bottom:368.640000px;}
.y47{bottom:371.880000px;}
.y3e{bottom:384.480000px;}
.y48{bottom:395.640000px;}
.y3f{bottom:400.680000px;}
.y40{bottom:416.520000px;}
.y49{bottom:419.760000px;}
.y41{bottom:432.720000px;}
.y4a{bottom:443.880000px;}
.y42{bottom:448.560000px;}
.y4b{bottom:461.520000px;}
.y44{bottom:464.760000px;}
.y45{bottom:471.240000px;}
.y43{bottom:478.080000px;}
.y46{bottom:479.520000px;}
.y25{bottom:504.000000px;}
.y23{bottom:539.640000px;}
.y22{bottom:554.760000px;}
.y21{bottom:570.240000px;}
.y20{bottom:585.360000px;}
.y1f{bottom:600.840000px;}
.y1e{bottom:615.960000px;}
.y1d{bottom:631.440000px;}
.y1c{bottom:646.920000px;}
.y1b{bottom:662.040000px;}
.y1a{bottom:677.520000px;}
.y3b{bottom:707.400000px;}
.y3c{bottom:708.120000px;}
.y19{bottom:735.840000px;}
.y18{bottom:755.280000px;}
.y17{bottom:775.080000px;}
.y16{bottom:794.880000px;}
.y15{bottom:810.000000px;}
.y13{bottom:832.680000px;}
.y14{bottom:833.400000px;}
.y12{bottom:877.320000px;}
.y10{bottom:903.960000px;}
.y11{bottom:904.680000px;}
.yf{bottom:936.720000px;}
.ye{bottom:951.840000px;}
.yd{bottom:967.320000px;}
.yc{bottom:982.440000px;}
.yb{bottom:997.920000px;}
.ya{bottom:1013.040000px;}
.y9{bottom:1041.480000px;}
.y8{bottom:1061.640000px;}
.y3{bottom:1081.800000px;}
.y7{bottom:1092.240000px;}
.y6{bottom:1105.560000px;}
.y5{bottom:1118.880000px;}
.y4{bottom:1140.480000px;}
.y1{bottom:1176.120000px;}
.y2{bottom:1176.840000px;}
.h4{height:33.230880px;}
.ha{height:34.542499px;}
.h6{height:40.550625px;}
.h2{height:47.630880px;}
.h7{height:58.573125px;}
.h8{height:59.922720px;}
.h3{height:62.995680px;}
.h9{height:70.677440px;}
.h5{height:76.824000px;}
.h1{height:78.097500px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1a{left:21.600000px;}
.xd{left:36.720000px;}
.x12{left:43.560000px;}
.x28{left:61.920000px;}
.x13{left:72.000000px;}
.x8{left:216.360000px;}
.x1{left:230.040000px;}
.x9{left:261.720000px;}
.x7{left:270.000000px;}
.x26{left:424.080000px;}
.x25{left:425.160000px;}
.x27{left:426.600000px;}
.x24{left:499.680000px;}
.x2{left:515.520000px;}
.x3{left:531.360000px;}
.x17{left:543.600000px;}
.x4{left:576.720000px;}
.x1d{left:582.120000px;}
.x5{left:587.520000px;}
.x1e{left:603.000000px;}
.x1c{left:606.960000px;}
.x1b{left:609.840000px;}
.x22{left:672.480000px;}
.x21{left:683.640000px;}
.x20{left:692.280000px;}
.x14{left:730.080000px;}
.x15{left:743.040000px;}
.x16{left:749.520000px;}
.x18{left:762.120000px;}
.xa{left:768.240000px;}
.xe{left:771.120000px;}
.x19{left:772.200000px;}
.x6{left:777.600000px;}
.x23{left:792.000000px;}
.xf{left:793.080000px;}
.x1f{left:813.600000px;}
.x10{left:820.800000px;}
.x11{left:829.080000px;}
.xb{left:835.200000px;}
.xc{left:843.120000px;}
@media print{
.v5{vertical-align:-74.240000pt;}
.v3{vertical-align:-16.640000pt;}
.v4{vertical-align:-12.800000pt;}
.v1{vertical-align:-2.560000pt;}
.v6{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.640000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.264955pt;}
.ls3{letter-spacing:1.542145pt;}
.ls7{letter-spacing:1.561345pt;}
.ls4{letter-spacing:2.822401pt;}
.ls1{letter-spacing:3.960834pt;}
.ls2{letter-spacing:8.810497pt;}
.ls5{letter-spacing:10.039553pt;}
.ls6{letter-spacing:10.733569pt;}
.ls0{letter-spacing:21.884418pt;}
.ws0{word-spacing:-18.503680pt;}
.ws5{word-spacing:-14.592000pt;}
.wsa{word-spacing:-11.381760pt;}
.wsc{word-spacing:-9.607680pt;}
.ws1{word-spacing:-9.047040pt;}
.ws2{word-spacing:-7.879680pt;}
.wsb{word-spacing:-0.235587pt;}
.wsd{word-spacing:0.000000pt;}
.ws6{word-spacing:1.314054pt;}
.ws7{word-spacing:1.949194pt;}
.ws8{word-spacing:1.985290pt;}
.ws9{word-spacing:10.891787pt;}
.ws3{word-spacing:21.128451pt;}
.ws4{word-spacing:44.135951pt;}
._18{margin-left:-1424.948023pt;}
._19{margin-left:-1414.694456pt;}
._17{margin-left:-1042.126120pt;}
._16{margin-left:-1009.522214pt;}
._13{margin-left:-990.329892pt;}
._15{margin-left:-973.686563pt;}
._10{margin-left:-764.335901pt;}
._f{margin-left:-756.654365pt;}
._11{margin-left:-713.125659pt;}
._14{margin-left:-398.286854pt;}
._12{margin-left:-315.634953pt;}
._d{margin-left:-305.392905pt;}
._e{margin-left:-279.776265pt;}
._0{margin-left:-1.930240pt;}
._4{margin-left:-0.954602pt;}
._1{width:1.530880pt;}
._8{width:2.429696pt;}
._2{width:3.327273pt;}
._3{width:4.860935pt;}
._7{width:6.527981pt;}
._5{width:8.125459pt;}
._c{width:9.585945pt;}
._9{width:10.954246pt;}
._a{width:12.837746pt;}
._b{width:18.027706pt;}
._6{width:601.298196pt;}
.fs4{font-size:25.600000pt;}
.fs6{font-size:26.880000pt;}
.fs9{font-size:29.439467pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:39.680000pt;}
.fs7{font-size:49.920000pt;}
.fs2{font-size:52.480000pt;}
.fs8{font-size:58.879467pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:66.560000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:45.440000pt;}
.y3a{bottom:72.320000pt;}
.y39{bottom:81.280000pt;}
.y38{bottom:90.240000pt;}
.y37{bottom:99.200000pt;}
.y36{bottom:108.160000pt;}
.y35{bottom:117.120000pt;}
.y34{bottom:126.080000pt;}
.y33{bottom:135.040000pt;}
.y32{bottom:144.000000pt;}
.y31{bottom:152.960000pt;}
.y28{bottom:168.320000pt;}
.y29{bottom:168.640000pt;}
.y30{bottom:192.320000pt;}
.y2f{bottom:205.760000pt;}
.y2e{bottom:219.520000pt;}
.y2d{bottom:232.960000pt;}
.y2c{bottom:246.720000pt;}
.y2b{bottom:260.480000pt;}
.y2a{bottom:273.920000pt;}
.y26{bottom:293.760000pt;}
.y27{bottom:294.400000pt;}
.y3d{bottom:327.680000pt;}
.y47{bottom:330.560000pt;}
.y3e{bottom:341.760000pt;}
.y48{bottom:351.680000pt;}
.y3f{bottom:356.160000pt;}
.y40{bottom:370.240000pt;}
.y49{bottom:373.120000pt;}
.y41{bottom:384.640000pt;}
.y4a{bottom:394.560000pt;}
.y42{bottom:398.720000pt;}
.y4b{bottom:410.240000pt;}
.y44{bottom:413.120000pt;}
.y45{bottom:418.880000pt;}
.y43{bottom:424.960000pt;}
.y46{bottom:426.240000pt;}
.y25{bottom:448.000000pt;}
.y23{bottom:479.680000pt;}
.y22{bottom:493.120000pt;}
.y21{bottom:506.880000pt;}
.y20{bottom:520.320000pt;}
.y1f{bottom:534.080000pt;}
.y1e{bottom:547.520000pt;}
.y1d{bottom:561.280000pt;}
.y1c{bottom:575.040000pt;}
.y1b{bottom:588.480000pt;}
.y1a{bottom:602.240000pt;}
.y3b{bottom:628.800000pt;}
.y3c{bottom:629.440000pt;}
.y19{bottom:654.080000pt;}
.y18{bottom:671.360000pt;}
.y17{bottom:688.960000pt;}
.y16{bottom:706.560000pt;}
.y15{bottom:720.000000pt;}
.y13{bottom:740.160000pt;}
.y14{bottom:740.800000pt;}
.y12{bottom:779.840000pt;}
.y10{bottom:803.520000pt;}
.y11{bottom:804.160000pt;}
.yf{bottom:832.640000pt;}
.ye{bottom:846.080000pt;}
.yd{bottom:859.840000pt;}
.yc{bottom:873.280000pt;}
.yb{bottom:887.040000pt;}
.ya{bottom:900.480000pt;}
.y9{bottom:925.760000pt;}
.y8{bottom:943.680000pt;}
.y3{bottom:961.600000pt;}
.y7{bottom:970.880000pt;}
.y6{bottom:982.720000pt;}
.y5{bottom:994.560000pt;}
.y4{bottom:1013.760000pt;}
.y1{bottom:1045.440000pt;}
.y2{bottom:1046.080000pt;}
.h4{height:29.538560pt;}
.ha{height:30.704444pt;}
.h6{height:36.045000pt;}
.h2{height:42.338560pt;}
.h7{height:52.065000pt;}
.h8{height:53.264640pt;}
.h3{height:55.996160pt;}
.h9{height:62.824391pt;}
.h5{height:68.288000pt;}
.h1{height:69.420000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1a{left:19.200000pt;}
.xd{left:32.640000pt;}
.x12{left:38.720000pt;}
.x28{left:55.040000pt;}
.x13{left:64.000000pt;}
.x8{left:192.320000pt;}
.x1{left:204.480000pt;}
.x9{left:232.640000pt;}
.x7{left:240.000000pt;}
.x26{left:376.960000pt;}
.x25{left:377.920000pt;}
.x27{left:379.200000pt;}
.x24{left:444.160000pt;}
.x2{left:458.240000pt;}
.x3{left:472.320000pt;}
.x17{left:483.200000pt;}
.x4{left:512.640000pt;}
.x1d{left:517.440000pt;}
.x5{left:522.240000pt;}
.x1e{left:536.000000pt;}
.x1c{left:539.520000pt;}
.x1b{left:542.080000pt;}
.x22{left:597.760000pt;}
.x21{left:607.680000pt;}
.x20{left:615.360000pt;}
.x14{left:648.960000pt;}
.x15{left:660.480000pt;}
.x16{left:666.240000pt;}
.x18{left:677.440000pt;}
.xa{left:682.880000pt;}
.xe{left:685.440000pt;}
.x19{left:686.400000pt;}
.x6{left:691.200000pt;}
.x23{left:704.000000pt;}
.xf{left:704.960000pt;}
.x1f{left:723.200000pt;}
.x10{left:729.600000pt;}
.x11{left:736.960000pt;}
.xb{left:742.400000pt;}
.xc{left:749.440000pt;}
}




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