
    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_170814ed716a45416ef91614.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.239258;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9d6e66084c4a5aac2be68431.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_edac1e8e398ee5defac0b07b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_783ee83414153b58815c0a0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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;}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.019560px;}
.ls4{letter-spacing:28.252489px;}
.ls3{letter-spacing:31.854587px;}
.ls1{letter-spacing:54.908378px;}
.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:-17.999993px;}
.ws1{word-spacing:0.000000px;}
._10{margin-left:-5.080798px;}
._c{margin-left:-4.066193px;}
._8{margin-left:-2.212126px;}
._1{margin-left:-1.194027px;}
._0{width:1.021673px;}
._2{width:2.888821px;}
._3{width:4.255273px;}
._9{width:5.605184px;}
._7{width:6.894864px;}
._19{width:8.058216px;}
._5{width:9.081795px;}
._4{width:10.117838px;}
._6{width:11.190067px;}
._b{width:12.411493px;}
._18{width:13.745868px;}
._a{width:14.910488px;}
._d{width:16.080887px;}
._12{width:19.451024px;}
._e{width:21.510033px;}
._f{width:22.618738px;}
._1a{width:24.177180px;}
._13{width:28.034043px;}
._17{width:29.272612px;}
._16{width:30.335895px;}
._14{width:32.309417px;}
._15{width:33.352679px;}
._11{width:40.106402px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y61{bottom:115.860254px;}
.y21{bottom:133.499947px;}
.y42{bottom:136.200246px;}
.y60{bottom:146.820241px;}
.y64{bottom:147.720241px;}
.y20{bottom:164.639934px;}
.y41{bottom:167.159933px;}
.y5f{bottom:177.959929px;}
.y1f{bottom:195.599922px;}
.y40{bottom:198.299921px;}
.y5e{bottom:208.919916px;}
.y1e{bottom:226.739909px;}
.y3f{bottom:229.259908px;}
.y5d{bottom:239.699904px;}
.y63{bottom:240.059904px;}
.y1d{bottom:257.699897px;}
.y3e{bottom:260.399896px;}
.y5c{bottom:271.019892px;}
.y1c{bottom:288.839884px;}
.y3d{bottom:291.359883px;}
.y5b{bottom:301.979879px;}
.y1b{bottom:319.799872px;}
.y3c{bottom:322.319871px;}
.y5a{bottom:333.119867px;}
.y1a{bottom:350.939860px;}
.y3b{bottom:353.459859px;}
.y59{bottom:364.079854px;}
.y19{bottom:381.899847px;}
.y3a{bottom:384.419846px;}
.y58{bottom:395.219842px;}
.y18{bottom:413.039835px;}
.y39{bottom:415.559834px;}
.y57{bottom:426.179830px;}
.y17{bottom:443.999822px;}
.y38{bottom:446.519821px;}
.y56{bottom:457.319817px;}
.y16{bottom:475.139810px;}
.y37{bottom:477.659809px;}
.y55{bottom:488.279805px;}
.y15{bottom:506.099798px;}
.y36{bottom:508.619797px;}
.y54{bottom:519.419792px;}
.y14{bottom:537.239785px;}
.y35{bottom:539.759784px;}
.y53{bottom:550.379780px;}
.y13{bottom:567.839773px;}
.y34{bottom:570.719772px;}
.y52{bottom:581.519767px;}
.y12{bottom:600.599760px;}
.y33{bottom:601.859759px;}
.y51{bottom:612.479755px;}
.y11{bottom:631.559747px;}
.y32{bottom:632.819747px;}
.y50{bottom:643.619743px;}
.y10{bottom:662.699735px;}
.y31{bottom:663.959734px;}
.y4f{bottom:674.579730px;}
.yf{bottom:693.659723px;}
.y30{bottom:694.559722px;}
.y4e{bottom:705.719718px;}
.ye{bottom:724.799710px;}
.y2f{bottom:726.059710px;}
.y4d{bottom:736.679705px;}
.yd{bottom:755.759698px;}
.y2e{bottom:757.019697px;}
.y4c{bottom:767.459693px;}
.y62{bottom:767.819693px;}
.yc{bottom:786.899685px;}
.y2d{bottom:788.159685px;}
.y4b{bottom:798.779680px;}
.yb{bottom:817.859673px;}
.y2c{bottom:819.119672px;}
.y4a{bottom:829.919668px;}
.y2b{bottom:849.899660px;}
.ya{bottom:850.259660px;}
.y49{bottom:860.879656px;}
.y9{bottom:881.219648px;}
.y2a{bottom:882.479647px;}
.y48{bottom:892.019643px;}
.y8{bottom:912.359635px;}
.y29{bottom:913.619635px;}
.y47{bottom:922.979631px;}
.y7{bottom:943.319623px;}
.y28{bottom:944.579622px;}
.y46{bottom:954.119618px;}
.y6{bottom:974.459610px;}
.y27{bottom:975.719610px;}
.y45{bottom:985.079606px;}
.y5{bottom:1005.419598px;}
.y26{bottom:1006.679597px;}
.y44{bottom:1016.219594px;}
.y4{bottom:1036.559585px;}
.y43{bottom:1047.179581px;}
.y25{bottom:1048.799580px;}
.y24{bottom:1078.319569px;}
.y3{bottom:1079.579568px;}
.y2{bottom:1108.919556px;}
.y23{bottom:1109.279556px;}
.y1{bottom:1140.059544px;}
.y22{bottom:1140.419544px;}
.h6{height:44.149201px;}
.h5{height:65.010911px;}
.h2{height:66.757473px;}
.h4{height:70.664034px;}
.h1{height:72.562471px;}
.h3{height:75.093720px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:127.619917px;}
.x1{left:132.659947px;}
.x3{left:181.619927px;}
.x4{left:208.619967px;}
.x6{left:280.619833px;}
.x7{left:307.619813px;}
.x2{left:394.199842px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.017387pt;}
.ls4{letter-spacing:25.113323pt;}
.ls3{letter-spacing:28.315189pt;}
.ls1{letter-spacing:48.807447pt;}
.ws0{word-spacing:-15.999994pt;}
.ws1{word-spacing:0.000000pt;}
._10{margin-left:-4.516265pt;}
._c{margin-left:-3.614394pt;}
._8{margin-left:-1.966334pt;}
._1{margin-left:-1.061357pt;}
._0{width:0.908154pt;}
._2{width:2.567841pt;}
._3{width:3.782465pt;}
._9{width:4.982386pt;}
._7{width:6.128768pt;}
._19{width:7.162859pt;}
._5{width:8.072707pt;}
._4{width:8.993634pt;}
._6{width:9.946726pt;}
._b{width:11.032438pt;}
._18{width:12.218550pt;}
._a{width:13.253767pt;}
._d{width:14.294122pt;}
._12{width:17.289799pt;}
._e{width:19.120029pt;}
._f{width:20.105545pt;}
._1a{width:21.490827pt;}
._13{width:24.919149pt;}
._17{width:26.020099pt;}
._16{width:26.965240pt;}
._14{width:28.719482pt;}
._15{width:29.646826pt;}
._11{width:35.650135pt;}
.fs1{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:102.986892pt;}
.y21{bottom:118.666619pt;}
.y42{bottom:121.066885pt;}
.y60{bottom:130.506881pt;}
.y64{bottom:131.306881pt;}
.y20{bottom:146.346608pt;}
.y41{bottom:148.586607pt;}
.y5f{bottom:158.186603pt;}
.y1f{bottom:173.866597pt;}
.y40{bottom:176.266596pt;}
.y5e{bottom:185.706592pt;}
.y1e{bottom:201.546586pt;}
.y3f{bottom:203.786585pt;}
.y5d{bottom:213.066581pt;}
.y63{bottom:213.386581pt;}
.y1d{bottom:229.066575pt;}
.y3e{bottom:231.466574pt;}
.y5c{bottom:240.906570pt;}
.y1c{bottom:256.746564pt;}
.y3d{bottom:258.986563pt;}
.y5b{bottom:268.426559pt;}
.y1b{bottom:284.266553pt;}
.y3c{bottom:286.506552pt;}
.y5a{bottom:296.106548pt;}
.y1a{bottom:311.946542pt;}
.y3b{bottom:314.186541pt;}
.y59{bottom:323.626537pt;}
.y19{bottom:339.466531pt;}
.y3a{bottom:341.706530pt;}
.y58{bottom:351.306526pt;}
.y18{bottom:367.146520pt;}
.y39{bottom:369.386519pt;}
.y57{bottom:378.826515pt;}
.y17{bottom:394.666509pt;}
.y38{bottom:396.906508pt;}
.y56{bottom:406.506504pt;}
.y16{bottom:422.346498pt;}
.y37{bottom:424.586497pt;}
.y55{bottom:434.026493pt;}
.y15{bottom:449.866487pt;}
.y36{bottom:452.106486pt;}
.y54{bottom:461.706482pt;}
.y14{bottom:477.546476pt;}
.y35{bottom:479.786475pt;}
.y53{bottom:489.226471pt;}
.y13{bottom:504.746465pt;}
.y34{bottom:507.306464pt;}
.y52{bottom:516.906460pt;}
.y12{bottom:533.866453pt;}
.y33{bottom:534.986453pt;}
.y51{bottom:544.426449pt;}
.y11{bottom:561.386442pt;}
.y32{bottom:562.506442pt;}
.y50{bottom:572.106438pt;}
.y10{bottom:589.066431pt;}
.y31{bottom:590.186431pt;}
.y4f{bottom:599.626427pt;}
.yf{bottom:616.586420pt;}
.y30{bottom:617.386420pt;}
.y4e{bottom:627.306416pt;}
.ye{bottom:644.266409pt;}
.y2f{bottom:645.386409pt;}
.y4d{bottom:654.826405pt;}
.yd{bottom:671.786398pt;}
.y2e{bottom:672.906398pt;}
.y4c{bottom:682.186394pt;}
.y62{bottom:682.506394pt;}
.yc{bottom:699.466387pt;}
.y2d{bottom:700.586386pt;}
.y4b{bottom:710.026383pt;}
.yb{bottom:726.986376pt;}
.y2c{bottom:728.106375pt;}
.y4a{bottom:737.706372pt;}
.y2b{bottom:755.466364pt;}
.ya{bottom:755.786364pt;}
.y49{bottom:765.226361pt;}
.y9{bottom:783.306353pt;}
.y2a{bottom:784.426353pt;}
.y48{bottom:792.906350pt;}
.y8{bottom:810.986342pt;}
.y29{bottom:812.106342pt;}
.y47{bottom:820.426338pt;}
.y7{bottom:838.506331pt;}
.y28{bottom:839.626331pt;}
.y46{bottom:848.106327pt;}
.y6{bottom:866.186320pt;}
.y27{bottom:867.306320pt;}
.y45{bottom:875.626316pt;}
.y5{bottom:893.706309pt;}
.y26{bottom:894.826309pt;}
.y44{bottom:903.306305pt;}
.y4{bottom:921.386298pt;}
.y43{bottom:930.826294pt;}
.y25{bottom:932.266294pt;}
.y24{bottom:958.506283pt;}
.y3{bottom:959.626283pt;}
.y2{bottom:985.706272pt;}
.y23{bottom:986.026272pt;}
.y1{bottom:1013.386261pt;}
.y22{bottom:1013.706261pt;}
.h6{height:39.243734pt;}
.h5{height:57.787477pt;}
.h2{height:59.339976pt;}
.h4{height:62.812475pt;}
.h1{height:64.499974pt;}
.h3{height:66.749973pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:113.439926pt;}
.x1{left:117.919953pt;}
.x3{left:161.439935pt;}
.x4{left:185.439971pt;}
.x6{left:249.439851pt;}
.x7{left:273.439833pt;}
.x2{left:350.399860pt;}
}




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