
    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_c328b746c986a55668f063f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_6d6810fc7708c3a03458805d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.862793;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_588a51e9254b34b2e3e3d1f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.326172;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_a4e9a3f717b4807786a758e6.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b985e83c08ac7a4a01002c4e.woff2')format("woff");}.ff5{font-family:ff5;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;}
.m2{transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:98.999960px;}
.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:-59.718216px;}
.ws4{word-spacing:-40.679984px;}
.ws3{word-spacing:-28.471666px;}
.ws2{word-spacing:-21.881230px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-10.759771px;}
._6{margin-left:-8.504299px;}
._9{margin-left:-7.349409px;}
._2{margin-left:-6.075532px;}
._0{margin-left:-4.514063px;}
._5{margin-left:-2.863479px;}
._1{margin-left:-1.611021px;}
._3{width:1.736344px;}
._8{width:227.481987px;}
._7{width:806.766067px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,128,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:3.524399px;}
.fs8{font-size:71.999971px;}
.fs4{font-size:73.181371px;}
.fs5{font-size:95.222962px;}
.fs1{font-size:95.759962px;}
.fs6{font-size:107.999957px;}
.fs2{font-size:120.239952px;}
.fs9{font-size:179.999928px;}
.fsa{font-size:192.239923px;}
.fs3{font-size:239.759904px;}
.fs0{font-size:264.239894px;}
.y37{bottom:-38.519806px;}
.y16{bottom:-6.119819px;}
.y15{bottom:-0.179821px;}
.y0{bottom:0.000000px;}
.yc{bottom:5.220142px;}
.yf{bottom:5.400153px;}
.y1a{bottom:5.400179px;}
.y20{bottom:5.400193px;}
.y25{bottom:5.400207px;}
.y12{bottom:6.840167px;}
.y1c{bottom:6.840181px;}
.y23{bottom:6.840210px;}
.y39{bottom:9.720194px;}
.y3b{bottom:12.060194px;}
.y29{bottom:96.060319px;}
.y32{bottom:109.740313px;}
.y28{bottom:128.460306px;}
.y2a{bottom:159.420293px;}
.y27{bottom:160.860293px;}
.y3f{bottom:170.580289px;}
.y31{bottom:193.440280px;}
.y30{bottom:211.620273px;}
.y6{bottom:214.320271px;}
.y3e{bottom:235.380263px;}
.y2f{bottom:244.020260px;}
.y45{bottom:248.340258px;}
.y5{bottom:248.880258px;}
.y2e{bottom:276.420247px;}
.y44{bottom:282.900244px;}
.y4{bottom:283.440244px;}
.y3d{bottom:300.180237px;}
.y2d{bottom:308.820234px;}
.y43{bottom:317.460230px;}
.y3{bottom:319.620229px;}
.y2c{bottom:341.220221px;}
.y42{bottom:353.640216px;}
.y3c{bottom:354.180215px;}
.y26{bottom:357.780214px;}
.y22{bottom:361.740000px;}
.y24{bottom:369.120000px;}
.y2b{bottom:373.620208px;}
.y21{bottom:374.520207px;}
.y3a{bottom:396.120000px;}
.y38{bottom:398.460000px;}
.y1e{bottom:404.400195px;}
.y1f{bottom:404.940000px;}
.y1d{bottom:410.340193px;}
.y1b{bottom:433.740000px;}
.y19{bottom:441.120000px;}
.y14{bottom:446.700000px;}
.y2{bottom:459.660173px;}
.y11{bottom:469.740000px;}
.y36{bottom:472.980168px;}
.y41{bottom:474.960167px;}
.y13{bottom:476.580167px;}
.y10{bottom:482.520164px;}
.ye{bottom:505.560000px;}
.yd{bottom:510.960153px;}
.y35{bottom:526.980146px;}
.yb{bottom:533.820000px;}
.y1{bottom:548.220138px;}
.y40{bottom:590.160121px;}
.y34{bottom:591.780120px;}
.y18{bottom:604.740115px;}
.y17{bottom:637.140102px;}
.y33{bottom:645.780099px;}
.ya{bottom:695.640079px;}
.y8{bottom:729.660065px;}
.y7{bottom:756.840054px;}
.y9{bottom:767.640050px;}
.h14{height:1.800000px;}
.h11{height:3.674117px;}
.h16{height:4.320000px;}
.hf{height:5.580000px;}
.h10{height:12.960000px;}
.hc{height:19.980000px;}
.hd{height:20.160000px;}
.h6{height:25.380000px;}
.h8{height:25.560000px;}
.h9{height:32.940000px;}
.h17{height:48.240000px;}
.h18{height:50.580000px;}
.h12{height:59.378882px;}
.hb{height:63.466476px;}
.h7{height:76.290150px;}
.h3{height:78.973914px;}
.h4{height:82.430123px;}
.he{height:89.068324px;}
.ha{height:99.268078px;}
.h15{height:119.970655px;}
.h13{height:148.447206px;}
.h19{height:158.541616px;}
.h5{height:197.731679px;}
.h2{height:217.920499px;}
.h0{height:892.920000px;}
.h1{height:893.250000px;}
.w6{width:5.400000px;}
.wd{width:6.480000px;}
.w7{width:9.180000px;}
.w3{width:11.340000px;}
.w9{width:14.580000px;}
.we{width:15.660000px;}
.w8{width:29.700000px;}
.wb{width:38.340000px;}
.w5{width:61.560000px;}
.w4{width:78.120000px;}
.wc{width:88.740000px;}
.wa{width:94.500000px;}
.w2{width:99.540000px;}
.wf{width:723.780000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x24{left:135.359946px;}
.xb{left:142.020000px;}
.x1e{left:148.319941px;}
.x1f{left:154.259938px;}
.x2d{left:155.519938px;}
.x27{left:156.779937px;}
.x9{left:162.719935px;}
.x2e{left:196.019922px;}
.x1a{left:236.520000px;}
.x1{left:237.779905px;}
.xc{left:241.560000px;}
.x4{left:277.559889px;}
.x8{left:284.759886px;}
.x2a{left:311.039876px;}
.x2f{left:325.619870px;}
.x30{left:331.019868px;}
.x26{left:335.519866px;}
.x5{left:355.679858px;}
.x29{left:369.359852px;}
.x20{left:380.339848px;}
.x15{left:384.480000px;}
.xd{left:402.660000px;}
.x16{left:414.000000px;}
.x6{left:415.979834px;}
.x22{left:418.500000px;}
.xa{left:429.119828px;}
.x28{left:445.319822px;}
.x11{left:448.020000px;}
.x12{left:459.719816px;}
.x2{left:474.119810px;}
.x1b{left:478.080000px;}
.xe{left:480.780000px;}
.x17{left:482.220000px;}
.x7{left:488.339805px;}
.x3{left:502.559799px;}
.x25{left:509.039796px;}
.x2c{left:510.299796px;}
.x18{left:511.739795px;}
.x1c{left:516.240000px;}
.x13{left:530.280000px;}
.x19{left:544.499782px;}
.x14{left:562.139775px;}
.x2b{left:565.019774px;}
.xf{left:570.420000px;}
.x10{left:631.980000px;}
.x1d{left:633.060000px;}
.x21{left:655.380000px;}
.x23{left:656.460000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:87.999965pt;}
.ws1{word-spacing:-53.082859pt;}
.ws4{word-spacing:-36.159986pt;}
.ws3{word-spacing:-25.308147pt;}
.ws2{word-spacing:-19.449982pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-9.564241pt;}
._6{margin-left:-7.559376pt;}
._9{margin-left:-6.532808pt;}
._2{margin-left:-5.400472pt;}
._0{margin-left:-4.012500pt;}
._5{margin-left:-2.545314pt;}
._1{margin-left:-1.432019pt;}
._3{width:1.543417pt;}
._8{width:202.206211pt;}
._7{width:717.125393pt;}
.fs7{font-size:3.132799pt;}
.fs8{font-size:63.999974pt;}
.fs4{font-size:65.050107pt;}
.fs5{font-size:84.642633pt;}
.fs1{font-size:85.119966pt;}
.fs6{font-size:95.999962pt;}
.fs2{font-size:106.879957pt;}
.fs9{font-size:159.999936pt;}
.fsa{font-size:170.879932pt;}
.fs3{font-size:213.119915pt;}
.fs0{font-size:234.879906pt;}
.y37{bottom:-34.239828pt;}
.y16{bottom:-5.439839pt;}
.y15{bottom:-0.159841pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:4.640126pt;}
.yf{bottom:4.800136pt;}
.y1a{bottom:4.800159pt;}
.y20{bottom:4.800172pt;}
.y25{bottom:4.800184pt;}
.y12{bottom:6.080148pt;}
.y1c{bottom:6.080161pt;}
.y23{bottom:6.080186pt;}
.y39{bottom:8.640172pt;}
.y3b{bottom:10.720172pt;}
.y29{bottom:85.386950pt;}
.y32{bottom:97.546945pt;}
.y28{bottom:114.186938pt;}
.y2a{bottom:141.706927pt;}
.y27{bottom:142.986927pt;}
.y3f{bottom:151.626923pt;}
.y31{bottom:171.946915pt;}
.y30{bottom:188.106909pt;}
.y6{bottom:190.506908pt;}
.y3e{bottom:209.226900pt;}
.y2f{bottom:216.906897pt;}
.y45{bottom:220.746896pt;}
.y5{bottom:221.226896pt;}
.y2e{bottom:245.706886pt;}
.y44{bottom:251.466884pt;}
.y4{bottom:251.946883pt;}
.y3d{bottom:266.826877pt;}
.y2d{bottom:274.506874pt;}
.y43{bottom:282.186871pt;}
.y3{bottom:284.106871pt;}
.y2c{bottom:303.306863pt;}
.y42{bottom:314.346858pt;}
.y3c{bottom:314.826858pt;}
.y26{bottom:318.026857pt;}
.y22{bottom:321.546667pt;}
.y24{bottom:328.106667pt;}
.y2b{bottom:332.106851pt;}
.y21{bottom:332.906851pt;}
.y3a{bottom:352.106667pt;}
.y38{bottom:354.186667pt;}
.y1e{bottom:359.466840pt;}
.y1f{bottom:359.946667pt;}
.y1d{bottom:364.746838pt;}
.y1b{bottom:385.546667pt;}
.y19{bottom:392.106667pt;}
.y14{bottom:397.066667pt;}
.y2{bottom:408.586821pt;}
.y11{bottom:417.546667pt;}
.y36{bottom:420.426816pt;}
.y41{bottom:422.186815pt;}
.y13{bottom:423.626815pt;}
.y10{bottom:428.906813pt;}
.ye{bottom:449.386667pt;}
.yd{bottom:454.186802pt;}
.y35{bottom:468.426797pt;}
.yb{bottom:474.506667pt;}
.y1{bottom:487.306789pt;}
.y40{bottom:524.586774pt;}
.y34{bottom:526.026774pt;}
.y18{bottom:537.546769pt;}
.y17{bottom:566.346758pt;}
.y33{bottom:574.026755pt;}
.ya{bottom:618.346737pt;}
.y8{bottom:648.586725pt;}
.y7{bottom:672.746715pt;}
.y9{bottom:682.346711pt;}
.h14{height:1.600000pt;}
.h11{height:3.265882pt;}
.h16{height:3.840000pt;}
.hf{height:4.960000pt;}
.h10{height:11.520000pt;}
.hc{height:17.760000pt;}
.hd{height:17.920000pt;}
.h6{height:22.560000pt;}
.h8{height:22.720000pt;}
.h9{height:29.280000pt;}
.h17{height:42.880000pt;}
.h18{height:44.960000pt;}
.h12{height:52.781229pt;}
.hb{height:56.414645pt;}
.h7{height:67.813466pt;}
.h3{height:70.199034pt;}
.h4{height:73.271221pt;}
.he{height:79.171843pt;}
.ha{height:88.238292pt;}
.h15{height:106.640582pt;}
.h13{height:131.953072pt;}
.h19{height:140.925881pt;}
.h5{height:175.761492pt;}
.h2{height:193.707110pt;}
.h0{height:793.706667pt;}
.h1{height:794.000000pt;}
.w6{width:4.800000pt;}
.wd{width:5.760000pt;}
.w7{width:8.160000pt;}
.w3{width:10.080000pt;}
.w9{width:12.960000pt;}
.we{width:13.920000pt;}
.w8{width:26.400000pt;}
.wb{width:34.080000pt;}
.w5{width:54.720000pt;}
.w4{width:69.440000pt;}
.wc{width:78.880000pt;}
.wa{width:84.000000pt;}
.w2{width:88.480000pt;}
.wf{width:643.360000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x24{left:120.319952pt;}
.xb{left:126.240000pt;}
.x1e{left:131.839947pt;}
.x1f{left:137.119945pt;}
.x2d{left:138.239945pt;}
.x27{left:139.359944pt;}
.x9{left:144.639942pt;}
.x2e{left:174.239930pt;}
.x1a{left:210.240000pt;}
.x1{left:211.359915pt;}
.xc{left:214.720000pt;}
.x4{left:246.719901pt;}
.x8{left:253.119899pt;}
.x2a{left:276.479889pt;}
.x2f{left:289.439884pt;}
.x30{left:294.239882pt;}
.x26{left:298.239881pt;}
.x5{left:316.159874pt;}
.x29{left:328.319869pt;}
.x20{left:338.079865pt;}
.x15{left:341.760000pt;}
.xd{left:357.920000pt;}
.x16{left:368.000000pt;}
.x6{left:369.759852pt;}
.x22{left:372.000000pt;}
.xa{left:381.439847pt;}
.x28{left:395.839842pt;}
.x11{left:398.240000pt;}
.x12{left:408.639837pt;}
.x2{left:421.439831pt;}
.x1b{left:424.960000pt;}
.xe{left:427.360000pt;}
.x17{left:428.640000pt;}
.x7{left:434.079826pt;}
.x3{left:446.719821pt;}
.x25{left:452.479819pt;}
.x2c{left:453.599819pt;}
.x18{left:454.879818pt;}
.x1c{left:458.880000pt;}
.x13{left:471.360000pt;}
.x19{left:483.999806pt;}
.x14{left:499.679800pt;}
.x2b{left:502.239799pt;}
.xf{left:507.040000pt;}
.x10{left:561.760000pt;}
.x1d{left:562.720000pt;}
.x21{left:582.560000pt;}
.x23{left:583.520000pt;}
}




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