
    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_da92b244aee0b057eb701035.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_4bf154b8db0f437d28e348cf.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_6d9fbf042736578faaa7813c.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_e1f28d6355bae268865a1829.woff')format("woff");}.ff4{font-family:ff4;line-height:0.907715;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_ec506d93c3cd43dd8f25eb8f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6721fa242786274d417d7896.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4ac8fc1c58d14d8324791451.woff')format("woff");}.ff7{font-family:ff7;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;}
.ls2a{letter-spacing:-1.932000px;}
.ls2b{letter-spacing:-1.656000px;}
.ls17{letter-spacing:-1.518000px;}
.ls29{letter-spacing:-1.380000px;}
.ls21{letter-spacing:-1.311000px;}
.ls6{letter-spacing:-1.176000px;}
.ls22{letter-spacing:-1.173000px;}
.ls2c{letter-spacing:-1.104000px;}
.ls18{letter-spacing:-1.035000px;}
.ls1b{letter-spacing:-0.966000px;}
.ls16{letter-spacing:-0.897000px;}
.ls1a{letter-spacing:-0.828000px;}
.ls15{letter-spacing:-0.690000px;}
.ls31{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.621000px;}
.ls2d{letter-spacing:-0.414000px;}
.ls30{letter-spacing:-0.240000px;}
.ls24{letter-spacing:-0.207000px;}
.ls5{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.138000px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.138000px;}
.ls10{letter-spacing:0.450000px;}
.ls20{letter-spacing:0.552000px;}
.ls7{letter-spacing:1.104000px;}
.ls8{letter-spacing:1.173000px;}
.ls1f{letter-spacing:1.242000px;}
.ls4{letter-spacing:1.260000px;}
.ls12{letter-spacing:1.344000px;}
.lsc{letter-spacing:1.428300px;}
.lsd{letter-spacing:1.504200px;}
.ls14{letter-spacing:1.587000px;}
.ls19{letter-spacing:1.794000px;}
.ls2{letter-spacing:2.016000px;}
.ls1e{letter-spacing:2.208000px;}
.ls26{letter-spacing:2.691000px;}
.ls1d{letter-spacing:2.911800px;}
.lsb{letter-spacing:4.140000px;}
.lsf{letter-spacing:4.416000px;}
.ls27{letter-spacing:5.520000px;}
.ls11{letter-spacing:6.000000px;}
.ls3{letter-spacing:7.260000px;}
.ls2f{letter-spacing:8.040000px;}
.ls28{letter-spacing:9.384000px;}
.lse{letter-spacing:11.247000px;}
.lsa{letter-spacing:466.484400px;}
.ls25{letter-spacing:466.874400px;}
.ls1c{letter-spacing:939.471000px;}
.ls2e{letter-spacing:943.521000px;}
.ls0{letter-spacing:953.017800px;}
.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;}
.wsa{word-spacing:-21.525000px;}
.ws1e{word-spacing:-19.389000px;}
.ws24{word-spacing:-18.561000px;}
.ws17{word-spacing:-17.043000px;}
.ws18{word-spacing:-15.732000px;}
.wsc{word-spacing:-15.525000px;}
.ws1f{word-spacing:-15.111000px;}
.ws25{word-spacing:-14.160000px;}
.wsb{word-spacing:-13.146000px;}
.ws27{word-spacing:-8.040000px;}
.ws3{word-spacing:-7.260000px;}
.wse{word-spacing:-6.000000px;}
.wsd{word-spacing:-4.416000px;}
.ws2{word-spacing:-2.016000px;}
.ws14{word-spacing:-1.794000px;}
.ws10{word-spacing:-1.587000px;}
.ws4{word-spacing:-1.260000px;}
.ws26{word-spacing:-1.242000px;}
.ws8{word-spacing:-1.173000px;}
.ws7{word-spacing:-1.104000px;}
.ws19{word-spacing:-0.552000px;}
.wsf{word-spacing:-0.138000px;}
.ws1{word-spacing:0.000000px;}
.ws1b{word-spacing:0.138000px;}
.ws5{word-spacing:0.180000px;}
.ws1d{word-spacing:0.207000px;}
.ws28{word-spacing:0.240000px;}
.ws23{word-spacing:0.414000px;}
.ws9{word-spacing:0.621000px;}
.ws11{word-spacing:0.690000px;}
.ws15{word-spacing:0.828000px;}
.ws12{word-spacing:0.897000px;}
.ws16{word-spacing:0.966000px;}
.ws13{word-spacing:1.035000px;}
.ws22{word-spacing:1.104000px;}
.ws1a{word-spacing:1.173000px;}
.ws6{word-spacing:1.176000px;}
.ws1c{word-spacing:1.311000px;}
.ws20{word-spacing:1.380000px;}
.ws21{word-spacing:1.656000px;}
._4{margin-left:-7.093800px;}
._e{margin-left:-6.014100px;}
._2{margin-left:-4.781700px;}
._c{margin-left:-3.603300px;}
._5{margin-left:-2.274300px;}
._3{margin-left:-1.247400px;}
._7{width:1.050600px;}
._1{width:2.400000px;}
._9{width:3.525300px;}
._8{width:4.692000px;}
._a{width:5.836200px;}
._6{width:6.954900px;}
._b{width:8.134500px;}
._f{width:9.325500px;}
._d{width:10.326600px;}
._10{width:11.443500px;}
._11{width:12.469800px;}
._12{width:13.576200px;}
._13{width:14.688300px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.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;}
.y48{bottom:106.165350px;}
.y1f{bottom:106.326750px;}
.y47{bottom:126.589350px;}
.y1e{bottom:126.906000px;}
.y46{bottom:147.013350px;}
.y1d{bottom:147.485250px;}
.y45{bottom:167.437350px;}
.y1c{bottom:168.064500px;}
.y44{bottom:187.861350px;}
.y1b{bottom:188.643750px;}
.y43{bottom:208.285350px;}
.y1a{bottom:209.223000px;}
.y6a{bottom:220.691550px;}
.y42{bottom:228.709350px;}
.y19{bottom:229.802250px;}
.y69{bottom:240.941550px;}
.y41{bottom:249.133350px;}
.y18{bottom:250.381500px;}
.y68{bottom:261.191550px;}
.y40{bottom:269.557350px;}
.y17{bottom:270.960750px;}
.y67{bottom:281.441550px;}
.y3f{bottom:289.981350px;}
.y16{bottom:291.540000px;}
.y3e{bottom:310.405350px;}
.y15{bottom:312.119250px;}
.y66{bottom:314.441550px;}
.y3d{bottom:330.829350px;}
.y14{bottom:332.698500px;}
.y3c{bottom:351.253350px;}
.y13{bottom:353.277750px;}
.y65{bottom:355.910850px;}
.y3b{bottom:371.677350px;}
.y12{bottom:373.857000px;}
.y64{bottom:376.162350px;}
.y3a{bottom:392.101350px;}
.y11{bottom:394.436250px;}
.y63{bottom:396.413850px;}
.y39{bottom:412.525350px;}
.y10{bottom:415.015500px;}
.yf{bottom:415.017000px;}
.y62{bottom:416.665350px;}
.y38{bottom:432.949350px;}
.y61{bottom:436.916850px;}
.y37{bottom:453.373350px;}
.y60{bottom:457.168350px;}
.y36{bottom:473.797350px;}
.y5f{bottom:477.419850px;}
.y35{bottom:494.221350px;}
.y5e{bottom:497.671350px;}
.ye{bottom:506.194350px;}
.y34{bottom:514.645350px;}
.y5d{bottom:517.922850px;}
.yd{bottom:527.524350px;}
.y33{bottom:535.069350px;}
.y5c{bottom:538.174350px;}
.y32{bottom:555.493350px;}
.y5b{bottom:558.425850px;}
.y31{bottom:575.917350px;}
.yc{bottom:578.619300px;}
.y5a{bottom:578.677350px;}
.y30{bottom:596.341350px;}
.y59{bottom:598.928850px;}
.yb{bottom:610.446900px;}
.y2f{bottom:616.765350px;}
.y58{bottom:619.180350px;}
.y2e{bottom:637.189350px;}
.y57{bottom:639.431850px;}
.ya{bottom:642.279900px;}
.y2d{bottom:657.613350px;}
.y56{bottom:659.683350px;}
.y9{bottom:674.112900px;}
.y2c{bottom:678.037350px;}
.y55{bottom:679.934850px;}
.y2b{bottom:698.461350px;}
.y54{bottom:700.186350px;}
.y8{bottom:705.934500px;}
.y2a{bottom:718.885350px;}
.y53{bottom:720.437850px;}
.y7{bottom:737.770500px;}
.y29{bottom:739.309350px;}
.y52{bottom:740.689350px;}
.y28{bottom:759.733350px;}
.y51{bottom:760.940850px;}
.y6{bottom:769.606500px;}
.y27{bottom:780.157350px;}
.y50{bottom:781.192350px;}
.y26{bottom:800.581350px;}
.y4f{bottom:801.443850px;}
.y25{bottom:821.005350px;}
.y4e{bottom:821.695350px;}
.y5{bottom:831.202800px;}
.y24{bottom:841.429350px;}
.y4d{bottom:841.946850px;}
.y4{bottom:852.532800px;}
.y23{bottom:861.853350px;}
.y4c{bottom:862.198350px;}
.y22{bottom:882.277350px;}
.y3{bottom:882.367800px;}
.y4b{bottom:882.449850px;}
.y21{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:948.189000px;}
.y4a{bottom:966.189000px;}
.y49{bottom:984.189000px;}
.ha{height:40.757812px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h9{height:58.589355px;}
.hb{height:62.138672px;}
.h2{height:63.684082px;}
.h5{height:71.326172px;}
.h8{height:71.459473px;}
.h6{height:91.705078px;}
.h7{height:169.153583px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:82.315800px;}
.x8{left:83.686650px;}
.x1{left:85.039350px;}
.x7{left:104.288850px;}
.x6{left:106.203600px;}
.x3{left:230.860050px;}
.x4{left:232.218000px;}
.x2{left:233.345250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:72.000000pt;}
.ls2a{letter-spacing:-1.717333pt;}
.ls2b{letter-spacing:-1.472000pt;}
.ls17{letter-spacing:-1.349333pt;}
.ls29{letter-spacing:-1.226667pt;}
.ls21{letter-spacing:-1.165333pt;}
.ls6{letter-spacing:-1.045333pt;}
.ls22{letter-spacing:-1.042667pt;}
.ls2c{letter-spacing:-0.981333pt;}
.ls18{letter-spacing:-0.920000pt;}
.ls1b{letter-spacing:-0.858667pt;}
.ls16{letter-spacing:-0.797333pt;}
.ls1a{letter-spacing:-0.736000pt;}
.ls15{letter-spacing:-0.613333pt;}
.ls31{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.552000pt;}
.ls2d{letter-spacing:-0.368000pt;}
.ls30{letter-spacing:-0.213333pt;}
.ls24{letter-spacing:-0.184000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.122667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.122667pt;}
.ls10{letter-spacing:0.400000pt;}
.ls20{letter-spacing:0.490667pt;}
.ls7{letter-spacing:0.981333pt;}
.ls8{letter-spacing:1.042667pt;}
.ls1f{letter-spacing:1.104000pt;}
.ls4{letter-spacing:1.120000pt;}
.ls12{letter-spacing:1.194667pt;}
.lsc{letter-spacing:1.269600pt;}
.lsd{letter-spacing:1.337067pt;}
.ls14{letter-spacing:1.410667pt;}
.ls19{letter-spacing:1.594667pt;}
.ls2{letter-spacing:1.792000pt;}
.ls1e{letter-spacing:1.962667pt;}
.ls26{letter-spacing:2.392000pt;}
.ls1d{letter-spacing:2.588267pt;}
.lsb{letter-spacing:3.680000pt;}
.lsf{letter-spacing:3.925333pt;}
.ls27{letter-spacing:4.906667pt;}
.ls11{letter-spacing:5.333333pt;}
.ls3{letter-spacing:6.453333pt;}
.ls2f{letter-spacing:7.146667pt;}
.ls28{letter-spacing:8.341333pt;}
.lse{letter-spacing:9.997333pt;}
.lsa{letter-spacing:414.652800pt;}
.ls25{letter-spacing:414.999467pt;}
.ls1c{letter-spacing:835.085333pt;}
.ls2e{letter-spacing:838.685333pt;}
.ls0{letter-spacing:847.126933pt;}
.ws0{word-spacing:-49.758281pt;}
.wsa{word-spacing:-19.133333pt;}
.ws1e{word-spacing:-17.234667pt;}
.ws24{word-spacing:-16.498667pt;}
.ws17{word-spacing:-15.149333pt;}
.ws18{word-spacing:-13.984000pt;}
.wsc{word-spacing:-13.800000pt;}
.ws1f{word-spacing:-13.432000pt;}
.ws25{word-spacing:-12.586667pt;}
.wsb{word-spacing:-11.685333pt;}
.ws27{word-spacing:-7.146667pt;}
.ws3{word-spacing:-6.453333pt;}
.wse{word-spacing:-5.333333pt;}
.wsd{word-spacing:-3.925333pt;}
.ws2{word-spacing:-1.792000pt;}
.ws14{word-spacing:-1.594667pt;}
.ws10{word-spacing:-1.410667pt;}
.ws4{word-spacing:-1.120000pt;}
.ws26{word-spacing:-1.104000pt;}
.ws8{word-spacing:-1.042667pt;}
.ws7{word-spacing:-0.981333pt;}
.ws19{word-spacing:-0.490667pt;}
.wsf{word-spacing:-0.122667pt;}
.ws1{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.122667pt;}
.ws5{word-spacing:0.160000pt;}
.ws1d{word-spacing:0.184000pt;}
.ws28{word-spacing:0.213333pt;}
.ws23{word-spacing:0.368000pt;}
.ws9{word-spacing:0.552000pt;}
.ws11{word-spacing:0.613333pt;}
.ws15{word-spacing:0.736000pt;}
.ws12{word-spacing:0.797333pt;}
.ws16{word-spacing:0.858667pt;}
.ws13{word-spacing:0.920000pt;}
.ws22{word-spacing:0.981333pt;}
.ws1a{word-spacing:1.042667pt;}
.ws6{word-spacing:1.045333pt;}
.ws1c{word-spacing:1.165333pt;}
.ws20{word-spacing:1.226667pt;}
.ws21{word-spacing:1.472000pt;}
._4{margin-left:-6.305600pt;}
._e{margin-left:-5.345867pt;}
._2{margin-left:-4.250400pt;}
._c{margin-left:-3.202933pt;}
._5{margin-left:-2.021600pt;}
._3{margin-left:-1.108800pt;}
._7{width:0.933867pt;}
._1{width:2.133333pt;}
._9{width:3.133600pt;}
._8{width:4.170667pt;}
._a{width:5.187733pt;}
._6{width:6.182133pt;}
._b{width:7.230667pt;}
._f{width:8.289333pt;}
._d{width:9.179200pt;}
._10{width:10.172000pt;}
._11{width:11.084267pt;}
._12{width:12.067733pt;}
._13{width:13.056267pt;}
._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;}
.y48{bottom:94.369200pt;}
.y1f{bottom:94.512667pt;}
.y47{bottom:112.523867pt;}
.y1e{bottom:112.805333pt;}
.y46{bottom:130.678533pt;}
.y1d{bottom:131.098000pt;}
.y45{bottom:148.833200pt;}
.y1c{bottom:149.390667pt;}
.y44{bottom:166.987867pt;}
.y1b{bottom:167.683333pt;}
.y43{bottom:185.142533pt;}
.y1a{bottom:185.976000pt;}
.y6a{bottom:196.170267pt;}
.y42{bottom:203.297200pt;}
.y19{bottom:204.268667pt;}
.y69{bottom:214.170267pt;}
.y41{bottom:221.451867pt;}
.y18{bottom:222.561333pt;}
.y68{bottom:232.170267pt;}
.y40{bottom:239.606533pt;}
.y17{bottom:240.854000pt;}
.y67{bottom:250.170267pt;}
.y3f{bottom:257.761200pt;}
.y16{bottom:259.146667pt;}
.y3e{bottom:275.915867pt;}
.y15{bottom:277.439333pt;}
.y66{bottom:279.503600pt;}
.y3d{bottom:294.070533pt;}
.y14{bottom:295.732000pt;}
.y3c{bottom:312.225200pt;}
.y13{bottom:314.024667pt;}
.y65{bottom:316.365200pt;}
.y3b{bottom:330.379867pt;}
.y12{bottom:332.317333pt;}
.y64{bottom:334.366533pt;}
.y3a{bottom:348.534533pt;}
.y11{bottom:350.610000pt;}
.y63{bottom:352.367867pt;}
.y39{bottom:366.689200pt;}
.y10{bottom:368.902667pt;}
.yf{bottom:368.904000pt;}
.y62{bottom:370.369200pt;}
.y38{bottom:384.843867pt;}
.y61{bottom:388.370533pt;}
.y37{bottom:402.998533pt;}
.y60{bottom:406.371867pt;}
.y36{bottom:421.153200pt;}
.y5f{bottom:424.373200pt;}
.y35{bottom:439.307867pt;}
.y5e{bottom:442.374533pt;}
.ye{bottom:449.950533pt;}
.y34{bottom:457.462533pt;}
.y5d{bottom:460.375867pt;}
.yd{bottom:468.910533pt;}
.y33{bottom:475.617200pt;}
.y5c{bottom:478.377200pt;}
.y32{bottom:493.771867pt;}
.y5b{bottom:496.378533pt;}
.y31{bottom:511.926533pt;}
.yc{bottom:514.328267pt;}
.y5a{bottom:514.379867pt;}
.y30{bottom:530.081200pt;}
.y59{bottom:532.381200pt;}
.yb{bottom:542.619467pt;}
.y2f{bottom:548.235867pt;}
.y58{bottom:550.382533pt;}
.y2e{bottom:566.390533pt;}
.y57{bottom:568.383867pt;}
.ya{bottom:570.915467pt;}
.y2d{bottom:584.545200pt;}
.y56{bottom:586.385200pt;}
.y9{bottom:599.211467pt;}
.y2c{bottom:602.699867pt;}
.y55{bottom:604.386533pt;}
.y2b{bottom:620.854533pt;}
.y54{bottom:622.387867pt;}
.y8{bottom:627.497333pt;}
.y2a{bottom:639.009200pt;}
.y53{bottom:640.389200pt;}
.y7{bottom:655.796000pt;}
.y29{bottom:657.163867pt;}
.y52{bottom:658.390533pt;}
.y28{bottom:675.318533pt;}
.y51{bottom:676.391867pt;}
.y6{bottom:684.094667pt;}
.y27{bottom:693.473200pt;}
.y50{bottom:694.393200pt;}
.y26{bottom:711.627867pt;}
.y4f{bottom:712.394533pt;}
.y25{bottom:729.782533pt;}
.y4e{bottom:730.395867pt;}
.y5{bottom:738.846933pt;}
.y24{bottom:747.937200pt;}
.y4d{bottom:748.397200pt;}
.y4{bottom:757.806933pt;}
.y23{bottom:766.091867pt;}
.y4c{bottom:766.398533pt;}
.y22{bottom:784.246533pt;}
.y3{bottom:784.326933pt;}
.y4b{bottom:784.399867pt;}
.y21{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:842.834667pt;}
.y4a{bottom:858.834667pt;}
.y49{bottom:874.834667pt;}
.ha{height:36.229167pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h9{height:52.079427pt;}
.hb{height:55.234375pt;}
.h2{height:56.608073pt;}
.h5{height:63.401042pt;}
.h8{height:63.519531pt;}
.h6{height:81.515625pt;}
.h7{height:150.358740pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:73.169600pt;}
.x8{left:74.388133pt;}
.x1{left:75.590533pt;}
.x7{left:92.701200pt;}
.x6{left:94.403200pt;}
.x3{left:205.208933pt;}
.x4{left:206.416000pt;}
.x2{left:207.418000pt;}
}




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