
    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_86d732e5c52244ea51832e15.woff')format("woff");}.ff1{font-family:ff1;line-height:1.115723;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_9430c0e0149fd2b59465e270.woff')format("woff");}.ff2{font-family:ff2;line-height:1.025879;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_ad5009af2853a5297a853b01.woff')format("woff");}.ff3{font-family:ff3;line-height:1.292969;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_528df1e6de5d5a91e34b417f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.115723;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_480a21dc87a3b65649176978.woff')format("woff");}.ff5{font-family:ff5;line-height:1.292969;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:81.000000px;}
.ls9{letter-spacing:-12.948663px;}
.ls15{letter-spacing:-4.416000px;}
.ls1b{letter-spacing:-4.209000px;}
.ls16{letter-spacing:-4.140000px;}
.ls1f{letter-spacing:-3.450000px;}
.ls1d{letter-spacing:-3.381000px;}
.ls28{letter-spacing:-3.243000px;}
.ls13{letter-spacing:-2.898000px;}
.ls26{letter-spacing:-2.829000px;}
.ls8{letter-spacing:-2.376000px;}
.ls4{letter-spacing:-2.016000px;}
.ls2a{letter-spacing:-1.794000px;}
.ls27{letter-spacing:-1.311000px;}
.ls1c{letter-spacing:-1.242000px;}
.ls2f{letter-spacing:-1.200000px;}
.lsc{letter-spacing:-1.173000px;}
.ls17{letter-spacing:-1.104000px;}
.ls1e{letter-spacing:-1.035000px;}
.lsb{letter-spacing:-0.966000px;}
.ls12{letter-spacing:-0.897000px;}
.ls7{letter-spacing:-0.840000px;}
.ls14{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.759000px;}
.ls23{letter-spacing:-0.690000px;}
.ls1{letter-spacing:-0.675000px;}
.ls22{letter-spacing:-0.621000px;}
.ls25{letter-spacing:-0.552000px;}
.ls29{letter-spacing:-0.483000px;}
.lsf{letter-spacing:-0.480000px;}
.ls10{letter-spacing:-0.138000px;}
.ls6{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.552000px;}
.ls2d{letter-spacing:0.897000px;}
.ls2c{letter-spacing:1.050000px;}
.ls18{letter-spacing:1.104000px;}
.ls11{letter-spacing:1.173000px;}
.ls3{letter-spacing:1.344000px;}
.ls1a{letter-spacing:1.488000px;}
.ls24{letter-spacing:1.518000px;}
.lsd{letter-spacing:1.794000px;}
.ls2e{letter-spacing:4.260000px;}
.ls2{letter-spacing:6.000000px;}
.ls5{letter-spacing:7.260000px;}
.ls2b{letter-spacing:464.530800px;}
.ls0{letter-spacing:467.819400px;}
.ls19{letter-spacing:468.007200px;}
.ls21{letter-spacing:936.351000px;}
.lse{letter-spacing:943.521000px;}
.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;}
}
.ws4{word-spacing:-43.029403px;}
.ws3{word-spacing:-27.972000px;}
.ws2{word-spacing:-22.764000px;}
.ws2f{word-spacing:-22.125000px;}
.ws5{word-spacing:-21.183000px;}
.ws0{word-spacing:-20.400000px;}
.ws17{word-spacing:-18.354000px;}
.ws18{word-spacing:-18.147000px;}
.ws1f{word-spacing:-16.422000px;}
.ws23{word-spacing:-16.353000px;}
.ws22{word-spacing:-16.284000px;}
.ws21{word-spacing:-16.215000px;}
.wsd{word-spacing:-16.146000px;}
.ws20{word-spacing:-16.008000px;}
.ws24{word-spacing:-15.870000px;}
.ws30{word-spacing:-13.620000px;}
.ws1{word-spacing:-13.146000px;}
.ws9{word-spacing:-7.260000px;}
.ws7{word-spacing:-6.000000px;}
.ws27{word-spacing:-1.518000px;}
.ws10{word-spacing:-1.173000px;}
.ws16{word-spacing:-1.104000px;}
.ws31{word-spacing:-0.897000px;}
.ws1e{word-spacing:-0.552000px;}
.ws6{word-spacing:0.000000px;}
.wsf{word-spacing:0.138000px;}
.wse{word-spacing:0.480000px;}
.ws2d{word-spacing:0.483000px;}
.ws29{word-spacing:0.552000px;}
.ws25{word-spacing:0.621000px;}
.ws26{word-spacing:0.690000px;}
.wsa{word-spacing:0.759000px;}
.ws12{word-spacing:0.828000px;}
.ws19{word-spacing:0.912000px;}
.wsb{word-spacing:0.966000px;}
.ws28{word-spacing:1.035000px;}
.ws15{word-spacing:1.104000px;}
.wsc{word-spacing:1.173000px;}
.ws1b{word-spacing:1.242000px;}
.ws2b{word-spacing:1.311000px;}
.ws32{word-spacing:1.740000px;}
.ws2e{word-spacing:1.794000px;}
.ws8{word-spacing:2.016000px;}
.ws2a{word-spacing:2.829000px;}
.ws11{word-spacing:2.898000px;}
.ws2c{word-spacing:3.243000px;}
.ws1c{word-spacing:3.381000px;}
.ws1d{word-spacing:3.450000px;}
.ws14{word-spacing:4.140000px;}
.ws1a{word-spacing:4.209000px;}
.ws13{word-spacing:4.416000px;}
._8{margin-left:-8.872200px;}
._12{margin-left:-6.379200px;}
._7{margin-left:-4.771200px;}
._9{margin-left:-3.606000px;}
._a{margin-left:-2.586000px;}
._4{margin-left:-1.254000px;}
._0{width:1.515000px;}
._3{width:3.439800px;}
._2{width:5.027400px;}
._1{width:6.045000px;}
._e{width:7.132200px;}
._5{width:8.169600px;}
._6{width:9.207600px;}
._c{width:10.898243px;}
._d{width:11.992084px;}
._b{width:13.367004px;}
._10{width:26.268457px;}
._11{width:27.582729px;}
._f{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs5{font-size:84.000000px;}
.fs6{font-size:108.000000px;}
.fs8{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y4b{bottom:106.165350px;}
.y21{bottom:106.241850px;}
.y4a{bottom:126.589350px;}
.y20{bottom:126.890100px;}
.y49{bottom:147.013350px;}
.y1f{bottom:147.538350px;}
.y48{bottom:167.437350px;}
.y1e{bottom:168.186600px;}
.y47{bottom:187.861350px;}
.y1d{bottom:188.834850px;}
.y46{bottom:208.285350px;}
.y1c{bottom:209.483100px;}
.y6b{bottom:220.691550px;}
.y45{bottom:228.709350px;}
.y1b{bottom:230.131350px;}
.y6a{bottom:240.941550px;}
.y44{bottom:249.133350px;}
.y1a{bottom:250.779600px;}
.y69{bottom:261.191550px;}
.y43{bottom:269.557350px;}
.y19{bottom:271.427850px;}
.y68{bottom:281.441550px;}
.y42{bottom:289.981350px;}
.y18{bottom:292.076100px;}
.y41{bottom:310.405350px;}
.y17{bottom:312.724350px;}
.y67{bottom:314.441550px;}
.y40{bottom:330.829350px;}
.y16{bottom:333.372600px;}
.y3f{bottom:351.253350px;}
.y15{bottom:354.020850px;}
.y66{bottom:355.910850px;}
.y3e{bottom:371.677350px;}
.y14{bottom:374.669100px;}
.y65{bottom:376.162350px;}
.y3d{bottom:392.101350px;}
.y13{bottom:395.317350px;}
.y64{bottom:396.413850px;}
.y3c{bottom:412.525350px;}
.y12{bottom:415.965600px;}
.y63{bottom:416.665350px;}
.y3b{bottom:432.949350px;}
.y11{bottom:436.613850px;}
.y62{bottom:436.916850px;}
.y3a{bottom:453.373350px;}
.y61{bottom:457.168350px;}
.y10{bottom:457.262100px;}
.y39{bottom:473.797350px;}
.y60{bottom:477.419850px;}
.yf{bottom:477.910350px;}
.ye{bottom:477.911850px;}
.y38{bottom:494.221350px;}
.y5f{bottom:497.671350px;}
.y37{bottom:514.645350px;}
.y5e{bottom:517.922850px;}
.yd{bottom:518.807100px;}
.y36{bottom:535.069350px;}
.y5d{bottom:538.174350px;}
.y35{bottom:555.493350px;}
.y5c{bottom:558.425850px;}
.yc{bottom:569.221050px;}
.y34{bottom:575.917350px;}
.y5b{bottom:578.677350px;}
.yb{bottom:590.611050px;}
.y33{bottom:596.341350px;}
.y5a{bottom:598.928850px;}
.y32{bottom:616.765350px;}
.y59{bottom:619.180350px;}
.y31{bottom:637.189350px;}
.y58{bottom:639.431850px;}
.ya{bottom:641.786250px;}
.y30{bottom:657.613350px;}
.y57{bottom:659.683350px;}
.y9{bottom:673.673250px;}
.y2f{bottom:678.037350px;}
.y56{bottom:679.934850px;}
.y2e{bottom:698.461350px;}
.y55{bottom:700.186350px;}
.y8{bottom:705.560250px;}
.y2d{bottom:718.885350px;}
.y54{bottom:720.437850px;}
.y7{bottom:737.451600px;}
.y2c{bottom:739.309350px;}
.y53{bottom:740.689350px;}
.y2b{bottom:759.733350px;}
.y52{bottom:760.940850px;}
.y6{bottom:769.350600px;}
.y2a{bottom:780.157350px;}
.y51{bottom:781.192350px;}
.y29{bottom:800.581350px;}
.y50{bottom:801.443850px;}
.y28{bottom:821.005350px;}
.y4f{bottom:821.695350px;}
.y5{bottom:831.018750px;}
.y27{bottom:841.429350px;}
.y4e{bottom:841.946850px;}
.y4{bottom:852.408750px;}
.y26{bottom:861.853350px;}
.y4d{bottom:862.198350px;}
.y25{bottom:882.277350px;}
.y3{bottom:882.303750px;}
.y4c{bottom:882.449850px;}
.y24{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y23{bottom:948.189000px;}
.y22{bottom:966.189000px;}
.hc{height:38.062500px;}
.hd{height:47.578125px;}
.h3{height:49.957031px;}
.h4{height:50.947266px;}
.h7{height:54.714844px;}
.h9{height:58.589355px;}
.hb{height:62.138672px;}
.h2{height:63.684082px;}
.h5{height:71.326172px;}
.ha{height:71.459473px;}
.h6{height:91.705078px;}
.h8{height:169.153583px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:80.948850px;}
.x6{left:82.096650px;}
.x1{left:83.686650px;}
.x8{left:85.200150px;}
.xe{left:92.885850px;}
.xc{left:94.231350px;}
.x12{left:96.922650px;}
.x9{left:102.174150px;}
.xa{left:104.236350px;}
.x5{left:106.299150px;}
.x10{left:110.670900px;}
.x11{left:112.206150px;}
.xf{left:113.430600px;}
.xd{left:114.638100px;}
.x7{left:176.159400px;}
.x4{left:228.653400px;}
.x2{left:232.076250px;}
.x3{left:233.583000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:72.000000pt;}
.ls9{letter-spacing:-11.509923pt;}
.ls15{letter-spacing:-3.925333pt;}
.ls1b{letter-spacing:-3.741333pt;}
.ls16{letter-spacing:-3.680000pt;}
.ls1f{letter-spacing:-3.066667pt;}
.ls1d{letter-spacing:-3.005333pt;}
.ls28{letter-spacing:-2.882667pt;}
.ls13{letter-spacing:-2.576000pt;}
.ls26{letter-spacing:-2.514667pt;}
.ls8{letter-spacing:-2.112000pt;}
.ls4{letter-spacing:-1.792000pt;}
.ls2a{letter-spacing:-1.594667pt;}
.ls27{letter-spacing:-1.165333pt;}
.ls1c{letter-spacing:-1.104000pt;}
.ls2f{letter-spacing:-1.066667pt;}
.lsc{letter-spacing:-1.042667pt;}
.ls17{letter-spacing:-0.981333pt;}
.ls1e{letter-spacing:-0.920000pt;}
.lsb{letter-spacing:-0.858667pt;}
.ls12{letter-spacing:-0.797333pt;}
.ls7{letter-spacing:-0.746667pt;}
.ls14{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.674667pt;}
.ls23{letter-spacing:-0.613333pt;}
.ls1{letter-spacing:-0.600000pt;}
.ls22{letter-spacing:-0.552000pt;}
.ls25{letter-spacing:-0.490667pt;}
.ls29{letter-spacing:-0.429333pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls10{letter-spacing:-0.122667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.490667pt;}
.ls2d{letter-spacing:0.797333pt;}
.ls2c{letter-spacing:0.933333pt;}
.ls18{letter-spacing:0.981333pt;}
.ls11{letter-spacing:1.042667pt;}
.ls3{letter-spacing:1.194667pt;}
.ls1a{letter-spacing:1.322667pt;}
.ls24{letter-spacing:1.349333pt;}
.lsd{letter-spacing:1.594667pt;}
.ls2e{letter-spacing:3.786667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls5{letter-spacing:6.453333pt;}
.ls2b{letter-spacing:412.916267pt;}
.ls0{letter-spacing:415.839467pt;}
.ls19{letter-spacing:416.006400pt;}
.ls21{letter-spacing:832.312000pt;}
.lse{letter-spacing:838.685333pt;}
.ws4{word-spacing:-38.248358pt;}
.ws3{word-spacing:-24.864000pt;}
.ws2{word-spacing:-20.234667pt;}
.ws2f{word-spacing:-19.666667pt;}
.ws5{word-spacing:-18.829333pt;}
.ws0{word-spacing:-18.133333pt;}
.ws17{word-spacing:-16.314667pt;}
.ws18{word-spacing:-16.130667pt;}
.ws1f{word-spacing:-14.597333pt;}
.ws23{word-spacing:-14.536000pt;}
.ws22{word-spacing:-14.474667pt;}
.ws21{word-spacing:-14.413333pt;}
.wsd{word-spacing:-14.352000pt;}
.ws20{word-spacing:-14.229333pt;}
.ws24{word-spacing:-14.106667pt;}
.ws30{word-spacing:-12.106667pt;}
.ws1{word-spacing:-11.685333pt;}
.ws9{word-spacing:-6.453333pt;}
.ws7{word-spacing:-5.333333pt;}
.ws27{word-spacing:-1.349333pt;}
.ws10{word-spacing:-1.042667pt;}
.ws16{word-spacing:-0.981333pt;}
.ws31{word-spacing:-0.797333pt;}
.ws1e{word-spacing:-0.490667pt;}
.ws6{word-spacing:0.000000pt;}
.wsf{word-spacing:0.122667pt;}
.wse{word-spacing:0.426667pt;}
.ws2d{word-spacing:0.429333pt;}
.ws29{word-spacing:0.490667pt;}
.ws25{word-spacing:0.552000pt;}
.ws26{word-spacing:0.613333pt;}
.wsa{word-spacing:0.674667pt;}
.ws12{word-spacing:0.736000pt;}
.ws19{word-spacing:0.810667pt;}
.wsb{word-spacing:0.858667pt;}
.ws28{word-spacing:0.920000pt;}
.ws15{word-spacing:0.981333pt;}
.wsc{word-spacing:1.042667pt;}
.ws1b{word-spacing:1.104000pt;}
.ws2b{word-spacing:1.165333pt;}
.ws32{word-spacing:1.546667pt;}
.ws2e{word-spacing:1.594667pt;}
.ws8{word-spacing:1.792000pt;}
.ws2a{word-spacing:2.514667pt;}
.ws11{word-spacing:2.576000pt;}
.ws2c{word-spacing:2.882667pt;}
.ws1c{word-spacing:3.005333pt;}
.ws1d{word-spacing:3.066667pt;}
.ws14{word-spacing:3.680000pt;}
.ws1a{word-spacing:3.741333pt;}
.ws13{word-spacing:3.925333pt;}
._8{margin-left:-7.886400pt;}
._12{margin-left:-5.670400pt;}
._7{margin-left:-4.241067pt;}
._9{margin-left:-3.205333pt;}
._a{margin-left:-2.298667pt;}
._4{margin-left:-1.114667pt;}
._0{width:1.346667pt;}
._3{width:3.057600pt;}
._2{width:4.468800pt;}
._1{width:5.373333pt;}
._e{width:6.339733pt;}
._5{width:7.261867pt;}
._6{width:8.184533pt;}
._c{width:9.687327pt;}
._d{width:10.659630pt;}
._b{width:11.881782pt;}
._10{width:23.349739pt;}
._11{width:24.517982pt;}
._f{width:514.133333pt;}
.fs3{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs5{font-size:74.666667pt;}
.fs6{font-size:96.000000pt;}
.fs8{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y4b{bottom:94.369200pt;}
.y21{bottom:94.437200pt;}
.y4a{bottom:112.523867pt;}
.y20{bottom:112.791200pt;}
.y49{bottom:130.678533pt;}
.y1f{bottom:131.145200pt;}
.y48{bottom:148.833200pt;}
.y1e{bottom:149.499200pt;}
.y47{bottom:166.987867pt;}
.y1d{bottom:167.853200pt;}
.y46{bottom:185.142533pt;}
.y1c{bottom:186.207200pt;}
.y6b{bottom:196.170267pt;}
.y45{bottom:203.297200pt;}
.y1b{bottom:204.561200pt;}
.y6a{bottom:214.170267pt;}
.y44{bottom:221.451867pt;}
.y1a{bottom:222.915200pt;}
.y69{bottom:232.170267pt;}
.y43{bottom:239.606533pt;}
.y19{bottom:241.269200pt;}
.y68{bottom:250.170267pt;}
.y42{bottom:257.761200pt;}
.y18{bottom:259.623200pt;}
.y41{bottom:275.915867pt;}
.y17{bottom:277.977200pt;}
.y67{bottom:279.503600pt;}
.y40{bottom:294.070533pt;}
.y16{bottom:296.331200pt;}
.y3f{bottom:312.225200pt;}
.y15{bottom:314.685200pt;}
.y66{bottom:316.365200pt;}
.y3e{bottom:330.379867pt;}
.y14{bottom:333.039200pt;}
.y65{bottom:334.366533pt;}
.y3d{bottom:348.534533pt;}
.y13{bottom:351.393200pt;}
.y64{bottom:352.367867pt;}
.y3c{bottom:366.689200pt;}
.y12{bottom:369.747200pt;}
.y63{bottom:370.369200pt;}
.y3b{bottom:384.843867pt;}
.y11{bottom:388.101200pt;}
.y62{bottom:388.370533pt;}
.y3a{bottom:402.998533pt;}
.y61{bottom:406.371867pt;}
.y10{bottom:406.455200pt;}
.y39{bottom:421.153200pt;}
.y60{bottom:424.373200pt;}
.yf{bottom:424.809200pt;}
.ye{bottom:424.810533pt;}
.y38{bottom:439.307867pt;}
.y5f{bottom:442.374533pt;}
.y37{bottom:457.462533pt;}
.y5e{bottom:460.375867pt;}
.yd{bottom:461.161867pt;}
.y36{bottom:475.617200pt;}
.y5d{bottom:478.377200pt;}
.y35{bottom:493.771867pt;}
.y5c{bottom:496.378533pt;}
.yc{bottom:505.974267pt;}
.y34{bottom:511.926533pt;}
.y5b{bottom:514.379867pt;}
.yb{bottom:524.987600pt;}
.y33{bottom:530.081200pt;}
.y5a{bottom:532.381200pt;}
.y32{bottom:548.235867pt;}
.y59{bottom:550.382533pt;}
.y31{bottom:566.390533pt;}
.y58{bottom:568.383867pt;}
.ya{bottom:570.476667pt;}
.y30{bottom:584.545200pt;}
.y57{bottom:586.385200pt;}
.y9{bottom:598.820667pt;}
.y2f{bottom:602.699867pt;}
.y56{bottom:604.386533pt;}
.y2e{bottom:620.854533pt;}
.y55{bottom:622.387867pt;}
.y8{bottom:627.164667pt;}
.y2d{bottom:639.009200pt;}
.y54{bottom:640.389200pt;}
.y7{bottom:655.512533pt;}
.y2c{bottom:657.163867pt;}
.y53{bottom:658.390533pt;}
.y2b{bottom:675.318533pt;}
.y52{bottom:676.391867pt;}
.y6{bottom:683.867200pt;}
.y2a{bottom:693.473200pt;}
.y51{bottom:694.393200pt;}
.y29{bottom:711.627867pt;}
.y50{bottom:712.394533pt;}
.y28{bottom:729.782533pt;}
.y4f{bottom:730.395867pt;}
.y5{bottom:738.683333pt;}
.y27{bottom:747.937200pt;}
.y4e{bottom:748.397200pt;}
.y4{bottom:757.696667pt;}
.y26{bottom:766.091867pt;}
.y4d{bottom:766.398533pt;}
.y25{bottom:784.246533pt;}
.y3{bottom:784.270000pt;}
.y4c{bottom:784.399867pt;}
.y24{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y23{bottom:842.834667pt;}
.y22{bottom:858.834667pt;}
.hc{height:33.833333pt;}
.hd{height:42.291667pt;}
.h3{height:44.406250pt;}
.h4{height:45.286458pt;}
.h7{height:48.635417pt;}
.h9{height:52.079427pt;}
.hb{height:55.234375pt;}
.h2{height:56.608073pt;}
.h5{height:63.401042pt;}
.ha{height:63.519531pt;}
.h6{height:81.515625pt;}
.h8{height:150.358740pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:71.954533pt;}
.x6{left:72.974800pt;}
.x1{left:74.388133pt;}
.x8{left:75.733467pt;}
.xe{left:82.565200pt;}
.xc{left:83.761200pt;}
.x12{left:86.153467pt;}
.x9{left:90.821467pt;}
.xa{left:92.654533pt;}
.x5{left:94.488133pt;}
.x10{left:98.374133pt;}
.x11{left:99.738800pt;}
.xf{left:100.827200pt;}
.xd{left:101.900533pt;}
.x7{left:156.586133pt;}
.x4{left:203.247467pt;}
.x2{left:206.290000pt;}
.x3{left:207.629333pt;}
}




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