
    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_1bf18495ec2377222dacf235.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_0148017fbc553106afe07c09.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_f6f08703877db9fe491037f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.689453;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_cf5897147b9a2b1ed3438ae5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861328;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_76cc9e1741d85c4954c680e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.857910;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_ecd73a95a06a2612f9775622.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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;}
.lsf{letter-spacing:-0.993600px;}
.ls16{letter-spacing:-0.927360px;}
.ls1a{letter-spacing:-0.861120px;}
.lsd{letter-spacing:-0.794880px;}
.ls11{letter-spacing:-0.728640px;}
.ls13{letter-spacing:-0.662400px;}
.lsc{letter-spacing:-0.596160px;}
.lse{letter-spacing:-0.529920px;}
.ls10{letter-spacing:-0.463680px;}
.ls18{letter-spacing:-0.397440px;}
.ls17{letter-spacing:-0.331200px;}
.ls9{letter-spacing:-0.264960px;}
.ls1b{letter-spacing:-0.198720px;}
.ls15{letter-spacing:-0.132480px;}
.lsb{letter-spacing:-0.066240px;}
.lsa{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.033120px;}
.ls23{letter-spacing:0.046368px;}
.ls6{letter-spacing:0.066240px;}
.ls1f{letter-spacing:0.105984px;}
.ls20{letter-spacing:0.112608px;}
.ls1{letter-spacing:0.132480px;}
.ls24{letter-spacing:0.139104px;}
.ls4{letter-spacing:0.152352px;}
.ls1e{letter-spacing:0.158976px;}
.ls1c{letter-spacing:0.165600px;}
.ls27{letter-spacing:0.172224px;}
.ls3{letter-spacing:0.178848px;}
.ls26{letter-spacing:0.185472px;}
.ls28{letter-spacing:0.192096px;}
.ls7{letter-spacing:0.198000px;}
.ls2{letter-spacing:0.198720px;}
.ls29{letter-spacing:0.211968px;}
.ls8{letter-spacing:0.222000px;}
.ls1d{letter-spacing:0.251712px;}
.ls0{letter-spacing:0.264720px;}
.ls14{letter-spacing:0.264960px;}
.ls22{letter-spacing:0.271584px;}
.ls25{letter-spacing:0.284832px;}
.ls19{letter-spacing:0.298080px;}
.ls5{letter-spacing:0.331080px;}
.ls12{letter-spacing:0.331200px;}
.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;}
}
.ws7{word-spacing:-15.301440px;}
.ws9{word-spacing:-15.235200px;}
.ws0{word-spacing:-15.168960px;}
.ws31{word-spacing:-15.109344px;}
.ws4{word-spacing:-15.102720px;}
.wsc{word-spacing:-15.036480px;}
.ws5{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.904000px;}
.ws11{word-spacing:-14.837760px;}
.ws29{word-spacing:-14.771520px;}
.ws1{word-spacing:-14.705280px;}
.ws10{word-spacing:-14.639040px;}
.ws12{word-spacing:-14.572800px;}
.wsb{word-spacing:-14.506560px;}
.wse{word-spacing:-14.440320px;}
.ws3{word-spacing:-14.374080px;}
.ws8{word-spacing:-14.307840px;}
.ws6{word-spacing:-14.241600px;}
.wsa{word-spacing:-14.175360px;}
.ws30{word-spacing:-14.109120px;}
.wsd{word-spacing:-14.042880px;}
.ws13{word-spacing:-12.402000px;}
.ws33{word-spacing:-0.927360px;}
.ws2a{word-spacing:-0.861120px;}
.wsf{word-spacing:-0.794880px;}
.ws27{word-spacing:-0.728640px;}
.ws32{word-spacing:-0.662400px;}
.ws34{word-spacing:-0.596160px;}
.ws1b{word-spacing:-0.529920px;}
.ws22{word-spacing:-0.463680px;}
.ws1a{word-spacing:-0.331200px;}
.ws2c{word-spacing:-0.264960px;}
.ws14{word-spacing:-0.198720px;}
.ws1f{word-spacing:-0.132480px;}
.ws2e{word-spacing:-0.066240px;}
.ws16{word-spacing:0.000000px;}
.ws19{word-spacing:0.066240px;}
.ws25{word-spacing:0.132480px;}
.ws17{word-spacing:0.198720px;}
.ws23{word-spacing:0.264960px;}
.ws24{word-spacing:0.331200px;}
.ws15{word-spacing:0.397440px;}
.ws28{word-spacing:0.463680px;}
.ws20{word-spacing:0.529920px;}
.ws1e{word-spacing:0.596160px;}
.ws1c{word-spacing:0.662400px;}
.ws26{word-spacing:0.728640px;}
.ws21{word-spacing:0.794880px;}
.ws2b{word-spacing:0.861120px;}
.ws18{word-spacing:0.927360px;}
.ws2d{word-spacing:0.993600px;}
.ws2f{word-spacing:1.059840px;}
.ws1d{word-spacing:1.126080px;}
._0{margin-left:-1.437408px;}
._1{width:1.172448px;}
._2{width:2.205792px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:124.708320px;}
.y82{bottom:125.718480px;}
.yc6{bottom:132.773040px;}
.y25{bottom:137.260800px;}
.y54{bottom:141.996960px;}
.ya2{bottom:146.484720px;}
.y81{bottom:147.494880px;}
.yc5{bottom:154.549440px;}
.y24{bottom:159.037200px;}
.y68{bottom:159.765840px;}
.y53{bottom:163.591200px;}
.ya1{bottom:180.151200px;}
.y23{bottom:180.813600px;}
.y80{bottom:181.161360px;}
.y52{bottom:185.367600px;}
.yc4{bottom:188.215920px;}
.y67{bottom:193.597920px;}
.ya0{bottom:201.927600px;}
.y22{bottom:202.590000px;}
.y51{bottom:207.144000px;}
.yc3{bottom:209.992320px;}
.y7f{bottom:214.827840px;}
.y66{bottom:215.374320px;}
.y9f{bottom:223.704000px;}
.y21{bottom:224.184240px;}
.y50{bottom:228.920400px;}
.y7e{bottom:236.604240px;}
.y65{bottom:236.968560px;}
.yc2{bottom:243.824400px;}
.y9e{bottom:245.298240px;}
.y20{bottom:245.960640px;}
.y7d{bottom:258.380640px;}
.y4f{bottom:262.586880px;}
.yc1{bottom:265.418640px;}
.y64{bottom:266.312880px;}
.y9d{bottom:267.074640px;}
.y1f{bottom:267.737040px;}
.y7c{bottom:280.157040px;}
.y4e{bottom:284.363280px;}
.y9c{bottom:288.851040px;}
.y1e{bottom:289.513440px;}
.yc0{bottom:299.250720px;}
.y7b{bottom:301.751280px;}
.y4d{bottom:306.139680px;}
.y9b{bottom:310.627440px;}
.ybf{bottom:321.027120px;}
.y1d{bottom:323.179920px;}
.y7a{bottom:323.527680px;}
.y4c{bottom:327.733920px;}
.y9a{bottom:332.221680px;}
.ybe{bottom:342.621360px;}
.y1c{bottom:344.956320px;}
.y79{bottom:345.304080px;}
.y4b{bottom:349.510320px;}
.y99{bottom:353.998080px;}
.y1b{bottom:366.732720px;}
.y98{bottom:375.774480px;}
.ybd{bottom:376.453440px;}
.y78{bottom:378.970560px;}
.y4a{bottom:383.176800px;}
.y1a{bottom:388.326960px;}
.ybc{bottom:398.229840px;}
.y97{bottom:409.440960px;}
.y19{bottom:410.103360px;}
.y77{bottom:412.802640px;}
.y49{bottom:417.008880px;}
.ybb{bottom:419.824080px;}
.y96{bottom:431.217360px;}
.y18{bottom:431.879760px;}
.y48{bottom:438.785280px;}
.y76{bottom:446.469120px;}
.y95{bottom:452.993760px;}
.yba{bottom:453.656160px;}
.y47{bottom:460.379520px;}
.y17{bottom:465.546300px;}
.y75{bottom:466.622640px;}
.y94{bottom:474.770160px;}
.yb9{bottom:475.250400px;}
.y46{bottom:482.155920px;}
.y74{bottom:486.776160px;}
.y93{bottom:496.364400px;}
.y45{bottom:503.932320px;}
.y73{bottom:506.929680px;}
.yb8{bottom:509.082480px;}
.yd5{bottom:509.115600px;}
.y92{bottom:518.140800px;}
.y44{bottom:525.708720px;}
.y72{bottom:527.083200px;}
.yb7{bottom:530.858880px;}
.y16{bottom:533.044800px;}
.y91{bottom:539.917200px;}
.yd4{bottom:542.782080px;}
.y71{bottom:547.236720px;}
.y43{bottom:547.302960px;}
.y90{bottom:561.693600px;}
.yb6{bottom:564.525360px;}
.y70{bottom:567.390240px;}
.yd3{bottom:576.614160px;}
.y42{bottom:581.135040px;}
.y8f{bottom:583.287840px;}
.y6f{bottom:587.543760px;}
.yb5{bottom:598.191840px;}
.yd2{bottom:598.208400px;}
.y15{bottom:600.543360px;}
.y8e{bottom:605.064240px;}
.y6e{bottom:607.531680px;}
.y41{bottom:614.801520px;}
.yb4{bottom:619.968240px;}
.yd1{bottom:619.984800px;}
.y14{bottom:622.319760px;}
.y63{bottom:624.505680px;}
.y8d{bottom:626.840640px;}
.y6d{bottom:641.363760px;}
.yb3{bottom:641.744640px;}
.y13{bottom:644.096160px;}
.y62{bottom:646.282080px;}
.y8c{bottom:648.617040px;}
.y40{bottom:648.633600px;}
.yd0{bottom:653.816880px;}
.y6c{bottom:663.140160px;}
.y8b{bottom:670.211280px;}
.y3f{bottom:670.227840px;}
.yb2{bottom:675.411120px;}
.y12{bottom:677.762640px;}
.y61{bottom:680.114160px;}
.y6b{bottom:684.734400px;}
.y8a{bottom:691.987680px;}
.y3e{bottom:692.004240px;}
.yb1{bottom:697.187520px;}
.y11{bottom:699.539040px;}
.y6a{bottom:706.510800px;}
.ycf{bottom:709.243200px;}
.y89{bottom:713.764080px;}
.y3d{bottom:713.780640px;}
.yb0{bottom:718.963920px;}
.y10{bottom:721.133280px;}
.yce{bottom:731.019600px;}
.y3c{bottom:735.557040px;}
.y69{bottom:735.855120px;}
.yf{bottom:742.909680px;}
.y88{bottom:747.430560px;}
.y60{bottom:747.447120px;}
.yaf{bottom:752.630400px;}
.y3b{bottom:757.151280px;}
.ye{bottom:764.686080px;}
.y87{bottom:769.206960px;}
.y5f{bottom:769.223520px;}
.yae{bottom:774.406800px;}
.ycd{bottom:786.462480px;}
.y3a{bottom:790.983360px;}
.y5e{bottom:790.999920px;}
.yd{bottom:798.352560px;}
.yad{bottom:808.238880px;}
.y39{bottom:812.759760px;}
.y5d{bottom:812.776320px;}
.yc{bottom:820.128960px;}
.yac{bottom:829.833120px;}
.y38{bottom:834.354000px;}
.y5c{bottom:834.370560px;}
.yb{bottom:841.905360px;}
.y37{bottom:856.130400px;}
.y5b{bottom:856.146960px;}
.yab{bottom:863.665200px;}
.ya{bottom:863.681760px;}
.y36{bottom:877.906800px;}
.yaa{bottom:885.259440px;}
.y9{bottom:885.276000px;}
.y5a{bottom:889.979040px;}
.ycc{bottom:897.348240px;}
.y35{bottom:899.683200px;}
.y8{bottom:907.052400px;}
.y59{bottom:911.573280px;}
.ya9{bottom:919.091520px;}
.y86{bottom:921.277440px;}
.ycb{bottom:931.180320px;}
.y34{bottom:933.349680px;}
.ya8{bottom:940.867920px;}
.y7{bottom:940.884480px;}
.yca{bottom:952.774560px;}
.y85{bottom:955.109520px;}
.y33{bottom:955.126080px;}
.y6{bottom:962.478720px;}
.ya7{bottom:974.534400px;}
.yc9{bottom:974.550960px;}
.y32{bottom:976.902480px;}
.y5{bottom:984.255120px;}
.y84{bottom:988.776000px;}
.ya6{bottom:996.310800px;}
.y31{bottom:998.496720px;}
.y4{bottom:1006.031520px;}
.yc8{bottom:1008.217440px;}
.y83{bottom:1010.552400px;}
.y58{bottom:1020.273120px;}
.ya5{bottom:1029.977280px;}
.yc7{bottom:1029.993840px;}
.y30{bottom:1032.328800px;}
.y3{bottom:1039.698000px;}
.y57{bottom:1042.049520px;}
.y2f{bottom:1054.105200px;}
.ya4{bottom:1063.809360px;}
.y56{bottom:1063.825920px;}
.y2e{bottom:1075.699440px;}
.y55{bottom:1085.420160px;}
.y2d{bottom:1097.475840px;}
.y2{bottom:1107.196560px;}
.y2c{bottom:1119.252240px;}
.y2b{bottom:1141.028640px;}
.y1{bottom:1141.028700px;}
.y2a{bottom:1173.966480px;}
.y29{bottom:1194.120000px;}
.y28{bottom:1197.660000px;}
.y27{bottom:1213.860000px;}
.y26{bottom:1230.060000px;}
.h4{height:36.914062px;}
.h5{height:38.759766px;}
.h2{height:45.281250px;}
.h3{height:47.545312px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.961500px;}
.x2{left:442.260000px;}
.x3{left:722.422080px;}
.x4{left:807.672960px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.883200pt;}
.ls16{letter-spacing:-0.824320pt;}
.ls1a{letter-spacing:-0.765440pt;}
.lsd{letter-spacing:-0.706560pt;}
.ls11{letter-spacing:-0.647680pt;}
.ls13{letter-spacing:-0.588800pt;}
.lsc{letter-spacing:-0.529920pt;}
.lse{letter-spacing:-0.471040pt;}
.ls10{letter-spacing:-0.412160pt;}
.ls18{letter-spacing:-0.353280pt;}
.ls17{letter-spacing:-0.294400pt;}
.ls9{letter-spacing:-0.235520pt;}
.ls1b{letter-spacing:-0.176640pt;}
.ls15{letter-spacing:-0.117760pt;}
.lsb{letter-spacing:-0.058880pt;}
.lsa{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.029440pt;}
.ls23{letter-spacing:0.041216pt;}
.ls6{letter-spacing:0.058880pt;}
.ls1f{letter-spacing:0.094208pt;}
.ls20{letter-spacing:0.100096pt;}
.ls1{letter-spacing:0.117760pt;}
.ls24{letter-spacing:0.123648pt;}
.ls4{letter-spacing:0.135424pt;}
.ls1e{letter-spacing:0.141312pt;}
.ls1c{letter-spacing:0.147200pt;}
.ls27{letter-spacing:0.153088pt;}
.ls3{letter-spacing:0.158976pt;}
.ls26{letter-spacing:0.164864pt;}
.ls28{letter-spacing:0.170752pt;}
.ls7{letter-spacing:0.176000pt;}
.ls2{letter-spacing:0.176640pt;}
.ls29{letter-spacing:0.188416pt;}
.ls8{letter-spacing:0.197333pt;}
.ls1d{letter-spacing:0.223744pt;}
.ls0{letter-spacing:0.235307pt;}
.ls14{letter-spacing:0.235520pt;}
.ls22{letter-spacing:0.241408pt;}
.ls25{letter-spacing:0.253184pt;}
.ls19{letter-spacing:0.264960pt;}
.ls5{letter-spacing:0.294293pt;}
.ls12{letter-spacing:0.294400pt;}
.ws7{word-spacing:-13.601280pt;}
.ws9{word-spacing:-13.542400pt;}
.ws0{word-spacing:-13.483520pt;}
.ws31{word-spacing:-13.430528pt;}
.ws4{word-spacing:-13.424640pt;}
.wsc{word-spacing:-13.365760pt;}
.ws5{word-spacing:-13.306880pt;}
.ws2{word-spacing:-13.248000pt;}
.ws11{word-spacing:-13.189120pt;}
.ws29{word-spacing:-13.130240pt;}
.ws1{word-spacing:-13.071360pt;}
.ws10{word-spacing:-13.012480pt;}
.ws12{word-spacing:-12.953600pt;}
.wsb{word-spacing:-12.894720pt;}
.wse{word-spacing:-12.835840pt;}
.ws3{word-spacing:-12.776960pt;}
.ws8{word-spacing:-12.718080pt;}
.ws6{word-spacing:-12.659200pt;}
.wsa{word-spacing:-12.600320pt;}
.ws30{word-spacing:-12.541440pt;}
.wsd{word-spacing:-12.482560pt;}
.ws13{word-spacing:-11.024000pt;}
.ws33{word-spacing:-0.824320pt;}
.ws2a{word-spacing:-0.765440pt;}
.wsf{word-spacing:-0.706560pt;}
.ws27{word-spacing:-0.647680pt;}
.ws32{word-spacing:-0.588800pt;}
.ws34{word-spacing:-0.529920pt;}
.ws1b{word-spacing:-0.471040pt;}
.ws22{word-spacing:-0.412160pt;}
.ws1a{word-spacing:-0.294400pt;}
.ws2c{word-spacing:-0.235520pt;}
.ws14{word-spacing:-0.176640pt;}
.ws1f{word-spacing:-0.117760pt;}
.ws2e{word-spacing:-0.058880pt;}
.ws16{word-spacing:0.000000pt;}
.ws19{word-spacing:0.058880pt;}
.ws25{word-spacing:0.117760pt;}
.ws17{word-spacing:0.176640pt;}
.ws23{word-spacing:0.235520pt;}
.ws24{word-spacing:0.294400pt;}
.ws15{word-spacing:0.353280pt;}
.ws28{word-spacing:0.412160pt;}
.ws20{word-spacing:0.471040pt;}
.ws1e{word-spacing:0.529920pt;}
.ws1c{word-spacing:0.588800pt;}
.ws26{word-spacing:0.647680pt;}
.ws21{word-spacing:0.706560pt;}
.ws2b{word-spacing:0.765440pt;}
.ws18{word-spacing:0.824320pt;}
.ws2d{word-spacing:0.883200pt;}
.ws2f{word-spacing:0.942080pt;}
.ws1d{word-spacing:1.000960pt;}
._0{margin-left:-1.277696pt;}
._1{width:1.042176pt;}
._2{width:1.960704pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:110.851840pt;}
.y82{bottom:111.749760pt;}
.yc6{bottom:118.020480pt;}
.y25{bottom:122.009600pt;}
.y54{bottom:126.219520pt;}
.ya2{bottom:130.208640pt;}
.y81{bottom:131.106560pt;}
.yc5{bottom:137.377280pt;}
.y24{bottom:141.366400pt;}
.y68{bottom:142.014080pt;}
.y53{bottom:145.414400pt;}
.ya1{bottom:160.134400pt;}
.y23{bottom:160.723200pt;}
.y80{bottom:161.032320pt;}
.y52{bottom:164.771200pt;}
.yc4{bottom:167.303040pt;}
.y67{bottom:172.087040pt;}
.ya0{bottom:179.491200pt;}
.y22{bottom:180.080000pt;}
.y51{bottom:184.128000pt;}
.yc3{bottom:186.659840pt;}
.y7f{bottom:190.958080pt;}
.y66{bottom:191.443840pt;}
.y9f{bottom:198.848000pt;}
.y21{bottom:199.274880pt;}
.y50{bottom:203.484800pt;}
.y7e{bottom:210.314880pt;}
.y65{bottom:210.638720pt;}
.yc2{bottom:216.732800pt;}
.y9e{bottom:218.042880pt;}
.y20{bottom:218.631680pt;}
.y7d{bottom:229.671680pt;}
.y4f{bottom:233.410560pt;}
.yc1{bottom:235.927680pt;}
.y64{bottom:236.722560pt;}
.y9d{bottom:237.399680pt;}
.y1f{bottom:237.988480pt;}
.y7c{bottom:249.028480pt;}
.y4e{bottom:252.767360pt;}
.y9c{bottom:256.756480pt;}
.y1e{bottom:257.345280pt;}
.yc0{bottom:266.000640pt;}
.y7b{bottom:268.223360pt;}
.y4d{bottom:272.124160pt;}
.y9b{bottom:276.113280pt;}
.ybf{bottom:285.357440pt;}
.y1d{bottom:287.271040pt;}
.y7a{bottom:287.580160pt;}
.y4c{bottom:291.319040pt;}
.y9a{bottom:295.308160pt;}
.ybe{bottom:304.552320pt;}
.y1c{bottom:306.627840pt;}
.y79{bottom:306.936960pt;}
.y4b{bottom:310.675840pt;}
.y99{bottom:314.664960pt;}
.y1b{bottom:325.984640pt;}
.y98{bottom:334.021760pt;}
.ybd{bottom:334.625280pt;}
.y78{bottom:336.862720pt;}
.y4a{bottom:340.601600pt;}
.y1a{bottom:345.179520pt;}
.ybc{bottom:353.982080pt;}
.y97{bottom:363.947520pt;}
.y19{bottom:364.536320pt;}
.y77{bottom:366.935680pt;}
.y49{bottom:370.674560pt;}
.ybb{bottom:373.176960pt;}
.y96{bottom:383.304320pt;}
.y18{bottom:383.893120pt;}
.y48{bottom:390.031360pt;}
.y76{bottom:396.861440pt;}
.y95{bottom:402.661120pt;}
.yba{bottom:403.249920pt;}
.y47{bottom:409.226240pt;}
.y17{bottom:413.818933pt;}
.y75{bottom:414.775680pt;}
.y94{bottom:422.017920pt;}
.yb9{bottom:422.444800pt;}
.y46{bottom:428.583040pt;}
.y74{bottom:432.689920pt;}
.y93{bottom:441.212800pt;}
.y45{bottom:447.939840pt;}
.y73{bottom:450.604160pt;}
.yb8{bottom:452.517760pt;}
.yd5{bottom:452.547200pt;}
.y92{bottom:460.569600pt;}
.y44{bottom:467.296640pt;}
.y72{bottom:468.518400pt;}
.yb7{bottom:471.874560pt;}
.y16{bottom:473.817600pt;}
.y91{bottom:479.926400pt;}
.yd4{bottom:482.472960pt;}
.y71{bottom:486.432640pt;}
.y43{bottom:486.491520pt;}
.y90{bottom:499.283200pt;}
.yb6{bottom:501.800320pt;}
.y70{bottom:504.346880pt;}
.yd3{bottom:512.545920pt;}
.y42{bottom:516.564480pt;}
.y8f{bottom:518.478080pt;}
.y6f{bottom:522.261120pt;}
.yb5{bottom:531.726080pt;}
.yd2{bottom:531.740800pt;}
.y15{bottom:533.816320pt;}
.y8e{bottom:537.834880pt;}
.y6e{bottom:540.028160pt;}
.y41{bottom:546.490240pt;}
.yb4{bottom:551.082880pt;}
.yd1{bottom:551.097600pt;}
.y14{bottom:553.173120pt;}
.y63{bottom:555.116160pt;}
.y8d{bottom:557.191680pt;}
.y6d{bottom:570.101120pt;}
.yb3{bottom:570.439680pt;}
.y13{bottom:572.529920pt;}
.y62{bottom:574.472960pt;}
.y8c{bottom:576.548480pt;}
.y40{bottom:576.563200pt;}
.yd0{bottom:581.170560pt;}
.y6c{bottom:589.457920pt;}
.y8b{bottom:595.743360pt;}
.y3f{bottom:595.758080pt;}
.yb2{bottom:600.365440pt;}
.y12{bottom:602.455680pt;}
.y61{bottom:604.545920pt;}
.y6b{bottom:608.652800pt;}
.y8a{bottom:615.100160pt;}
.y3e{bottom:615.114880pt;}
.yb1{bottom:619.722240pt;}
.y11{bottom:621.812480pt;}
.y6a{bottom:628.009600pt;}
.ycf{bottom:630.438400pt;}
.y89{bottom:634.456960pt;}
.y3d{bottom:634.471680pt;}
.yb0{bottom:639.079040pt;}
.y10{bottom:641.007360pt;}
.yce{bottom:649.795200pt;}
.y3c{bottom:653.828480pt;}
.y69{bottom:654.093440pt;}
.yf{bottom:660.364160pt;}
.y88{bottom:664.382720pt;}
.y60{bottom:664.397440pt;}
.yaf{bottom:669.004800pt;}
.y3b{bottom:673.023360pt;}
.ye{bottom:679.720960pt;}
.y87{bottom:683.739520pt;}
.y5f{bottom:683.754240pt;}
.yae{bottom:688.361600pt;}
.ycd{bottom:699.077760pt;}
.y3a{bottom:703.096320pt;}
.y5e{bottom:703.111040pt;}
.yd{bottom:709.646720pt;}
.yad{bottom:718.434560pt;}
.y39{bottom:722.453120pt;}
.y5d{bottom:722.467840pt;}
.yc{bottom:729.003520pt;}
.yac{bottom:737.629440pt;}
.y38{bottom:741.648000pt;}
.y5c{bottom:741.662720pt;}
.yb{bottom:748.360320pt;}
.y37{bottom:761.004800pt;}
.y5b{bottom:761.019520pt;}
.yab{bottom:767.702400pt;}
.ya{bottom:767.717120pt;}
.y36{bottom:780.361600pt;}
.yaa{bottom:786.897280pt;}
.y9{bottom:786.912000pt;}
.y5a{bottom:791.092480pt;}
.ycc{bottom:797.642880pt;}
.y35{bottom:799.718400pt;}
.y8{bottom:806.268800pt;}
.y59{bottom:810.287360pt;}
.ya9{bottom:816.970240pt;}
.y86{bottom:818.913280pt;}
.ycb{bottom:827.715840pt;}
.y34{bottom:829.644160pt;}
.ya8{bottom:836.327040pt;}
.y7{bottom:836.341760pt;}
.yca{bottom:846.910720pt;}
.y85{bottom:848.986240pt;}
.y33{bottom:849.000960pt;}
.y6{bottom:855.536640pt;}
.ya7{bottom:866.252800pt;}
.yc9{bottom:866.267520pt;}
.y32{bottom:868.357760pt;}
.y5{bottom:874.893440pt;}
.y84{bottom:878.912000pt;}
.ya6{bottom:885.609600pt;}
.y31{bottom:887.552640pt;}
.y4{bottom:894.250240pt;}
.yc8{bottom:896.193280pt;}
.y83{bottom:898.268800pt;}
.y58{bottom:906.909440pt;}
.ya5{bottom:915.535360pt;}
.yc7{bottom:915.550080pt;}
.y30{bottom:917.625600pt;}
.y3{bottom:924.176000pt;}
.y57{bottom:926.266240pt;}
.y2f{bottom:936.982400pt;}
.ya4{bottom:945.608320pt;}
.y56{bottom:945.623040pt;}
.y2e{bottom:956.177280pt;}
.y55{bottom:964.817920pt;}
.y2d{bottom:975.534080pt;}
.y2{bottom:984.174720pt;}
.y2c{bottom:994.890880pt;}
.y2b{bottom:1014.247680pt;}
.y1{bottom:1014.247733pt;}
.y2a{bottom:1043.525760pt;}
.y29{bottom:1061.440000pt;}
.y28{bottom:1064.586667pt;}
.y27{bottom:1078.986667pt;}
.y26{bottom:1093.386667pt;}
.h4{height:32.812500pt;}
.h5{height:34.453125pt;}
.h2{height:40.250000pt;}
.h3{height:42.262500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.521333pt;}
.x2{left:393.120000pt;}
.x3{left:642.152960pt;}
.x4{left:717.931520pt;}
}




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