
    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_46ad39ac7ec1c95b7ec6ef75.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_13f0bb49ec0c7a7f38fbc923.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.710000;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_189450e2ad31fddf5c66399f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a86475d58c7616b8338ff151.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.430000;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_d39480adfb3eceafe6d5e51a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_222dd2f5686bd0fb231f62a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.856000;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:19.922338px;}
.ls4{letter-spacing:19.928338px;}
.ls0{letter-spacing:29.884178px;}
.ls1{letter-spacing:29.889030px;}
.ls2{letter-spacing:29.890178px;}
.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;}
}
.ws7{word-spacing:-19.092327px;}
.ws13{word-spacing:-16.605662px;}
.ws1e{word-spacing:-3.335478px;}
.ws27{word-spacing:-2.558396px;}
.ws24{word-spacing:-2.080191px;}
.ws2{word-spacing:-1.601986px;}
.ws23{word-spacing:-1.362884px;}
.ws1{word-spacing:-0.086077px;}
.ws19{word-spacing:-0.059776px;}
.ws17{word-spacing:0.000000px;}
.ws1a{word-spacing:0.835115px;}
.ws3{word-spacing:2.104101px;}
.ws1b{word-spacing:2.343204px;}
.ws29{word-spacing:2.522530px;}
.ws1c{word-spacing:2.701857px;}
.ws5{word-spacing:3.299613px;}
.ws11{word-spacing:3.320007px;}
.ws9{word-spacing:3.359389px;}
.ws16{word-spacing:3.419164px;}
.wsc{word-spacing:3.801728px;}
.ws15{word-spacing:3.921279px;}
.ws14{word-spacing:4.136472px;}
.ws4{word-spacing:4.734228px;}
.wsa{word-spacing:4.872416px;}
.ws0{word-spacing:5.412522px;}
.ws18{word-spacing:5.653983px;}
.ws25{word-spacing:6.049291px;}
.wsb{word-spacing:7.364354px;}
.ws8{word-spacing:8.201212px;}
.ws10{word-spacing:8.260988px;}
.ws21{word-spacing:9.336949px;}
.ws20{word-spacing:10.735698px;}
.wsf{word-spacing:10.795473px;}
.ws28{word-spacing:12.086626px;}
.ws12{word-spacing:19.863944px;}
.ws26{word-spacing:19.866704px;}
.wsd{word-spacing:22.531274px;}
.ws22{word-spacing:22.532804px;}
.ws1d{word-spacing:22.533944px;}
.ws1f{word-spacing:22.534034px;}
.wse{word-spacing:22.538324px;}
.ws6{word-spacing:32.192873px;}
._1{margin-left:-8.056807px;}
._b{margin-left:-4.961375px;}
._0{margin-left:-2.788895px;}
._4{margin-left:-1.613941px;}
._3{width:1.673717px;}
._2{width:2.788895px;}
._f{width:15.601432px;}
._c{width:22.593720px;}
._a{width:24.986201px;}
._5{width:26.062162px;}
._9{width:27.616327px;}
._d{width:28.758985px;}
._8{width:29.887800px;}
._6{width:31.143088px;}
._7{width:36.407084px;}
._e{width:38.598425px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.775600px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1e{bottom:208.882500px;}
.y1d{bottom:253.714500px;}
.y1c{bottom:277.110000px;}
.y42{bottom:286.590000px;}
.y1b{bottom:300.505500px;}
.y41{bottom:304.524000px;}
.y1a{bottom:318.438000px;}
.y40{bottom:322.456500px;}
.y3f{bottom:340.389000px;}
.y19{bottom:347.811000px;}
.y18{bottom:365.745000px;}
.y3e{bottom:370.276500px;}
.y3d{bottom:388.209000px;}
.y17{bottom:395.118000px;}
.y16{bottom:413.050500px;}
.y3c{bottom:418.098000px;}
.y15{bottom:436.446000px;}
.y3b{bottom:447.985500px;}
.y14{bottom:457.111500px;}
.y3a{bottom:465.918000px;}
.y13{bottom:477.775500px;}
.y39{bottom:483.850500px;}
.y12{bottom:498.439500px;}
.y38{bottom:501.783000px;}
.y11{bottom:521.835000px;}
.y37{bottom:525.694500px;}
.y36{bottom:543.627000px;}
.y10{bottom:545.230500px;}
.y35{bottom:567.537000px;}
.yf{bottom:568.627500px;}
.y34{bottom:585.469500px;}
.ye{bottom:589.291500px;}
.y33{bottom:609.379500px;}
.yd{bottom:609.955500px;}
.y32{bottom:627.313500px;}
.yc{bottom:633.351000px;}
.y31{bottom:645.246000px;}
.yb{bottom:656.746500px;}
.y30{bottom:669.156000px;}
.ya{bottom:674.680500px;}
.y2f{bottom:690.078000px;}
.y9{bottom:704.053500px;}
.y2e{bottom:710.998500px;}
.y8{bottom:721.986000px;}
.y2d{bottom:731.920500px;}
.y7{bottom:754.717500px;}
.y2c{bottom:755.830500px;}
.y2b{bottom:779.742000px;}
.y2a{bottom:803.652000px;}
.y6{bottom:803.914500px;}
.y5{bottom:821.847000px;}
.y29{bottom:833.539500px;}
.y4{bottom:839.779500px;}
.y3{bottom:857.713500px;}
.y28{bottom:863.427000px;}
.y27{bottom:881.359500px;}
.y2{bottom:890.445000px;}
.y26{bottom:905.271000px;}
.y25{bottom:926.191500px;}
.y24{bottom:947.113500px;}
.y23{bottom:968.035500px;}
.y22{bottom:991.945500px;}
.y1{bottom:997.923000px;}
.y21{bottom:1015.855500px;}
.y20{bottom:1039.765500px;}
.y1f{bottom:1060.687500px;}
.h5{height:44.825700px;}
.h4{height:44.831700px;}
.h3{height:60.081886px;}
.h2{height:73.027727px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:200.652000px;}
.x3{left:223.071000px;}
.x1{left:235.977000px;}
.x4{left:238.012500px;}
.x5{left:254.824500px;}
.x6{left:270.889500px;}
.x7{left:283.891500px;}
.x9{left:298.834500px;}
.x8{left:454.699500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:17.708745pt;}
.ls4{letter-spacing:17.714079pt;}
.ls0{letter-spacing:26.563713pt;}
.ls1{letter-spacing:26.568027pt;}
.ls2{letter-spacing:26.569047pt;}
.ws7{word-spacing:-16.970957pt;}
.ws13{word-spacing:-14.760588pt;}
.ws1e{word-spacing:-2.964870pt;}
.ws27{word-spacing:-2.274129pt;}
.ws24{word-spacing:-1.849059pt;}
.ws2{word-spacing:-1.423988pt;}
.ws23{word-spacing:-1.211452pt;}
.ws1{word-spacing:-0.076513pt;}
.ws19{word-spacing:-0.053134pt;}
.ws17{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.742324pt;}
.ws3{word-spacing:1.870312pt;}
.ws1b{word-spacing:2.082848pt;}
.ws29{word-spacing:2.242249pt;}
.ws1c{word-spacing:2.401651pt;}
.ws5{word-spacing:2.932989pt;}
.ws11{word-spacing:2.951118pt;}
.ws9{word-spacing:2.986123pt;}
.ws16{word-spacing:3.039257pt;}
.wsc{word-spacing:3.379314pt;}
.ws15{word-spacing:3.485582pt;}
.ws14{word-spacing:3.676864pt;}
.ws4{word-spacing:4.208202pt;}
.wsa{word-spacing:4.331037pt;}
.ws0{word-spacing:4.811130pt;}
.ws18{word-spacing:5.025762pt;}
.ws25{word-spacing:5.377147pt;}
.wsb{word-spacing:6.546092pt;}
.ws8{word-spacing:7.289967pt;}
.ws10{word-spacing:7.343100pt;}
.ws21{word-spacing:8.299510pt;}
.ws20{word-spacing:9.542842pt;}
.wsf{word-spacing:9.595976pt;}
.ws28{word-spacing:10.743668pt;}
.ws12{word-spacing:17.656839pt;}
.ws26{word-spacing:17.659293pt;}
.wsd{word-spacing:20.027799pt;}
.ws22{word-spacing:20.029159pt;}
.ws1d{word-spacing:20.030173pt;}
.ws1f{word-spacing:20.030253pt;}
.wse{word-spacing:20.034066pt;}
.ws6{word-spacing:28.615887pt;}
._1{margin-left:-7.161606pt;}
._b{margin-left:-4.410111pt;}
._0{margin-left:-2.479018pt;}
._4{margin-left:-1.434614pt;}
._3{width:1.487748pt;}
._2{width:2.479018pt;}
._f{width:13.867939pt;}
._c{width:20.083307pt;}
._a{width:22.209956pt;}
._5{width:23.166366pt;}
._9{width:24.547846pt;}
._d{width:25.563542pt;}
._8{width:26.566933pt;}
._6{width:27.682745pt;}
._7{width:32.361852pt;}
._e{width:34.309711pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:185.673333pt;}
.y1d{bottom:225.524000pt;}
.y1c{bottom:246.320000pt;}
.y42{bottom:254.746667pt;}
.y1b{bottom:267.116000pt;}
.y41{bottom:270.688000pt;}
.y1a{bottom:283.056000pt;}
.y40{bottom:286.628000pt;}
.y3f{bottom:302.568000pt;}
.y19{bottom:309.165333pt;}
.y18{bottom:325.106667pt;}
.y3e{bottom:329.134667pt;}
.y3d{bottom:345.074667pt;}
.y17{bottom:351.216000pt;}
.y16{bottom:367.156000pt;}
.y3c{bottom:371.642667pt;}
.y15{bottom:387.952000pt;}
.y3b{bottom:398.209333pt;}
.y14{bottom:406.321333pt;}
.y3a{bottom:414.149333pt;}
.y13{bottom:424.689333pt;}
.y39{bottom:430.089333pt;}
.y12{bottom:443.057333pt;}
.y38{bottom:446.029333pt;}
.y11{bottom:463.853333pt;}
.y37{bottom:467.284000pt;}
.y36{bottom:483.224000pt;}
.y10{bottom:484.649333pt;}
.y35{bottom:504.477333pt;}
.yf{bottom:505.446667pt;}
.y34{bottom:520.417333pt;}
.ye{bottom:523.814667pt;}
.y33{bottom:541.670667pt;}
.yd{bottom:542.182667pt;}
.y32{bottom:557.612000pt;}
.yc{bottom:562.978667pt;}
.y31{bottom:573.552000pt;}
.yb{bottom:583.774667pt;}
.y30{bottom:594.805333pt;}
.ya{bottom:599.716000pt;}
.y2f{bottom:613.402667pt;}
.y9{bottom:625.825333pt;}
.y2e{bottom:631.998667pt;}
.y8{bottom:641.765333pt;}
.y2d{bottom:650.596000pt;}
.y7{bottom:670.860000pt;}
.y2c{bottom:671.849333pt;}
.y2b{bottom:693.104000pt;}
.y2a{bottom:714.357333pt;}
.y6{bottom:714.590667pt;}
.y5{bottom:730.530667pt;}
.y29{bottom:740.924000pt;}
.y4{bottom:746.470667pt;}
.y3{bottom:762.412000pt;}
.y28{bottom:767.490667pt;}
.y27{bottom:783.430667pt;}
.y2{bottom:791.506667pt;}
.y26{bottom:804.685333pt;}
.y25{bottom:823.281333pt;}
.y24{bottom:841.878667pt;}
.y23{bottom:860.476000pt;}
.y22{bottom:881.729333pt;}
.y1{bottom:887.042667pt;}
.y21{bottom:902.982667pt;}
.y20{bottom:924.236000pt;}
.y1f{bottom:942.833333pt;}
.h5{height:39.845067pt;}
.h4{height:39.850400pt;}
.h3{height:53.406121pt;}
.h2{height:64.913535pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:178.357333pt;}
.x3{left:198.285333pt;}
.x1{left:209.757333pt;}
.x4{left:211.566667pt;}
.x5{left:226.510667pt;}
.x6{left:240.790667pt;}
.x7{left:252.348000pt;}
.x9{left:265.630667pt;}
.x8{left:404.177333pt;}
}




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