
    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_74af75ddc84964200d4b32e7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.973633;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_e35dda8fd39bd52d271cde31.woff')format("woff");}.ff2{font-family:ff2;line-height:0.953125;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_38a3925325700d925aa92046.woff')format("woff");}.ff3{font-family:ff3;line-height:0.777832;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_6342abbdf16c99806ba53f86.woff')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_bb36292e7d13af404a14ddf7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_9cd8f8003b0c4f229d164aea.woff')format("woff");}.ff6{font-family:ff6;line-height:0.720871;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_f8907a5a46ae7d27cae02c40.woff')format("woff");}.ff7{font-family:ff7;line-height:0.915039;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:54.000002px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.116788px;}
.ls9{letter-spacing:0.119790px;}
.ls3{letter-spacing:66.930548px;}
.ls8{letter-spacing:69.622038px;}
.ls6{letter-spacing:69.622056px;}
.ls4{letter-spacing:153.109764px;}
.ls1{letter-spacing:157.601921px;}
.ls2{letter-spacing:161.258171px;}
.ls5{letter-spacing:162.094082px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,0),0 0.015em rgb(255,255,0),0.015em 0 rgb(255,255,0),0 -0.015em  rgb(255,255,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-43.968003px;}
.ws3{word-spacing:-43.212003px;}
.ws4{word-spacing:-39.888001px;}
.ws1{word-spacing:-34.902001px;}
.ws2{word-spacing:-26.592002px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-2363.636422px;}
._d{margin-left:-2292.148483px;}
._2{margin-left:-20.160001px;}
._a{margin-left:-18.480000px;}
._7{margin-left:-17.160001px;}
._4{margin-left:-11.544001px;}
._3{margin-left:-9.828000px;}
._6{margin-left:-8.580001px;}
._5{margin-left:-5.772000px;}
._8{margin-left:-4.188001px;}
._1{margin-left:-2.772000px;}
._0{margin-left:-1.764000px;}
._9{width:1.490489px;}
._c{width:2.568987px;}
._b{width:5.328000px;}
.fc9{color:rgb(255,255,215);}
.fc8{color:rgb(179,229,252);}
.fc7{color:rgb(255,204,0);}
.fca{color:rgb(0,255,0);}
.fc6{color:rgb(255,245,157);}
.fc5{color:rgb(255,245,206);}
.fc3{color:rgb(255,253,231);}
.fc1{color:rgb(255,255,0);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(250,250,250);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:64.800007px;}
.fs4{font-size:70.199998px;}
.fsb{font-size:72.000002px;}
.fsa{font-size:96.000008px;}
.fs7{font-size:108.000003px;}
.fs3{font-size:117.000004px;}
.fs5{font-size:126.000004px;}
.fsc{font-size:132.000007px;}
.fs8{font-size:144.000005px;}
.fs1{font-size:156.000011px;}
.fs6{font-size:167.999999px;}
.fs2{font-size:192.000012px;}
.fs0{font-size:252.000008px;}
.y0{bottom:0.000000px;}
.y97{bottom:13.298707px;}
.y96{bottom:17.550678px;}
.y95{bottom:17.975849px;}
.y7e{bottom:27.119832px;}
.y22{bottom:33.767644px;}
.y82{bottom:35.570514px;}
.yaa{bottom:37.071353px;}
.yac{bottom:42.813042px;}
.y5a{bottom:48.215855px;}
.y6b{bottom:50.570251px;}
.yb9{bottom:65.707103px;}
.y30{bottom:71.904897px;}
.y7d{bottom:72.983833px;}
.y3e{bottom:75.257942px;}
.ya9{bottom:79.407376px;}
.y21{bottom:79.631645px;}
.y59{bottom:86.015852px;}
.y6a{bottom:92.906252px;}
.y94{bottom:108.831956px;}
.yb8{bottom:115.099105px;}
.y7c{bottom:118.847835px;}
.y2f{bottom:121.296888px;}
.ya8{bottom:121.743412px;}
.y4a{bottom:123.568976px;}
.y3d{bottom:124.649932px;}
.y20{bottom:125.495647px;}
.y69{bottom:135.242309px;}
.yb7{bottom:164.491062px;}
.y7b{bottom:164.711836px;}
.y49{bottom:172.960978px;}
.ya7{bottom:173.814376px;}
.y3c{bottom:174.041923px;}
.y68{bottom:177.578333px;}
.y1f{bottom:182.159648px;}
.y2e{bottom:197.688856px;}
.y56{bottom:209.205673px;}
.y98{bottom:212.715988px;}
.ya6{bottom:216.150422px;}
.y48{bottom:222.352979px;}
.y1e{bottom:228.023650px;}
.y67{bottom:233.939361px;}
.y7a{bottom:237.575838px;}
.y2d{bottom:247.080858px;}
.yb6{bottom:249.508102px;}
.y3b{bottom:256.898895px;}
.y55{bottom:258.597675px;}
.y90{bottom:265.814641px;}
.ya5{bottom:268.221454px;}
.y47{bottom:271.744947px;}
.y1d{bottom:273.887539px;}
.y81{bottom:281.546934px;}
.y79{bottom:283.439806px;}
.y66{bottom:290.300401px;}
.y2c{bottom:296.472837px;}
.yb5{bottom:298.900070px;}
.y11{bottom:299.618090px;}
.y3a{bottom:306.290852px;}
.y54{bottom:307.989643px;}
.ya4{bottom:310.557421px;}
.y46{bottom:321.136937px;}
.y78{bottom:329.303774px;}
.y1c{bottom:330.551586px;}
.y65{bottom:332.636380px;}
.y10{bottom:345.482091px;}
.yb4{bottom:348.292060px;}
.y53{bottom:357.381633px;}
.ya3{bottom:362.628397px;}
.y2b{bottom:372.864828px;}
.y64{bottom:374.972370px;}
.y77{bottom:375.167787px;}
.y1b{bottom:376.415587px;}
.y39{bottom:389.147858px;}
.yf{bottom:391.346093px;}
.yb3{bottom:397.684050px;}
.y91{bottom:400.304402px;}
.y45{bottom:403.993944px;}
.ya2{bottom:404.964387px;}
.y80{bottom:414.548488px;}
.y2a{bottom:422.256819px;}
.y1a{bottom:422.279600px;}
.y52{bottom:429.438628px;}
.y63{bottom:431.333375px;}
.y8e{bottom:431.707258px;}
.y38{bottom:438.539860px;}
.ye{bottom:446.945102px;}
.y76{bottom:448.031789px;}
.y44{bottom:453.385934px;}
.ya1{bottom:457.035362px;}
.y29{bottom:471.648809px;}
.y62{bottom:473.669377px;}
.y51{bottom:478.830629px;}
.y19{bottom:478.943613px;}
.yb2{bottom:482.701034px;}
.y8d{bottom:483.778222px;}
.y37{bottom:487.931839px;}
.yd{bottom:492.809103px;}
.y75{bottom:493.895802px;}
.ya0{bottom:499.371352px;}
.y4{bottom:500.646607px;}
.y28{bottom:521.040799px;}
.y8c{bottom:526.114223px;}
.y50{bottom:528.222608px;}
.y61{bottom:530.030360px;}
.yb1{bottom:532.093036px;}
.y18{bottom:535.607626px;}
.y43{bottom:536.242952px;}
.y36{bottom:537.323829px;}
.yc{bottom:538.673116px;}
.y74{bottom:539.759803px;}
.y3{bottom:547.446609px;}
.y9f{bottom:551.442317px;}
.y8f{bottom:561.453997px;}
.y8b{bottom:568.450191px;}
.y60{bottom:572.366350px;}
.y17{bottom:581.471628px;}
.y7f{bottom:581.523311px;}
.yb{bottom:584.537118px;}
.y42{bottom:585.634931px;}
.y35{bottom:586.715820px;}
.yab{bottom:591.112900px;}
.y9e{bottom:593.778295px;}
.y6c{bottom:597.255593px;}
.y27{bottom:597.432791px;}
.y4f{bottom:600.279614px;}
.y73{bottom:612.623828px;}
.yb0{bottom:617.110020px;}
.y8a{bottom:620.521166px;}
.y5f{bottom:628.727344px;}
.y41{bottom:635.026921px;}
.y34{bottom:636.107810px;}
.y16{bottom:638.135663px;}
.ya{bottom:640.136138px;}
.y9d{bottom:645.849305px;}
.y26{bottom:646.824792px;}
.y4e{bottom:649.671605px;}
.y72{bottom:658.487841px;}
.y89{bottom:662.857179px;}
.yaf{bottom:666.502021px;}
.y5e{bottom:671.063345px;}
.y33{bottom:685.499800px;}
.y9{bottom:686.000117px;}
.y9c{bottom:688.185306px;}
.y15{bottom:694.799676px;}
.y25{bottom:696.216782px;}
.y71{bottom:704.351853px;}
.y88{bottom:705.193180px;}
.y40{bottom:717.883922px;}
.y4d{bottom:721.728599px;}
.y5d{bottom:727.424351px;}
.y93{bottom:729.959532px;}
.y84{bottom:730.002046px;}
.y32{bottom:734.891796px;}
.y6e{bottom:738.505977px;}
.y9b{bottom:740.256326px;}
.y14{bottom:740.663666px;}
.y8{bottom:741.599115px;}
.y2{bottom:744.457936px;}
.yae{bottom:751.519017px;}
.y87{bottom:757.264201px;}
.y92{bottom:762.359529px;}
.y83{bottom:762.402043px;}
.y58{bottom:767.819048px;}
.y6d{bottom:770.905975px;}
.y4c{bottom:771.120590px;}
.y24{bottom:772.608774px;}
.y70{bottom:777.215856px;}
.y5c{bottom:783.785345px;}
.y7{bottom:787.463105px;}
.y9a{bottom:792.327324px;}
.y13{bottom:797.327668px;}
.y3f{bottom:800.740927px;}
.yad{bottom:800.911012px;}
.y86{bottom:809.335199px;}
.y57{bottom:814.619049px;}
.y31{bottom:817.748802px;}
.y1{bottom:818.545934px;}
.y4b{bottom:820.512585px;}
.y23{bottom:822.000768px;}
.y6{bottom:833.327107px;}
.y5b{bottom:840.146351px;}
.y12{bottom:843.191670px;}
.y99{bottom:844.398322px;}
.y6f{bottom:850.079858px;}
.y85{bottom:861.406196px;}
.y5{bottom:914.560153px;}
.hc{height:52.417970px;}
.ha{height:76.253909px;}
.hb{height:78.626956px;}
.h7{height:91.731448px;}
.hd{height:93.199224px;}
.h8{height:104.976566px;}
.h6{height:110.144539px;}
.h4{height:113.724617px;}
.h2{height:117.000008px;}
.he{height:118.617187px;}
.h5{height:122.472656px;}
.h9{height:123.984382px;}
.h3{height:145.968759px;}
.h1{height:191.583991px;}
.h0{height:972.000000px;}
.w0{width:1728.000000px;}
.x0{left:0.000000px;}
.x16{left:1.393662px;}
.x11{left:13.049561px;}
.xe{left:14.452710px;}
.x9{left:16.384605px;}
.x1e{left:17.405076px;}
.x6{left:19.701140px;}
.x17{left:37.184490px;}
.x28{left:62.696305px;}
.x18{left:64.374805px;}
.x19{left:67.351184px;}
.xb{left:78.541181px;}
.x1f{left:79.561652px;}
.x12{left:81.000003px;}
.x32{left:82.254132px;}
.xa{left:83.338586px;}
.x21{left:84.359057px;}
.x7{left:86.655121px;}
.x29{left:89.886615px;}
.xc{left:105.874018px;}
.x20{left:106.894488px;}
.x1{left:242.645064px;}
.x33{left:330.493308px;}
.x30{left:426.174994px;}
.x5{left:482.354610px;}
.x15{left:528.714894px;}
.x1d{left:549.429174px;}
.xf{left:574.687481px;}
.x4{left:583.370175px;}
.x10{left:589.145306px;}
.x27{left:602.184844px;}
.xd{left:609.987462px;}
.x2{left:644.254698px;}
.x3{left:712.832929px;}
.x14{left:768.676187px;}
.x35{left:774.478487px;}
.x8{left:778.368175px;}
.x2f{left:871.576498px;}
.x31{left:931.249841px;}
.x34{left:1188.511741px;}
.x13{left:1218.747076px;}
.x2d{left:1221.128252px;}
.x25{left:1264.442707px;}
.x24{left:1272.544060px;}
.x23{left:1280.666640px;}
.x22{left:1296.869277px;}
.x1a{left:1298.737515px;}
.x2a{left:1305.775934px;}
.x26{left:1320.182930px;}
.x2c{left:1337.190793px;}
.x1c{left:1338.253805px;}
.x2b{left:1354.672240px;}
.x1b{left:1355.735253px;}
.x2e{left:1367.428998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:48.000002pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.103812pt;}
.ls9{letter-spacing:0.106480pt;}
.ls3{letter-spacing:59.493820pt;}
.ls8{letter-spacing:61.886256pt;}
.ls6{letter-spacing:61.886272pt;}
.ls4{letter-spacing:136.097568pt;}
.ls1{letter-spacing:140.090596pt;}
.ls2{letter-spacing:143.340597pt;}
.ls5{letter-spacing:144.083629pt;}
.ws5{word-spacing:-39.082669pt;}
.ws3{word-spacing:-38.410669pt;}
.ws4{word-spacing:-35.456001pt;}
.ws1{word-spacing:-31.024001pt;}
.ws2{word-spacing:-23.637335pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-2101.010153pt;}
._d{margin-left:-2037.465318pt;}
._2{margin-left:-17.920001pt;}
._a{margin-left:-16.426667pt;}
._7{margin-left:-15.253334pt;}
._4{margin-left:-10.261334pt;}
._3{margin-left:-8.736000pt;}
._6{margin-left:-7.626667pt;}
._5{margin-left:-5.130667pt;}
._8{margin-left:-3.722667pt;}
._1{margin-left:-2.464000pt;}
._0{margin-left:-1.568000pt;}
._9{width:1.324879pt;}
._c{width:2.283544pt;}
._b{width:4.736000pt;}
.fs9{font-size:57.600006pt;}
.fs4{font-size:62.399998pt;}
.fsb{font-size:64.000002pt;}
.fsa{font-size:85.333340pt;}
.fs7{font-size:96.000003pt;}
.fs3{font-size:104.000003pt;}
.fs5{font-size:112.000004pt;}
.fsc{font-size:117.333340pt;}
.fs8{font-size:128.000004pt;}
.fs1{font-size:138.666676pt;}
.fs6{font-size:149.333333pt;}
.fs2{font-size:170.666677pt;}
.fs0{font-size:224.000007pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:11.821073pt;}
.y96{bottom:15.600603pt;}
.y95{bottom:15.978533pt;}
.y7e{bottom:24.106517pt;}
.y22{bottom:30.015683pt;}
.y82{bottom:31.618234pt;}
.yaa{bottom:32.952313pt;}
.yac{bottom:38.056038pt;}
.y5a{bottom:42.858538pt;}
.y6b{bottom:44.951334pt;}
.yb9{bottom:58.406314pt;}
.y30{bottom:63.915464pt;}
.y7d{bottom:64.874518pt;}
.y3e{bottom:66.895948pt;}
.ya9{bottom:70.584335pt;}
.y21{bottom:70.783685pt;}
.y59{bottom:76.458535pt;}
.y6a{bottom:82.583335pt;}
.y94{bottom:96.739516pt;}
.yb8{bottom:102.310316pt;}
.y7c{bottom:105.642520pt;}
.y2f{bottom:107.819456pt;}
.ya8{bottom:108.216366pt;}
.y4a{bottom:109.839090pt;}
.y3d{bottom:110.799940pt;}
.y20{bottom:111.551686pt;}
.y69{bottom:120.215386pt;}
.yb7{bottom:146.214277pt;}
.y7b{bottom:146.410521pt;}
.y49{bottom:153.743091pt;}
.ya7{bottom:154.501667pt;}
.y3c{bottom:154.703931pt;}
.y68{bottom:157.847407pt;}
.y1f{bottom:161.919688pt;}
.y2e{bottom:175.723428pt;}
.y56{bottom:185.960598pt;}
.y98{bottom:189.080878pt;}
.ya6{bottom:192.133709pt;}
.y48{bottom:197.647093pt;}
.y1e{bottom:202.687689pt;}
.y67{bottom:207.946099pt;}
.y7a{bottom:211.178523pt;}
.y2d{bottom:219.627429pt;}
.yb6{bottom:221.784979pt;}
.y3b{bottom:228.354574pt;}
.y55{bottom:229.864600pt;}
.y90{bottom:236.279681pt;}
.ya5{bottom:238.419070pt;}
.y47{bottom:241.551064pt;}
.y1d{bottom:243.455590pt;}
.y81{bottom:250.263941pt;}
.y79{bottom:251.946494pt;}
.y66{bottom:258.044801pt;}
.y2c{bottom:263.531411pt;}
.yb5{bottom:265.688951pt;}
.y11{bottom:266.327191pt;}
.y3a{bottom:272.258535pt;}
.y54{bottom:273.768571pt;}
.ya4{bottom:276.051041pt;}
.y46{bottom:285.455055pt;}
.y78{bottom:292.714466pt;}
.y1c{bottom:293.823632pt;}
.y65{bottom:295.676782pt;}
.y10{bottom:307.095192pt;}
.yb4{bottom:309.592942pt;}
.y53{bottom:317.672563pt;}
.ya3{bottom:322.336353pt;}
.y2b{bottom:331.435403pt;}
.y64{bottom:333.308773pt;}
.y77{bottom:333.482477pt;}
.y1b{bottom:334.591633pt;}
.y39{bottom:345.909207pt;}
.yf{bottom:347.863193pt;}
.yb3{bottom:353.496934pt;}
.y91{bottom:355.826135pt;}
.y45{bottom:359.105728pt;}
.ya2{bottom:359.968344pt;}
.y80{bottom:368.487545pt;}
.y2a{bottom:375.339394pt;}
.y1a{bottom:375.359644pt;}
.y52{bottom:381.723225pt;}
.y63{bottom:383.407445pt;}
.y8e{bottom:383.739785pt;}
.y38{bottom:389.813209pt;}
.ye{bottom:397.284535pt;}
.y76{bottom:398.250479pt;}
.y44{bottom:403.009719pt;}
.ya1{bottom:406.253655pt;}
.y29{bottom:419.243386pt;}
.y62{bottom:421.039446pt;}
.y51{bottom:425.627226pt;}
.y19{bottom:425.727656pt;}
.yb2{bottom:429.067586pt;}
.y8d{bottom:430.025086pt;}
.y37{bottom:433.717190pt;}
.yd{bottom:438.052536pt;}
.y75{bottom:439.018490pt;}
.ya0{bottom:443.885647pt;}
.y4{bottom:445.019207pt;}
.y28{bottom:463.147377pt;}
.y8c{bottom:467.657087pt;}
.y50{bottom:469.531207pt;}
.y61{bottom:471.138097pt;}
.yb1{bottom:472.971587pt;}
.y18{bottom:476.095668pt;}
.y43{bottom:476.660402pt;}
.y36{bottom:477.621182pt;}
.yc{bottom:478.820548pt;}
.y74{bottom:479.786492pt;}
.y3{bottom:486.619208pt;}
.y9f{bottom:490.170948pt;}
.y8f{bottom:499.070219pt;}
.y8b{bottom:505.289059pt;}
.y60{bottom:508.770089pt;}
.y17{bottom:516.863669pt;}
.y7f{bottom:516.909610pt;}
.yb{bottom:519.588549pt;}
.y42{bottom:520.564383pt;}
.y35{bottom:521.525173pt;}
.yab{bottom:525.433689pt;}
.y9e{bottom:527.802929pt;}
.y6c{bottom:530.893860pt;}
.y27{bottom:531.051369pt;}
.y4f{bottom:533.581879pt;}
.y73{bottom:544.554514pt;}
.yb0{bottom:548.542240pt;}
.y8a{bottom:551.574370pt;}
.y5f{bottom:558.868750pt;}
.y41{bottom:564.468374pt;}
.y34{bottom:565.429164pt;}
.y16{bottom:567.231701pt;}
.ya{bottom:569.009901pt;}
.y9d{bottom:574.088271pt;}
.y26{bottom:574.955371pt;}
.y4e{bottom:577.485871pt;}
.y72{bottom:585.322525pt;}
.y89{bottom:589.206381pt;}
.yaf{bottom:592.446241pt;}
.y5e{bottom:596.500751pt;}
.y33{bottom:609.333156pt;}
.y9{bottom:609.777882pt;}
.y9c{bottom:611.720272pt;}
.y15{bottom:617.599712pt;}
.y25{bottom:618.859362pt;}
.y71{bottom:626.090536pt;}
.y88{bottom:626.838382pt;}
.y40{bottom:638.119042pt;}
.y4d{bottom:641.536533pt;}
.y5d{bottom:646.599423pt;}
.y93{bottom:648.852917pt;}
.y84{bottom:648.890707pt;}
.y32{bottom:653.237152pt;}
.y6e{bottom:656.449757pt;}
.y9b{bottom:658.005623pt;}
.y14{bottom:658.367703pt;}
.y8{bottom:659.199213pt;}
.y2{bottom:661.740388pt;}
.yae{bottom:668.016904pt;}
.y87{bottom:673.123734pt;}
.y92{bottom:677.652915pt;}
.y83{bottom:677.690705pt;}
.y58{bottom:682.505820pt;}
.y6d{bottom:685.249755pt;}
.y4c{bottom:685.440524pt;}
.y24{bottom:686.763354pt;}
.y70{bottom:690.858538pt;}
.y5c{bottom:696.698085pt;}
.y7{bottom:699.967205pt;}
.y9a{bottom:704.290955pt;}
.y13{bottom:708.735705pt;}
.y3f{bottom:711.769713pt;}
.yad{bottom:711.920899pt;}
.y86{bottom:719.409065pt;}
.y57{bottom:724.105822pt;}
.y31{bottom:726.887824pt;}
.y1{bottom:727.596386pt;}
.y4b{bottom:729.344520pt;}
.y23{bottom:730.667350pt;}
.y6{bottom:740.735206pt;}
.y5b{bottom:746.796756pt;}
.y12{bottom:749.503706pt;}
.y99{bottom:750.576286pt;}
.y6f{bottom:755.626541pt;}
.y85{bottom:765.694397pt;}
.y5{bottom:812.942358pt;}
.hc{height:46.593751pt;}
.ha{height:67.781252pt;}
.hb{height:69.890627pt;}
.h7{height:81.539065pt;}
.hd{height:82.843755pt;}
.h8{height:93.312503pt;}
.h6{height:97.906257pt;}
.h4{height:101.088549pt;}
.h2{height:104.000007pt;}
.he{height:105.437500pt;}
.h5{height:108.864583pt;}
.h9{height:110.208340pt;}
.h3{height:129.750008pt;}
.h1{height:170.296880pt;}
.h0{height:864.000000pt;}
.w0{width:1536.000000pt;}
.x0{left:0.000000pt;}
.x16{left:1.238811pt;}
.x11{left:11.599609pt;}
.xe{left:12.846853pt;}
.x9{left:14.564093pt;}
.x1e{left:15.471178pt;}
.x6{left:17.512125pt;}
.x17{left:33.052880pt;}
.x28{left:55.730049pt;}
.x18{left:57.222049pt;}
.x19{left:59.867719pt;}
.xb{left:69.814383pt;}
.x1f{left:70.721468pt;}
.x12{left:72.000002pt;}
.x32{left:73.114784pt;}
.xa{left:74.078743pt;}
.x21{left:74.985828pt;}
.x7{left:77.026774pt;}
.x29{left:79.899214pt;}
.xc{left:94.110238pt;}
.x20{left:95.017323pt;}
.x1{left:215.684501pt;}
.x33{left:293.771829pt;}
.x30{left:378.822217pt;}
.x5{left:428.759654pt;}
.x15{left:469.968795pt;}
.x1d{left:488.381488pt;}
.xf{left:510.833316pt;}
.x4{left:518.551267pt;}
.x10{left:523.684717pt;}
.x27{left:535.275417pt;}
.xd{left:542.211077pt;}
.x2{left:572.670842pt;}
.x3{left:633.629270pt;}
.x14{left:683.267722pt;}
.x35{left:688.425322pt;}
.x8{left:691.882822pt;}
.x2f{left:774.734665pt;}
.x31{left:827.777636pt;}
.x34{left:1056.454881pt;}
.x13{left:1083.330735pt;}
.x2d{left:1085.447335pt;}
.x25{left:1123.949073pt;}
.x24{left:1131.150275pt;}
.x23{left:1138.370346pt;}
.x22{left:1152.772691pt;}
.x1a{left:1154.433347pt;}
.x2a{left:1160.689719pt;}
.x26{left:1173.495938pt;}
.x2c{left:1188.614038pt;}
.x1c{left:1189.558938pt;}
.x2b{left:1204.153103pt;}
.x1b{left:1205.098003pt;}
.x2e{left:1215.492443pt;}
}




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