
    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_94e3d62d69bd9efee780be81.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_994b99b194e6a43773bd67b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_944e2234a838a6cb1e5c797e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.686000;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_146d8ac5ce77ba6110bf539d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.304000;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_7a67d25db1524c1344b62309.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_08df790b38d06127765f5119.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.918000;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_e3dab5dd372b38344bdba384.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.431000;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_5c49dd148dfd37e9c9bab096.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_48acabcd843f7cdaa19f221b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.390000;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_a9cdd5320e4f068338f25ff1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_dd2cff8678d870127d2c90f2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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:ffc;src:url('chunks/assets/font_1c85bc9ce31ca7ed4417faec.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.431000;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:ffd;src:url('chunks/assets/font_df6f85072782096a1a1e3289.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910000;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);}
.v2{vertical-align:-16.872000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.987971px;}
.ls1{letter-spacing:2.991028px;}
.ls2{letter-spacing:18.363110px;}
.ls3{letter-spacing:21.353468px;}
.ls4{letter-spacing:29.887800px;}
.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;}
}
.ws1{word-spacing:-0.103292px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:3.801728px;}
.ws3{word-spacing:5.245920px;}
.ws13{word-spacing:17.992456px;}
.ws11{word-spacing:18.231558px;}
.ws5{word-spacing:19.845499px;}
.ws10{word-spacing:19.905275px;}
.ws2{word-spacing:23.312640px;}
.ws8{word-spacing:23.790689px;}
.ws12{word-spacing:24.567772px;}
.ws0{word-spacing:31.091012px;}
.ws7{word-spacing:32.192873px;}
.wsb{word-spacing:105.337032px;}
.ws9{word-spacing:127.255032px;}
.wsd{word-spacing:180.397133px;}
.wse{word-spacing:202.315133px;}
.wsc{word-spacing:295.018424px;}
.wsf{word-spacing:316.936424px;}
.wsa{word-spacing:316.942424px;}
._f{margin-left:-31.075682px;}
._3{margin-left:-5.768410px;}
._4{margin-left:-3.810350px;}
._0{margin-left:-2.685602px;}
._2{margin-left:-1.187882px;}
._7{width:1.187882px;}
._1{width:2.685602px;}
._10{width:19.367294px;}
._11{width:25.763284px;}
._e{width:29.887800px;}
._6{width:35.297556px;}
._5{width:96.836850px;}
._d{width:165.489551px;}
._a{width:180.435551px;}
._9{width:235.249720px;}
._c{width:257.167720px;}
._8{width:373.516756px;}
._b{width:395.434756px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.yd{bottom:134.047500px;}
.y27{bottom:268.755000px;}
.y26{bottom:286.687500px;}
.y25{bottom:305.218500px;}
.y24{bottom:340.701000px;}
.y23{bottom:358.635000px;}
.y22{bottom:426.696000px;}
.y21{bottom:444.628500px;}
.y20{bottom:462.561000px;}
.y1f{bottom:480.493500px;}
.y1e{bottom:499.024500px;}
.y1d{bottom:534.508500px;}
.y1c{bottom:552.441000px;}
.y1b{bottom:620.502000px;}
.yc{bottom:623.080500px;}
.y1a{bottom:638.434500px;}
.yb{bottom:652.968000px;}
.y19{bottom:656.368500px;}
.y18{bottom:674.898000px;}
.ya{bottom:690.063000px;}
.y9{bottom:703.777500px;}
.y17{bottom:710.382000px;}
.y8{bottom:717.973500px;}
.y16{bottom:728.314500px;}
.y7{bottom:732.171000px;}
.y6{bottom:746.367000px;}
.y5{bottom:760.564500px;}
.y15{bottom:796.375500px;}
.y4{bottom:813.997500px;}
.y14{bottom:814.309500px;}
.y13{bottom:832.242000px;}
.y12{bottom:850.174500px;}
.y3{bottom:857.335500px;}
.y11{bottom:868.705500px;}
.y2{bottom:890.211000px;}
.y10{bottom:904.188000px;}
.y2a{bottom:917.256000px;}
.yf{bottom:922.120500px;}
.y1{bottom:923.088000px;}
.y29{bottom:935.188500px;}
.y28{bottom:953.121000px;}
.ye{bottom:985.852500px;}
.h4{height:17.271908px;}
.h8{height:27.795654px;}
.h3{height:34.143908px;}
.h5{height:41.842920px;}
.h6{height:44.831700px;}
.h2{height:57.828699px;}
.h7{height:60.254040px;}
.h1{height:72.511265px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:200.652000px;}
.x2{left:204.330000px;}
.x7{left:207.468000px;}
.x5{left:212.214000px;}
.xf{left:218.586000px;}
.xb{left:223.071000px;}
.x4{left:226.119000px;}
.x1d{left:231.370500px;}
.xe{left:237.240000px;}
.x10{left:252.727500px;}
.xd{left:261.420000px;}
.x1{left:315.276000px;}
.x9{left:358.588500px;}
.x3{left:410.326500px;}
.x1b{left:415.441500px;}
.x6{left:416.656500px;}
.x11{left:423.136500px;}
.x16{left:428.616000px;}
.x8{left:432.568500px;}
.x12{left:438.625500px;}
.x17{left:444.105000px;}
.xc{left:454.699500px;}
.x14{left:590.379000px;}
.x15{left:595.858500px;}
.x19{left:601.338000px;}
.x1a{left:606.817500px;}
.x13{left:609.033000px;}
.x18{left:619.992000px;}
.x1c{left:635.481000px;}
@media print{
.v2{vertical-align:-14.997333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.655975pt;}
.ls1{letter-spacing:2.658691pt;}
.ls2{letter-spacing:16.322765pt;}
.ls3{letter-spacing:18.980861pt;}
.ls4{letter-spacing:26.566933pt;}
.ws1{word-spacing:-0.091815pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.379314pt;}
.ws3{word-spacing:4.663040pt;}
.ws13{word-spacing:15.993294pt;}
.ws11{word-spacing:16.205829pt;}
.ws5{word-spacing:17.640444pt;}
.ws10{word-spacing:17.693578pt;}
.ws2{word-spacing:20.722347pt;}
.ws8{word-spacing:21.147279pt;}
.ws12{word-spacing:21.838019pt;}
.ws0{word-spacing:27.636455pt;}
.ws7{word-spacing:28.615887pt;}
.wsb{word-spacing:93.632917pt;}
.ws9{word-spacing:113.115584pt;}
.wsd{word-spacing:160.353007pt;}
.wse{word-spacing:179.835674pt;}
.wsc{word-spacing:262.238599pt;}
.wsf{word-spacing:281.721266pt;}
.wsa{word-spacing:281.726599pt;}
._f{margin-left:-27.622829pt;}
._3{margin-left:-5.127475pt;}
._4{margin-left:-3.386978pt;}
._0{margin-left:-2.387202pt;}
._2{margin-left:-1.055895pt;}
._7{width:1.055895pt;}
._1{width:2.387202pt;}
._10{width:17.215373pt;}
._11{width:22.900697pt;}
._e{width:26.566933pt;}
._6{width:31.375605pt;}
._5{width:86.077200pt;}
._d{width:147.101823pt;}
._a{width:160.387156pt;}
._9{width:209.110862pt;}
._c{width:228.593529pt;}
._8{width:332.014894pt;}
._b{width:351.497561pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:119.153333pt;}
.y27{bottom:238.893333pt;}
.y26{bottom:254.833333pt;}
.y25{bottom:271.305333pt;}
.y24{bottom:302.845333pt;}
.y23{bottom:318.786667pt;}
.y22{bottom:379.285333pt;}
.y21{bottom:395.225333pt;}
.y20{bottom:411.165333pt;}
.y1f{bottom:427.105333pt;}
.y1e{bottom:443.577333pt;}
.y1d{bottom:475.118667pt;}
.y1c{bottom:491.058667pt;}
.y1b{bottom:551.557333pt;}
.yc{bottom:553.849333pt;}
.y1a{bottom:567.497333pt;}
.yb{bottom:580.416000pt;}
.y19{bottom:583.438667pt;}
.y18{bottom:599.909333pt;}
.ya{bottom:613.389333pt;}
.y9{bottom:625.580000pt;}
.y17{bottom:631.450667pt;}
.y8{bottom:638.198667pt;}
.y16{bottom:647.390667pt;}
.y7{bottom:650.818667pt;}
.y6{bottom:663.437333pt;}
.y5{bottom:676.057333pt;}
.y15{bottom:707.889333pt;}
.y4{bottom:723.553333pt;}
.y14{bottom:723.830667pt;}
.y13{bottom:739.770667pt;}
.y12{bottom:755.710667pt;}
.y3{bottom:762.076000pt;}
.y11{bottom:772.182667pt;}
.y2{bottom:791.298667pt;}
.y10{bottom:803.722667pt;}
.y2a{bottom:815.338667pt;}
.yf{bottom:819.662667pt;}
.y1{bottom:820.522667pt;}
.y29{bottom:831.278667pt;}
.y28{bottom:847.218667pt;}
.ye{bottom:876.313333pt;}
.h4{height:15.352807pt;}
.h8{height:24.707248pt;}
.h3{height:30.350141pt;}
.h5{height:37.193707pt;}
.h6{height:39.850400pt;}
.h2{height:51.403288pt;}
.h7{height:53.559147pt;}
.h1{height:64.454458pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:178.357333pt;}
.x2{left:181.626667pt;}
.x7{left:184.416000pt;}
.x5{left:188.634667pt;}
.xf{left:194.298667pt;}
.xb{left:198.285333pt;}
.x4{left:200.994667pt;}
.x1d{left:205.662667pt;}
.xe{left:210.880000pt;}
.x10{left:224.646667pt;}
.xd{left:232.373333pt;}
.x1{left:280.245333pt;}
.x9{left:318.745333pt;}
.x3{left:364.734667pt;}
.x1b{left:369.281333pt;}
.x6{left:370.361333pt;}
.x11{left:376.121333pt;}
.x16{left:380.992000pt;}
.x8{left:384.505333pt;}
.x12{left:389.889333pt;}
.x17{left:394.760000pt;}
.xc{left:404.177333pt;}
.x14{left:524.781333pt;}
.x15{left:529.652000pt;}
.x19{left:534.522667pt;}
.x1a{left:539.393333pt;}
.x13{left:541.362667pt;}
.x18{left:551.104000pt;}
.x1c{left:564.872000pt;}
}




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