
    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_a03c781d428968e2aedb7737.woff')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_97e21dae7c296760a622cb6a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_ed87f7152be2e19bfa03b275.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_3b5b69230ba44413a0032647.woff')format("woff");}.ff4{font-family:ff4;line-height:0.948242;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_4167ba5c9b8ae0a389915975.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_4f7ebeaca49db4f9100a4352.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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;}
.ls6{letter-spacing:-7.620000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.864900px;}
.ls3{letter-spacing:0.918000px;}
.ls5{letter-spacing:1.524000px;}
.ls7{letter-spacing:1.668000px;}
.ls1{letter-spacing:49.740000px;}
.ls2{letter-spacing:49.792500px;}
.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;}
}
.ws9{word-spacing:-100.246800px;}
.ws8{word-spacing:-73.934100px;}
.ws3{word-spacing:-46.370400px;}
.ws2{word-spacing:-46.328700px;}
.ws5{word-spacing:-41.033400px;}
.ws6{word-spacing:-40.938600px;}
.ws4{word-spacing:-40.115400px;}
.ws1{word-spacing:-33.818700px;}
.ws7{word-spacing:-30.065700px;}
.ws0{word-spacing:0.000000px;}
._d{margin-left:-39.807300px;}
._14{margin-left:-27.754650px;}
._13{margin-left:-26.673300px;}
._0{margin-left:-21.996600px;}
._c{margin-left:-19.824750px;}
._a{margin-left:-15.311400px;}
._12{margin-left:-14.181300px;}
._11{margin-left:-12.148650px;}
._b{margin-left:-10.386000px;}
._f{margin-left:-9.060000px;}
._e{margin-left:-8.038950px;}
._9{margin-left:-6.690750px;}
._6{margin-left:-5.048400px;}
._5{margin-left:-3.966600px;}
._2{margin-left:-2.163600px;}
._4{margin-left:-1.081800px;}
._3{width:1.803000px;}
._1{width:3.606000px;}
._8{width:5.288400px;}
._10{width:31.506300px;}
._7{width:48.733350px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(118,118,118);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:45.000000px;}
.fs2{font-size:94.650000px;}
.fsa{font-size:108.150000px;}
.fs6{font-size:121.650000px;}
.fs7{font-size:121.800000px;}
.fs1{font-size:144.150000px;}
.fs9{font-size:144.300000px;}
.fs4{font-size:166.650000px;}
.fs5{font-size:166.800000px;}
.fsb{font-size:265.800000px;}
.fs3{font-size:265.950000px;}
.fs8{font-size:360.450000px;}
.fs0{font-size:360.600000px;}
.y0{bottom:0.000000px;}
.y5{bottom:27.375000px;}
.y26{bottom:72.187500px;}
.y37{bottom:81.187500px;}
.y39{bottom:86.812500px;}
.y35{bottom:91.312500px;}
.y36{bottom:110.475000px;}
.y30{bottom:110.850000px;}
.ye{bottom:112.125000px;}
.y25{bottom:118.350000px;}
.y34{bottom:120.637500px;}
.y18{bottom:129.037500px;}
.y2f{bottom:140.137500px;}
.yd{bottom:143.662500px;}
.y33{bottom:149.925000px;}
.y24{bottom:156.675000px;}
.y2e{bottom:169.425000px;}
.y17{bottom:174.105000px;}
.y1d{bottom:189.870000px;}
.yc{bottom:190.980000px;}
.y23{bottom:196.095000px;}
.y2d{bottom:198.720000px;}
.y16{bottom:220.275000px;}
.yb{bottom:223.650000px;}
.y20{bottom:231.375000px;}
.y1c{bottom:234.945000px;}
.y4{bottom:240.000000px;}
.y2c{bottom:244.875000px;}
.ya{bottom:256.350000px;}
.y15{bottom:265.350000px;}
.y31{bottom:276.000000px;}
.y3c{bottom:279.975000px;}
.y2b{bottom:284.325000px;}
.y9{bottom:289.005000px;}
.y3{bottom:294.075000px;}
.y1b{bottom:295.755000px;}
.y1f{bottom:295.830000px;}
.y21{bottom:296.520000px;}
.y3f{bottom:308.745000px;}
.y14{bottom:310.425000px;}
.y3b{bottom:326.175000px;}
.y1a{bottom:340.845000px;}
.y2{bottom:348.150000px;}
.y13{bottom:356.580000px;}
.y29{bottom:367.275000px;}
.y3a{bottom:371.250000px;}
.y19{bottom:387.000000px;}
.y2a{bottom:392.025000px;}
.y1e{bottom:393.855000px;}
.y12{bottom:416.280000px;}
.y3e{bottom:420.345000px;}
.y1{bottom:421.005000px;}
.y8{bottom:446.745000px;}
.y11{bottom:462.495000px;}
.y38{bottom:470.925000px;}
.y32{bottom:484.425000px;}
.y7{bottom:492.900000px;}
.y10{bottom:507.570000px;}
.y3d{bottom:518.325000px;}
.yf{bottom:552.630000px;}
.y6{bottom:667.800000px;}
.y22{bottom:830.475000px;}
.y28{bottom:830.850000px;}
.y27{bottom:901.830000px;}
.h10{height:44.758301px;}
.h3{height:69.185083px;}
.hd{height:79.053003px;}
.h7{height:88.920923px;}
.h8{height:89.030566px;}
.h2{height:105.367456px;}
.hb{height:105.477100px;}
.hc{height:106.352856px;}
.h5{height:121.813989px;}
.h6{height:121.923633px;}
.he{height:194.288379px;}
.h4{height:194.398022px;}
.ha{height:263.473462px;}
.h9{height:263.583105px;}
.h12{height:271.041504px;}
.h1{height:271.154297px;}
.hf{height:402.150000px;}
.h11{height:494.580000px;}
.h0{height:810.000000px;}
.w6{width:486.375000px;}
.w2{width:487.500000px;}
.w3{width:609.120000px;}
.w4{width:612.480000px;}
.w5{width:613.620000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xc{left:94.575000px;}
.xd{left:105.824979px;}
.x6{left:109.874979px;}
.x9{left:149.737500px;}
.x1{left:175.199979px;}
.x14{left:208.469979px;}
.x12{left:307.199979px;}
.x3{left:436.904979px;}
.x13{left:507.869979px;}
.x15{left:521.279979px;}
.x4{left:611.354979px;}
.x2{left:612.944979px;}
.xa{left:732.945000px;}
.x7{left:740.369979px;}
.xe{left:743.969979px;}
.x8{left:767.399979px;}
.x11{left:795.975000px;}
.xb{left:1317.749979px;}
.xf{left:1385.474979px;}
.x10{left:1387.274979px;}
.x5{left:1398.824979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-6.773333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.768800pt;}
.ls3{letter-spacing:0.816000pt;}
.ls5{letter-spacing:1.354667pt;}
.ls7{letter-spacing:1.482667pt;}
.ls1{letter-spacing:44.213333pt;}
.ls2{letter-spacing:44.260000pt;}
.ws9{word-spacing:-89.108267pt;}
.ws8{word-spacing:-65.719200pt;}
.ws3{word-spacing:-41.218133pt;}
.ws2{word-spacing:-41.181067pt;}
.ws5{word-spacing:-36.474133pt;}
.ws6{word-spacing:-36.389867pt;}
.ws4{word-spacing:-35.658133pt;}
.ws1{word-spacing:-30.061067pt;}
.ws7{word-spacing:-26.725067pt;}
.ws0{word-spacing:0.000000pt;}
._d{margin-left:-35.384267pt;}
._14{margin-left:-24.670800pt;}
._13{margin-left:-23.709600pt;}
._0{margin-left:-19.552533pt;}
._c{margin-left:-17.622000pt;}
._a{margin-left:-13.610133pt;}
._12{margin-left:-12.605600pt;}
._11{margin-left:-10.798800pt;}
._b{margin-left:-9.232000pt;}
._f{margin-left:-8.053333pt;}
._e{margin-left:-7.145733pt;}
._9{margin-left:-5.947333pt;}
._6{margin-left:-4.487467pt;}
._5{margin-left:-3.525867pt;}
._2{margin-left:-1.923200pt;}
._4{margin-left:-0.961600pt;}
._3{width:1.602667pt;}
._1{width:3.205333pt;}
._8{width:4.700800pt;}
._10{width:28.005600pt;}
._7{width:43.318533pt;}
.fsc{font-size:40.000000pt;}
.fs2{font-size:84.133333pt;}
.fsa{font-size:96.133333pt;}
.fs6{font-size:108.133333pt;}
.fs7{font-size:108.266667pt;}
.fs1{font-size:128.133333pt;}
.fs9{font-size:128.266667pt;}
.fs4{font-size:148.133333pt;}
.fs5{font-size:148.266667pt;}
.fsb{font-size:236.266667pt;}
.fs3{font-size:236.400000pt;}
.fs8{font-size:320.400000pt;}
.fs0{font-size:320.533333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:24.333333pt;}
.y26{bottom:64.166667pt;}
.y37{bottom:72.166667pt;}
.y39{bottom:77.166667pt;}
.y35{bottom:81.166667pt;}
.y36{bottom:98.200000pt;}
.y30{bottom:98.533333pt;}
.ye{bottom:99.666667pt;}
.y25{bottom:105.200000pt;}
.y34{bottom:107.233333pt;}
.y18{bottom:114.700000pt;}
.y2f{bottom:124.566667pt;}
.yd{bottom:127.700000pt;}
.y33{bottom:133.266667pt;}
.y24{bottom:139.266667pt;}
.y2e{bottom:150.600000pt;}
.y17{bottom:154.760000pt;}
.y1d{bottom:168.773333pt;}
.yc{bottom:169.760000pt;}
.y23{bottom:174.306667pt;}
.y2d{bottom:176.640000pt;}
.y16{bottom:195.800000pt;}
.yb{bottom:198.800000pt;}
.y20{bottom:205.666667pt;}
.y1c{bottom:208.840000pt;}
.y4{bottom:213.333333pt;}
.y2c{bottom:217.666667pt;}
.ya{bottom:227.866667pt;}
.y15{bottom:235.866667pt;}
.y31{bottom:245.333333pt;}
.y3c{bottom:248.866667pt;}
.y2b{bottom:252.733333pt;}
.y9{bottom:256.893333pt;}
.y3{bottom:261.400000pt;}
.y1b{bottom:262.893333pt;}
.y1f{bottom:262.960000pt;}
.y21{bottom:263.573333pt;}
.y3f{bottom:274.440000pt;}
.y14{bottom:275.933333pt;}
.y3b{bottom:289.933333pt;}
.y1a{bottom:302.973333pt;}
.y2{bottom:309.466667pt;}
.y13{bottom:316.960000pt;}
.y29{bottom:326.466667pt;}
.y3a{bottom:330.000000pt;}
.y19{bottom:344.000000pt;}
.y2a{bottom:348.466667pt;}
.y1e{bottom:350.093333pt;}
.y12{bottom:370.026667pt;}
.y3e{bottom:373.640000pt;}
.y1{bottom:374.226667pt;}
.y8{bottom:397.106667pt;}
.y11{bottom:411.106667pt;}
.y38{bottom:418.600000pt;}
.y32{bottom:430.600000pt;}
.y7{bottom:438.133333pt;}
.y10{bottom:451.173333pt;}
.y3d{bottom:460.733333pt;}
.yf{bottom:491.226667pt;}
.y6{bottom:593.600000pt;}
.y22{bottom:738.200000pt;}
.y28{bottom:738.533333pt;}
.y27{bottom:801.626667pt;}
.h10{height:39.785156pt;}
.h3{height:61.497852pt;}
.hd{height:70.269336pt;}
.h7{height:79.040820pt;}
.h8{height:79.138281pt;}
.h2{height:93.659961pt;}
.hb{height:93.757422pt;}
.hc{height:94.535872pt;}
.h5{height:108.279102pt;}
.h6{height:108.376562pt;}
.he{height:172.700781pt;}
.h4{height:172.798242pt;}
.ha{height:234.198633pt;}
.h9{height:234.296094pt;}
.h12{height:240.925781pt;}
.h1{height:241.026042pt;}
.hf{height:357.466667pt;}
.h11{height:439.626667pt;}
.h0{height:720.000000pt;}
.w6{width:432.333333pt;}
.w2{width:433.333333pt;}
.w3{width:541.440000pt;}
.w4{width:544.426667pt;}
.w5{width:545.440000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xc{left:84.066667pt;}
.xd{left:94.066648pt;}
.x6{left:97.666648pt;}
.x9{left:133.100000pt;}
.x1{left:155.733314pt;}
.x14{left:185.306648pt;}
.x12{left:273.066648pt;}
.x3{left:388.359981pt;}
.x13{left:451.439981pt;}
.x15{left:463.359981pt;}
.x4{left:543.426648pt;}
.x2{left:544.839981pt;}
.xa{left:651.506667pt;}
.x7{left:658.106648pt;}
.xe{left:661.306648pt;}
.x8{left:682.133314pt;}
.x11{left:707.533333pt;}
.xb{left:1171.333314pt;}
.xf{left:1231.533314pt;}
.x10{left:1233.133314pt;}
.x5{left:1243.399981pt;}
}




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