
    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_a34743a7b10ff7004dc437c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_258702ae9f96405dbc58677c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.070000;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_6f698252a206952c247b33d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.911621;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.783691;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_9abd35864c93f983283301a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911621;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_a20a1e3a0624600b344bedd7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.876302;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_1dd615aeb3993e4426ae77cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107422;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_e5a438640f40d60be7cf349d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:46.380000px;}
.lsb{letter-spacing:-0.181200px;}
.lsc{letter-spacing:-0.106800px;}
.lsa{letter-spacing:0.000000px;}
.ls5{letter-spacing:14.256000px;}
.ls6{letter-spacing:14.400000px;}
.ls3{letter-spacing:29.694816px;}
.ls4{letter-spacing:29.808000px;}
.ls9{letter-spacing:30.180000px;}
.ls2{letter-spacing:35.925120px;}
.ls0{letter-spacing:35.940000px;}
.ls1{letter-spacing:36.181920px;}
.ls7{letter-spacing:61.344000px;}
.ls8{letter-spacing:65.484000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws0{word-spacing:-57.557280px;}
.ws2{word-spacing:-57.542400px;}
.ws1{word-spacing:-51.797280px;}
.ws7{word-spacing:-28.108080px;}
.ws3{word-spacing:-20.016000px;}
.ws5{word-spacing:-18.414720px;}
.ws8{word-spacing:-16.613280px;}
.ws6{word-spacing:-13.229520px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-35.898720px;}
._4{margin-left:-7.272000px;}
._8{margin-left:-3.075840px;}
._3{margin-left:-1.892160px;}
._1{width:1.500480px;}
._9{width:2.569680px;}
._0{width:5.912640px;}
._6{width:52.542240px;}
._5{width:205.401120px;}
._7{width:513.493440px;}
.fc5{color:transparent;}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(25,107,36);}
.fc4{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:72.144000px;}
.fs0{font-size:77.760000px;}
.fs1{font-size:144.000000px;}
.fs7{font-size:144.144000px;}
.fs2{font-size:210.240000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:16.344000px;}
.y27{bottom:68.868000px;}
.y31{bottom:93.492000px;}
.y26{bottom:94.788000px;}
.y30{bottom:111.492000px;}
.y32{bottom:111.744000px;}
.y25{bottom:119.628000px;}
.y2f{bottom:129.492000px;}
.y24{bottom:141.228000px;}
.y23{bottom:162.825000px;}
.y22{bottom:184.425000px;}
.y38{bottom:193.065000px;}
.y21{bottom:207.105000px;}
.y37{bottom:211.065000px;}
.y2c{bottom:214.920000px;}
.y2b{bottom:232.920000px;}
.y20{bottom:233.070000px;}
.y1f{bottom:258.990000px;}
.y34{bottom:268.050000px;}
.y1e{bottom:284.910000px;}
.y33{bottom:286.050000px;}
.y1d{bottom:310.830000px;}
.y2a{bottom:335.085000px;}
.y1c{bottom:335.670000px;}
.y36{bottom:350.565000px;}
.y29{bottom:353.085000px;}
.y1b{bottom:357.270000px;}
.y35{bottom:368.610000px;}
.y28{bottom:371.085000px;}
.y1a{bottom:379.950000px;}
.y19{bottom:405.870000px;}
.y2e{bottom:420.090000px;}
.y18{bottom:431.790000px;}
.y2d{bottom:438.090000px;}
.y17{bottom:471.930000px;}
.y16{bottom:525.090000px;}
.y1{bottom:559.230000px;}
.y15{bottom:591.195000px;}
.y14{bottom:598.320000px;}
.y39{bottom:609.915000px;}
.y12{bottom:658.260000px;}
.y11{bottom:684.180000px;}
.y13{bottom:684.750000px;}
.y10{bottom:710.100000px;}
.yf{bottom:736.050000px;}
.ye{bottom:761.970000px;}
.yd{bottom:813.810000px;}
.yc{bottom:839.730000px;}
.yb{bottom:865.650000px;}
.ya{bottom:891.570000px;}
.y9{bottom:917.490000px;}
.y8{bottom:943.410000px;}
.y7{bottom:969.330000px;}
.y6{bottom:995.295000px;}
.y5{bottom:1021.215000px;}
.y4{bottom:1054.470000px;}
.y3{bottom:1139.250000px;}
.y2{bottom:1198.695000px;}
.h8{height:41.691797px;}
.hb{height:43.269961px;}
.hd{height:53.603086px;}
.he{height:53.732250px;}
.h5{height:54.140625px;}
.ha{height:59.415469px;}
.h7{height:64.582031px;}
.h6{height:64.711195px;}
.h2{height:69.748594px;}
.h9{height:89.649961px;}
.h3{height:127.008000px;}
.hc{height:127.135008px;}
.h4{height:185.431680px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:31.247987px;}
.x2{left:53.999987px;}
.x9{left:58.247987px;}
.x1{left:68.075987px;}
.xb{left:79.883987px;}
.xa{left:102.923987px;}
.x6{left:136.439987px;}
.xf{left:511.409987px;}
.xe{left:519.509987px;}
.x3{left:559.439987px;}
.x8{left:564.119987px;}
.x4{left:581.039987px;}
.xc{left:585.539987px;}
.xd{left:593.819987px;}
.x1c{left:620.924987px;}
.x1b{left:632.264987px;}
.x10{left:642.704987px;}
.x11{left:656.204987px;}
.x15{left:660.779987px;}
.x16{left:673.094987px;}
.x17{left:695.414987px;}
.x7{left:705.239987px;}
.x1a{left:726.224987px;}
.x18{left:740.129987px;}
.x12{left:748.079987px;}
.x14{left:750.059987px;}
.x19{left:754.529987px;}
.x13{left:770.939987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:41.226667pt;}
.lsb{letter-spacing:-0.161067pt;}
.lsc{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:0.000000pt;}
.ls5{letter-spacing:12.672000pt;}
.ls6{letter-spacing:12.800000pt;}
.ls3{letter-spacing:26.395392pt;}
.ls4{letter-spacing:26.496000pt;}
.ls9{letter-spacing:26.826667pt;}
.ls2{letter-spacing:31.933440pt;}
.ls0{letter-spacing:31.946667pt;}
.ls1{letter-spacing:32.161707pt;}
.ls7{letter-spacing:54.528000pt;}
.ls8{letter-spacing:58.208000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws0{word-spacing:-51.162027pt;}
.ws2{word-spacing:-51.148800pt;}
.ws1{word-spacing:-46.042027pt;}
.ws7{word-spacing:-24.984960pt;}
.ws3{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.368640pt;}
.ws8{word-spacing:-14.767360pt;}
.ws6{word-spacing:-11.759573pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-31.909973pt;}
._4{margin-left:-6.464000pt;}
._8{margin-left:-2.734080pt;}
._3{margin-left:-1.681920pt;}
._1{width:1.333760pt;}
._9{width:2.284160pt;}
._0{width:5.255680pt;}
._6{width:46.704213pt;}
._5{width:182.578773pt;}
._7{width:456.438613pt;}
.fs5{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:64.128000pt;}
.fs0{font-size:69.120000pt;}
.fs1{font-size:128.000000pt;}
.fs7{font-size:128.128000pt;}
.fs2{font-size:186.880000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:14.528000pt;}
.y27{bottom:61.216000pt;}
.y31{bottom:83.104000pt;}
.y26{bottom:84.256000pt;}
.y30{bottom:99.104000pt;}
.y32{bottom:99.328000pt;}
.y25{bottom:106.336000pt;}
.y2f{bottom:115.104000pt;}
.y24{bottom:125.536000pt;}
.y23{bottom:144.733333pt;}
.y22{bottom:163.933333pt;}
.y38{bottom:171.613333pt;}
.y21{bottom:184.093333pt;}
.y37{bottom:187.613333pt;}
.y2c{bottom:191.040000pt;}
.y2b{bottom:207.040000pt;}
.y20{bottom:207.173333pt;}
.y1f{bottom:230.213333pt;}
.y34{bottom:238.266667pt;}
.y1e{bottom:253.253333pt;}
.y33{bottom:254.266667pt;}
.y1d{bottom:276.293333pt;}
.y2a{bottom:297.853333pt;}
.y1c{bottom:298.373333pt;}
.y36{bottom:311.613333pt;}
.y29{bottom:313.853333pt;}
.y1b{bottom:317.573333pt;}
.y35{bottom:327.653333pt;}
.y28{bottom:329.853333pt;}
.y1a{bottom:337.733333pt;}
.y19{bottom:360.773333pt;}
.y2e{bottom:373.413333pt;}
.y18{bottom:383.813333pt;}
.y2d{bottom:389.413333pt;}
.y17{bottom:419.493333pt;}
.y16{bottom:466.746667pt;}
.y1{bottom:497.093333pt;}
.y15{bottom:525.506667pt;}
.y14{bottom:531.840000pt;}
.y39{bottom:542.146667pt;}
.y12{bottom:585.120000pt;}
.y11{bottom:608.160000pt;}
.y13{bottom:608.666667pt;}
.y10{bottom:631.200000pt;}
.yf{bottom:654.266667pt;}
.ye{bottom:677.306667pt;}
.yd{bottom:723.386667pt;}
.yc{bottom:746.426667pt;}
.yb{bottom:769.466667pt;}
.ya{bottom:792.506667pt;}
.y9{bottom:815.546667pt;}
.y8{bottom:838.586667pt;}
.y7{bottom:861.626667pt;}
.y6{bottom:884.706667pt;}
.y5{bottom:907.746667pt;}
.y4{bottom:937.306667pt;}
.y3{bottom:1012.666667pt;}
.y2{bottom:1065.506667pt;}
.h8{height:37.059375pt;}
.hb{height:38.462187pt;}
.hd{height:47.647188pt;}
.he{height:47.762000pt;}
.h5{height:48.125000pt;}
.ha{height:52.813750pt;}
.h7{height:57.406250pt;}
.h6{height:57.521062pt;}
.h2{height:61.998750pt;}
.h9{height:79.688854pt;}
.h3{height:112.896000pt;}
.hc{height:113.008896pt;}
.h4{height:164.828160pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:27.775988pt;}
.x2{left:47.999988pt;}
.x9{left:51.775988pt;}
.x1{left:60.511988pt;}
.xb{left:71.007988pt;}
.xa{left:91.487988pt;}
.x6{left:121.279988pt;}
.xf{left:454.586655pt;}
.xe{left:461.786655pt;}
.x3{left:497.279988pt;}
.x8{left:501.439988pt;}
.x4{left:516.479988pt;}
.xc{left:520.479988pt;}
.xd{left:527.839988pt;}
.x1c{left:551.933322pt;}
.x1b{left:562.013322pt;}
.x10{left:571.293322pt;}
.x11{left:583.293322pt;}
.x15{left:587.359988pt;}
.x16{left:598.306655pt;}
.x17{left:618.146655pt;}
.x7{left:626.879988pt;}
.x1a{left:645.533322pt;}
.x18{left:657.893322pt;}
.x12{left:664.959988pt;}
.x14{left:666.719988pt;}
.x19{left:670.693322pt;}
.x13{left:685.279988pt;}
}




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