
    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_b3b468d2c4b3a69fb1b20757.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075000;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_066a94eb9800e28c248e8ead.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.062000;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_a1cc25a122381c37068cff73.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005000;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;}
.ls0{letter-spacing:0.000000px;}
.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:-18.006785px;}
.ws0{word-spacing:-16.498716px;}
.ws4{word-spacing:-15.001902px;}
.ws6{word-spacing:-10.504681px;}
.ws7{word-spacing:-10.504089px;}
.ws3{word-spacing:-6.996050px;}
.ws5{word-spacing:-5.901460px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-1.006693px;}
._5{width:1.908027px;}
._17{width:3.298293px;}
._1c{width:4.769362px;}
._10{width:7.098709px;}
._3{width:8.326686px;}
._2{width:9.616514px;}
._0{width:11.649552px;}
._4{width:15.376793px;}
._19{width:19.225648px;}
._18{width:21.138711px;}
._13{width:22.345262px;}
._15{width:23.970063px;}
._9{width:25.610433px;}
._1b{width:26.623948px;}
._1{width:28.179481px;}
._8{width:30.157248px;}
._6{width:31.300691px;}
._d{width:32.326156px;}
._12{width:39.469167px;}
._f{width:41.269607px;}
._7{width:43.893263px;}
._1d{width:45.473075px;}
._a{width:49.019636px;}
._22{width:51.187847px;}
._1a{width:54.148771px;}
._14{width:57.678507px;}
._c{width:68.619055px;}
._1e{width:70.243374px;}
._21{width:76.401640px;}
._1f{width:83.850413px;}
._b{width:94.218718px;}
._e{width:108.428718px;}
._16{width:110.573032px;}
._20{width:129.985397px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs5{font-size:18.675507px;}
.fs3{font-size:27.984200px;}
.fs6{font-size:29.750527px;}
.fs8{font-size:42.016355px;}
.fs7{font-size:42.018724px;}
.fs4{font-size:60.007609px;}
.fs1{font-size:65.994864px;}
.fs2{font-size:72.027138px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y3f{bottom:5.617766px;}
.y3e{bottom:15.534608px;}
.y3d{bottom:25.451451px;}
.y3a{bottom:29.655019px;}
.y3c{bottom:35.368293px;}
.y36{bottom:35.514983px;}
.y3b{bottom:45.285135px;}
.y35{bottom:53.870950px;}
.y39{bottom:54.744267px;}
.y34{bottom:71.009182px;}
.y2f{bottom:89.336180px;}
.y2e{bottom:111.844661px;}
.y2d{bottom:134.353141px;}
.y40{bottom:143.875725px;}
.y2c{bottom:156.861622px;}
.y2b{bottom:179.370103px;}
.y43{bottom:188.400212px;}
.y2a{bottom:201.878583px;}
.y42{bottom:202.405664px;}
.y29{bottom:224.387064px;}
.y37{bottom:226.611662px;}
.y28{bottom:246.895545px;}
.y41{bottom:282.621509px;}
.y27{bottom:291.912506px;}
.y38{bottom:306.827470px;}
.y26{bottom:314.420987px;}
.y25{bottom:336.929467px;}
.y24{bottom:359.437948px;}
.y23{bottom:404.454909px;}
.y22{bottom:426.963390px;}
.y21{bottom:449.471871px;}
.y20{bottom:471.980351px;}
.y1f{bottom:494.488832px;}
.y1e{bottom:516.997313px;}
.y1d{bottom:539.505793px;}
.y1c{bottom:584.522755px;}
.y1b{bottom:607.031235px;}
.y1a{bottom:629.539716px;}
.y19{bottom:652.048197px;}
.y18{bottom:674.556677px;}
.y33{bottom:715.934734px;}
.y32{bottom:740.694062px;}
.y53{bottom:757.962302px;}
.y31{bottom:765.453391px;}
.y52{bottom:780.470782px;}
.y51{bottom:802.979263px;}
.ye{bottom:810.395342px;}
.y50{bottom:825.487744px;}
.yd{bottom:832.903823px;}
.y4f{bottom:847.996224px;}
.yc{bottom:855.412303px;}
.y4e{bottom:870.504705px;}
.yb{bottom:877.920784px;}
.y4d{bottom:893.013186px;}
.ya{bottom:900.429265px;}
.y4c{bottom:915.521666px;}
.y9{bottom:922.937745px;}
.y17{bottom:923.838087px;}
.y4b{bottom:938.030147px;}
.y8{bottom:945.446226px;}
.y16{bottom:946.346568px;}
.y4a{bottom:960.538628px;}
.y7{bottom:967.954707px;}
.y15{bottom:968.855049px;}
.y49{bottom:983.047108px;}
.y6{bottom:990.463187px;}
.y14{bottom:991.363529px;}
.y48{bottom:1005.555589px;}
.y5{bottom:1012.971668px;}
.y13{bottom:1013.872010px;}
.y47{bottom:1028.064070px;}
.y4{bottom:1035.480149px;}
.y12{bottom:1036.380491px;}
.y46{bottom:1050.572550px;}
.y3{bottom:1057.988629px;}
.y11{bottom:1058.888971px;}
.y45{bottom:1073.081031px;}
.y10{bottom:1081.397452px;}
.y44{bottom:1095.589512px;}
.y30{bottom:1102.930549px;}
.yf{bottom:1103.905933px;}
.y2{bottom:1181.927919px;}
.h8{height:15.033783px;}
.h6{height:22.751155px;}
.ha{height:24.187179px;}
.hc{height:34.159296px;}
.hb{height:34.161222px;}
.h7{height:48.786186px;}
.h9{height:53.639998px;}
.hd{height:53.653825px;}
.h4{height:53.719820px;}
.h5{height:59.638470px;}
.h3{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:47.986994px;}
.x5{left:49.025411px;}
.x8{left:50.900892px;}
.x1{left:56.266126px;}
.xb{left:58.798029px;}
.x9{left:119.519995px;}
.xa{left:127.283452px;}
.x3{left:469.237524px;}
.x4{left:497.285201px;}
.x7{left:618.659038px;}
.x6{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.006031pt;}
.ws0{word-spacing:-14.665525pt;}
.ws4{word-spacing:-13.335024pt;}
.ws6{word-spacing:-9.337494pt;}
.ws7{word-spacing:-9.336968pt;}
.ws3{word-spacing:-6.218711pt;}
.ws5{word-spacing:-5.245742pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-0.894839pt;}
._5{width:1.696024pt;}
._17{width:2.931816pt;}
._1c{width:4.239433pt;}
._10{width:6.309963pt;}
._3{width:7.401499pt;}
._2{width:8.548012pt;}
._0{width:10.355157pt;}
._4{width:13.668261pt;}
._19{width:17.089465pt;}
._18{width:18.789966pt;}
._13{width:19.862455pt;}
._15{width:21.306723pt;}
._9{width:22.764830pt;}
._1b{width:23.665732pt;}
._1{width:25.048427pt;}
._8{width:26.806443pt;}
._6{width:27.822837pt;}
._d{width:28.734361pt;}
._12{width:35.083704pt;}
._f{width:36.684095pt;}
._7{width:39.016234pt;}
._1d{width:40.420511pt;}
._a{width:43.573010pt;}
._22{width:45.500308pt;}
._1a{width:48.132241pt;}
._14{width:51.269784pt;}
._c{width:60.994715pt;}
._1e{width:62.438555pt;}
._21{width:67.912569pt;}
._1f{width:74.533700pt;}
._b{width:83.749971pt;}
._e{width:96.381082pt;}
._16{width:98.287140pt;}
._20{width:115.542575pt;}
.fs5{font-size:16.600451pt;}
.fs3{font-size:24.874844pt;}
.fs6{font-size:26.444913pt;}
.fs8{font-size:37.347871pt;}
.fs7{font-size:37.349977pt;}
.fs4{font-size:53.340097pt;}
.fs1{font-size:58.662102pt;}
.fs2{font-size:64.024123pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y3f{bottom:4.993570pt;}
.y3e{bottom:13.808541pt;}
.y3d{bottom:22.623512pt;}
.y3a{bottom:26.360017pt;}
.y3c{bottom:31.438483pt;}
.y36{bottom:31.568874pt;}
.y3b{bottom:40.253454pt;}
.y35{bottom:47.885289pt;}
.y39{bottom:48.661571pt;}
.y34{bottom:63.119273pt;}
.y2f{bottom:79.409938pt;}
.y2e{bottom:99.417476pt;}
.y2d{bottom:119.425015pt;}
.y40{bottom:127.889533pt;}
.y2c{bottom:139.432553pt;}
.y2b{bottom:159.440091pt;}
.y43{bottom:167.466856pt;}
.y2a{bottom:179.447630pt;}
.y42{bottom:179.916146pt;}
.y29{bottom:199.455168pt;}
.y37{bottom:201.432588pt;}
.y28{bottom:219.462706pt;}
.y41{bottom:251.219119pt;}
.y27{bottom:259.477783pt;}
.y38{bottom:272.735529pt;}
.y26{bottom:279.485321pt;}
.y25{bottom:299.492860pt;}
.y24{bottom:319.500398pt;}
.y23{bottom:359.515475pt;}
.y22{bottom:379.523013pt;}
.y21{bottom:399.530552pt;}
.y20{bottom:419.538090pt;}
.y1f{bottom:439.545628pt;}
.y1e{bottom:459.553167pt;}
.y1d{bottom:479.560705pt;}
.y1c{bottom:519.575782pt;}
.y1b{bottom:539.583320pt;}
.y1a{bottom:559.590859pt;}
.y19{bottom:579.598397pt;}
.y18{bottom:599.605935pt;}
.y33{bottom:636.386430pt;}
.y32{bottom:658.394722pt;}
.y53{bottom:673.744268pt;}
.y31{bottom:680.403014pt;}
.y52{bottom:693.751807pt;}
.y51{bottom:713.759345pt;}
.ye{bottom:720.351415pt;}
.y50{bottom:733.766883pt;}
.yd{bottom:740.358953pt;}
.y4f{bottom:753.774422pt;}
.yc{bottom:760.366492pt;}
.y4e{bottom:773.781960pt;}
.yb{bottom:780.374030pt;}
.y4d{bottom:793.789498pt;}
.ya{bottom:800.381569pt;}
.y4c{bottom:813.797037pt;}
.y9{bottom:820.389107pt;}
.y17{bottom:821.189411pt;}
.y4b{bottom:833.804575pt;}
.y8{bottom:840.396645pt;}
.y16{bottom:841.196949pt;}
.y4a{bottom:853.812114pt;}
.y7{bottom:860.404184pt;}
.y15{bottom:861.204488pt;}
.y49{bottom:873.819652pt;}
.y6{bottom:880.411722pt;}
.y14{bottom:881.212026pt;}
.y48{bottom:893.827190pt;}
.y5{bottom:900.419260pt;}
.y13{bottom:901.219564pt;}
.y47{bottom:913.834729pt;}
.y4{bottom:920.426799pt;}
.y12{bottom:921.227103pt;}
.y46{bottom:933.842267pt;}
.y3{bottom:940.434337pt;}
.y11{bottom:941.234641pt;}
.y45{bottom:953.849805pt;}
.y10{bottom:961.242179pt;}
.y44{bottom:973.857344pt;}
.y30{bottom:980.382711pt;}
.yf{bottom:981.249718pt;}
.y2{bottom:1050.602594pt;}
.h8{height:13.363363pt;}
.h6{height:20.223249pt;}
.ha{height:21.499714pt;}
.hc{height:30.363819pt;}
.hb{height:30.365531pt;}
.h7{height:43.365499pt;}
.h9{height:47.679998pt;}
.hd{height:47.692289pt;}
.h4{height:47.750951pt;}
.h5{height:53.011974pt;}
.h3{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:42.655106pt;}
.x5{left:43.578143pt;}
.x8{left:45.245237pt;}
.x1{left:50.014335pt;}
.xb{left:52.264915pt;}
.x9{left:106.239996pt;}
.xa{left:113.140846pt;}
.x3{left:417.100021pt;}
.x4{left:442.031290pt;}
.x7{left:549.919145pt;}
.x6{left:551.612297pt;}
}




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