
    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_665ffe82f66c437aee13bdc8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_a88b53ce7f0f52aba75effe2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_46b58d867c286ce2a994462a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_0e390749c782f6a3be0046d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_c5171299c78a00f655ee6347.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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);}
.v2{vertical-align:-68.399400px;}
.v1{vertical-align:-66.601080px;}
.v0{vertical-align:0.000000px;}
.ls2f{letter-spacing:-0.737352px;}
.ls1b{letter-spacing:-0.144288px;}
.ls1e{letter-spacing:-0.066132px;}
.ls1f{letter-spacing:-0.060120px;}
.ls2b{letter-spacing:-0.048096px;}
.ls18{letter-spacing:-0.043200px;}
.ls20{letter-spacing:-0.042084px;}
.ls26{letter-spacing:-0.036072px;}
.ls17{letter-spacing:-0.036000px;}
.ls2a{letter-spacing:-0.031500px;}
.lsf{letter-spacing:-0.030060px;}
.ls13{letter-spacing:-0.028800px;}
.ls24{letter-spacing:-0.024048px;}
.ls11{letter-spacing:-0.023940px;}
.ls16{letter-spacing:-0.021600px;}
.ls25{letter-spacing:-0.018036px;}
.ls19{letter-spacing:-0.014400px;}
.ls1a{letter-spacing:-0.012024px;}
.ls1c{letter-spacing:-0.006012px;}
.ls10{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.006012px;}
.ls22{letter-spacing:0.007200px;}
.ls7{letter-spacing:0.012024px;}
.ls1{letter-spacing:0.016776px;}
.ls6{letter-spacing:0.018036px;}
.ls14{letter-spacing:0.021600px;}
.ls9{letter-spacing:0.024048px;}
.lse{letter-spacing:0.025164px;}
.ls2{letter-spacing:0.028728px;}
.lsa{letter-spacing:0.030060px;}
.ls29{letter-spacing:0.033516px;}
.ls15{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.036072px;}
.ls27{letter-spacing:0.038304px;}
.ls0{letter-spacing:0.041940px;}
.lsd{letter-spacing:0.042084px;}
.ls4{letter-spacing:0.043092px;}
.ls21{letter-spacing:0.047880px;}
.ls23{letter-spacing:0.048096px;}
.ls5{letter-spacing:0.050328px;}
.ls28{letter-spacing:0.052668px;}
.lsc{letter-spacing:0.066132px;}
.ls12{letter-spacing:0.067104px;}
.ls2c{letter-spacing:0.118800px;}
.ls1d{letter-spacing:0.138276px;}
.ls2d{letter-spacing:0.339948px;}
.ls2e{letter-spacing:0.378252px;}
.ls3{letter-spacing:1480.689000px;}
.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:-72.000000px;}
.ws6b{word-spacing:-17.482500px;}
.ws3c{word-spacing:-16.713360px;}
.ws33{word-spacing:-16.701336px;}
.ws35{word-spacing:-16.671276px;}
.ws34{word-spacing:-16.653240px;}
.ws6c{word-spacing:-12.573288px;}
.ws2d{word-spacing:-0.535068px;}
.ws39{word-spacing:-0.498996px;}
.ws17{word-spacing:-0.168336px;}
.ws32{word-spacing:-0.162324px;}
.ws23{word-spacing:-0.156312px;}
.ws60{word-spacing:-0.150300px;}
.ws1f{word-spacing:-0.138276px;}
.ws16{word-spacing:-0.132264px;}
.ws4f{word-spacing:-0.120240px;}
.ws3{word-spacing:-0.114228px;}
.ws59{word-spacing:-0.108216px;}
.ws6a{word-spacing:-0.102204px;}
.ws71{word-spacing:-0.096192px;}
.ws36{word-spacing:-0.078156px;}
.ws40{word-spacing:-0.050328px;}
.ws76{word-spacing:-0.033516px;}
.ws3d{word-spacing:-0.028728px;}
.ws2{word-spacing:-0.025164px;}
.ws7{word-spacing:-0.023940px;}
.ws75{word-spacing:-0.019152px;}
.ws77{word-spacing:-0.014364px;}
.ws6{word-spacing:-0.009576px;}
.ws1{word-spacing:-0.008388px;}
.ws4{word-spacing:0.000000px;}
.ws41{word-spacing:0.025164px;}
.ws74{word-spacing:0.038304px;}
.wsa{word-spacing:0.041940px;}
.ws5{word-spacing:0.043092px;}
.ws10{word-spacing:0.079200px;}
.ws47{word-spacing:0.108000px;}
.ws43{word-spacing:0.151200px;}
.ws46{word-spacing:0.172800px;}
.ws42{word-spacing:0.194400px;}
.wsf{word-spacing:0.252000px;}
.ws15{word-spacing:0.559116px;}
.ws29{word-spacing:0.871740px;}
.ws5f{word-spacing:0.895788px;}
.ws5e{word-spacing:0.919836px;}
.ws24{word-spacing:1.274544px;}
.ws5b{word-spacing:1.292580px;}
.ws28{word-spacing:1.304604px;}
.ws69{word-spacing:1.629252px;}
.ws63{word-spacing:1.653300px;}
.ws65{word-spacing:1.965924px;}
.ws5a{word-spacing:2.008008px;}
.ws2a{word-spacing:2.020032px;}
.ws2b{word-spacing:2.026044px;}
.ws64{word-spacing:2.032056px;}
.ws1d{word-spacing:2.344680px;}
.ws1e{word-spacing:2.368728px;}
.ws62{word-spacing:2.380752px;}
.ws61{word-spacing:2.392776px;}
.ws6d{word-spacing:2.717424px;}
.ws20{word-spacing:2.723436px;}
.ws72{word-spacing:2.729448px;}
.ws6e{word-spacing:2.765520px;}
.ws73{word-spacing:3.120228px;}
.ws11{word-spacing:3.438864px;}
.ws54{word-spacing:3.456900px;}
.ws6f{word-spacing:3.823632px;}
.ws70{word-spacing:3.835656px;}
.ws57{word-spacing:4.863708px;}
.ws4b{word-spacing:4.887756px;}
.ws58{word-spacing:4.899780px;}
.ws50{word-spacing:5.260500px;}
.ws51{word-spacing:5.272524px;}
.ws2c{word-spacing:5.603184px;}
.ws55{word-spacing:5.963904px;}
.ws56{word-spacing:5.993964px;}
.ws53{word-spacing:6.318612px;}
.ws52{word-spacing:6.330636px;}
.ws4e{word-spacing:6.649272px;}
.ws4c{word-spacing:6.673320px;}
.ws14{word-spacing:6.691356px;}
.ws13{word-spacing:6.697368px;}
.ws4d{word-spacing:6.727428px;}
.ws48{word-spacing:7.052076px;}
.ws5d{word-spacing:7.388748px;}
.ws5c{word-spacing:7.400772px;}
.ws21{word-spacing:7.406784px;}
.ws38{word-spacing:7.418808px;}
.ws22{word-spacing:7.430832px;}
.wsd{word-spacing:7.740000px;}
.wse{word-spacing:7.754400px;}
.ws12{word-spacing:7.761492px;}
.ws2f{word-spacing:9.913788px;}
.ws19{word-spacing:10.635228px;}
.ws18{word-spacing:10.665288px;}
.wsc{word-spacing:10.936800px;}
.wsb{word-spacing:10.987200px;}
.ws1b{word-spacing:12.078108px;}
.ws1c{word-spacing:12.084120px;}
.ws27{word-spacing:12.432816px;}
.ws25{word-spacing:12.444840px;}
.ws26{word-spacing:12.781512px;}
.ws30{word-spacing:12.805560px;}
.ws31{word-spacing:13.136220px;}
.ws49{word-spacing:14.224392px;}
.ws4a{word-spacing:14.248440px;}
.ws66{word-spacing:14.615172px;}
.ws2e{word-spacing:15.673284px;}
.ws37{word-spacing:16.418772px;}
.ws68{word-spacing:16.731396px;}
.ws67{word-spacing:16.761456px;}
.ws45{word-spacing:19.252800px;}
.ws44{word-spacing:19.281600px;}
.ws3a{word-spacing:20.374668px;}
.ws1a{word-spacing:21.066048px;}
.ws8{word-spacing:33.526836px;}
.ws9{word-spacing:33.627492px;}
.ws3e{word-spacing:37.033020px;}
.ws3f{word-spacing:37.108512px;}
.ws3b{word-spacing:161.855064px;}
._7{margin-left:-2.912400px;}
._1{margin-left:-1.022040px;}
._2{width:1.000692px;}
._6{width:34.920000px;}
._3{width:43.200000px;}
._4{width:46.440000px;}
._5{width:54.000000px;}
._0{width:409.745412px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(170,170,170);}
.fc0{color:rgb(131,131,131);}
.fs3{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5{bottom:74.639460px;}
.y4{bottom:91.199955px;}
.y3{bottom:107.760450px;}
.y2{bottom:140.070450px;}
.y6a{bottom:177.963105px;}
.y37{bottom:181.560450px;}
.yb4{bottom:182.640450px;}
.y9b{bottom:192.270789px;}
.y69{bottom:195.152916px;}
.y36{bottom:199.383264px;}
.yb1{bottom:204.871566px;}
.y9a{bottom:209.460600px;}
.y68{bottom:212.432907px;}
.y35{bottom:216.663255px;}
.yb0{bottom:225.571287px;}
.y99{bottom:227.460600px;}
.y67{bottom:229.712898px;}
.y34{bottom:233.853066px;}
.y98{bottom:245.282925px;}
.yaf{bottom:246.271008px;}
.y66{bottom:246.902709px;}
.y33{bottom:251.133057px;}
.y97{bottom:262.562916px;}
.y65{bottom:264.182700px;}
.yae{bottom:266.970729px;}
.y32{bottom:268.413048px;}
.yb3{bottom:273.721809px;}
.y96{bottom:279.752727px;}
.y64{bottom:281.372511px;}
.y31{bottom:285.602859px;}
.yb2{bottom:287.581872px;}
.y95{bottom:297.032718px;}
.y63{bottom:298.652502px;}
.y30{bottom:302.882850px;}
.yad{bottom:304.770450px;}
.y94{bottom:314.312709px;}
.y62{bottom:315.932493px;}
.y2f{bottom:320.162841px;}
.y93{bottom:331.502520px;}
.y61{bottom:333.122304px;}
.yac{bottom:333.390459px;}
.y2e{bottom:337.352652px;}
.y92{bottom:348.782511px;}
.y60{bottom:350.402295px;}
.yab{bottom:350.670450px;}
.y2d{bottom:354.632643px;}
.y91{bottom:366.062502px;}
.y5f{bottom:367.682286px;}
.y2c{bottom:371.912634px;}
.ya8{bottom:374.161716px;}
.y90{bottom:383.252313px;}
.y5e{bottom:384.872097px;}
.y2b{bottom:389.102445px;}
.ya7{bottom:394.861437px;}
.y8f{bottom:400.532304px;}
.y5d{bottom:402.152088px;}
.y2a{bottom:406.382436px;}
.ya6{bottom:415.561158px;}
.y8e{bottom:417.812295px;}
.y5c{bottom:419.432079px;}
.y29{bottom:423.662427px;}
.y8d{bottom:435.002106px;}
.ya5{bottom:436.260879px;}
.y5b{bottom:436.621890px;}
.y28{bottom:440.852238px;}
.yaa{bottom:443.101734px;}
.y8c{bottom:452.282097px;}
.y5a{bottom:453.901881px;}
.ya9{bottom:456.872022px;}
.y27{bottom:458.132229px;}
.y8b{bottom:469.471908px;}
.y59{bottom:471.181872px;}
.ya4{bottom:474.060450px;}
.y26{bottom:475.322040px;}
.y8a{bottom:486.751899px;}
.y58{bottom:488.371683px;}
.y25{bottom:492.602031px;}
.y89{bottom:504.031890px;}
.y57{bottom:505.651674px;}
.y24{bottom:509.882022px;}
.y88{bottom:521.221701px;}
.y56{bottom:522.931665px;}
.y23{bottom:527.071833px;}
.y87{bottom:538.501692px;}
.y55{bottom:540.121476px;}
.y22{bottom:544.351824px;}
.y86{bottom:555.781683px;}
.y54{bottom:557.401467px;}
.y21{bottom:561.631815px;}
.y85{bottom:572.971494px;}
.y53{bottom:574.681458px;}
.y20{bottom:578.821626px;}
.y84{bottom:590.251485px;}
.y52{bottom:591.871269px;}
.y1f{bottom:596.101617px;}
.y83{bottom:607.531476px;}
.y51{bottom:609.151260px;}
.y1e{bottom:613.381608px;}
.y82{bottom:624.721287px;}
.y50{bottom:626.341071px;}
.y1d{bottom:630.571419px;}
.y81{bottom:642.001278px;}
.y4f{bottom:643.621062px;}
.y1c{bottom:647.851410px;}
.y80{bottom:659.281269px;}
.y4e{bottom:660.901053px;}
.y1b{bottom:665.131401px;}
.y7f{bottom:676.471080px;}
.y4d{bottom:678.090864px;}
.y1a{bottom:682.321212px;}
.y7e{bottom:693.751071px;}
.y4c{bottom:695.370855px;}
.y19{bottom:699.601203px;}
.y7d{bottom:711.031062px;}
.y4b{bottom:712.650846px;}
.y18{bottom:716.881194px;}
.y7c{bottom:728.220873px;}
.y4a{bottom:729.840657px;}
.y17{bottom:734.071005px;}
.y7b{bottom:745.500864px;}
.y49{bottom:747.120648px;}
.y16{bottom:751.350996px;}
.y7a{bottom:762.780855px;}
.y48{bottom:764.400639px;}
.y15{bottom:768.630987px;}
.y79{bottom:779.970666px;}
.y47{bottom:781.590450px;}
.y14{bottom:785.820798px;}
.y78{bottom:797.250657px;}
.y46{bottom:800.041197px;}
.y13{bottom:803.100789px;}
.y77{bottom:814.440468px;}
.y12{bottom:820.290600px;}
.y45{bottom:824.160891px;}
.y76{bottom:831.720459px;}
.y44{bottom:848.280585px;}
.y75{bottom:849.000450px;}
.y11{bottom:851.790015px;}
.y10{bottom:867.000600px;}
.y43{bottom:872.490450px;}
.y74{bottom:880.410360px;}
.yf{bottom:880.680600px;}
.y42{bottom:895.440459px;}
.y73{bottom:895.710450px;}
.ye{bottom:901.380450px;}
.y72{bottom:909.390450px;}
.y41{bottom:912.720846px;}
.yd{bottom:922.080450px;}
.y71{bottom:930.000450px;}
.y40{bottom:930.000837px;}
.ya3{bottom:932.700459px;}
.yc{bottom:944.040600px;}
.y3f{bottom:947.190648px;}
.ya2{bottom:949.980540px;}
.y70{bottom:951.960450px;}
.y3e{bottom:964.470639px;}
.yb{bottom:964.650450px;}
.ya1{bottom:968.070648px;}
.y6f{bottom:974.370450px;}
.y3d{bottom:981.660855px;}
.ya0{bottom:985.350639px;}
.ya{bottom:987.150450px;}
.y6e{bottom:998.490450px;}
.y3c{bottom:998.940846px;}
.y9f{bottom:1002.540360px;}
.y9{bottom:1011.270450px;}
.y3b{bottom:1016.220837px;}
.y9e{bottom:1020.720648px;}
.y6d{bottom:1022.700450px;}
.y3a{bottom:1033.410648px;}
.y8{bottom:1035.390450px;}
.y9d{bottom:1037.910459px;}
.y39{bottom:1050.600459px;}
.y9c{bottom:1055.190450px;}
.y6c{bottom:1055.640450px;}
.y38{bottom:1067.880450px;}
.y7{bottom:1068.330450px;}
.y6b{bottom:1070.848695px;}
.y6{bottom:1083.539289px;}
.y1{bottom:1099.110450px;}
.h6{height:41.989746px;}
.h4{height:43.929844px;}
.h3{height:49.937344px;}
.h9{height:56.320312px;}
.h2{height:62.703281px;}
.h8{height:65.706671px;}
.h7{height:65.707391px;}
.h5{height:75.093750px;}
.h1{height:87.484219px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x3{left:72.000000px;}
.x9{left:80.100000px;}
.x10{left:82.620000px;}
.xd{left:90.720000px;}
.x5{left:97.470000px;}
.x7{left:99.000000px;}
.xa{left:105.570000px;}
.xc{left:107.100000px;}
.x6{left:124.290000px;}
.xb{left:132.390000px;}
.x1{left:282.600000px;}
.x12{left:450.720243px;}
.xf{left:458.820243px;}
.x11{left:461.340027px;}
.xe{left:469.440027px;}
.x2{left:503.190000px;}
.x4{left:645.390531px;}
.x8{left:660.780360px;}
@media print{
.v2{vertical-align:-60.799467pt;}
.v1{vertical-align:-59.200960pt;}
.v0{vertical-align:0.000000pt;}
.ls2f{letter-spacing:-0.655424pt;}
.ls1b{letter-spacing:-0.128256pt;}
.ls1e{letter-spacing:-0.058784pt;}
.ls1f{letter-spacing:-0.053440pt;}
.ls2b{letter-spacing:-0.042752pt;}
.ls18{letter-spacing:-0.038400pt;}
.ls20{letter-spacing:-0.037408pt;}
.ls26{letter-spacing:-0.032064pt;}
.ls17{letter-spacing:-0.032000pt;}
.ls2a{letter-spacing:-0.028000pt;}
.lsf{letter-spacing:-0.026720pt;}
.ls13{letter-spacing:-0.025600pt;}
.ls24{letter-spacing:-0.021376pt;}
.ls11{letter-spacing:-0.021280pt;}
.ls16{letter-spacing:-0.019200pt;}
.ls25{letter-spacing:-0.016032pt;}
.ls19{letter-spacing:-0.012800pt;}
.ls1a{letter-spacing:-0.010688pt;}
.ls1c{letter-spacing:-0.005344pt;}
.ls10{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.005344pt;}
.ls22{letter-spacing:0.006400pt;}
.ls7{letter-spacing:0.010688pt;}
.ls1{letter-spacing:0.014912pt;}
.ls6{letter-spacing:0.016032pt;}
.ls14{letter-spacing:0.019200pt;}
.ls9{letter-spacing:0.021376pt;}
.lse{letter-spacing:0.022368pt;}
.ls2{letter-spacing:0.025536pt;}
.lsa{letter-spacing:0.026720pt;}
.ls29{letter-spacing:0.029792pt;}
.ls15{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.032064pt;}
.ls27{letter-spacing:0.034048pt;}
.ls0{letter-spacing:0.037280pt;}
.lsd{letter-spacing:0.037408pt;}
.ls4{letter-spacing:0.038304pt;}
.ls21{letter-spacing:0.042560pt;}
.ls23{letter-spacing:0.042752pt;}
.ls5{letter-spacing:0.044736pt;}
.ls28{letter-spacing:0.046816pt;}
.lsc{letter-spacing:0.058784pt;}
.ls12{letter-spacing:0.059648pt;}
.ls2c{letter-spacing:0.105600pt;}
.ls1d{letter-spacing:0.122912pt;}
.ls2d{letter-spacing:0.302176pt;}
.ls2e{letter-spacing:0.336224pt;}
.ls3{letter-spacing:1316.168000pt;}
.ws0{word-spacing:-64.000000pt;}
.ws6b{word-spacing:-15.540000pt;}
.ws3c{word-spacing:-14.856320pt;}
.ws33{word-spacing:-14.845632pt;}
.ws35{word-spacing:-14.818912pt;}
.ws34{word-spacing:-14.802880pt;}
.ws6c{word-spacing:-11.176256pt;}
.ws2d{word-spacing:-0.475616pt;}
.ws39{word-spacing:-0.443552pt;}
.ws17{word-spacing:-0.149632pt;}
.ws32{word-spacing:-0.144288pt;}
.ws23{word-spacing:-0.138944pt;}
.ws60{word-spacing:-0.133600pt;}
.ws1f{word-spacing:-0.122912pt;}
.ws16{word-spacing:-0.117568pt;}
.ws4f{word-spacing:-0.106880pt;}
.ws3{word-spacing:-0.101536pt;}
.ws59{word-spacing:-0.096192pt;}
.ws6a{word-spacing:-0.090848pt;}
.ws71{word-spacing:-0.085504pt;}
.ws36{word-spacing:-0.069472pt;}
.ws40{word-spacing:-0.044736pt;}
.ws76{word-spacing:-0.029792pt;}
.ws3d{word-spacing:-0.025536pt;}
.ws2{word-spacing:-0.022368pt;}
.ws7{word-spacing:-0.021280pt;}
.ws75{word-spacing:-0.017024pt;}
.ws77{word-spacing:-0.012768pt;}
.ws6{word-spacing:-0.008512pt;}
.ws1{word-spacing:-0.007456pt;}
.ws4{word-spacing:0.000000pt;}
.ws41{word-spacing:0.022368pt;}
.ws74{word-spacing:0.034048pt;}
.wsa{word-spacing:0.037280pt;}
.ws5{word-spacing:0.038304pt;}
.ws10{word-spacing:0.070400pt;}
.ws47{word-spacing:0.096000pt;}
.ws43{word-spacing:0.134400pt;}
.ws46{word-spacing:0.153600pt;}
.ws42{word-spacing:0.172800pt;}
.wsf{word-spacing:0.224000pt;}
.ws15{word-spacing:0.496992pt;}
.ws29{word-spacing:0.774880pt;}
.ws5f{word-spacing:0.796256pt;}
.ws5e{word-spacing:0.817632pt;}
.ws24{word-spacing:1.132928pt;}
.ws5b{word-spacing:1.148960pt;}
.ws28{word-spacing:1.159648pt;}
.ws69{word-spacing:1.448224pt;}
.ws63{word-spacing:1.469600pt;}
.ws65{word-spacing:1.747488pt;}
.ws5a{word-spacing:1.784896pt;}
.ws2a{word-spacing:1.795584pt;}
.ws2b{word-spacing:1.800928pt;}
.ws64{word-spacing:1.806272pt;}
.ws1d{word-spacing:2.084160pt;}
.ws1e{word-spacing:2.105536pt;}
.ws62{word-spacing:2.116224pt;}
.ws61{word-spacing:2.126912pt;}
.ws6d{word-spacing:2.415488pt;}
.ws20{word-spacing:2.420832pt;}
.ws72{word-spacing:2.426176pt;}
.ws6e{word-spacing:2.458240pt;}
.ws73{word-spacing:2.773536pt;}
.ws11{word-spacing:3.056768pt;}
.ws54{word-spacing:3.072800pt;}
.ws6f{word-spacing:3.398784pt;}
.ws70{word-spacing:3.409472pt;}
.ws57{word-spacing:4.323296pt;}
.ws4b{word-spacing:4.344672pt;}
.ws58{word-spacing:4.355360pt;}
.ws50{word-spacing:4.676000pt;}
.ws51{word-spacing:4.686688pt;}
.ws2c{word-spacing:4.980608pt;}
.ws55{word-spacing:5.301248pt;}
.ws56{word-spacing:5.327968pt;}
.ws53{word-spacing:5.616544pt;}
.ws52{word-spacing:5.627232pt;}
.ws4e{word-spacing:5.910464pt;}
.ws4c{word-spacing:5.931840pt;}
.ws14{word-spacing:5.947872pt;}
.ws13{word-spacing:5.953216pt;}
.ws4d{word-spacing:5.979936pt;}
.ws48{word-spacing:6.268512pt;}
.ws5d{word-spacing:6.567776pt;}
.ws5c{word-spacing:6.578464pt;}
.ws21{word-spacing:6.583808pt;}
.ws38{word-spacing:6.594496pt;}
.ws22{word-spacing:6.605184pt;}
.wsd{word-spacing:6.880000pt;}
.wse{word-spacing:6.892800pt;}
.ws12{word-spacing:6.899104pt;}
.ws2f{word-spacing:8.812256pt;}
.ws19{word-spacing:9.453536pt;}
.ws18{word-spacing:9.480256pt;}
.wsc{word-spacing:9.721600pt;}
.wsb{word-spacing:9.766400pt;}
.ws1b{word-spacing:10.736096pt;}
.ws1c{word-spacing:10.741440pt;}
.ws27{word-spacing:11.051392pt;}
.ws25{word-spacing:11.062080pt;}
.ws26{word-spacing:11.361344pt;}
.ws30{word-spacing:11.382720pt;}
.ws31{word-spacing:11.676640pt;}
.ws49{word-spacing:12.643904pt;}
.ws4a{word-spacing:12.665280pt;}
.ws66{word-spacing:12.991264pt;}
.ws2e{word-spacing:13.931808pt;}
.ws37{word-spacing:14.594464pt;}
.ws68{word-spacing:14.872352pt;}
.ws67{word-spacing:14.899072pt;}
.ws45{word-spacing:17.113600pt;}
.ws44{word-spacing:17.139200pt;}
.ws3a{word-spacing:18.110816pt;}
.ws1a{word-spacing:18.725376pt;}
.ws8{word-spacing:29.801632pt;}
.ws9{word-spacing:29.891104pt;}
.ws3e{word-spacing:32.918240pt;}
.ws3f{word-spacing:32.985344pt;}
.ws3b{word-spacing:143.871168pt;}
._7{margin-left:-2.588800pt;}
._1{margin-left:-0.908480pt;}
._2{width:0.889504pt;}
._6{width:31.040000pt;}
._3{width:38.400000pt;}
._4{width:41.280000pt;}
._5{width:48.000000pt;}
._0{width:364.218144pt;}
.fs3{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:66.346187pt;}
.y4{bottom:81.066627pt;}
.y3{bottom:95.787067pt;}
.y2{bottom:124.507067pt;}
.y6a{bottom:158.189427pt;}
.y37{bottom:161.387067pt;}
.yb4{bottom:162.347067pt;}
.y9b{bottom:170.907368pt;}
.y69{bottom:173.469259pt;}
.y36{bottom:177.229568pt;}
.yb1{bottom:182.108059pt;}
.y9a{bottom:186.187200pt;}
.y68{bottom:188.829251pt;}
.y35{bottom:192.589560pt;}
.yb0{bottom:200.507811pt;}
.y99{bottom:202.187200pt;}
.y67{bottom:204.189243pt;}
.y34{bottom:207.869392pt;}
.y98{bottom:218.029267pt;}
.yaf{bottom:218.907563pt;}
.y66{bottom:219.469075pt;}
.y33{bottom:223.229384pt;}
.y97{bottom:233.389259pt;}
.y65{bottom:234.829067pt;}
.yae{bottom:237.307315pt;}
.y32{bottom:238.589376pt;}
.yb3{bottom:243.308275pt;}
.y96{bottom:248.669091pt;}
.y64{bottom:250.108899pt;}
.y31{bottom:253.869208pt;}
.yb2{bottom:255.628331pt;}
.y95{bottom:264.029083pt;}
.y63{bottom:265.468891pt;}
.y30{bottom:269.229200pt;}
.yad{bottom:270.907067pt;}
.y94{bottom:279.389075pt;}
.y62{bottom:280.828883pt;}
.y2f{bottom:284.589192pt;}
.y93{bottom:294.668907pt;}
.y61{bottom:296.108715pt;}
.yac{bottom:296.347075pt;}
.y2e{bottom:299.869024pt;}
.y92{bottom:310.028899pt;}
.y60{bottom:311.468707pt;}
.yab{bottom:311.707067pt;}
.y2d{bottom:315.229016pt;}
.y91{bottom:325.388891pt;}
.y5f{bottom:326.828699pt;}
.y2c{bottom:330.589008pt;}
.ya8{bottom:332.588192pt;}
.y90{bottom:340.668723pt;}
.y5e{bottom:342.108531pt;}
.y2b{bottom:345.868840pt;}
.ya7{bottom:350.987944pt;}
.y8f{bottom:356.028715pt;}
.y5d{bottom:357.468523pt;}
.y2a{bottom:361.228832pt;}
.ya6{bottom:369.387696pt;}
.y8e{bottom:371.388707pt;}
.y5c{bottom:372.828515pt;}
.y29{bottom:376.588824pt;}
.y8d{bottom:386.668539pt;}
.ya5{bottom:387.787448pt;}
.y5b{bottom:388.108347pt;}
.y28{bottom:391.868656pt;}
.yaa{bottom:393.868208pt;}
.y8c{bottom:402.028531pt;}
.y5a{bottom:403.468339pt;}
.ya9{bottom:406.108464pt;}
.y27{bottom:407.228648pt;}
.y8b{bottom:417.308363pt;}
.y59{bottom:418.828331pt;}
.ya4{bottom:421.387067pt;}
.y26{bottom:422.508480pt;}
.y8a{bottom:432.668355pt;}
.y58{bottom:434.108163pt;}
.y25{bottom:437.868472pt;}
.y89{bottom:448.028347pt;}
.y57{bottom:449.468155pt;}
.y24{bottom:453.228464pt;}
.y88{bottom:463.308179pt;}
.y56{bottom:464.828147pt;}
.y23{bottom:468.508296pt;}
.y87{bottom:478.668171pt;}
.y55{bottom:480.107979pt;}
.y22{bottom:483.868288pt;}
.y86{bottom:494.028163pt;}
.y54{bottom:495.467971pt;}
.y21{bottom:499.228280pt;}
.y85{bottom:509.307995pt;}
.y53{bottom:510.827963pt;}
.y20{bottom:514.508112pt;}
.y84{bottom:524.667987pt;}
.y52{bottom:526.107795pt;}
.y1f{bottom:529.868104pt;}
.y83{bottom:540.027979pt;}
.y51{bottom:541.467787pt;}
.y1e{bottom:545.228096pt;}
.y82{bottom:555.307811pt;}
.y50{bottom:556.747619pt;}
.y1d{bottom:560.507928pt;}
.y81{bottom:570.667803pt;}
.y4f{bottom:572.107611pt;}
.y1c{bottom:575.867920pt;}
.y80{bottom:586.027795pt;}
.y4e{bottom:587.467603pt;}
.y1b{bottom:591.227912pt;}
.y7f{bottom:601.307627pt;}
.y4d{bottom:602.747435pt;}
.y1a{bottom:606.507744pt;}
.y7e{bottom:616.667619pt;}
.y4c{bottom:618.107427pt;}
.y19{bottom:621.867736pt;}
.y7d{bottom:632.027611pt;}
.y4b{bottom:633.467419pt;}
.y18{bottom:637.227728pt;}
.y7c{bottom:647.307443pt;}
.y4a{bottom:648.747251pt;}
.y17{bottom:652.507560pt;}
.y7b{bottom:662.667435pt;}
.y49{bottom:664.107243pt;}
.y16{bottom:667.867552pt;}
.y7a{bottom:678.027427pt;}
.y48{bottom:679.467235pt;}
.y15{bottom:683.227544pt;}
.y79{bottom:693.307259pt;}
.y47{bottom:694.747067pt;}
.y14{bottom:698.507376pt;}
.y78{bottom:708.667251pt;}
.y46{bottom:711.147731pt;}
.y13{bottom:713.867368pt;}
.y77{bottom:723.947083pt;}
.y12{bottom:729.147200pt;}
.y45{bottom:732.587459pt;}
.y76{bottom:739.307075pt;}
.y44{bottom:754.027187pt;}
.y75{bottom:754.667067pt;}
.y11{bottom:757.146680pt;}
.y10{bottom:770.667200pt;}
.y43{bottom:775.547067pt;}
.y74{bottom:782.586987pt;}
.yf{bottom:782.827200pt;}
.y42{bottom:795.947075pt;}
.y73{bottom:796.187067pt;}
.ye{bottom:801.227067pt;}
.y72{bottom:808.347067pt;}
.y41{bottom:811.307419pt;}
.yd{bottom:819.627067pt;}
.y71{bottom:826.667067pt;}
.y40{bottom:826.667411pt;}
.ya3{bottom:829.067075pt;}
.yc{bottom:839.147200pt;}
.y3f{bottom:841.947243pt;}
.ya2{bottom:844.427147pt;}
.y70{bottom:846.187067pt;}
.y3e{bottom:857.307235pt;}
.yb{bottom:857.467067pt;}
.ya1{bottom:860.507243pt;}
.y6f{bottom:866.107067pt;}
.y3d{bottom:872.587427pt;}
.ya0{bottom:875.867235pt;}
.ya{bottom:877.467067pt;}
.y6e{bottom:887.547067pt;}
.y3c{bottom:887.947419pt;}
.y9f{bottom:891.146987pt;}
.y9{bottom:898.907067pt;}
.y3b{bottom:903.307411pt;}
.y9e{bottom:907.307243pt;}
.y6d{bottom:909.067067pt;}
.y3a{bottom:918.587243pt;}
.y8{bottom:920.347067pt;}
.y9d{bottom:922.587075pt;}
.y39{bottom:933.867075pt;}
.y9c{bottom:937.947067pt;}
.y6c{bottom:938.347067pt;}
.y38{bottom:949.227067pt;}
.y7{bottom:949.627067pt;}
.y6b{bottom:951.865507pt;}
.y6{bottom:963.146035pt;}
.y1{bottom:976.987067pt;}
.h6{height:37.324219pt;}
.h4{height:39.048750pt;}
.h3{height:44.388750pt;}
.h9{height:50.062500pt;}
.h2{height:55.736250pt;}
.h8{height:58.405930pt;}
.h7{height:58.406570pt;}
.h5{height:66.750000pt;}
.h1{height:77.763750pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x3{left:64.000000pt;}
.x9{left:71.200000pt;}
.x10{left:73.440000pt;}
.xd{left:80.640000pt;}
.x5{left:86.640000pt;}
.x7{left:88.000000pt;}
.xa{left:93.840000pt;}
.xc{left:95.200000pt;}
.x6{left:110.480000pt;}
.xb{left:117.680000pt;}
.x1{left:251.200000pt;}
.x12{left:400.640216pt;}
.xf{left:407.840216pt;}
.x11{left:410.080024pt;}
.xe{left:417.280024pt;}
.x2{left:447.280000pt;}
.x4{left:573.680472pt;}
.x8{left:587.360320pt;}
}




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