
    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_2409073e0d6221eef16f7a5e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_7db5a8a931d66559a118685b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.430000;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_931c77e3279153d1b3a24d81.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_032334318761b63286a240ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_52f20349e579754806f60acd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3e53fb7b36199336dfe5c36c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.430000;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_1601c652a5dc0babc63a6a25.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_d1f47195b5ce0bcac99c42e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.383000;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:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:44.988000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.986894px;}
.ls2{letter-spacing:35.111578px;}
.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;}
}
.ws35{word-spacing:-3.873485px;}
.ws4{word-spacing:-3.652367px;}
.ws2b{word-spacing:-2.797517px;}
.ws10{word-spacing:-2.016002px;}
.ws3d{word-spacing:-1.865011px;}
.ws15{word-spacing:-1.819638px;}
.ws30{word-spacing:-0.932506px;}
.ws17{word-spacing:-0.248727px;}
.ws1{word-spacing:-0.123975px;}
.ws1a{word-spacing:0.000000px;}
.ws16{word-spacing:0.013091px;}
.ws22{word-spacing:0.143462px;}
.ws24{word-spacing:0.573850px;}
.ws25{word-spacing:0.860774px;}
.wsb{word-spacing:1.584001px;}
.ws45{word-spacing:1.865011px;}
.ws14{word-spacing:1.911274px;}
.wsf{word-spacing:2.762184px;}
.ws27{word-spacing:2.797517px;}
.ws2d{word-spacing:2.869248px;}
.ws32{word-spacing:3.084442px;}
.ws19{word-spacing:3.299613px;}
.ws18{word-spacing:3.613094px;}
.ws21{word-spacing:3.873485px;}
.ws5{word-spacing:3.874912px;}
.ws2e{word-spacing:3.945216px;}
.ws11{word-spacing:4.136731px;}
.ws3{word-spacing:4.648169px;}
.ws2{word-spacing:4.734246px;}
.ws3f{word-spacing:4.734259px;}
.ws3b{word-spacing:4.877722px;}
.ws1d{word-spacing:5.021184px;}
.ws3a{word-spacing:5.164646px;}
.ws8{word-spacing:5.511277px;}
.ws2c{word-spacing:5.523302px;}
.ws9{word-spacing:5.969460px;}
.ws28{word-spacing:6.025421px;}
.wse{word-spacing:6.231278px;}
.ws1c{word-spacing:6.599270px;}
.ws42{word-spacing:6.814464px;}
.ws31{word-spacing:7.244851px;}
.wsa{word-spacing:7.409461px;}
.ws13{word-spacing:7.867643px;}
.ws1f{word-spacing:8.033894px;}
.ws40{word-spacing:8.105626px;}
.ws6{word-spacing:8.456734px;}
.ws20{word-spacing:8.607744px;}
.ws7{word-spacing:9.045826px;}
.ws47{word-spacing:9.181594px;}
.ws41{word-spacing:9.611981px;}
.ws23{word-spacing:10.114099px;}
.ws44{word-spacing:10.329293px;}
.ws12{word-spacing:10.747645px;}
.wsc{word-spacing:10.813100px;}
.ws43{word-spacing:10.903142px;}
.wsd{word-spacing:11.402191px;}
.ws1e{word-spacing:11.835648px;}
.ws29{word-spacing:11.979110px;}
.ws38{word-spacing:13.055078px;}
.ws46{word-spacing:13.700659px;}
.ws34{word-spacing:15.924326px;}
.ws37{word-spacing:16.785101px;}
.ws2a{word-spacing:19.080499px;}
.ws3c{word-spacing:20.156467px;}
.ws2f{word-spacing:21.304166px;}
.ws26{word-spacing:25.608038px;}
.ws3e{word-spacing:27.759974px;}
.ws39{word-spacing:28.262093px;}
.ws0{word-spacing:37.316475px;}
.ws33{word-spacing:40.671590px;}
.ws36{word-spacing:41.675827px;}
.ws1b{word-spacing:116.100658px;}
._2{margin-left:-9.422100px;}
._3{margin-left:-7.058330px;}
._b{margin-left:-5.760005px;}
._12{margin-left:-4.447334px;}
._0{margin-left:-3.347325px;}
._5{margin-left:-1.832729px;}
._4{width:1.832729px;}
._1{width:3.223350px;}
._a{width:17.345469px;}
._e{width:21.263142px;}
._f{width:23.352258px;}
._c{width:28.603660px;}
._8{width:30.829117px;}
._d{width:33.355008px;}
._11{width:34.621054px;}
._7{width:40.647307px;}
._6{width:45.425492px;}
._13{width:50.936318px;}
._9{width:53.018226px;}
._10{width:55.911136px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs6{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:209.629500px;}
.y1d{bottom:259.884000px;}
.y3e{bottom:274.062000px;}
.y1c{bottom:280.911000px;}
.y3d{bottom:295.731000px;}
.y1b{bottom:301.236000px;}
.y3c{bottom:317.400000px;}
.y1a{bottom:321.559500px;}
.y19{bottom:341.883000px;}
.y3b{bottom:354.012000px;}
.y18{bottom:362.206500px;}
.y3a{bottom:375.681000px;}
.y17{bottom:382.530000px;}
.y39{bottom:397.350000px;}
.y16{bottom:402.855000px;}
.y38{bottom:419.019000px;}
.y15{bottom:423.178500px;}
.y14{bottom:443.502000px;}
.y37{bottom:455.631000px;}
.y13{bottom:463.825500px;}
.y36{bottom:477.300000px;}
.y12{bottom:484.149000px;}
.y35{bottom:498.969000px;}
.y11{bottom:504.474000px;}
.y34{bottom:520.638000px;}
.y10{bottom:524.797500px;}
.yf{bottom:545.121000px;}
.y33{bottom:557.250000px;}
.ye{bottom:565.444500px;}
.y32{bottom:578.919000px;}
.yd{bottom:585.768000px;}
.y31{bottom:600.588000px;}
.yc{bottom:606.093000px;}
.y30{bottom:622.257000px;}
.yb{bottom:626.416500px;}
.y4f{bottom:643.003500px;}
.ya{bottom:646.740000px;}
.y2f{bottom:658.869000px;}
.y4e{bottom:664.672500px;}
.y9{bottom:667.063500px;}
.y2e{bottom:680.538000px;}
.y4d{bottom:686.341500px;}
.y8{bottom:687.387000px;}
.y2d{bottom:702.207000px;}
.y4c{bottom:708.010500px;}
.y7{bottom:708.762000px;}
.y2c{bottom:723.876000px;}
.y4b{bottom:729.679500px;}
.y4a{bottom:751.347000px;}
.y2b{bottom:760.488000px;}
.y49{bottom:773.016000px;}
.y6{bottom:776.343000px;}
.y48{bottom:794.685000px;}
.y2a{bottom:800.089500px;}
.y47{bottom:816.354000px;}
.y5{bottom:818.409000px;}
.y29{bottom:821.758500px;}
.y28{bottom:843.427500px;}
.y46{bottom:852.966000px;}
.y27{bottom:865.096500px;}
.y4{bottom:871.647000px;}
.y45{bottom:874.635000px;}
.y26{bottom:886.765500px;}
.y44{bottom:896.304000px;}
.y25{bottom:908.433000px;}
.y3{bottom:909.007500px;}
.y24{bottom:930.102000px;}
.y43{bottom:932.917500px;}
.y2{bottom:946.366500px;}
.y23{bottom:951.771000px;}
.y42{bottom:954.585000px;}
.y22{bottom:973.440000px;}
.y41{bottom:976.254000px;}
.y1{bottom:983.727000px;}
.y21{bottom:995.109000px;}
.y40{bottom:1012.867500px;}
.y20{bottom:1016.778000px;}
.y3f{bottom:1034.536500px;}
.y1f{bottom:1056.204000px;}
.h6{height:23.141700px;}
.h4{height:45.687311px;}
.h5{height:49.090950px;}
.h7{height:51.216077px;}
.h3{height:61.459121px;}
.h8{height:72.304680px;}
.h2{height:92.857275px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:166.281000px;}
.x9{left:186.478500px;}
.x2{left:191.109000px;}
.xc{left:192.619500px;}
.x8{left:210.178500px;}
.x1{left:218.272500px;}
.x7{left:234.724500px;}
.x4{left:393.526500px;}
.x5{left:401.649000px;}
.x3{left:406.417500px;}
.x6{left:421.687500px;}
.xa{left:453.298500px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:39.989333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.655017pt;}
.ls2{letter-spacing:31.210291pt;}
.ws35{word-spacing:-3.443098pt;}
.ws4{word-spacing:-3.246548pt;}
.ws2b{word-spacing:-2.486682pt;}
.ws10{word-spacing:-1.792001pt;}
.ws3d{word-spacing:-1.657788pt;}
.ws15{word-spacing:-1.617456pt;}
.ws30{word-spacing:-0.828894pt;}
.ws17{word-spacing:-0.221091pt;}
.ws1{word-spacing:-0.110200pt;}
.ws1a{word-spacing:0.000000pt;}
.ws16{word-spacing:0.011636pt;}
.ws22{word-spacing:0.127522pt;}
.ws24{word-spacing:0.510089pt;}
.ws25{word-spacing:0.765133pt;}
.wsb{word-spacing:1.408001pt;}
.ws45{word-spacing:1.657788pt;}
.ws14{word-spacing:1.698911pt;}
.wsf{word-spacing:2.455275pt;}
.ws27{word-spacing:2.486682pt;}
.ws2d{word-spacing:2.550443pt;}
.ws32{word-spacing:2.741726pt;}
.ws19{word-spacing:2.932989pt;}
.ws18{word-spacing:3.211639pt;}
.ws21{word-spacing:3.443098pt;}
.ws5{word-spacing:3.444367pt;}
.ws2e{word-spacing:3.506859pt;}
.ws11{word-spacing:3.677094pt;}
.ws3{word-spacing:4.131706pt;}
.ws2{word-spacing:4.208219pt;}
.ws3f{word-spacing:4.208230pt;}
.ws3b{word-spacing:4.335753pt;}
.ws1d{word-spacing:4.463275pt;}
.ws3a{word-spacing:4.590797pt;}
.ws8{word-spacing:4.898913pt;}
.ws2c{word-spacing:4.909602pt;}
.ws9{word-spacing:5.306186pt;}
.ws28{word-spacing:5.355930pt;}
.wse{word-spacing:5.538914pt;}
.ws1c{word-spacing:5.866018pt;}
.ws42{word-spacing:6.057301pt;}
.ws31{word-spacing:6.439868pt;}
.wsa{word-spacing:6.586187pt;}
.ws13{word-spacing:6.993460pt;}
.ws1f{word-spacing:7.141239pt;}
.ws40{word-spacing:7.205001pt;}
.ws6{word-spacing:7.517097pt;}
.ws20{word-spacing:7.651328pt;}
.ws7{word-spacing:8.040734pt;}
.ws47{word-spacing:8.161417pt;}
.ws41{word-spacing:8.543983pt;}
.ws23{word-spacing:8.990310pt;}
.ws44{word-spacing:9.181594pt;}
.ws12{word-spacing:9.553463pt;}
.wsc{word-spacing:9.611644pt;}
.ws43{word-spacing:9.691682pt;}
.wsd{word-spacing:10.135281pt;}
.ws1e{word-spacing:10.520576pt;}
.ws29{word-spacing:10.648098pt;}
.ws38{word-spacing:11.604514pt;}
.ws46{word-spacing:12.178364pt;}
.ws34{word-spacing:14.154957pt;}
.ws37{word-spacing:14.920090pt;}
.ws2a{word-spacing:16.960444pt;}
.ws3c{word-spacing:17.916860pt;}
.ws2f{word-spacing:18.937037pt;}
.ws26{word-spacing:22.762701pt;}
.ws3e{word-spacing:24.675533pt;}
.ws39{word-spacing:25.121860pt;}
.ws0{word-spacing:33.170200pt;}
.ws33{word-spacing:36.152525pt;}
.ws36{word-spacing:37.045180pt;}
.ws1b{word-spacing:103.200585pt;}
._2{margin-left:-8.375200pt;}
._3{margin-left:-6.274071pt;}
._b{margin-left:-5.120004pt;}
._12{margin-left:-3.953186pt;}
._0{margin-left:-2.975400pt;}
._5{margin-left:-1.629092pt;}
._4{width:1.629092pt;}
._1{width:2.865200pt;}
._a{width:15.418195pt;}
._e{width:18.900571pt;}
._f{width:20.757563pt;}
._c{width:25.425476pt;}
._8{width:27.403659pt;}
._d{width:29.648896pt;}
._11{width:30.774270pt;}
._7{width:36.130939pt;}
._6{width:40.378215pt;}
._13{width:45.276727pt;}
._9{width:47.127312pt;}
._10{width:49.698787pt;}
.fs3{font-size:37.193600pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs6{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:186.337333pt;}
.y1d{bottom:231.008000pt;}
.y3e{bottom:243.610667pt;}
.y1c{bottom:249.698667pt;}
.y3d{bottom:262.872000pt;}
.y1b{bottom:267.765333pt;}
.y3c{bottom:282.133333pt;}
.y1a{bottom:285.830667pt;}
.y19{bottom:303.896000pt;}
.y3b{bottom:314.677333pt;}
.y18{bottom:321.961333pt;}
.y3a{bottom:333.938667pt;}
.y17{bottom:340.026667pt;}
.y39{bottom:353.200000pt;}
.y16{bottom:358.093333pt;}
.y38{bottom:372.461333pt;}
.y15{bottom:376.158667pt;}
.y14{bottom:394.224000pt;}
.y37{bottom:405.005333pt;}
.y13{bottom:412.289333pt;}
.y36{bottom:424.266667pt;}
.y12{bottom:430.354667pt;}
.y35{bottom:443.528000pt;}
.y11{bottom:448.421333pt;}
.y34{bottom:462.789333pt;}
.y10{bottom:466.486667pt;}
.yf{bottom:484.552000pt;}
.y33{bottom:495.333333pt;}
.ye{bottom:502.617333pt;}
.y32{bottom:514.594667pt;}
.yd{bottom:520.682667pt;}
.y31{bottom:533.856000pt;}
.yc{bottom:538.749333pt;}
.y30{bottom:553.117333pt;}
.yb{bottom:556.814667pt;}
.y4f{bottom:571.558667pt;}
.ya{bottom:574.880000pt;}
.y2f{bottom:585.661333pt;}
.y4e{bottom:590.820000pt;}
.y9{bottom:592.945333pt;}
.y2e{bottom:604.922667pt;}
.y4d{bottom:610.081333pt;}
.y8{bottom:611.010667pt;}
.y2d{bottom:624.184000pt;}
.y4c{bottom:629.342667pt;}
.y7{bottom:630.010667pt;}
.y2c{bottom:643.445333pt;}
.y4b{bottom:648.604000pt;}
.y4a{bottom:667.864000pt;}
.y2b{bottom:675.989333pt;}
.y49{bottom:687.125333pt;}
.y6{bottom:690.082667pt;}
.y48{bottom:706.386667pt;}
.y2a{bottom:711.190667pt;}
.y47{bottom:725.648000pt;}
.y5{bottom:727.474667pt;}
.y29{bottom:730.452000pt;}
.y28{bottom:749.713333pt;}
.y46{bottom:758.192000pt;}
.y27{bottom:768.974667pt;}
.y4{bottom:774.797333pt;}
.y45{bottom:777.453333pt;}
.y26{bottom:788.236000pt;}
.y44{bottom:796.714667pt;}
.y25{bottom:807.496000pt;}
.y3{bottom:808.006667pt;}
.y24{bottom:826.757333pt;}
.y43{bottom:829.260000pt;}
.y2{bottom:841.214667pt;}
.y23{bottom:846.018667pt;}
.y42{bottom:848.520000pt;}
.y22{bottom:865.280000pt;}
.y41{bottom:867.781333pt;}
.y1{bottom:874.424000pt;}
.y21{bottom:884.541333pt;}
.y40{bottom:900.326667pt;}
.y20{bottom:903.802667pt;}
.y3f{bottom:919.588000pt;}
.y1f{bottom:938.848000pt;}
.h6{height:20.570400pt;}
.h4{height:40.610943pt;}
.h5{height:43.636400pt;}
.h7{height:45.525402pt;}
.h3{height:54.630330pt;}
.h8{height:64.270827pt;}
.h2{height:82.539800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:147.805333pt;}
.x9{left:165.758667pt;}
.x2{left:169.874667pt;}
.xc{left:171.217333pt;}
.x8{left:186.825333pt;}
.x1{left:194.020000pt;}
.x7{left:208.644000pt;}
.x4{left:349.801333pt;}
.x5{left:357.021333pt;}
.x3{left:361.260000pt;}
.x6{left:374.833333pt;}
.xa{left:402.932000pt;}
}




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