
    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_4ce3f3cb692eb3d8c9e5c316.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.692383;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_3f89c896c1ca4e076e8b47df.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.105500;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_c0a1a8b7b58a0652e7b1a41f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.094500;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_079c9acb6584d7728165f26b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ceba64809f5d80619f244b98.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;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,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;}
.ls1{letter-spacing:-15.120000px;}
.ls14{letter-spacing:-0.529920px;}
.ls1c{letter-spacing:-0.348480px;}
.lse{letter-spacing:-0.331200px;}
.lsb{letter-spacing:-0.311040px;}
.ls6{letter-spacing:-0.306720px;}
.ls16{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.210240px;}
.ls5{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.167760px;}
.ls13{letter-spacing:-0.132480px;}
.ls17{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.066240px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.066240px;}
.ls1d{letter-spacing:0.126000px;}
.lsd{letter-spacing:0.132480px;}
.ls9{letter-spacing:0.138240px;}
.ls19{letter-spacing:0.174240px;}
.lsf{letter-spacing:0.198720px;}
.ls8{letter-spacing:0.204480px;}
.ls12{letter-spacing:0.245088px;}
.ls10{letter-spacing:0.264960px;}
.ls3{letter-spacing:0.360000px;}
.ls7{letter-spacing:1.508786px;}
.ls2{letter-spacing:8.856000px;}
.ls1e{letter-spacing:13.910400px;}
.ls15{letter-spacing:55.080000px;}
.ls0{letter-spacing:110.160000px;}
.ls1a{letter-spacing:117.900000px;}
.ls1b{letter-spacing:132.516000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-62.856000px;}
.ws3{word-spacing:-36.360000px;}
.ws5{word-spacing:-36.000000px;}
.ws4{word-spacing:-35.820000px;}
.ws2a{word-spacing:-35.022240px;}
.ws29{word-spacing:-34.499520px;}
.ws20{word-spacing:-33.552000px;}
.ws2b{word-spacing:-25.326000px;}
.ws27{word-spacing:-14.184000px;}
.ws21{word-spacing:-14.112000px;}
.wse{word-spacing:-13.380480px;}
.ws17{word-spacing:-13.314240px;}
.wsc{word-spacing:-13.248000px;}
.ws15{word-spacing:-12.916800px;}
.ws18{word-spacing:-12.718080px;}
.ws9{word-spacing:-2.586490px;}
.ws1e{word-spacing:-2.318400px;}
.ws14{word-spacing:-1.920960px;}
.ws1d{word-spacing:-1.854720px;}
.ws2f{word-spacing:-1.391040px;}
.ws1c{word-spacing:-1.258560px;}
.wsa{word-spacing:-1.226880px;}
.ws25{word-spacing:-1.152000px;}
.ws1f{word-spacing:-1.126080px;}
.wsb{word-spacing:-1.105920px;}
.ws2e{word-spacing:-0.993600px;}
.ws16{word-spacing:-0.880992px;}
.ws28{word-spacing:-0.720000px;}
.ws12{word-spacing:-0.662400px;}
.ws22{word-spacing:-0.432000px;}
.ws1a{word-spacing:-0.397440px;}
.ws7{word-spacing:-0.306720px;}
.ws11{word-spacing:-0.198720px;}
.ws1b{word-spacing:-0.132480px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:0.180000px;}
.ws26{word-spacing:0.288000px;}
.ws8{word-spacing:0.306720px;}
.ws2d{word-spacing:0.630720px;}
.wsd{word-spacing:0.635904px;}
.ws2c{word-spacing:0.756000px;}
.ws24{word-spacing:0.792000px;}
.ws23{word-spacing:1.008000px;}
.ws19{word-spacing:1.174320px;}
.ws13{word-spacing:1.321920px;}
.wsf{word-spacing:1.845360px;}
.ws10{word-spacing:3.499200px;}
.ws1{word-spacing:15.120000px;}
._7{margin-left:-1.440000px;}
._8{width:1.080000px;}
._4{width:2.246400px;}
._6{width:4.384800px;}
._1{width:9.633600px;}
._0{width:11.815200px;}
._5{width:13.240800px;}
._2{width:38.080800px;}
._3{width:47.520000px;}
.fc3{color:transparent;}
.fc1{color:rgb(227,180,72);}
.fc4{color:rgb(44,44,44);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fsb{font-size:84.240000px;}
.fs2{font-size:102.240000px;}
.fs3{font-size:107.770423px;}
.fs9{font-size:126.000000px;}
.fs4{font-size:138.240000px;}
.fs5{font-size:167.760000px;}
.fsa{font-size:174.240000px;}
.fs1{font-size:180.000000px;}
.fsc{font-size:210.240000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:84.102570px;}
.y7{bottom:119.196450px;}
.y22{bottom:143.579550px;}
.y27{bottom:158.519550px;}
.y10{bottom:164.999550px;}
.y21{bottom:171.479550px;}
.y17{bottom:197.068200px;}
.y20{bottom:199.199550px;}
.yf{bottom:206.759550px;}
.y1f{bottom:227.099550px;}
.y26{bottom:234.119550px;}
.y16{bottom:237.756120px;}
.ye{bottom:250.678110px;}
.y2c{bottom:252.965550px;}
.y1e{bottom:254.999550px;}
.y15{bottom:278.609640px;}
.y1d{bottom:282.899550px;}
.y2b{bottom:284.098350px;}
.yd{bottom:291.366030px;}
.y25{bottom:309.719550px;}
.y1c{bottom:310.619550px;}
.y2a{bottom:315.065550px;}
.y14{bottom:319.297560px;}
.y4{bottom:323.723100px;}
.yc{bottom:332.219550px;}
.y1{bottom:337.348950px;}
.y1b{bottom:338.519550px;}
.y9{bottom:355.759650px;}
.y13{bottom:360.151080px;}
.y1a{bottom:366.419550px;}
.yb{bottom:373.979550px;}
.y24{bottom:378.659550px;}
.y29{bottom:384.448770px;}
.y3{bottom:384.743100px;}
.y19{bottom:394.319550px;}
.y12{bottom:400.839000px;}
.y6{bottom:402.930420px;}
.y5{bottom:438.024300px;}
.y2{bottom:445.763100px;}
.y28{bottom:455.562450px;}
.y23{bottom:464.151000px;}
.y18{bottom:467.571150px;}
.ya{bottom:518.691000px;}
.y11{bottom:518.691150px;}
.h9{height:55.608480px;}
.ha{height:56.337120px;}
.hb{height:60.444000px;}
.h8{height:66.134880px;}
.h3{height:74.433516px;}
.h4{height:86.955120px;}
.h5{height:90.473270px;}
.hc{height:105.777000px;}
.h6{height:117.573120px;}
.h7{height:142.679880px;}
.hd{height:146.274480px;}
.h1{height:146.285156px;}
.h2{height:153.090000px;}
.he{height:176.496480px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x6{left:27.000000px;}
.x7{left:54.000000px;}
.x2{left:173.250000px;}
.x8{left:200.250000px;}
.x5{left:245.791950px;}
.x9{left:254.250000px;}
.x3{left:316.170000px;}
.x1{left:451.631250px;}
.xa{left:532.670850px;}
.x4{left:537.210000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-13.440000pt;}
.ls14{letter-spacing:-0.471040pt;}
.ls1c{letter-spacing:-0.309760pt;}
.lse{letter-spacing:-0.294400pt;}
.lsb{letter-spacing:-0.276480pt;}
.ls6{letter-spacing:-0.272640pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.186880pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.149120pt;}
.ls13{letter-spacing:-0.117760pt;}
.ls17{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.058880pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.058880pt;}
.ls1d{letter-spacing:0.112000pt;}
.lsd{letter-spacing:0.117760pt;}
.ls9{letter-spacing:0.122880pt;}
.ls19{letter-spacing:0.154880pt;}
.lsf{letter-spacing:0.176640pt;}
.ls8{letter-spacing:0.181760pt;}
.ls12{letter-spacing:0.217856pt;}
.ls10{letter-spacing:0.235520pt;}
.ls3{letter-spacing:0.320000pt;}
.ls7{letter-spacing:1.341143pt;}
.ls2{letter-spacing:7.872000pt;}
.ls1e{letter-spacing:12.364800pt;}
.ls15{letter-spacing:48.960000pt;}
.ls0{letter-spacing:97.920000pt;}
.ls1a{letter-spacing:104.800000pt;}
.ls1b{letter-spacing:117.792000pt;}
.ws0{word-spacing:-55.872000pt;}
.ws3{word-spacing:-32.320000pt;}
.ws5{word-spacing:-32.000000pt;}
.ws4{word-spacing:-31.840000pt;}
.ws2a{word-spacing:-31.130880pt;}
.ws29{word-spacing:-30.666240pt;}
.ws20{word-spacing:-29.824000pt;}
.ws2b{word-spacing:-22.512000pt;}
.ws27{word-spacing:-12.608000pt;}
.ws21{word-spacing:-12.544000pt;}
.wse{word-spacing:-11.893760pt;}
.ws17{word-spacing:-11.834880pt;}
.wsc{word-spacing:-11.776000pt;}
.ws15{word-spacing:-11.481600pt;}
.ws18{word-spacing:-11.304960pt;}
.ws9{word-spacing:-2.299102pt;}
.ws1e{word-spacing:-2.060800pt;}
.ws14{word-spacing:-1.707520pt;}
.ws1d{word-spacing:-1.648640pt;}
.ws2f{word-spacing:-1.236480pt;}
.ws1c{word-spacing:-1.118720pt;}
.wsa{word-spacing:-1.090560pt;}
.ws25{word-spacing:-1.024000pt;}
.ws1f{word-spacing:-1.000960pt;}
.wsb{word-spacing:-0.983040pt;}
.ws2e{word-spacing:-0.883200pt;}
.ws16{word-spacing:-0.783104pt;}
.ws28{word-spacing:-0.640000pt;}
.ws12{word-spacing:-0.588800pt;}
.ws22{word-spacing:-0.384000pt;}
.ws1a{word-spacing:-0.353280pt;}
.ws7{word-spacing:-0.272640pt;}
.ws11{word-spacing:-0.176640pt;}
.ws1b{word-spacing:-0.117760pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:0.160000pt;}
.ws26{word-spacing:0.256000pt;}
.ws8{word-spacing:0.272640pt;}
.ws2d{word-spacing:0.560640pt;}
.wsd{word-spacing:0.565248pt;}
.ws2c{word-spacing:0.672000pt;}
.ws24{word-spacing:0.704000pt;}
.ws23{word-spacing:0.896000pt;}
.ws19{word-spacing:1.043840pt;}
.ws13{word-spacing:1.175040pt;}
.wsf{word-spacing:1.640320pt;}
.ws10{word-spacing:3.110400pt;}
.ws1{word-spacing:13.440000pt;}
._7{margin-left:-1.280000pt;}
._8{width:0.960000pt;}
._4{width:1.996800pt;}
._6{width:3.897600pt;}
._1{width:8.563200pt;}
._0{width:10.502400pt;}
._5{width:11.769600pt;}
._2{width:33.849600pt;}
._3{width:42.240000pt;}
.fs7{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fsb{font-size:74.880000pt;}
.fs2{font-size:90.880000pt;}
.fs3{font-size:95.795931pt;}
.fs9{font-size:112.000000pt;}
.fs4{font-size:122.880000pt;}
.fs5{font-size:149.120000pt;}
.fsa{font-size:154.880000pt;}
.fs1{font-size:160.000000pt;}
.fsc{font-size:186.880000pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:74.757840pt;}
.y7{bottom:105.952400pt;}
.y22{bottom:127.626267pt;}
.y27{bottom:140.906267pt;}
.y10{bottom:146.666267pt;}
.y21{bottom:152.426267pt;}
.y17{bottom:175.171733pt;}
.y20{bottom:177.066267pt;}
.yf{bottom:183.786267pt;}
.y1f{bottom:201.866267pt;}
.y26{bottom:208.106267pt;}
.y16{bottom:211.338773pt;}
.ye{bottom:222.824987pt;}
.y2c{bottom:224.858267pt;}
.y1e{bottom:226.666267pt;}
.y15{bottom:247.653013pt;}
.y1d{bottom:251.466267pt;}
.y2b{bottom:252.531867pt;}
.yd{bottom:258.992027pt;}
.y25{bottom:275.306267pt;}
.y1c{bottom:276.106267pt;}
.y2a{bottom:280.058267pt;}
.y14{bottom:283.820053pt;}
.y4{bottom:287.753867pt;}
.yc{bottom:295.306267pt;}
.y1{bottom:299.865733pt;}
.y1b{bottom:300.906267pt;}
.y9{bottom:316.230800pt;}
.y13{bottom:320.134293pt;}
.y1a{bottom:325.706267pt;}
.yb{bottom:332.426267pt;}
.y24{bottom:336.586267pt;}
.y29{bottom:341.732240pt;}
.y3{bottom:341.993867pt;}
.y19{bottom:350.506267pt;}
.y12{bottom:356.301333pt;}
.y6{bottom:358.160373pt;}
.y5{bottom:389.354933pt;}
.y2{bottom:396.233867pt;}
.y28{bottom:404.944400pt;}
.y23{bottom:412.578667pt;}
.y18{bottom:415.618800pt;}
.ya{bottom:461.058667pt;}
.y11{bottom:461.058800pt;}
.h9{height:49.429760pt;}
.ha{height:50.077440pt;}
.hb{height:53.728000pt;}
.h8{height:58.786560pt;}
.h3{height:66.163125pt;}
.h4{height:77.293440pt;}
.h5{height:80.420684pt;}
.hc{height:94.024000pt;}
.h6{height:104.509440pt;}
.h7{height:126.826560pt;}
.hd{height:130.021760pt;}
.h1{height:130.031250pt;}
.h2{height:136.080000pt;}
.he{height:156.885760pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x6{left:24.000000pt;}
.x7{left:48.000000pt;}
.x2{left:154.000000pt;}
.x8{left:178.000000pt;}
.x5{left:218.481733pt;}
.x9{left:226.000000pt;}
.x3{left:281.040000pt;}
.x1{left:401.450000pt;}
.xa{left:473.485200pt;}
.x4{left:477.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; }
  