
    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_bfaf48e5a0d53bceaef047d9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_4fca4bdcb182d25f333160cb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_aa89e6a5085c80fe4e664cfa.woff')format("woff");}.ff3{font-family:ff3;line-height:0.865723;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_58b22acfad2f6ca05aa483cd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_ec78ec64c1dc4a078226d985.woff')format("woff");}.ff5{font-family:ff5;line-height:0.884277;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_25210a4f856b99cf1f7f14d2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.683105;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_bc61596e5e355614a3f71df7.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
}
.ws0{word-spacing:-14.920899px;}
.ws2{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-7.330779px;}
._5{margin-left:-6.168414px;}
._3{margin-left:-5.008044px;}
._2{margin-left:-3.779298px;}
._1{margin-left:-1.544635px;}
._0{width:1.384727px;}
._6{width:2.841674px;}
._7{width:49.798827px;}
.fc3{color:rgb(61,133,198);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:66.000002px;}
.fs1{font-size:90.000000px;}
.fs2{font-size:119.999997px;}
.fs0{font-size:156.000006px;}
.y0{bottom:0.000000px;}
.y48{bottom:11.999987px;}
.y4e{bottom:11.999990px;}
.y57{bottom:11.999992px;}
.y67{bottom:11.999993px;}
.y1f{bottom:11.999999px;}
.y40{bottom:32.141594px;}
.y47{bottom:32.141597px;}
.y4d{bottom:32.141600px;}
.y56{bottom:32.141602px;}
.y66{bottom:32.141603px;}
.y3f{bottom:52.283189px;}
.y46{bottom:52.283192px;}
.y4c{bottom:52.283195px;}
.y65{bottom:52.283198px;}
.y55{bottom:52.283203px;}
.y3e{bottom:72.424799px;}
.y45{bottom:72.424802px;}
.y54{bottom:72.424804px;}
.y4b{bottom:72.424805px;}
.y64{bottom:72.424808px;}
.y3d{bottom:92.566394px;}
.y44{bottom:92.566397px;}
.y63{bottom:92.566403px;}
.y53{bottom:92.566405px;}
.y3c{bottom:112.708004px;}
.y43{bottom:112.708007px;}
.y62{bottom:112.708013px;}
.y4a{bottom:127.236333px;}
.y3b{bottom:132.849599px;}
.y52{bottom:132.849608px;}
.y3a{bottom:152.991209px;}
.y51{bottom:152.991211px;}
.y61{bottom:152.991218px;}
.y1d{bottom:156.158206px;}
.y39{bottom:173.132804px;}
.y50{bottom:173.132812px;}
.y60{bottom:173.132813px;}
.y1c{bottom:179.321048px;}
.y38{bottom:193.274399px;}
.y5f{bottom:193.274408px;}
.y37{bottom:213.416009px;}
.y5e{bottom:213.416018px;}
.y1b{bottom:217.330813px;}
.y49{bottom:224.677734px;}
.y36{bottom:233.557604px;}
.y5d{bottom:233.557613px;}
.y35{bottom:253.699214px;}
.y5c{bottom:253.699223px;}
.y42{bottom:261.694341px;}
.y34{bottom:273.840809px;}
.y5b{bottom:273.840818px;}
.y1a{bottom:283.598138px;}
.y33{bottom:293.982419px;}
.y5a{bottom:293.982428px;}
.y19{bottom:306.760983px;}
.y32{bottom:314.124014px;}
.y18{bottom:329.923823px;}
.y31{bottom:334.265624px;}
.y17{bottom:353.086666px;}
.y30{bottom:354.407219px;}
.y2f{bottom:374.548814px;}
.y16{bottom:376.249508px;}
.y2e{bottom:394.690424px;}
.y41{bottom:399.418944px;}
.y15{bottom:414.259273px;}
.y2d{bottom:414.832019px;}
.y2c{bottom:434.973629px;}
.y20{bottom:436.435554px;}
.y2b{bottom:455.115224px;}
.y2a{bottom:475.256834px;}
.y14{bottom:480.526613px;}
.y29{bottom:495.398429px;}
.y13{bottom:503.689456px;}
.y28{bottom:515.540024px;}
.y12{bottom:526.852298px;}
.y27{bottom:535.681634px;}
.y6a{bottom:537.367673px;}
.y11{bottom:550.015133px;}
.y26{bottom:555.823229px;}
.y69{bottom:560.530523px;}
.y10{bottom:573.177983px;}
.y25{bottom:575.964836px;}
.y68{bottom:583.693358px;}
.y24{bottom:596.106437px;}
.yf{bottom:596.340818px;}
.y59{bottom:600.834960px;}
.y23{bottom:616.248040px;}
.ye{bottom:634.350583px;}
.y22{bottom:636.389641px;}
.y21{bottom:656.531243px;}
.yd{bottom:700.617916px;}
.yc{bottom:723.780758px;}
.yb{bottom:761.790523px;}
.ya{bottom:828.057868px;}
.y9{bottom:851.220712px;}
.y8{bottom:874.383548px;}
.y7{bottom:897.546393px;}
.y58{bottom:919.833984px;}
.y6{bottom:920.709233px;}
.y5{bottom:943.872076px;}
.y4f{bottom:956.850586px;}
.y4{bottom:967.034918px;}
.y3{bottom:1005.044678px;}
.y2{bottom:1073.910645px;}
.y1{bottom:1117.142577px;}
.y1e{bottom:1117.983399px;}
.h5{height:35.891601px;}
.h6{height:46.599610px;}
.h4{height:47.373048px;}
.h2{height:61.875000px;}
.h3{height:82.031248px;}
.h9{height:96.316407px;}
.h1{height:111.972661px;}
.h8{height:136.599609px;}
.ha{height:197.024414px;}
.hb{height:317.874030px;}
.h7{height:680.422845px;}
.h0{height:1263.000000px;}
.w1{width:675.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x5{left:6.750000px;}
.x6{left:33.750000px;}
.x7{left:60.750000px;}
.x3{left:108.000000px;}
.x4{left:109.125000px;}
.x2{left:158.016143px;}
.x1{left:341.904184px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-13.263021pt;}
.ws2{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-6.516248pt;}
._5{margin-left:-5.483035pt;}
._3{margin-left:-4.451595pt;}
._2{margin-left:-3.359376pt;}
._1{margin-left:-1.373009pt;}
._0{width:1.230868pt;}
._6{width:2.525932pt;}
._7{width:44.265624pt;}
.fs3{font-size:58.666668pt;}
.fs1{font-size:80.000000pt;}
.fs2{font-size:106.666664pt;}
.fs0{font-size:138.666672pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:10.666655pt;}
.y4e{bottom:10.666658pt;}
.y57{bottom:10.666659pt;}
.y67{bottom:10.666661pt;}
.y1f{bottom:10.666666pt;}
.y40{bottom:28.570306pt;}
.y47{bottom:28.570309pt;}
.y4d{bottom:28.570311pt;}
.y56{bottom:28.570312pt;}
.y66{bottom:28.570314pt;}
.y3f{bottom:46.473946pt;}
.y46{bottom:46.473949pt;}
.y4c{bottom:46.473951pt;}
.y65{bottom:46.473954pt;}
.y55{bottom:46.473958pt;}
.y3e{bottom:64.377599pt;}
.y45{bottom:64.377602pt;}
.y54{bottom:64.377603pt;}
.y4b{bottom:64.377605pt;}
.y64{bottom:64.377607pt;}
.y3d{bottom:82.281239pt;}
.y44{bottom:82.281242pt;}
.y63{bottom:82.281247pt;}
.y53{bottom:82.281249pt;}
.y3c{bottom:100.184893pt;}
.y43{bottom:100.184895pt;}
.y62{bottom:100.184900pt;}
.y4a{bottom:113.098963pt;}
.y3b{bottom:118.088533pt;}
.y52{bottom:118.088541pt;}
.y3a{bottom:135.992186pt;}
.y51{bottom:135.992187pt;}
.y61{bottom:135.992194pt;}
.y1d{bottom:138.807294pt;}
.y39{bottom:153.895826pt;}
.y50{bottom:153.895832pt;}
.y60{bottom:153.895834pt;}
.y1c{bottom:159.396487pt;}
.y38{bottom:171.799466pt;}
.y5f{bottom:171.799474pt;}
.y37{bottom:189.703119pt;}
.y5e{bottom:189.703127pt;}
.y1b{bottom:193.182945pt;}
.y49{bottom:199.713541pt;}
.y36{bottom:207.606759pt;}
.y5d{bottom:207.606767pt;}
.y35{bottom:225.510413pt;}
.y5c{bottom:225.510421pt;}
.y42{bottom:232.617192pt;}
.y34{bottom:243.414052pt;}
.y5b{bottom:243.414060pt;}
.y1a{bottom:252.087234pt;}
.y33{bottom:261.317706pt;}
.y5a{bottom:261.317714pt;}
.y19{bottom:272.676429pt;}
.y32{bottom:279.221346pt;}
.y18{bottom:293.265620pt;}
.y31{bottom:297.124999pt;}
.y17{bottom:313.854814pt;}
.y30{bottom:315.028639pt;}
.y2f{bottom:332.932279pt;}
.y16{bottom:334.444007pt;}
.y2e{bottom:350.835933pt;}
.y41{bottom:355.039061pt;}
.y15{bottom:368.230465pt;}
.y2d{bottom:368.739572pt;}
.y2c{bottom:386.643226pt;}
.y20{bottom:387.942715pt;}
.y2b{bottom:404.546866pt;}
.y2a{bottom:422.450519pt;}
.y14{bottom:427.134767pt;}
.y29{bottom:440.354159pt;}
.y13{bottom:447.723961pt;}
.y28{bottom:458.257799pt;}
.y12{bottom:468.313154pt;}
.y27{bottom:476.161452pt;}
.y6a{bottom:477.660154pt;}
.y11{bottom:488.902340pt;}
.y26{bottom:494.065092pt;}
.y69{bottom:498.249354pt;}
.y10{bottom:509.491541pt;}
.y25{bottom:511.968743pt;}
.y68{bottom:518.838541pt;}
.y24{bottom:529.872389pt;}
.yf{bottom:530.080727pt;}
.y59{bottom:534.075520pt;}
.y23{bottom:547.776035pt;}
.ye{bottom:563.867185pt;}
.y22{bottom:565.679680pt;}
.y21{bottom:583.583327pt;}
.yd{bottom:622.771481pt;}
.yc{bottom:643.360674pt;}
.yb{bottom:677.147131pt;}
.ya{bottom:736.051438pt;}
.y9{bottom:756.640633pt;}
.y8{bottom:777.229821pt;}
.y7{bottom:797.819016pt;}
.y58{bottom:817.630208pt;}
.y6{bottom:818.408207pt;}
.y5{bottom:838.997401pt;}
.y4f{bottom:850.533855pt;}
.y4{bottom:859.586594pt;}
.y3{bottom:893.373047pt;}
.y2{bottom:954.587240pt;}
.y1{bottom:993.015624pt;}
.y1e{bottom:993.763021pt;}
.h5{height:31.903645pt;}
.h6{height:41.421876pt;}
.h4{height:42.109376pt;}
.h2{height:55.000000pt;}
.h3{height:72.916665pt;}
.h9{height:85.614584pt;}
.h1{height:99.531254pt;}
.h8{height:121.421875pt;}
.ha{height:175.132812pt;}
.hb{height:282.554693pt;}
.h7{height:604.820307pt;}
.h0{height:1122.666667pt;}
.w1{width:600.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x5{left:6.000000pt;}
.x6{left:30.000000pt;}
.x7{left:54.000000pt;}
.x3{left:96.000000pt;}
.x4{left:97.000000pt;}
.x2{left:140.458794pt;}
.x1{left:303.914830pt;}
}




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