
    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_39c9a51a51df0bd08e776892.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.016113;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_17df197f78ca344ba4155087.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_7ffe9eedec610d0b2d8959bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675293;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_5e1d7121753c528adb86fc13.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_7ad0a355ef8424ae608e4505.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_76751e3b41154687c56c22cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_3b64fe469c311624ba66d0c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.765625;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:ff8;src:url('chunks/assets/font_562ef153e1be434377ce97f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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:ff9;src:url('chunks/assets/font_e11761d98fb0994e7c70754d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.851074;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;}
.ls13{letter-spacing:-0.528480px;}
.lse{letter-spacing:-0.384480px;}
.ls4{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.264240px;}
.ls18{letter-spacing:-0.263520px;}
.ls6{letter-spacing:-0.239760px;}
.lsf{letter-spacing:-0.192240px;}
.ls11{letter-spacing:-0.191520px;}
.ls3{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.095760px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.095760px;}
.ls17{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.191520px;}
.lsb{letter-spacing:0.192240px;}
.ls15{letter-spacing:0.263520px;}
.ls9{letter-spacing:0.264240px;}
.ls8{letter-spacing:0.287280px;}
.ls0{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.300240px;}
.lsc{letter-spacing:0.384480px;}
.ls16{letter-spacing:1.317600px;}
.ls14{letter-spacing:1.422576px;}
.lsa{letter-spacing:40.754880px;}
.ls12{letter-spacing:60.555600px;}
.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;}
}
.wsb{word-spacing:-68.702400px;}
.ws19{word-spacing:-68.438160px;}
.ws25{word-spacing:-68.173920px;}
.wsd{word-spacing:-50.174640px;}
.wsc{word-spacing:-49.982400px;}
.ws10{word-spacing:-49.790160px;}
.wsf{word-spacing:-49.597920px;}
.ws2{word-spacing:-37.440000px;}
.ws13{word-spacing:-25.184880px;}
.ws4{word-spacing:-25.089120px;}
.ws1a{word-spacing:-24.897600px;}
.wsa{word-spacing:-2.431008px;}
.ws9{word-spacing:-2.101680px;}
.ws1c{word-spacing:-1.922400px;}
.ws28{word-spacing:-1.717560px;}
.ws18{word-spacing:-1.436400px;}
.ws16{word-spacing:-1.345680px;}
.ws14{word-spacing:-1.153440px;}
.ws24{word-spacing:-1.056960px;}
.ws8{word-spacing:-1.008000px;}
.ws29{word-spacing:-0.768960px;}
.ws0{word-spacing:-0.576000px;}
.ws2d{word-spacing:-0.395280px;}
.ws15{word-spacing:-0.384480px;}
.ws3{word-spacing:-0.296856px;}
.ws7{word-spacing:-0.288000px;}
.ws17{word-spacing:-0.287280px;}
.ws22{word-spacing:-0.192240px;}
.ws20{word-spacing:-0.191520px;}
.ws21{word-spacing:-0.104688px;}
.ws5{word-spacing:0.000000px;}
.ws1e{word-spacing:0.095760px;}
.ws1{word-spacing:0.144000px;}
.ws1b{word-spacing:0.192240px;}
.ws2c{word-spacing:0.263520px;}
.ws1d{word-spacing:0.384480px;}
.ws2a{word-spacing:0.432000px;}
.wse{word-spacing:0.461376px;}
.ws11{word-spacing:0.576720px;}
.ws12{word-spacing:0.708624px;}
.ws6{word-spacing:0.720000px;}
.ws27{word-spacing:0.768960px;}
.ws1f{word-spacing:0.861840px;}
.ws2b{word-spacing:1.152000px;}
.ws26{word-spacing:1.153440px;}
.ws23{word-spacing:1.537920px;}
.ws2e{word-spacing:2.239920px;}
._4{margin-left:-5.472000px;}
._3{margin-left:-3.456000px;}
._5{margin-left:-2.030400px;}
._1{margin-left:-1.008000px;}
._0{width:1.152000px;}
._6{width:2.160000px;}
._2{width:67.373208px;}
.fc5{color:rgb(255,192,0);}
.fc4{color:transparent;}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,51,73);}
.fs3{font-size:95.760000px;}
.fs6{font-size:131.760000px;}
.fs0{font-size:144.000000px;}
.fs5{font-size:192.240000px;}
.fs1{font-size:239.760000px;}
.fs4{font-size:264.240000px;}
.fs2{font-size:300.240000px;}
.y0{bottom:0.000000px;}
.y14{bottom:16.929600px;}
.ye{bottom:20.861250px;}
.y7{bottom:22.447200px;}
.y42{bottom:49.131000px;}
.y32{bottom:65.484420px;}
.y1{bottom:79.187250px;}
.y3e{bottom:91.421160px;}
.y1c{bottom:98.867820px;}
.y31{bottom:117.341160px;}
.y1b{bottom:150.724560px;}
.y29{bottom:150.741300px;}
.y3d{bottom:158.224560px;}
.y30{bottom:184.144560px;}
.yd{bottom:191.715540px;}
.y13{bottom:199.162200px;}
.y3c{bottom:210.081300px;}
.y1a{bottom:217.672140px;}
.y28{bottom:217.688880px;}
.y36{bottom:225.098940px;}
.y12{bottom:251.018940px;}
.y1f{bottom:251.035680px;}
.y2f{bottom:251.092140px;}
.y27{bottom:269.545620px;}
.y35{bottom:276.955680px;}
.y3b{bottom:277.028880px;}
.y23{bottom:281.431830px;}
.y19{bottom:284.475540px;}
.y11{bottom:302.875680px;}
.y1e{bottom:302.892420px;}
.y2e{bottom:302.948880px;}
.yc{bottom:325.466520px;}
.y34{bottom:328.812420px;}
.y18{bottom:336.332280px;}
.y26{bottom:336.349020px;}
.y3a{bottom:343.832280px;}
.y22{bottom:348.235230px;}
.y2d{bottom:369.752280px;}
.y10{bottom:369.823260px;}
.y1d{bottom:369.840000px;}
.yb{bottom:377.323260px;}
.y33{bottom:395.760000px;}
.y17{bottom:403.135680px;}
.y25{bottom:403.152420px;}
.y41{bottom:409.208250px;}
.y39{bottom:410.635680px;}
.y21{bottom:415.182810px;}
.yf{bottom:421.680000px;}
.y4{bottom:428.243250px;}
.ya{bottom:429.180000px;}
.y2c{bottom:436.555680px;}
.y40{bottom:452.408250px;}
.y16{bottom:454.992420px;}
.y20{bottom:467.039550px;}
.y3{bottom:467.123250px;}
.y24{bottom:470.100000px;}
.y38{bottom:477.583260px;}
.y3f{bottom:495.608250px;}
.y2b{bottom:503.503260px;}
.y2{bottom:506.003250px;}
.y15{bottom:521.940000px;}
.y37{bottom:529.440000px;}
.y2a{bottom:555.360000px;}
.y6{bottom:646.534650px;}
.y8{bottom:671.002500px;}
.y9{bottom:712.009350px;}
.y5{bottom:723.574650px;}
.h4{height:73.269492px;}
.ha{height:87.882891px;}
.h9{height:95.976562px;}
.h1{height:111.726562px;}
.h7{height:147.089883px;}
.h8{height:147.183750px;}
.h5{height:176.116992px;}
.h2{height:186.024727px;}
.h6{height:205.018242px;}
.h3{height:232.949883px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3{left:25.720800px;}
.x6{left:42.519750px;}
.x2{left:48.183450px;}
.x7{left:69.529470px;}
.xe{left:87.538050px;}
.xa{left:95.433810px;}
.x5{left:109.800000px;}
.x4{left:124.720800px;}
.x8{left:280.080000px;}
.xb{left:355.320000px;}
.xd{left:378.459600px;}
.x1{left:421.251450px;}
.x9{left:853.739850px;}
.xc{left:1210.679850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.469760pt;}
.lse{letter-spacing:-0.341760pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.234880pt;}
.ls18{letter-spacing:-0.234240pt;}
.ls6{letter-spacing:-0.213120pt;}
.lsf{letter-spacing:-0.170880pt;}
.ls11{letter-spacing:-0.170240pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.085120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.085120pt;}
.ls17{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.170240pt;}
.lsb{letter-spacing:0.170880pt;}
.ls15{letter-spacing:0.234240pt;}
.ls9{letter-spacing:0.234880pt;}
.ls8{letter-spacing:0.255360pt;}
.ls0{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.266880pt;}
.lsc{letter-spacing:0.341760pt;}
.ls16{letter-spacing:1.171200pt;}
.ls14{letter-spacing:1.264512pt;}
.lsa{letter-spacing:36.226560pt;}
.ls12{letter-spacing:53.827200pt;}
.wsb{word-spacing:-61.068800pt;}
.ws19{word-spacing:-60.833920pt;}
.ws25{word-spacing:-60.599040pt;}
.wsd{word-spacing:-44.599680pt;}
.wsc{word-spacing:-44.428800pt;}
.ws10{word-spacing:-44.257920pt;}
.wsf{word-spacing:-44.087040pt;}
.ws2{word-spacing:-33.280000pt;}
.ws13{word-spacing:-22.386560pt;}
.ws4{word-spacing:-22.301440pt;}
.ws1a{word-spacing:-22.131200pt;}
.wsa{word-spacing:-2.160896pt;}
.ws9{word-spacing:-1.868160pt;}
.ws1c{word-spacing:-1.708800pt;}
.ws28{word-spacing:-1.526720pt;}
.ws18{word-spacing:-1.276800pt;}
.ws16{word-spacing:-1.196160pt;}
.ws14{word-spacing:-1.025280pt;}
.ws24{word-spacing:-0.939520pt;}
.ws8{word-spacing:-0.896000pt;}
.ws29{word-spacing:-0.683520pt;}
.ws0{word-spacing:-0.512000pt;}
.ws2d{word-spacing:-0.351360pt;}
.ws15{word-spacing:-0.341760pt;}
.ws3{word-spacing:-0.263872pt;}
.ws7{word-spacing:-0.256000pt;}
.ws17{word-spacing:-0.255360pt;}
.ws22{word-spacing:-0.170880pt;}
.ws20{word-spacing:-0.170240pt;}
.ws21{word-spacing:-0.093056pt;}
.ws5{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.085120pt;}
.ws1{word-spacing:0.128000pt;}
.ws1b{word-spacing:0.170880pt;}
.ws2c{word-spacing:0.234240pt;}
.ws1d{word-spacing:0.341760pt;}
.ws2a{word-spacing:0.384000pt;}
.wse{word-spacing:0.410112pt;}
.ws11{word-spacing:0.512640pt;}
.ws12{word-spacing:0.629888pt;}
.ws6{word-spacing:0.640000pt;}
.ws27{word-spacing:0.683520pt;}
.ws1f{word-spacing:0.766080pt;}
.ws2b{word-spacing:1.024000pt;}
.ws26{word-spacing:1.025280pt;}
.ws23{word-spacing:1.367040pt;}
.ws2e{word-spacing:1.991040pt;}
._4{margin-left:-4.864000pt;}
._3{margin-left:-3.072000pt;}
._5{margin-left:-1.804800pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.024000pt;}
._6{width:1.920000pt;}
._2{width:59.887296pt;}
.fs3{font-size:85.120000pt;}
.fs6{font-size:117.120000pt;}
.fs0{font-size:128.000000pt;}
.fs5{font-size:170.880000pt;}
.fs1{font-size:213.120000pt;}
.fs4{font-size:234.880000pt;}
.fs2{font-size:266.880000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:15.048533pt;}
.ye{bottom:18.543333pt;}
.y7{bottom:19.953067pt;}
.y42{bottom:43.672000pt;}
.y32{bottom:58.208373pt;}
.y1{bottom:70.388667pt;}
.y3e{bottom:81.263253pt;}
.y1c{bottom:87.882507pt;}
.y31{bottom:104.303253pt;}
.y1b{bottom:133.977387pt;}
.y29{bottom:133.992267pt;}
.y3d{bottom:140.644053pt;}
.y30{bottom:163.684053pt;}
.yd{bottom:170.413813pt;}
.y13{bottom:177.033067pt;}
.y3c{bottom:186.738933pt;}
.y1a{bottom:193.486347pt;}
.y28{bottom:193.501227pt;}
.y36{bottom:200.087947pt;}
.y12{bottom:223.127947pt;}
.y1f{bottom:223.142827pt;}
.y2f{bottom:223.193013pt;}
.y27{bottom:239.596107pt;}
.y35{bottom:246.182827pt;}
.y3b{bottom:246.247893pt;}
.y23{bottom:250.161627pt;}
.y19{bottom:252.867147pt;}
.y11{bottom:269.222827pt;}
.y1e{bottom:269.237707pt;}
.y2e{bottom:269.287893pt;}
.yc{bottom:289.303573pt;}
.y34{bottom:292.277707pt;}
.y18{bottom:298.962027pt;}
.y26{bottom:298.976907pt;}
.y3a{bottom:305.628693pt;}
.y22{bottom:309.542427pt;}
.y2d{bottom:328.668693pt;}
.y10{bottom:328.731787pt;}
.y1d{bottom:328.746667pt;}
.yb{bottom:335.398453pt;}
.y33{bottom:351.786667pt;}
.y17{bottom:358.342827pt;}
.y25{bottom:358.357707pt;}
.y41{bottom:363.740667pt;}
.y39{bottom:365.009493pt;}
.y21{bottom:369.051387pt;}
.yf{bottom:374.826667pt;}
.y4{bottom:380.660667pt;}
.ya{bottom:381.493333pt;}
.y2c{bottom:388.049493pt;}
.y40{bottom:402.140667pt;}
.y16{bottom:404.437707pt;}
.y20{bottom:415.146267pt;}
.y3{bottom:415.220667pt;}
.y24{bottom:417.866667pt;}
.y38{bottom:424.518453pt;}
.y3f{bottom:440.540667pt;}
.y2b{bottom:447.558453pt;}
.y2{bottom:449.780667pt;}
.y15{bottom:463.946667pt;}
.y37{bottom:470.613333pt;}
.y2a{bottom:493.653333pt;}
.y6{bottom:574.697467pt;}
.y8{bottom:596.446667pt;}
.y9{bottom:632.897200pt;}
.y5{bottom:643.177467pt;}
.h4{height:65.128438pt;}
.ha{height:78.118125pt;}
.h9{height:85.312500pt;}
.h1{height:99.312500pt;}
.h7{height:130.746563pt;}
.h8{height:130.830000pt;}
.h5{height:156.548438pt;}
.h2{height:165.355312pt;}
.h6{height:182.238437pt;}
.h3{height:207.066562pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3{left:22.862933pt;}
.x6{left:37.795333pt;}
.x2{left:42.829733pt;}
.x7{left:61.803973pt;}
.xe{left:77.811600pt;}
.xa{left:84.830053pt;}
.x5{left:97.600000pt;}
.x4{left:110.862933pt;}
.x8{left:248.960000pt;}
.xb{left:315.840000pt;}
.xd{left:336.408533pt;}
.x1{left:374.445733pt;}
.x9{left:758.879867pt;}
.xc{left:1076.159867pt;}
}




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