
    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_dd47532f9b70dd475d22f7ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_8292521eeb3cddc7b2e4b16c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_41420aa5076590d4cb173f66.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739000;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_f32eec7053af1f2063f711d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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);}
.v3{vertical-align:-42.012000px;}
.v2{vertical-align:-9.696000px;}
.v1{vertical-align:-8.334000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.071946px;}
.ls2{letter-spacing:0.155964px;}
.ls8{letter-spacing:0.237042px;}
.ls5{letter-spacing:0.476958px;}
.ls4{letter-spacing:17.757042px;}
.ls9{letter-spacing:126.418812px;}
.ls7{letter-spacing:131.292018px;}
.ls1{letter-spacing:133.955988px;}
.ls3{letter-spacing:136.062012px;}
.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;}
}
.ws2{word-spacing:-59.832000px;}
.ws3{word-spacing:-46.545972px;}
.ws9{word-spacing:-43.357992px;}
.wsa{word-spacing:-43.202028px;}
.ws8{word-spacing:-40.562772px;}
.ws4{word-spacing:-39.902958px;}
.wsc{word-spacing:-36.877824px;}
.ws7{word-spacing:-36.559014px;}
.ws0{word-spacing:-26.570394px;}
.ws5{word-spacing:-19.929042px;}
.ws6{word-spacing:-16.629972px;}
.wsb{word-spacing:-0.144054px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-12.165192px;}
._5{margin-left:-10.297512px;}
._3{margin-left:-8.733984px;}
._4{margin-left:-6.658164px;}
._9{margin-left:-5.163096px;}
._a{margin-left:-2.489412px;}
._0{margin-left:-1.296000px;}
._2{width:1.559640px;}
._6{width:18.009450px;}
._7{width:56.900844px;}
._1{width:1488.411684px;}
._8{width:2187.793536px;}
.fc3{color:rgb(0,151,167);}
.fc1{color:rgb(42,96,153);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:60.036000px;}
.fs7{font-size:71.946000px;}
.fs2{font-size:95.922000px;}
.fsb{font-size:108.000000px;}
.fsa{font-size:120.078000px;}
.fs9{font-size:131.982000px;}
.fs5{font-size:144.054000px;}
.fsc{font-size:146.436000px;}
.fs6{font-size:152.388000px;}
.fs3{font-size:155.964000px;}
.fs1{font-size:168.036000px;}
.fs8{font-size:181.134000px;}
.fs0{font-size:216.000000px;}
.fsd{font-size:228.078000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.yb{bottom:27.595500px;}
.y6{bottom:28.786500px;}
.y22{bottom:38.098500px;}
.y17{bottom:63.738000px;}
.y47{bottom:78.109500px;}
.y3a{bottom:89.248500px;}
.y1d{bottom:91.162500px;}
.y40{bottom:97.030500px;}
.y11{bottom:105.874500px;}
.y16{bottom:123.859500px;}
.y5{bottom:139.039500px;}
.y46{bottom:145.035000px;}
.y2a{bottom:147.415500px;}
.y1c{bottom:149.244000px;}
.y42{bottom:150.859500px;}
.y3f{bottom:152.986500px;}
.y39{bottom:155.239500px;}
.y20{bottom:157.918500px;}
.y10{bottom:159.747000px;}
.y36{bottom:179.220000px;}
.y32{bottom:182.665500px;}
.y3e{bottom:204.562500px;}
.y41{bottom:206.688000px;}
.y1b{bottom:207.114000px;}
.y1f{bottom:207.582000px;}
.y45{bottom:211.918500px;}
.yf{bottom:213.448500px;}
.y15{bottom:217.488000px;}
.y31{bottom:218.679000px;}
.y2d{bottom:221.230500px;}
.ya{bottom:226.332000px;}
.y27{bottom:234.879000px;}
.y4{bottom:241.639500px;}
.y30{bottom:254.692500px;}
.y1e{bottom:257.244000px;}
.y3d{bottom:260.518500px;}
.y1a{bottom:265.026000px;}
.ye{bottom:267.279000px;}
.y14{bottom:275.358000px;}
.y29{bottom:277.015500px;}
.y44{bottom:278.971500px;}
.y9{bottom:280.162500px;}
.y26{bottom:286.626000px;}
.y38{bottom:287.220000px;}
.y2f{bottom:290.665500px;}
.y2c{bottom:293.215500px;}
.y3c{bottom:312.138000px;}
.y3{bottom:316.176000px;}
.yd{bottom:320.982000px;}
.y19{bottom:322.938000px;}
.y34{bottom:327.742500px;}
.y35{bottom:331.015500px;}
.y13{bottom:333.439500px;}
.y25{bottom:334.162500px;}
.y28{bottom:341.815500px;}
.y8{bottom:349.767000px;}
.y37{bottom:353.211000px;}
.y2e{bottom:363.288000px;}
.y2b{bottom:365.839500px;}
.y3b{bottom:368.092500px;}
.yc{bottom:374.811000px;}
.y24{bottom:385.909500px;}
.y2{bottom:390.714000px;}
.y12{bottom:393.562500px;}
.y18{bottom:425.367000px;}
.y43{bottom:457.767000px;}
.y33{bottom:467.248500px;}
.y7{bottom:490.167000px;}
.y23{bottom:498.883500px;}
.y21{bottom:506.070000px;}
.h7{height:43.737164px;}
.ha{height:52.413785px;}
.h5{height:69.880676px;}
.he{height:78.679688px;}
.hd{height:87.478699px;}
.hc{height:96.086505px;}
.h8{height:104.945590px;}
.h11{height:105.303474px;}
.h12{height:106.095771px;}
.hf{height:106.680914px;}
.h9{height:110.942631px;}
.h6{height:113.622211px;}
.h4{height:122.416852px;}
.hb{height:131.870505px;}
.h3{height:157.253906px;}
.h10{height:166.047021px;}
.h2{height:607.477500px;}
.h1{height:607.500000px;}
.h0{height:607.521260px;}
.w1{width:1079.956500px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x5{left:10.630500px;}
.x6{left:36.736500px;}
.x9{left:42.732000px;}
.x7{left:44.263500px;}
.xc{left:45.921000px;}
.x1{left:49.492500px;}
.xa{left:90.736500px;}
.x2{left:140.697000px;}
.x16{left:155.239500px;}
.x19{left:158.853000px;}
.x3{left:175.648500px;}
.x17{left:177.307500px;}
.xb{left:237.769500px;}
.x15{left:383.569500px;}
.x12{left:390.586500px;}
.x4{left:399.769500px;}
.x13{left:402.916500px;}
.x14{left:406.956000px;}
.xe{left:694.516500px;}
.x10{left:705.741000px;}
.x11{left:710.716500px;}
.xf{left:715.053000px;}
.xd{left:1038.160500px;}
.x18{left:1039.180500px;}
.x8{left:1046.409000px;}
@media print{
.v3{vertical-align:-37.344000pt;}
.v2{vertical-align:-8.618667pt;}
.v1{vertical-align:-7.408000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.063952pt;}
.ls2{letter-spacing:0.138635pt;}
.ls8{letter-spacing:0.210704pt;}
.ls5{letter-spacing:0.423963pt;}
.ls4{letter-spacing:15.784037pt;}
.ls9{letter-spacing:112.372277pt;}
.ls7{letter-spacing:116.704016pt;}
.ls1{letter-spacing:119.071989pt;}
.ls3{letter-spacing:120.944011pt;}
.ws2{word-spacing:-53.184000pt;}
.ws3{word-spacing:-41.374197pt;}
.ws9{word-spacing:-38.540437pt;}
.wsa{word-spacing:-38.401803pt;}
.ws8{word-spacing:-36.055797pt;}
.ws4{word-spacing:-35.469296pt;}
.wsc{word-spacing:-32.780288pt;}
.ws7{word-spacing:-32.496901pt;}
.ws0{word-spacing:-23.618128pt;}
.ws5{word-spacing:-17.714704pt;}
.ws6{word-spacing:-14.782197pt;}
.wsb{word-spacing:-0.128048pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-10.813504pt;}
._5{margin-left:-9.153344pt;}
._3{margin-left:-7.763541pt;}
._4{margin-left:-5.918368pt;}
._9{margin-left:-4.589419pt;}
._a{margin-left:-2.212811pt;}
._0{margin-left:-1.152000pt;}
._2{width:1.386347pt;}
._6{width:16.008400pt;}
._7{width:50.578528pt;}
._1{width:1323.032608pt;}
._8{width:1944.705365pt;}
.fs4{font-size:53.365333pt;}
.fs7{font-size:63.952000pt;}
.fs2{font-size:85.264000pt;}
.fsb{font-size:96.000000pt;}
.fsa{font-size:106.736000pt;}
.fs9{font-size:117.317333pt;}
.fs5{font-size:128.048000pt;}
.fsc{font-size:130.165333pt;}
.fs6{font-size:135.456000pt;}
.fs3{font-size:138.634667pt;}
.fs1{font-size:149.365333pt;}
.fs8{font-size:161.008000pt;}
.fs0{font-size:192.000000pt;}
.fsd{font-size:202.736000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.yb{bottom:24.529333pt;}
.y6{bottom:25.588000pt;}
.y22{bottom:33.865333pt;}
.y17{bottom:56.656000pt;}
.y47{bottom:69.430667pt;}
.y3a{bottom:79.332000pt;}
.y1d{bottom:81.033333pt;}
.y40{bottom:86.249333pt;}
.y11{bottom:94.110667pt;}
.y16{bottom:110.097333pt;}
.y5{bottom:123.590667pt;}
.y46{bottom:128.920000pt;}
.y2a{bottom:131.036000pt;}
.y1c{bottom:132.661333pt;}
.y42{bottom:134.097333pt;}
.y3f{bottom:135.988000pt;}
.y39{bottom:137.990667pt;}
.y20{bottom:140.372000pt;}
.y10{bottom:141.997333pt;}
.y36{bottom:159.306667pt;}
.y32{bottom:162.369333pt;}
.y3e{bottom:181.833333pt;}
.y41{bottom:183.722667pt;}
.y1b{bottom:184.101333pt;}
.y1f{bottom:184.517333pt;}
.y45{bottom:188.372000pt;}
.yf{bottom:189.732000pt;}
.y15{bottom:193.322667pt;}
.y31{bottom:194.381333pt;}
.y2d{bottom:196.649333pt;}
.ya{bottom:201.184000pt;}
.y27{bottom:208.781333pt;}
.y4{bottom:214.790667pt;}
.y30{bottom:226.393333pt;}
.y1e{bottom:228.661333pt;}
.y3d{bottom:231.572000pt;}
.y1a{bottom:235.578667pt;}
.ye{bottom:237.581333pt;}
.y14{bottom:244.762667pt;}
.y29{bottom:246.236000pt;}
.y44{bottom:247.974667pt;}
.y9{bottom:249.033333pt;}
.y26{bottom:254.778667pt;}
.y38{bottom:255.306667pt;}
.y2f{bottom:258.369333pt;}
.y2c{bottom:260.636000pt;}
.y3c{bottom:277.456000pt;}
.y3{bottom:281.045333pt;}
.yd{bottom:285.317333pt;}
.y19{bottom:287.056000pt;}
.y34{bottom:291.326667pt;}
.y35{bottom:294.236000pt;}
.y13{bottom:296.390667pt;}
.y25{bottom:297.033333pt;}
.y28{bottom:303.836000pt;}
.y8{bottom:310.904000pt;}
.y37{bottom:313.965333pt;}
.y2e{bottom:322.922667pt;}
.y2b{bottom:325.190667pt;}
.y3b{bottom:327.193333pt;}
.yc{bottom:333.165333pt;}
.y24{bottom:343.030667pt;}
.y2{bottom:347.301333pt;}
.y12{bottom:349.833333pt;}
.y18{bottom:378.104000pt;}
.y43{bottom:406.904000pt;}
.y33{bottom:415.332000pt;}
.y7{bottom:435.704000pt;}
.y23{bottom:443.452000pt;}
.y21{bottom:449.840000pt;}
.h7{height:38.877479pt;}
.ha{height:46.590031pt;}
.h5{height:62.116156pt;}
.he{height:69.937500pt;}
.hd{height:77.758844pt;}
.hc{height:85.410227pt;}
.h8{height:93.284969pt;}
.h11{height:93.603088pt;}
.h12{height:94.307352pt;}
.hf{height:94.827479pt;}
.h9{height:98.615672pt;}
.h6{height:100.997521pt;}
.h4{height:108.814979pt;}
.hb{height:117.218227pt;}
.h3{height:139.781250pt;}
.h10{height:147.597352pt;}
.h2{height:539.980000pt;}
.h1{height:540.000000pt;}
.h0{height:540.018898pt;}
.w1{width:959.961333pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.449333pt;}
.x6{left:32.654667pt;}
.x9{left:37.984000pt;}
.x7{left:39.345333pt;}
.xc{left:40.818667pt;}
.x1{left:43.993333pt;}
.xa{left:80.654667pt;}
.x2{left:125.064000pt;}
.x16{left:137.990667pt;}
.x19{left:141.202667pt;}
.x3{left:156.132000pt;}
.x17{left:157.606667pt;}
.xb{left:211.350667pt;}
.x15{left:340.950667pt;}
.x12{left:347.188000pt;}
.x4{left:355.350667pt;}
.x13{left:358.148000pt;}
.x14{left:361.738667pt;}
.xe{left:617.348000pt;}
.x10{left:627.325333pt;}
.x11{left:631.748000pt;}
.xf{left:635.602667pt;}
.xd{left:922.809333pt;}
.x18{left:923.716000pt;}
.x8{left:930.141333pt;}
}




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