
    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_c3dfd337a77db75af654aa1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_b9ad793fd48099a8924d598e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.071000;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_eeb58bfaaf024d948a24711c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_498793855ff20a0bc596d830.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_2bef77eaf76a24ea81aec34d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.111328;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_d26dc83bd93cd3138d84ef49.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.844727;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a6ac61db01aedc6a2607c2d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_2b33eee60baf2adeeb6624d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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:ffa;src:url('chunks/assets/font_2b9ab7b2407d2770a3670ceb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.575000;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);}
.v2{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.120000px;}
.v4{vertical-align:26.999280px;}
.v1{vertical-align:29.172000px;}
.ls23{letter-spacing:-0.335988px;}
.ls26{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.043200px;}
.ls25{letter-spacing:-0.028800px;}
.ls24{letter-spacing:-0.021600px;}
.ls1{letter-spacing:-0.017520px;}
.ls21{letter-spacing:-0.014400px;}
.ls22{letter-spacing:-0.007200px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.006588px;}
.ls15{letter-spacing:0.007200px;}
.lsa{letter-spacing:0.014400px;}
.ls5{letter-spacing:0.021600px;}
.ls1e{letter-spacing:0.026352px;}
.ls7{letter-spacing:0.028800px;}
.ls18{letter-spacing:0.032940px;}
.ls6{letter-spacing:0.036000px;}
.ls1b{letter-spacing:0.043200px;}
.ls3{letter-spacing:0.046116px;}
.ls4{letter-spacing:0.050400px;}
.ls17{letter-spacing:0.052704px;}
.ls1a{letter-spacing:0.057600px;}
.ls16{letter-spacing:0.059292px;}
.ls1f{letter-spacing:0.065880px;}
.ls19{letter-spacing:0.072468px;}
.ls12{letter-spacing:0.075492px;}
.ls10{letter-spacing:0.079056px;}
.ls8{letter-spacing:0.079200px;}
.lsc{letter-spacing:0.085644px;}
.ls1c{letter-spacing:0.086400px;}
.lsf{letter-spacing:0.092232px;}
.lse{letter-spacing:0.098820px;}
.ls11{letter-spacing:0.105408px;}
.lsd{letter-spacing:0.144936px;}
.ls14{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.181944px;}
.ls13{letter-spacing:0.192924px;}
.ls1d{letter-spacing:4.521600px;}
.ls9{letter-spacing:43.920000px;}
.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;}
}
.ws0{word-spacing:-20.848800px;}
.ws1{word-spacing:-12.154850px;}
.ws4{word-spacing:-11.970000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:0.017520px;}
.ws7{word-spacing:0.019764px;}
.wse{word-spacing:0.059292px;}
.ws6{word-spacing:0.757620px;}
.wsd{word-spacing:1.469124px;}
.wsc{word-spacing:1.482300px;}
.wsb{word-spacing:14.790060px;}
.ws5{word-spacing:16.265772px;}
.ws9{word-spacing:28.124172px;}
.wsa{word-spacing:28.163700px;}
.ws8{word-spacing:33.513156px;}
._17{margin-left:-43.740000px;}
._1{margin-left:-4.292400px;}
._b{margin-left:-3.220992px;}
._0{margin-left:-1.851864px;}
._10{width:1.074264px;}
._e{width:2.498400px;}
._f{width:3.808800px;}
._15{width:7.764528px;}
._d{width:9.252000px;}
._c{width:10.418400px;}
._12{width:14.133600px;}
._13{width:15.582264px;}
._14{width:16.630536px;}
._11{width:30.218400px;}
._1a{width:33.192000px;}
._18{width:34.689600px;}
._19{width:35.827200px;}
._1c{width:37.461600px;}
._1b{width:38.512800px;}
._16{width:43.927200px;}
._4{width:58.896000px;}
._2{width:66.232800px;}
._8{width:70.221492px;}
._a{width:95.861988px;}
._7{width:197.053668px;}
._9{width:322.080732px;}
._6{width:403.941600px;}
._3{width:706.284000px;}
._5{width:1131.357600px;}
.fc2{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(37,64,142);}
.fs8{font-size:24.120000px;}
.fs6{font-size:42.120000px;}
.fs4{font-size:47.880000px;}
.fs2{font-size:51.070800px;}
.fsa{font-size:60.000000px;}
.fs3{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs9{font-size:83.880000px;}
.fs1{font-size:87.600000px;}
.fs0{font-size:122.640000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:3.000000px;}
.y3a{bottom:37.500091px;}
.y21{bottom:136.004400px;}
.y39{bottom:136.037340px;}
.y38{bottom:154.928430px;}
.y20{bottom:173.901870px;}
.y37{bottom:173.918340px;}
.y1f{bottom:198.919800px;}
.y36{bottom:198.936270px;}
.y35{bottom:217.926180px;}
.y1e{bottom:236.817270px;}
.y1d{bottom:261.835200px;}
.y1c{bottom:280.825110px;}
.y1b{bottom:305.760690px;}
.y1a{bottom:324.750600px;}
.y19{bottom:350.490450px;}
.y34{bottom:369.030450px;}
.y33{bottom:389.730450px;}
.y18{bottom:418.170450px;}
.y32{bottom:442.200450px;}
.y31{bottom:462.900450px;}
.y17{bottom:483.600450px;}
.y30{bottom:504.300450px;}
.y2f{bottom:525.000450px;}
.y2e{bottom:545.700450px;}
.y2d{bottom:566.400450px;}
.y16{bottom:587.100450px;}
.y15{bottom:607.800450px;}
.y14{bottom:629.220450px;}
.y13{bottom:650.460450px;}
.y12{bottom:671.160450px;}
.y11{bottom:691.860450px;}
.y10{bottom:712.560450px;}
.y2c{bottom:742.260450px;}
.y2b{bottom:762.960450px;}
.yf{bottom:783.660450px;}
.y2a{bottom:804.360450px;}
.ye{bottom:825.060450px;}
.yd{bottom:845.760450px;}
.y29{bottom:866.460450px;}
.yc{bottom:887.160450px;}
.yb{bottom:907.860450px;}
.ya{bottom:928.209450px;}
.y9{bottom:947.100540px;}
.y28{bottom:966.090540px;}
.y8{bottom:972.840450px;}
.y27{bottom:985.080630px;}
.y26{bottom:1004.070540px;}
.y7{bottom:1004.070600px;}
.y25{bottom:1029.810450px;}
.y6{bottom:1041.510450px;}
.y3{bottom:1057.575150px;}
.y24{bottom:1059.420450px;}
.y5{bottom:1065.450450px;}
.y4{bottom:1079.670450px;}
.y2{bottom:1083.855150px;}
.y23{bottom:1102.430100px;}
.y1{bottom:1122.551550px;}
.y22{bottom:1126.650450px;}
.h10{height:16.500090px;}
.ha{height:21.163887px;}
.h7{height:36.957832px;}
.h9{height:42.011895px;}
.h4{height:42.526230px;}
.hf{height:45.742852px;}
.h3{height:52.751777px;}
.h5{height:53.397598px;}
.h6{height:57.805840px;}
.h8{height:63.175781px;}
.hd{height:63.957112px;}
.h11{height:64.020000px;}
.hc{height:66.646230px;}
.he{height:70.664062px;}
.hb{height:75.565723px;}
.h2{height:76.299600px;}
.h1{height:98.112000px;}
.h0{height:1263.000000px;}
.w2{width:25.740000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:122.909700px;}
.x10{left:127.620000px;}
.x19{left:132.300000px;}
.x1b{left:137.428830px;}
.x16{left:140.040000px;}
.x11{left:146.786550px;}
.x1a{left:151.378920px;}
.x18{left:195.120000px;}
.xd{left:211.602750px;}
.x1c{left:330.297660px;}
.x9{left:352.902750px;}
.x8{left:370.974750px;}
.x17{left:409.148010px;}
.x1d{left:433.544952px;}
.x2{left:446.490000px;}
.x6{left:448.086750px;}
.x12{left:457.213110px;}
.xc{left:476.076750px;}
.x4{left:497.267700px;}
.x14{left:505.354920px;}
.x15{left:515.862780px;}
.xa{left:535.638750px;}
.xe{left:561.360750px;}
.x5{left:562.680000px;}
.xf{left:617.340750px;}
.x7{left:626.538750px;}
.x13{left:695.797530px;}
.x3{left:697.949700px;}
.xb{left:765.480750px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.440000pt;}
.v4{vertical-align:23.999360pt;}
.v1{vertical-align:25.930667pt;}
.ls23{letter-spacing:-0.298656pt;}
.ls26{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.038400pt;}
.ls25{letter-spacing:-0.025600pt;}
.ls24{letter-spacing:-0.019200pt;}
.ls1{letter-spacing:-0.015573pt;}
.ls21{letter-spacing:-0.012800pt;}
.ls22{letter-spacing:-0.006400pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.005856pt;}
.ls15{letter-spacing:0.006400pt;}
.lsa{letter-spacing:0.012800pt;}
.ls5{letter-spacing:0.019200pt;}
.ls1e{letter-spacing:0.023424pt;}
.ls7{letter-spacing:0.025600pt;}
.ls18{letter-spacing:0.029280pt;}
.ls6{letter-spacing:0.032000pt;}
.ls1b{letter-spacing:0.038400pt;}
.ls3{letter-spacing:0.040992pt;}
.ls4{letter-spacing:0.044800pt;}
.ls17{letter-spacing:0.046848pt;}
.ls1a{letter-spacing:0.051200pt;}
.ls16{letter-spacing:0.052704pt;}
.ls1f{letter-spacing:0.058560pt;}
.ls19{letter-spacing:0.064416pt;}
.ls12{letter-spacing:0.067104pt;}
.ls10{letter-spacing:0.070272pt;}
.ls8{letter-spacing:0.070400pt;}
.lsc{letter-spacing:0.076128pt;}
.ls1c{letter-spacing:0.076800pt;}
.lsf{letter-spacing:0.081984pt;}
.lse{letter-spacing:0.087840pt;}
.ls11{letter-spacing:0.093696pt;}
.lsd{letter-spacing:0.128832pt;}
.ls14{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.161728pt;}
.ls13{letter-spacing:0.171488pt;}
.ls1d{letter-spacing:4.019200pt;}
.ls9{letter-spacing:39.040000pt;}
.ws0{word-spacing:-18.532267pt;}
.ws1{word-spacing:-10.804311pt;}
.ws4{word-spacing:-10.640000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:0.015573pt;}
.ws7{word-spacing:0.017568pt;}
.wse{word-spacing:0.052704pt;}
.ws6{word-spacing:0.673440pt;}
.wsd{word-spacing:1.305888pt;}
.wsc{word-spacing:1.317600pt;}
.wsb{word-spacing:13.146720pt;}
.ws5{word-spacing:14.458464pt;}
.ws9{word-spacing:24.999264pt;}
.wsa{word-spacing:25.034400pt;}
.ws8{word-spacing:29.789472pt;}
._17{margin-left:-38.880000pt;}
._1{margin-left:-3.815467pt;}
._b{margin-left:-2.863104pt;}
._0{margin-left:-1.646101pt;}
._10{width:0.954901pt;}
._e{width:2.220800pt;}
._f{width:3.385600pt;}
._15{width:6.901803pt;}
._d{width:8.224000pt;}
._c{width:9.260800pt;}
._12{width:12.563200pt;}
._13{width:13.850901pt;}
._14{width:14.782699pt;}
._11{width:26.860800pt;}
._1a{width:29.504000pt;}
._18{width:30.835200pt;}
._19{width:31.846400pt;}
._1c{width:33.299200pt;}
._1b{width:34.233600pt;}
._16{width:39.046400pt;}
._4{width:52.352000pt;}
._2{width:58.873600pt;}
._8{width:62.419104pt;}
._a{width:85.210656pt;}
._7{width:175.158816pt;}
._9{width:286.293984pt;}
._6{width:359.059200pt;}
._3{width:627.808000pt;}
._5{width:1005.651200pt;}
.fs8{font-size:21.440000pt;}
.fs6{font-size:37.440000pt;}
.fs4{font-size:42.560000pt;}
.fs2{font-size:45.396267pt;}
.fsa{font-size:53.333333pt;}
.fs3{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs9{font-size:74.560000pt;}
.fs1{font-size:77.866667pt;}
.fs0{font-size:109.013333pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:2.666667pt;}
.y3a{bottom:33.333415pt;}
.y21{bottom:120.892800pt;}
.y39{bottom:120.922080pt;}
.y38{bottom:137.714160pt;}
.y20{bottom:154.579440pt;}
.y37{bottom:154.594080pt;}
.y1f{bottom:176.817600pt;}
.y36{bottom:176.832240pt;}
.y35{bottom:193.712160pt;}
.y1e{bottom:210.504240pt;}
.y1d{bottom:232.742400pt;}
.y1c{bottom:249.622320pt;}
.y1b{bottom:271.787280pt;}
.y1a{bottom:288.667200pt;}
.y19{bottom:311.547067pt;}
.y34{bottom:328.027067pt;}
.y33{bottom:346.427067pt;}
.y18{bottom:371.707067pt;}
.y32{bottom:393.067067pt;}
.y31{bottom:411.467067pt;}
.y17{bottom:429.867067pt;}
.y30{bottom:448.267067pt;}
.y2f{bottom:466.667067pt;}
.y2e{bottom:485.067067pt;}
.y2d{bottom:503.467067pt;}
.y16{bottom:521.867067pt;}
.y15{bottom:540.267067pt;}
.y14{bottom:559.307067pt;}
.y13{bottom:578.187067pt;}
.y12{bottom:596.587067pt;}
.y11{bottom:614.987067pt;}
.y10{bottom:633.387067pt;}
.y2c{bottom:659.787067pt;}
.y2b{bottom:678.187067pt;}
.yf{bottom:696.587067pt;}
.y2a{bottom:714.987067pt;}
.ye{bottom:733.387067pt;}
.yd{bottom:751.787067pt;}
.y29{bottom:770.187067pt;}
.yc{bottom:788.587067pt;}
.yb{bottom:806.987067pt;}
.ya{bottom:825.075067pt;}
.y9{bottom:841.867147pt;}
.y28{bottom:858.747147pt;}
.y8{bottom:864.747067pt;}
.y27{bottom:875.627227pt;}
.y26{bottom:892.507147pt;}
.y7{bottom:892.507200pt;}
.y25{bottom:915.387067pt;}
.y6{bottom:925.787067pt;}
.y3{bottom:940.066800pt;}
.y24{bottom:941.707067pt;}
.y5{bottom:947.067067pt;}
.y4{bottom:959.707067pt;}
.y2{bottom:963.426800pt;}
.y23{bottom:979.937867pt;}
.y1{bottom:997.823600pt;}
.y22{bottom:1001.467067pt;}
.h10{height:14.666747pt;}
.ha{height:18.812344pt;}
.h7{height:32.851406pt;}
.h9{height:37.343906pt;}
.h4{height:37.801094pt;}
.hf{height:40.660312pt;}
.h3{height:46.890469pt;}
.h5{height:47.464531pt;}
.h6{height:51.382969pt;}
.h8{height:56.156250pt;}
.hd{height:56.850766pt;}
.h11{height:56.906667pt;}
.hc{height:59.241094pt;}
.he{height:62.812500pt;}
.hb{height:67.169531pt;}
.h2{height:67.821867pt;}
.h1{height:87.210667pt;}
.h0{height:1122.666667pt;}
.w2{width:22.880000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:109.253067pt;}
.x10{left:113.440000pt;}
.x19{left:117.600000pt;}
.x1b{left:122.158960pt;}
.x16{left:124.480000pt;}
.x11{left:130.476933pt;}
.x1a{left:134.559040pt;}
.x18{left:173.440000pt;}
.xd{left:188.091333pt;}
.x1c{left:293.597920pt;}
.x9{left:313.691333pt;}
.x8{left:329.755333pt;}
.x17{left:363.687120pt;}
.x1d{left:385.373291pt;}
.x2{left:396.880000pt;}
.x6{left:398.299333pt;}
.x12{left:406.411653pt;}
.xc{left:423.179333pt;}
.x4{left:442.015733pt;}
.x14{left:449.204373pt;}
.x15{left:458.544693pt;}
.xa{left:476.123333pt;}
.xe{left:498.987333pt;}
.x5{left:500.160000pt;}
.xf{left:548.747333pt;}
.x7{left:556.923333pt;}
.x13{left:618.486693pt;}
.x3{left:620.399733pt;}
.xb{left:680.427333pt;}
}




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