
    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_7a7844ef702332bb64bf1072.woff')format("woff");}.ff1{font-family:ff1;line-height:1.184570;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_522f89ff4a6460646e23f2ec.woff')format("woff");}.ff2{font-family:ff2;line-height:1.050781;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_aa9cc9b8af987100a111233f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_b04f4682c80b6c2e9c3382d0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.050781;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_3613c25a1f7155536d4fd119.woff')format("woff");}.ff5{font-family:ff5;line-height:0.913086;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;}
.ls14{letter-spacing:-5.175000px;}
.ls8{letter-spacing:-4.140000px;}
.ls25{letter-spacing:-3.450000px;}
.ls23{letter-spacing:-2.484000px;}
.ls5{letter-spacing:-2.139000px;}
.ls27{letter-spacing:-1.863000px;}
.ls26{letter-spacing:-1.794000px;}
.ls20{letter-spacing:-1.518000px;}
.ls19{letter-spacing:-1.449000px;}
.ls13{letter-spacing:-1.311000px;}
.ls11{letter-spacing:-1.242000px;}
.ls10{letter-spacing:-1.104000px;}
.ls7{letter-spacing:-1.035000px;}
.lse{letter-spacing:-0.966000px;}
.ls6{letter-spacing:-0.897000px;}
.ls2c{letter-spacing:-0.840000px;}
.ls3{letter-spacing:-0.828000px;}
.ls12{letter-spacing:-0.759000px;}
.ls28{letter-spacing:-0.690000px;}
.lsf{letter-spacing:-0.621000px;}
.ls17{letter-spacing:-0.552000px;}
.ls1d{letter-spacing:-0.483000px;}
.ls2b{letter-spacing:-0.345000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.150000px;}
.ls29{letter-spacing:0.276000px;}
.ls9{letter-spacing:0.483000px;}
.ls18{letter-spacing:0.621000px;}
.ls1b{letter-spacing:0.759000px;}
.ls1a{letter-spacing:1.173000px;}
.ls22{letter-spacing:1.242000px;}
.lsd{letter-spacing:1.260000px;}
.ls4{letter-spacing:1.311000px;}
.ls1c{letter-spacing:1.587000px;}
.ls1e{letter-spacing:1.656000px;}
.ls1f{letter-spacing:2.070000px;}
.lsb{letter-spacing:2.400000px;}
.ls2{letter-spacing:6.000000px;}
.ls16{letter-spacing:7.320000px;}
.lsa{letter-spacing:466.579200px;}
.ls21{letter-spacing:467.179200px;}
.ls2a{letter-spacing:467.404200px;}
.ls0{letter-spacing:937.404000px;}
.ls15{letter-spacing:938.952000px;}
.ls24{letter-spacing:944.076000px;}
.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:-55.978066px;}
.wsc{word-spacing:-21.225000px;}
.ws29{word-spacing:-19.665000px;}
.ws1a{word-spacing:-18.699000px;}
.ws19{word-spacing:-16.284000px;}
.ws24{word-spacing:-16.215000px;}
.ws1{word-spacing:-16.008000px;}
.ws18{word-spacing:-15.594000px;}
.ws25{word-spacing:-15.525000px;}
.ws27{word-spacing:-15.249000px;}
.ws28{word-spacing:-15.180000px;}
.ws26{word-spacing:-14.559000px;}
.ws2f{word-spacing:-13.980000px;}
.wsd{word-spacing:-13.062000px;}
.ws3{word-spacing:-6.000000px;}
.wse{word-spacing:-2.400000px;}
.ws22{word-spacing:-2.070000px;}
.wsa{word-spacing:-2.001000px;}
.ws20{word-spacing:-1.863000px;}
.ws21{word-spacing:-1.587000px;}
.ws1b{word-spacing:-1.320000px;}
.ws5{word-spacing:-1.311000px;}
.ws11{word-spacing:-1.242000px;}
.ws1f{word-spacing:-1.173000px;}
.ws2e{word-spacing:-0.759000px;}
.ws1d{word-spacing:-0.621000px;}
.wsb{word-spacing:-0.483000px;}
.ws2d{word-spacing:-0.276000px;}
.ws2{word-spacing:0.000000px;}
.ws30{word-spacing:0.345000px;}
.ws31{word-spacing:0.480000px;}
.ws7{word-spacing:0.483000px;}
.ws1c{word-spacing:0.552000px;}
.ws10{word-spacing:0.621000px;}
.ws2c{word-spacing:0.690000px;}
.ws15{word-spacing:0.759000px;}
.ws4{word-spacing:0.828000px;}
.ws8{word-spacing:0.897000px;}
.wsf{word-spacing:0.966000px;}
.ws12{word-spacing:1.035000px;}
.ws13{word-spacing:1.104000px;}
.ws14{word-spacing:1.242000px;}
.ws16{word-spacing:1.311000px;}
.ws1e{word-spacing:1.449000px;}
.ws23{word-spacing:1.518000px;}
.ws2b{word-spacing:1.794000px;}
.ws6{word-spacing:2.139000px;}
.ws2a{word-spacing:3.450000px;}
.ws9{word-spacing:4.140000px;}
.ws17{word-spacing:5.175000px;}
._10{margin-left:-8.137500px;}
._d{margin-left:-6.772200px;}
._a{margin-left:-5.722800px;}
._c{margin-left:-4.020300px;}
._3{margin-left:-2.784600px;}
._2{margin-left:-1.038000px;}
._5{width:1.014300px;}
._4{width:2.375100px;}
._b{width:3.588900px;}
._7{width:4.878000px;}
._6{width:5.898000px;}
._8{width:7.038000px;}
._9{width:8.184000px;}
._e{width:9.224400px;}
._f{width:10.225800px;}
._13{width:11.688600px;}
._1{width:13.140000px;}
._11{width:15.659100px;}
._12{width:16.773600px;}
._0{width:578.400000px;}
.fc0{color:rgb(36,31,31);}
.fs9{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y71{bottom:106.165500px;}
.y4a{bottom:106.269000px;}
.y22{bottom:106.388250px;}
.y70{bottom:126.589500px;}
.y21{bottom:126.726000px;}
.y49{bottom:127.227750px;}
.y6f{bottom:147.013500px;}
.y20{bottom:147.063750px;}
.y48{bottom:148.186500px;}
.y1f{bottom:167.401500px;}
.y6e{bottom:167.437500px;}
.y47{bottom:169.145250px;}
.y1e{bottom:187.739250px;}
.y6d{bottom:187.861500px;}
.y46{bottom:190.104000px;}
.y1d{bottom:208.077000px;}
.y6c{bottom:208.285500px;}
.y45{bottom:211.062750px;}
.y1c{bottom:228.414750px;}
.y6b{bottom:228.709500px;}
.y44{bottom:232.021500px;}
.y1b{bottom:248.752500px;}
.y6a{bottom:249.133500px;}
.y43{bottom:252.980250px;}
.y1a{bottom:269.090250px;}
.y69{bottom:269.557500px;}
.y42{bottom:273.939000px;}
.y19{bottom:289.428000px;}
.y68{bottom:289.981500px;}
.y41{bottom:294.897750px;}
.y18{bottom:309.765750px;}
.y67{bottom:310.405500px;}
.y40{bottom:315.856500px;}
.y17{bottom:330.103500px;}
.y66{bottom:330.829500px;}
.y3f{bottom:336.815250px;}
.y16{bottom:350.441250px;}
.y65{bottom:351.253500px;}
.y3e{bottom:357.774000px;}
.y15{bottom:370.779000px;}
.y64{bottom:371.677500px;}
.y3d{bottom:378.732750px;}
.y14{bottom:391.116750px;}
.y63{bottom:392.101500px;}
.y3c{bottom:399.691500px;}
.y13{bottom:411.454500px;}
.y62{bottom:412.525500px;}
.y3b{bottom:420.650250px;}
.y12{bottom:431.792250px;}
.y61{bottom:432.949500px;}
.y3a{bottom:441.609000px;}
.y11{bottom:452.130000px;}
.y60{bottom:453.373500px;}
.y39{bottom:462.567750px;}
.y10{bottom:472.467750px;}
.y5f{bottom:473.797500px;}
.y38{bottom:483.526500px;}
.yf{bottom:492.805500px;}
.y5e{bottom:494.221500px;}
.y37{bottom:504.485250px;}
.ye{bottom:513.143250px;}
.y5d{bottom:514.645500px;}
.y36{bottom:525.444000px;}
.yd{bottom:533.481000px;}
.yc{bottom:533.482500px;}
.y5c{bottom:535.069500px;}
.y81{bottom:544.692000px;}
.y35{bottom:546.402750px;}
.y5b{bottom:555.493500px;}
.y80{bottom:564.942000px;}
.y34{bottom:567.361500px;}
.y5a{bottom:575.917500px;}
.y7f{bottom:585.192000px;}
.y33{bottom:588.320250px;}
.y59{bottom:596.341500px;}
.yb{bottom:603.840000px;}
.y7e{bottom:605.442000px;}
.y32{bottom:609.279000px;}
.y58{bottom:616.765500px;}
.ya{bottom:624.930000px;}
.y31{bottom:630.237750px;}
.y57{bottom:637.189500px;}
.y7d{bottom:638.442000px;}
.y30{bottom:651.196500px;}
.y56{bottom:657.613500px;}
.y2f{bottom:672.155250px;}
.y9{bottom:675.795000px;}
.y55{bottom:678.037500px;}
.y7c{bottom:679.935000px;}
.y2e{bottom:693.114000px;}
.y54{bottom:698.461500px;}
.y7b{bottom:700.186500px;}
.y8{bottom:707.379000px;}
.y2d{bottom:714.072750px;}
.y53{bottom:718.885500px;}
.y7a{bottom:720.438000px;}
.y2c{bottom:735.031500px;}
.y7{bottom:738.970500px;}
.y52{bottom:739.309500px;}
.y79{bottom:740.689500px;}
.y2b{bottom:755.990250px;}
.y51{bottom:759.733500px;}
.y78{bottom:760.941000px;}
.y6{bottom:770.563500px;}
.y2a{bottom:776.949000px;}
.y50{bottom:780.157500px;}
.y77{bottom:781.192500px;}
.y29{bottom:797.907750px;}
.y4f{bottom:800.581500px;}
.y76{bottom:801.444000px;}
.y28{bottom:818.866500px;}
.y4e{bottom:821.005500px;}
.y75{bottom:821.695500px;}
.y5{bottom:831.921000px;}
.y27{bottom:839.825250px;}
.y4d{bottom:841.429500px;}
.y74{bottom:841.947000px;}
.y4{bottom:853.011000px;}
.y26{bottom:860.784000px;}
.y4c{bottom:861.853500px;}
.y73{bottom:862.198500px;}
.y25{bottom:881.742750px;}
.y4b{bottom:882.277500px;}
.y72{bottom:882.450000px;}
.y3{bottom:882.606000px;}
.y24{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y23{bottom:948.189000px;}
.h9{height:45.679688px;}
.ha{height:49.072266px;}
.hb{height:50.947266px;}
.h4{height:57.099609px;}
.h3{height:59.954590px;}
.h8{height:65.664551px;}
.h2{height:71.374512px;}
.h5{height:79.939453px;}
.h6{height:102.779297px;}
.h7{height:162.928264px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:79.083900px;}
.x8{left:82.936050px;}
.xa{left:84.033450px;}
.x1{left:85.039350px;}
.x9{left:104.364300px;}
.x7{left:105.637050px;}
.x6{left:110.881050px;}
.x3{left:231.235500px;}
.x4{left:232.339500px;}
.x2{left:233.344500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:72.000000pt;}
.ls14{letter-spacing:-4.600000pt;}
.ls8{letter-spacing:-3.680000pt;}
.ls25{letter-spacing:-3.066667pt;}
.ls23{letter-spacing:-2.208000pt;}
.ls5{letter-spacing:-1.901333pt;}
.ls27{letter-spacing:-1.656000pt;}
.ls26{letter-spacing:-1.594667pt;}
.ls20{letter-spacing:-1.349333pt;}
.ls19{letter-spacing:-1.288000pt;}
.ls13{letter-spacing:-1.165333pt;}
.ls11{letter-spacing:-1.104000pt;}
.ls10{letter-spacing:-0.981333pt;}
.ls7{letter-spacing:-0.920000pt;}
.lse{letter-spacing:-0.858667pt;}
.ls6{letter-spacing:-0.797333pt;}
.ls2c{letter-spacing:-0.746667pt;}
.ls3{letter-spacing:-0.736000pt;}
.ls12{letter-spacing:-0.674667pt;}
.ls28{letter-spacing:-0.613333pt;}
.lsf{letter-spacing:-0.552000pt;}
.ls17{letter-spacing:-0.490667pt;}
.ls1d{letter-spacing:-0.429333pt;}
.ls2b{letter-spacing:-0.306667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.133333pt;}
.ls29{letter-spacing:0.245333pt;}
.ls9{letter-spacing:0.429333pt;}
.ls18{letter-spacing:0.552000pt;}
.ls1b{letter-spacing:0.674667pt;}
.ls1a{letter-spacing:1.042667pt;}
.ls22{letter-spacing:1.104000pt;}
.lsd{letter-spacing:1.120000pt;}
.ls4{letter-spacing:1.165333pt;}
.ls1c{letter-spacing:1.410667pt;}
.ls1e{letter-spacing:1.472000pt;}
.ls1f{letter-spacing:1.840000pt;}
.lsb{letter-spacing:2.133333pt;}
.ls2{letter-spacing:5.333333pt;}
.ls16{letter-spacing:6.506667pt;}
.lsa{letter-spacing:414.737067pt;}
.ls21{letter-spacing:415.270400pt;}
.ls2a{letter-spacing:415.470400pt;}
.ls0{letter-spacing:833.248000pt;}
.ls15{letter-spacing:834.624000pt;}
.ls24{letter-spacing:839.178667pt;}
.ws0{word-spacing:-49.758281pt;}
.wsc{word-spacing:-18.866667pt;}
.ws29{word-spacing:-17.480000pt;}
.ws1a{word-spacing:-16.621333pt;}
.ws19{word-spacing:-14.474667pt;}
.ws24{word-spacing:-14.413333pt;}
.ws1{word-spacing:-14.229333pt;}
.ws18{word-spacing:-13.861333pt;}
.ws25{word-spacing:-13.800000pt;}
.ws27{word-spacing:-13.554667pt;}
.ws28{word-spacing:-13.493333pt;}
.ws26{word-spacing:-12.941333pt;}
.ws2f{word-spacing:-12.426667pt;}
.wsd{word-spacing:-11.610667pt;}
.ws3{word-spacing:-5.333333pt;}
.wse{word-spacing:-2.133333pt;}
.ws22{word-spacing:-1.840000pt;}
.wsa{word-spacing:-1.778667pt;}
.ws20{word-spacing:-1.656000pt;}
.ws21{word-spacing:-1.410667pt;}
.ws1b{word-spacing:-1.173333pt;}
.ws5{word-spacing:-1.165333pt;}
.ws11{word-spacing:-1.104000pt;}
.ws1f{word-spacing:-1.042667pt;}
.ws2e{word-spacing:-0.674667pt;}
.ws1d{word-spacing:-0.552000pt;}
.wsb{word-spacing:-0.429333pt;}
.ws2d{word-spacing:-0.245333pt;}
.ws2{word-spacing:0.000000pt;}
.ws30{word-spacing:0.306667pt;}
.ws31{word-spacing:0.426667pt;}
.ws7{word-spacing:0.429333pt;}
.ws1c{word-spacing:0.490667pt;}
.ws10{word-spacing:0.552000pt;}
.ws2c{word-spacing:0.613333pt;}
.ws15{word-spacing:0.674667pt;}
.ws4{word-spacing:0.736000pt;}
.ws8{word-spacing:0.797333pt;}
.wsf{word-spacing:0.858667pt;}
.ws12{word-spacing:0.920000pt;}
.ws13{word-spacing:0.981333pt;}
.ws14{word-spacing:1.104000pt;}
.ws16{word-spacing:1.165333pt;}
.ws1e{word-spacing:1.288000pt;}
.ws23{word-spacing:1.349333pt;}
.ws2b{word-spacing:1.594667pt;}
.ws6{word-spacing:1.901333pt;}
.ws2a{word-spacing:3.066667pt;}
.ws9{word-spacing:3.680000pt;}
.ws17{word-spacing:4.600000pt;}
._10{margin-left:-7.233333pt;}
._d{margin-left:-6.019733pt;}
._a{margin-left:-5.086933pt;}
._c{margin-left:-3.573600pt;}
._3{margin-left:-2.475200pt;}
._2{margin-left:-0.922667pt;}
._5{width:0.901600pt;}
._4{width:2.111200pt;}
._b{width:3.190133pt;}
._7{width:4.336000pt;}
._6{width:5.242667pt;}
._8{width:6.256000pt;}
._9{width:7.274667pt;}
._e{width:8.199467pt;}
._f{width:9.089600pt;}
._13{width:10.389867pt;}
._1{width:11.680000pt;}
._11{width:13.919200pt;}
._12{width:14.909867pt;}
._0{width:514.133333pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y71{bottom:94.369333pt;}
.y4a{bottom:94.461333pt;}
.y22{bottom:94.567333pt;}
.y70{bottom:112.524000pt;}
.y21{bottom:112.645333pt;}
.y49{bottom:113.091333pt;}
.y6f{bottom:130.678667pt;}
.y20{bottom:130.723333pt;}
.y48{bottom:131.721333pt;}
.y1f{bottom:148.801333pt;}
.y6e{bottom:148.833333pt;}
.y47{bottom:150.351333pt;}
.y1e{bottom:166.879333pt;}
.y6d{bottom:166.988000pt;}
.y46{bottom:168.981333pt;}
.y1d{bottom:184.957333pt;}
.y6c{bottom:185.142667pt;}
.y45{bottom:187.611333pt;}
.y1c{bottom:203.035333pt;}
.y6b{bottom:203.297333pt;}
.y44{bottom:206.241333pt;}
.y1b{bottom:221.113333pt;}
.y6a{bottom:221.452000pt;}
.y43{bottom:224.871333pt;}
.y1a{bottom:239.191333pt;}
.y69{bottom:239.606667pt;}
.y42{bottom:243.501333pt;}
.y19{bottom:257.269333pt;}
.y68{bottom:257.761333pt;}
.y41{bottom:262.131333pt;}
.y18{bottom:275.347333pt;}
.y67{bottom:275.916000pt;}
.y40{bottom:280.761333pt;}
.y17{bottom:293.425333pt;}
.y66{bottom:294.070667pt;}
.y3f{bottom:299.391333pt;}
.y16{bottom:311.503333pt;}
.y65{bottom:312.225333pt;}
.y3e{bottom:318.021333pt;}
.y15{bottom:329.581333pt;}
.y64{bottom:330.380000pt;}
.y3d{bottom:336.651333pt;}
.y14{bottom:347.659333pt;}
.y63{bottom:348.534667pt;}
.y3c{bottom:355.281333pt;}
.y13{bottom:365.737333pt;}
.y62{bottom:366.689333pt;}
.y3b{bottom:373.911333pt;}
.y12{bottom:383.815333pt;}
.y61{bottom:384.844000pt;}
.y3a{bottom:392.541333pt;}
.y11{bottom:401.893333pt;}
.y60{bottom:402.998667pt;}
.y39{bottom:411.171333pt;}
.y10{bottom:419.971333pt;}
.y5f{bottom:421.153333pt;}
.y38{bottom:429.801333pt;}
.yf{bottom:438.049333pt;}
.y5e{bottom:439.308000pt;}
.y37{bottom:448.431333pt;}
.ye{bottom:456.127333pt;}
.y5d{bottom:457.462667pt;}
.y36{bottom:467.061333pt;}
.yd{bottom:474.205333pt;}
.yc{bottom:474.206667pt;}
.y5c{bottom:475.617333pt;}
.y81{bottom:484.170667pt;}
.y35{bottom:485.691333pt;}
.y5b{bottom:493.772000pt;}
.y80{bottom:502.170667pt;}
.y34{bottom:504.321333pt;}
.y5a{bottom:511.926667pt;}
.y7f{bottom:520.170667pt;}
.y33{bottom:522.951333pt;}
.y59{bottom:530.081333pt;}
.yb{bottom:536.746667pt;}
.y7e{bottom:538.170667pt;}
.y32{bottom:541.581333pt;}
.y58{bottom:548.236000pt;}
.ya{bottom:555.493333pt;}
.y31{bottom:560.211333pt;}
.y57{bottom:566.390667pt;}
.y7d{bottom:567.504000pt;}
.y30{bottom:578.841333pt;}
.y56{bottom:584.545333pt;}
.y2f{bottom:597.471333pt;}
.y9{bottom:600.706667pt;}
.y55{bottom:602.700000pt;}
.y7c{bottom:604.386667pt;}
.y2e{bottom:616.101333pt;}
.y54{bottom:620.854667pt;}
.y7b{bottom:622.388000pt;}
.y8{bottom:628.781333pt;}
.y2d{bottom:634.731333pt;}
.y53{bottom:639.009333pt;}
.y7a{bottom:640.389333pt;}
.y2c{bottom:653.361333pt;}
.y7{bottom:656.862667pt;}
.y52{bottom:657.164000pt;}
.y79{bottom:658.390667pt;}
.y2b{bottom:671.991333pt;}
.y51{bottom:675.318667pt;}
.y78{bottom:676.392000pt;}
.y6{bottom:684.945333pt;}
.y2a{bottom:690.621333pt;}
.y50{bottom:693.473333pt;}
.y77{bottom:694.393333pt;}
.y29{bottom:709.251333pt;}
.y4f{bottom:711.628000pt;}
.y76{bottom:712.394667pt;}
.y28{bottom:727.881333pt;}
.y4e{bottom:729.782667pt;}
.y75{bottom:730.396000pt;}
.y5{bottom:739.485333pt;}
.y27{bottom:746.511333pt;}
.y4d{bottom:747.937333pt;}
.y74{bottom:748.397333pt;}
.y4{bottom:758.232000pt;}
.y26{bottom:765.141333pt;}
.y4c{bottom:766.092000pt;}
.y73{bottom:766.398667pt;}
.y25{bottom:783.771333pt;}
.y4b{bottom:784.246667pt;}
.y72{bottom:784.400000pt;}
.y3{bottom:784.538667pt;}
.y24{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y23{bottom:842.834667pt;}
.h9{height:40.604167pt;}
.ha{height:43.619792pt;}
.hb{height:45.286458pt;}
.h4{height:50.755208pt;}
.h3{height:53.292969pt;}
.h8{height:58.368490pt;}
.h2{height:63.444010pt;}
.h5{height:71.057292pt;}
.h6{height:91.359375pt;}
.h7{height:144.825124pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:70.296800pt;}
.x8{left:73.720933pt;}
.xa{left:74.696400pt;}
.x1{left:75.590533pt;}
.x9{left:92.768267pt;}
.x7{left:93.899600pt;}
.x6{left:98.560933pt;}
.x3{left:205.542667pt;}
.x4{left:206.524000pt;}
.x2{left:207.417333pt;}
}




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