
    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_0a23ebc8fe017f0b5c647225.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_477ef8941d54424b2c71ffdb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_a2d2ec94ecb286d2f559b103.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_06cf44d5f387536fdd80c320.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_658c8708e44b9893a1973656.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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;}
.m1{transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-1.500000,0.000000,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;}
.ls12{letter-spacing:-0.134316px;}
.ls10{letter-spacing:-0.115128px;}
.ls1c{letter-spacing:-0.096048px;}
.ls1b{letter-spacing:-0.095940px;}
.ls11{letter-spacing:-0.076752px;}
.lsf{letter-spacing:-0.048024px;}
.ls9{letter-spacing:-0.043200px;}
.lse{letter-spacing:-0.036000px;}
.lsd{letter-spacing:-0.028800px;}
.ls1a{letter-spacing:-0.024012px;}
.lsb{letter-spacing:-0.007200px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.007200px;}
.ls1{letter-spacing:0.014400px;}
.ls22{letter-spacing:0.016812px;}
.ls7{letter-spacing:0.021600px;}
.lsa{letter-spacing:0.028800px;}
.ls17{letter-spacing:0.033624px;}
.ls0{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.043200px;}
.ls4{letter-spacing:0.050400px;}
.ls21{letter-spacing:0.050436px;}
.ls2{letter-spacing:0.057600px;}
.ls3{letter-spacing:0.064800px;}
.ls13{letter-spacing:0.067248px;}
.ls14{letter-spacing:0.079164px;}
.ls6{letter-spacing:0.079200px;}
.ls16{letter-spacing:0.084060px;}
.ls19{letter-spacing:0.086400px;}
.ls15{letter-spacing:0.100872px;}
.ls1e{letter-spacing:0.117684px;}
.ls20{letter-spacing:0.131940px;}
.ls1f{letter-spacing:0.151308px;}
.ls23{letter-spacing:0.158328px;}
.ls1d{letter-spacing:0.168120px;}
.ls18{letter-spacing:0.218556px;}
.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;}
}
.ws30{word-spacing:-0.285804px;}
.ws1e{word-spacing:-0.240120px;}
.ws1c{word-spacing:-0.136800px;}
.ws25{word-spacing:-0.134496px;}
.ws1a{word-spacing:-0.129600px;}
.ws2c{word-spacing:-0.120060px;}
.ws31{word-spacing:-0.117684px;}
.ws2f{word-spacing:-0.100872px;}
.ws2a{word-spacing:-0.096048px;}
.ws1d{word-spacing:-0.072036px;}
.ws2e{word-spacing:-0.067248px;}
.ws19{word-spacing:-0.057600px;}
.ws26{word-spacing:-0.050436px;}
.ws1f{word-spacing:-0.048024px;}
.ws28{word-spacing:-0.033624px;}
.ws29{word-spacing:-0.028800px;}
.ws22{word-spacing:-0.019188px;}
.ws4{word-spacing:-0.014400px;}
.ws0{word-spacing:0.000000px;}
.ws27{word-spacing:0.016812px;}
.ws1b{word-spacing:0.036000px;}
.ws24{word-spacing:0.052776px;}
.ws2b{word-spacing:0.057564px;}
.ws20{word-spacing:0.076752px;}
.ws23{word-spacing:0.095940px;}
.ws2d{word-spacing:0.105552px;}
.ws32{word-spacing:0.131940px;}
.ws21{word-spacing:0.144072px;}
.wsb{word-spacing:1.296000px;}
.wsc{word-spacing:1.324800px;}
.ws10{word-spacing:2.318400px;}
.wsf{word-spacing:2.527200px;}
.ws5{word-spacing:4.615200px;}
.wsd{word-spacing:5.025600px;}
.wse{word-spacing:5.047200px;}
.ws13{word-spacing:6.004800px;}
.ws16{word-spacing:6.019200px;}
.ws14{word-spacing:6.033600px;}
.ws11{word-spacing:6.055200px;}
.ws15{word-spacing:6.076800px;}
.ws12{word-spacing:6.105600px;}
.ws17{word-spacing:8.618400px;}
.ws18{word-spacing:8.625600px;}
.wsa{word-spacing:18.979200px;}
.ws9{word-spacing:19.080000px;}
.ws8{word-spacing:19.087200px;}
.ws3{word-spacing:19.857600px;}
.ws1{word-spacing:20.124000px;}
.ws2{word-spacing:20.289600px;}
.ws7{word-spacing:31.291200px;}
.ws6{word-spacing:31.305600px;}
._0{margin-left:-1.152000px;}
._1{width:4.536000px;}
._4{width:14.832000px;}
._2{width:41.446080px;}
._3{width:56.488320px;}
.fc2{color:rgb(0,154,154);}
.fc1{color:rgb(1,0,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs5{font-size:144.000000px;}
.fs4{font-size:168.120000px;}
.fs2{font-size:191.880000px;}
.fs1{font-size:240.120000px;}
.fs3{font-size:263.880000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:121.545000px;}
.y1d{bottom:132.978510px;}
.y32{bottom:150.519150px;}
.y2c{bottom:160.371000px;}
.y31{bottom:195.869520px;}
.y1c{bottom:196.155000px;}
.y2b{bottom:199.143000px;}
.y2a{bottom:237.915000px;}
.y30{bottom:241.219890px;}
.y29{bottom:286.570260px;}
.y28{bottom:332.004690px;}
.y1b{bottom:341.577090px;}
.y27{bottom:387.442260px;}
.y1a{bottom:413.553060px;}
.y2f{bottom:432.792630px;}
.y26{bottom:442.963890px;}
.y19{bottom:485.529030px;}
.y25{bottom:488.314260px;}
.y21{bottom:511.503030px;}
.y24{bottom:533.664630px;}
.y18{bottom:557.505000px;}
.y20{bottom:569.115000px;}
.y23{bottom:579.015000px;}
.y1f{bottom:652.029030px;}
.y17{bottom:684.660450px;}
.y22{bottom:685.755000px;}
.y2e{bottom:688.005000px;}
.y16{bottom:705.540450px;}
.y1e{bottom:724.005000px;}
.y15{bottom:726.240450px;}
.y14{bottom:746.940450px;}
.y13{bottom:767.640450px;}
.y12{bottom:788.250450px;}
.y11{bottom:808.950450px;}
.y10{bottom:829.650450px;}
.yf{bottom:850.350450px;}
.ye{bottom:871.050450px;}
.yd{bottom:891.750450px;}
.yc{bottom:912.450450px;}
.yb{bottom:933.150450px;}
.ya{bottom:953.850450px;}
.y9{bottom:974.550450px;}
.y8{bottom:995.250450px;}
.y7{bottom:1015.950450px;}
.y6{bottom:1036.650450px;}
.y5{bottom:1057.170450px;}
.y4{bottom:1077.870450px;}
.y3{bottom:1098.570450px;}
.y2{bottom:1119.450450px;}
.y1{bottom:1140.150450px;}
.h1{height:70.664062px;}
.h2{height:72.562500px;}
.h9{height:150.187500px;}
.h8{height:175.343906px;}
.h6{height:200.124844px;}
.h5{height:250.437656px;}
.h7{height:275.218594px;}
.h3{height:810.450000px;}
.h4{height:810.750000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:1080.450000px;}
.w3{width:1080.750000px;}
.x0{left:0.000000px;}
.xa{left:65.114250px;}
.xf{left:68.084250px;}
.xb{left:105.600930px;}
.x4{left:110.019210px;}
.x8{left:114.794250px;}
.xd{left:119.114250px;}
.x1{left:127.620000px;}
.xe{left:152.846250px;}
.x5{left:166.807590px;}
.x2{left:180.134250px;}
.x13{left:200.564250px;}
.x7{left:211.180290px;}
.x6{left:243.224250px;}
.x12{left:248.354250px;}
.x3{left:250.129230px;}
.x10{left:323.324250px;}
.xc{left:371.474250px;}
.x9{left:431.752650px;}
.x11{left:480.182640px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.119392pt;}
.ls10{letter-spacing:-0.102336pt;}
.ls1c{letter-spacing:-0.085376pt;}
.ls1b{letter-spacing:-0.085280pt;}
.ls11{letter-spacing:-0.068224pt;}
.lsf{letter-spacing:-0.042688pt;}
.ls9{letter-spacing:-0.038400pt;}
.lse{letter-spacing:-0.032000pt;}
.lsd{letter-spacing:-0.025600pt;}
.ls1a{letter-spacing:-0.021344pt;}
.lsb{letter-spacing:-0.006400pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.006400pt;}
.ls1{letter-spacing:0.012800pt;}
.ls22{letter-spacing:0.014944pt;}
.ls7{letter-spacing:0.019200pt;}
.lsa{letter-spacing:0.025600pt;}
.ls17{letter-spacing:0.029888pt;}
.ls0{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.038400pt;}
.ls4{letter-spacing:0.044800pt;}
.ls21{letter-spacing:0.044832pt;}
.ls2{letter-spacing:0.051200pt;}
.ls3{letter-spacing:0.057600pt;}
.ls13{letter-spacing:0.059776pt;}
.ls14{letter-spacing:0.070368pt;}
.ls6{letter-spacing:0.070400pt;}
.ls16{letter-spacing:0.074720pt;}
.ls19{letter-spacing:0.076800pt;}
.ls15{letter-spacing:0.089664pt;}
.ls1e{letter-spacing:0.104608pt;}
.ls20{letter-spacing:0.117280pt;}
.ls1f{letter-spacing:0.134496pt;}
.ls23{letter-spacing:0.140736pt;}
.ls1d{letter-spacing:0.149440pt;}
.ls18{letter-spacing:0.194272pt;}
.ws30{word-spacing:-0.254048pt;}
.ws1e{word-spacing:-0.213440pt;}
.ws1c{word-spacing:-0.121600pt;}
.ws25{word-spacing:-0.119552pt;}
.ws1a{word-spacing:-0.115200pt;}
.ws2c{word-spacing:-0.106720pt;}
.ws31{word-spacing:-0.104608pt;}
.ws2f{word-spacing:-0.089664pt;}
.ws2a{word-spacing:-0.085376pt;}
.ws1d{word-spacing:-0.064032pt;}
.ws2e{word-spacing:-0.059776pt;}
.ws19{word-spacing:-0.051200pt;}
.ws26{word-spacing:-0.044832pt;}
.ws1f{word-spacing:-0.042688pt;}
.ws28{word-spacing:-0.029888pt;}
.ws29{word-spacing:-0.025600pt;}
.ws22{word-spacing:-0.017056pt;}
.ws4{word-spacing:-0.012800pt;}
.ws0{word-spacing:0.000000pt;}
.ws27{word-spacing:0.014944pt;}
.ws1b{word-spacing:0.032000pt;}
.ws24{word-spacing:0.046912pt;}
.ws2b{word-spacing:0.051168pt;}
.ws20{word-spacing:0.068224pt;}
.ws23{word-spacing:0.085280pt;}
.ws2d{word-spacing:0.093824pt;}
.ws32{word-spacing:0.117280pt;}
.ws21{word-spacing:0.128064pt;}
.wsb{word-spacing:1.152000pt;}
.wsc{word-spacing:1.177600pt;}
.ws10{word-spacing:2.060800pt;}
.wsf{word-spacing:2.246400pt;}
.ws5{word-spacing:4.102400pt;}
.wsd{word-spacing:4.467200pt;}
.wse{word-spacing:4.486400pt;}
.ws13{word-spacing:5.337600pt;}
.ws16{word-spacing:5.350400pt;}
.ws14{word-spacing:5.363200pt;}
.ws11{word-spacing:5.382400pt;}
.ws15{word-spacing:5.401600pt;}
.ws12{word-spacing:5.427200pt;}
.ws17{word-spacing:7.660800pt;}
.ws18{word-spacing:7.667200pt;}
.wsa{word-spacing:16.870400pt;}
.ws9{word-spacing:16.960000pt;}
.ws8{word-spacing:16.966400pt;}
.ws3{word-spacing:17.651200pt;}
.ws1{word-spacing:17.888000pt;}
.ws2{word-spacing:18.035200pt;}
.ws7{word-spacing:27.814400pt;}
.ws6{word-spacing:27.827200pt;}
._0{margin-left:-1.024000pt;}
._1{width:4.032000pt;}
._4{width:13.184000pt;}
._2{width:36.840960pt;}
._3{width:50.211840pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:128.000000pt;}
.fs4{font-size:149.440000pt;}
.fs2{font-size:170.560000pt;}
.fs1{font-size:213.440000pt;}
.fs3{font-size:234.560000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:108.040000pt;}
.y1d{bottom:118.203120pt;}
.y32{bottom:133.794800pt;}
.y2c{bottom:142.552000pt;}
.y31{bottom:174.106240pt;}
.y1c{bottom:174.360000pt;}
.y2b{bottom:177.016000pt;}
.y2a{bottom:211.480000pt;}
.y30{bottom:214.417680pt;}
.y29{bottom:254.729120pt;}
.y28{bottom:295.115280pt;}
.y1b{bottom:303.624080pt;}
.y27{bottom:344.393120pt;}
.y1a{bottom:367.602720pt;}
.y2f{bottom:384.704560pt;}
.y26{bottom:393.745680pt;}
.y19{bottom:431.581360pt;}
.y25{bottom:434.057120pt;}
.y21{bottom:454.669360pt;}
.y24{bottom:474.368560pt;}
.y18{bottom:495.560000pt;}
.y20{bottom:505.880000pt;}
.y23{bottom:514.680000pt;}
.y1f{bottom:579.581360pt;}
.y17{bottom:608.587067pt;}
.y22{bottom:609.560000pt;}
.y2e{bottom:611.560000pt;}
.y16{bottom:627.147067pt;}
.y1e{bottom:643.560000pt;}
.y15{bottom:645.547067pt;}
.y14{bottom:663.947067pt;}
.y13{bottom:682.347067pt;}
.y12{bottom:700.667067pt;}
.y11{bottom:719.067067pt;}
.y10{bottom:737.467067pt;}
.yf{bottom:755.867067pt;}
.ye{bottom:774.267067pt;}
.yd{bottom:792.667067pt;}
.yc{bottom:811.067067pt;}
.yb{bottom:829.467067pt;}
.ya{bottom:847.867067pt;}
.y9{bottom:866.267067pt;}
.y8{bottom:884.667067pt;}
.y7{bottom:903.067067pt;}
.y6{bottom:921.467067pt;}
.y5{bottom:939.707067pt;}
.y4{bottom:958.107067pt;}
.y3{bottom:976.507067pt;}
.y2{bottom:995.067067pt;}
.y1{bottom:1013.467067pt;}
.h1{height:62.812500pt;}
.h2{height:64.500000pt;}
.h9{height:133.500000pt;}
.h8{height:155.861250pt;}
.h6{height:177.888750pt;}
.h5{height:222.611250pt;}
.h7{height:244.638750pt;}
.h3{height:720.400000pt;}
.h4{height:720.666667pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:960.400000pt;}
.w3{width:960.666667pt;}
.x0{left:0.000000pt;}
.xa{left:57.879333pt;}
.xf{left:60.519333pt;}
.xb{left:93.867493pt;}
.x4{left:97.794853pt;}
.x8{left:102.039333pt;}
.xd{left:105.879333pt;}
.x1{left:113.440000pt;}
.xe{left:135.863333pt;}
.x5{left:148.273413pt;}
.x2{left:160.119333pt;}
.x13{left:178.279333pt;}
.x7{left:187.715813pt;}
.x6{left:216.199333pt;}
.x12{left:220.759333pt;}
.x3{left:222.337093pt;}
.x10{left:287.399333pt;}
.xc{left:330.199333pt;}
.x9{left:383.780133pt;}
.x11{left:426.829013pt;}
}




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