
    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_9c028b9ffe28369bc5a2838e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_f62be2f36f9b0513778e0c48.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_2dc78e1f091e2f1fbb3c8399.woff')format("woff");}.ff3{font-family:ff3;line-height:0.683594;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_8186c431546a92b56cc47b39.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_34322b1e5a16ee9ab7ecb04c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.866211;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_1ff8e5da8888cfc715470b74.woff')format("woff");}.ff6{font-family:ff6;line-height:1.068848;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_3021d30fcc176599dc8de059.woff')format("woff");}.ff7{font-family:ff7;line-height:0.678711;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.v3{vertical-align:-14.616000px;}
.v4{vertical-align:-13.182000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v5{vertical-align:13.200000px;}
.ls21{letter-spacing:-7.560000px;}
.lsf{letter-spacing:-6.840000px;}
.ls1c{letter-spacing:-4.050000px;}
.ls29{letter-spacing:-2.772000px;}
.ls22{letter-spacing:-2.574000px;}
.ls2b{letter-spacing:-0.990000px;}
.ls17{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.504000px;}
.ls2c{letter-spacing:-0.396000px;}
.ls19{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.330000px;}
.ls18{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.198000px;}
.lse{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.066000px;}
.ls1b{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.132000px;}
.ls11{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.396000px;}
.ls15{letter-spacing:0.432000px;}
.ls27{letter-spacing:0.462000px;}
.lsc{letter-spacing:0.504000px;}
.ls28{letter-spacing:0.528000px;}
.lsd{letter-spacing:0.576000px;}
.ls1e{letter-spacing:0.648000px;}
.ls2f{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.792000px;}
.ls20{letter-spacing:0.864000px;}
.lsa{letter-spacing:0.936000px;}
.lsb{letter-spacing:1.008000px;}
.ls7{letter-spacing:1.080000px;}
.ls8{letter-spacing:1.152000px;}
.ls5{letter-spacing:1.296000px;}
.ls6{letter-spacing:1.440000px;}
.ls0{letter-spacing:4.200000px;}
.ls3{letter-spacing:4.380000px;}
.ls13{letter-spacing:4.608000px;}
.ls30{letter-spacing:4.642800px;}
.ls12{letter-spacing:4.680000px;}
.ls1a{letter-spacing:5.400000px;}
.ls1f{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls1d{letter-spacing:7.200000px;}
.ls26{letter-spacing:9.966000px;}
.ls2{letter-spacing:10.200000px;}
.ls32{letter-spacing:10.956000px;}
.ls24{letter-spacing:11.022000px;}
.ls2a{letter-spacing:11.154000px;}
.ls2e{letter-spacing:11.484000px;}
.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;}
}
.ws1a{word-spacing:-29.568000px;}
.ws15{word-spacing:-27.432000px;}
.ws2{word-spacing:-20.592000px;}
.ws8{word-spacing:-19.584000px;}
.ws4{word-spacing:-18.864000px;}
.ws18{word-spacing:-18.546000px;}
.ws17{word-spacing:-18.432000px;}
.ws13{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.496000px;}
.wsc{word-spacing:-17.424000px;}
.ws9{word-spacing:-17.136000px;}
.ws0{word-spacing:-16.860000px;}
.ws1b{word-spacing:-16.302000px;}
.ws7{word-spacing:-15.561000px;}
.ws1c{word-spacing:-14.820000px;}
.ws3{word-spacing:-12.355200px;}
.ws14{word-spacing:-12.139200px;}
.ws19{word-spacing:-11.127600px;}
.ws12{word-spacing:-0.792000px;}
.ws1{word-spacing:-0.432000px;}
.ws16{word-spacing:-0.072000px;}
.wsd{word-spacing:-0.066000px;}
.ws6{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wsb{word-spacing:0.288000px;}
.ws11{word-spacing:301.356000px;}
.wse{word-spacing:309.210000px;}
.ws10{word-spacing:312.378000px;}
.wsf{word-spacing:338.250000px;}
._17{margin-left:-22.260000px;}
._19{margin-left:-17.346000px;}
._18{margin-left:-12.018000px;}
._7{margin-left:-10.302000px;}
._1a{margin-left:-8.954400px;}
._b{margin-left:-7.918200px;}
._3{margin-left:-6.798000px;}
._1{margin-left:-5.610000px;}
._0{margin-left:-3.906000px;}
._4{margin-left:-2.160000px;}
._9{margin-left:-1.093200px;}
._5{width:1.020000px;}
._8{width:3.022200px;}
._2{width:4.620000px;}
._d{width:5.846400px;}
._6{width:7.242000px;}
._a{width:8.916000px;}
._c{width:10.512000px;}
._e{width:11.688000px;}
._1b{width:13.284000px;}
._16{width:14.856000px;}
._14{width:143.400000px;}
._10{width:193.824000px;}
._11{width:259.824000px;}
._12{width:261.552000px;}
._13{width:277.992000px;}
._15{width:307.494000px;}
._f{width:355.080000px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:39.600000px;}
.fs2{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs5{font-size:43.800000px;}
.fsb{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:76.325850px;}
.y1{bottom:76.337550px;}
.y58{bottom:144.639450px;}
.y79{bottom:144.837450px;}
.y42{bottom:145.312500px;}
.ya1{bottom:145.710000px;}
.y1f{bottom:146.556150px;}
.y78{bottom:164.484450px;}
.y57{bottom:165.933450px;}
.y1e{bottom:166.054650px;}
.y41{bottom:168.262500px;}
.ya0{bottom:173.961000px;}
.y77{bottom:184.135950px;}
.y1d{bottom:185.553150px;}
.y56{bottom:187.227450px;}
.y40{bottom:191.212500px;}
.y9f{bottom:193.315500px;}
.y76{bottom:203.787450px;}
.y1c{bottom:205.051650px;}
.y55{bottom:208.521450px;}
.y9e{bottom:212.670000px;}
.y3f{bottom:214.162500px;}
.y75{bottom:223.438950px;}
.y1b{bottom:224.550150px;}
.y54{bottom:229.815450px;}
.y9d{bottom:232.024500px;}
.y3e{bottom:237.112500px;}
.y1a{bottom:244.048650px;}
.y53{bottom:251.109450px;}
.y9c{bottom:251.379000px;}
.y74{bottom:251.592900px;}
.y3d{bottom:260.062500px;}
.y9b{bottom:270.733500px;}
.y52{bottom:272.403450px;}
.y3c{bottom:283.012500px;}
.y19{bottom:283.096650px;}
.y9a{bottom:290.088000px;}
.y51{bottom:293.697450px;}
.y73{bottom:299.324850px;}
.y3b{bottom:305.962500px;}
.y18{bottom:306.190650px;}
.y99{bottom:309.442500px;}
.y50{bottom:314.991450px;}
.y72{bottom:320.780850px;}
.y98{bottom:328.797000px;}
.y3a{bottom:328.912500px;}
.y17{bottom:329.284650px;}
.y4f{bottom:336.285450px;}
.y71{bottom:342.236850px;}
.y97{bottom:348.151500px;}
.y39{bottom:351.862500px;}
.y16{bottom:352.378650px;}
.y4e{bottom:357.579450px;}
.y70{bottom:363.692850px;}
.yba{bottom:364.808550px;}
.y96{bottom:367.506000px;}
.y38{bottom:374.812500px;}
.y15{bottom:375.472650px;}
.y4d{bottom:378.873450px;}
.yb9{bottom:382.808550px;}
.y6f{bottom:385.148850px;}
.y95{bottom:386.860500px;}
.y37{bottom:397.762500px;}
.y14{bottom:398.566650px;}
.y4c{bottom:400.167450px;}
.yb8{bottom:400.808550px;}
.y94{bottom:406.215000px;}
.y6e{bottom:406.604850px;}
.yb7{bottom:418.808550px;}
.y36{bottom:420.712500px;}
.y4b{bottom:421.461450px;}
.y13{bottom:421.660650px;}
.y93{bottom:425.569500px;}
.y6d{bottom:428.060850px;}
.y35{bottom:443.662500px;}
.y12{bottom:444.754650px;}
.y92{bottom:444.924000px;}
.y6c{bottom:449.516850px;}
.yb6{bottom:458.408550px;}
.y91{bottom:464.278500px;}
.y34{bottom:466.612500px;}
.y11{bottom:467.902650px;}
.y6b{bottom:470.972850px;}
.y4a{bottom:472.565400px;}
.yb5{bottom:478.208550px;}
.y90{bottom:483.633000px;}
.y33{bottom:489.562500px;}
.y10{bottom:490.996650px;}
.y6a{bottom:492.428850px;}
.y8f{bottom:502.987500px;}
.y32{bottom:512.512500px;}
.y69{bottom:513.884850px;}
.yf{bottom:514.090650px;}
.yb4{bottom:519.608550px;}
.y8e{bottom:522.342000px;}
.y68{bottom:535.340850px;}
.y31{bottom:535.462500px;}
.ye{bottom:537.184650px;}
.yb3{bottom:539.408550px;}
.y8d{bottom:541.696500px;}
.y67{bottom:556.796850px;}
.y30{bottom:558.412500px;}
.yb2{bottom:559.208550px;}
.yd{bottom:560.278650px;}
.y8c{bottom:561.051000px;}
.yb1{bottom:579.008550px;}
.y8b{bottom:580.405500px;}
.y2f{bottom:581.362500px;}
.yc{bottom:583.372650px;}
.y66{bottom:586.750800px;}
.yb0{bottom:598.808550px;}
.y8a{bottom:599.760000px;}
.y2e{bottom:604.312500px;}
.yb{bottom:606.466650px;}
.yaf{bottom:618.608550px;}
.y89{bottom:619.065000px;}
.y2d{bottom:627.262500px;}
.ya{bottom:629.560650px;}
.yae{bottom:638.408550px;}
.y88{bottom:638.419500px;}
.y2c{bottom:650.212500px;}
.y9{bottom:652.654650px;}
.y87{bottom:657.774000px;}
.yad{bottom:658.208550px;}
.y65{bottom:672.106800px;}
.y8{bottom:675.748650px;}
.y86{bottom:677.128500px;}
.yac{bottom:678.008550px;}
.y2b{bottom:692.151750px;}
.y64{bottom:693.406800px;}
.y85{bottom:696.483000px;}
.yab{bottom:697.808550px;}
.y2a{bottom:711.508500px;}
.y63{bottom:714.706800px;}
.y84{bottom:715.837500px;}
.yaa{bottom:717.608550px;}
.y29{bottom:730.865250px;}
.y83{bottom:735.192000px;}
.y62{bottom:736.054800px;}
.ya9{bottom:737.408550px;}
.y28{bottom:750.222000px;}
.y82{bottom:754.546500px;}
.ya8{bottom:757.208550px;}
.y61{bottom:757.348800px;}
.y7{bottom:763.648650px;}
.y27{bottom:769.578750px;}
.y81{bottom:773.901000px;}
.ya7{bottom:777.008550px;}
.y60{bottom:778.642800px;}
.y49{bottom:781.141650px;}
.y6{bottom:783.448650px;}
.y26{bottom:788.935500px;}
.y80{bottom:793.255500px;}
.ya6{bottom:796.808550px;}
.y5f{bottom:799.936800px;}
.y25{bottom:808.292250px;}
.y48{bottom:809.488650px;}
.y7f{bottom:812.601000px;}
.ya5{bottom:816.608550px;}
.y5e{bottom:821.230800px;}
.y5{bottom:824.848650px;}
.y24{bottom:827.649000px;}
.y7e{bottom:831.955500px;}
.ya4{bottom:836.408550px;}
.y47{bottom:837.835650px;}
.y5d{bottom:842.524800px;}
.y23{bottom:847.005750px;}
.y7d{bottom:851.301000px;}
.y4{bottom:855.448650px;}
.y5c{bottom:863.818800px;}
.y46{bottom:866.182650px;}
.y22{bottom:866.362500px;}
.y7c{bottom:870.655500px;}
.ya3{bottom:877.808550px;}
.y5b{bottom:885.112800px;}
.y7b{bottom:890.001000px;}
.y45{bottom:894.529650px;}
.y21{bottom:904.762500px;}
.ya2{bottom:906.112500px;}
.y5a{bottom:906.406800px;}
.y7a{bottom:909.355500px;}
.y3{bottom:910.710000px;}
.y59{bottom:927.700800px;}
.y20{bottom:927.712500px;}
.y44{bottom:928.698300px;}
.y2{bottom:928.710000px;}
.h3{height:35.663086px;}
.h6{height:37.191504px;}
.hb{height:40.757812px;}
.h2{height:41.396484px;}
.h4{height:43.989258px;}
.h10{height:48.399902px;}
.h9{height:49.675781px;}
.h12{height:49.980469px;}
.hd{height:50.947266px;}
.ha{height:53.494629px;}
.h11{height:54.978516px;}
.h7{height:56.041992px;}
.he{height:56.059992px;}
.hf{height:56.077992px;}
.hc{height:59.976562px;}
.h8{height:61.136719px;}
.h5{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:76.519200px;}
.x1{left:97.795350px;}
.x9{left:105.887400px;}
.x4{left:119.052900px;}
.x8{left:137.418900px;}
.xa{left:140.324700px;}
.x2{left:150.670350px;}
.xc{left:157.729950px;}
.x3{left:216.894900px;}
.x5{left:269.251650px;}
.xb{left:540.203550px;}
.x6{left:572.164350px;}
@media print{
.v3{vertical-align:-12.992000pt;}
.v4{vertical-align:-11.717333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v5{vertical-align:11.733333pt;}
.ls21{letter-spacing:-6.720000pt;}
.lsf{letter-spacing:-6.080000pt;}
.ls1c{letter-spacing:-3.600000pt;}
.ls29{letter-spacing:-2.464000pt;}
.ls22{letter-spacing:-2.288000pt;}
.ls2b{letter-spacing:-0.880000pt;}
.ls17{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.448000pt;}
.ls2c{letter-spacing:-0.352000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.293333pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.176000pt;}
.lse{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.058667pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.117333pt;}
.ls11{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.352000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls27{letter-spacing:0.410667pt;}
.lsc{letter-spacing:0.448000pt;}
.ls28{letter-spacing:0.469333pt;}
.lsd{letter-spacing:0.512000pt;}
.ls1e{letter-spacing:0.576000pt;}
.ls2f{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.704000pt;}
.ls20{letter-spacing:0.768000pt;}
.lsa{letter-spacing:0.832000pt;}
.lsb{letter-spacing:0.896000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls8{letter-spacing:1.024000pt;}
.ls5{letter-spacing:1.152000pt;}
.ls6{letter-spacing:1.280000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls3{letter-spacing:3.893333pt;}
.ls13{letter-spacing:4.096000pt;}
.ls30{letter-spacing:4.126933pt;}
.ls12{letter-spacing:4.160000pt;}
.ls1a{letter-spacing:4.800000pt;}
.ls1f{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls1d{letter-spacing:6.400000pt;}
.ls26{letter-spacing:8.858667pt;}
.ls2{letter-spacing:9.066667pt;}
.ls32{letter-spacing:9.738667pt;}
.ls24{letter-spacing:9.797333pt;}
.ls2a{letter-spacing:9.914667pt;}
.ls2e{letter-spacing:10.208000pt;}
.ws1a{word-spacing:-26.282667pt;}
.ws15{word-spacing:-24.384000pt;}
.ws2{word-spacing:-18.304000pt;}
.ws8{word-spacing:-17.408000pt;}
.ws4{word-spacing:-16.768000pt;}
.ws18{word-spacing:-16.485333pt;}
.ws17{word-spacing:-16.384000pt;}
.ws13{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.552000pt;}
.wsc{word-spacing:-15.488000pt;}
.ws9{word-spacing:-15.232000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws1b{word-spacing:-14.490667pt;}
.ws7{word-spacing:-13.832000pt;}
.ws1c{word-spacing:-13.173333pt;}
.ws3{word-spacing:-10.982400pt;}
.ws14{word-spacing:-10.790400pt;}
.ws19{word-spacing:-9.891200pt;}
.ws12{word-spacing:-0.704000pt;}
.ws1{word-spacing:-0.384000pt;}
.ws16{word-spacing:-0.064000pt;}
.wsd{word-spacing:-0.058667pt;}
.ws6{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wsb{word-spacing:0.256000pt;}
.ws11{word-spacing:267.872000pt;}
.wse{word-spacing:274.853333pt;}
.ws10{word-spacing:277.669333pt;}
.wsf{word-spacing:300.666667pt;}
._17{margin-left:-19.786667pt;}
._19{margin-left:-15.418667pt;}
._18{margin-left:-10.682667pt;}
._7{margin-left:-9.157333pt;}
._1a{margin-left:-7.959467pt;}
._b{margin-left:-7.038400pt;}
._3{margin-left:-6.042667pt;}
._1{margin-left:-4.986667pt;}
._0{margin-left:-3.472000pt;}
._4{margin-left:-1.920000pt;}
._9{margin-left:-0.971733pt;}
._5{width:0.906667pt;}
._8{width:2.686400pt;}
._2{width:4.106667pt;}
._d{width:5.196800pt;}
._6{width:6.437333pt;}
._a{width:7.925333pt;}
._c{width:9.344000pt;}
._e{width:10.389333pt;}
._1b{width:11.808000pt;}
._16{width:13.205333pt;}
._14{width:127.466667pt;}
._10{width:172.288000pt;}
._11{width:230.954667pt;}
._12{width:232.490667pt;}
._13{width:247.104000pt;}
._15{width:273.328000pt;}
._f{width:315.626667pt;}
.fsa{font-size:35.200000pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs5{font-size:38.933333pt;}
.fsb{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:67.845200pt;}
.y1{bottom:67.855600pt;}
.y58{bottom:128.568400pt;}
.y79{bottom:128.744400pt;}
.y42{bottom:129.166667pt;}
.ya1{bottom:129.520000pt;}
.y1f{bottom:130.272133pt;}
.y78{bottom:146.208400pt;}
.y57{bottom:147.496400pt;}
.y1e{bottom:147.604133pt;}
.y41{bottom:149.566667pt;}
.ya0{bottom:154.632000pt;}
.y77{bottom:163.676400pt;}
.y1d{bottom:164.936133pt;}
.y56{bottom:166.424400pt;}
.y40{bottom:169.966667pt;}
.y9f{bottom:171.836000pt;}
.y76{bottom:181.144400pt;}
.y1c{bottom:182.268133pt;}
.y55{bottom:185.352400pt;}
.y9e{bottom:189.040000pt;}
.y3f{bottom:190.366667pt;}
.y75{bottom:198.612400pt;}
.y1b{bottom:199.600133pt;}
.y54{bottom:204.280400pt;}
.y9d{bottom:206.244000pt;}
.y3e{bottom:210.766667pt;}
.y1a{bottom:216.932133pt;}
.y53{bottom:223.208400pt;}
.y9c{bottom:223.448000pt;}
.y74{bottom:223.638133pt;}
.y3d{bottom:231.166667pt;}
.y9b{bottom:240.652000pt;}
.y52{bottom:242.136400pt;}
.y3c{bottom:251.566667pt;}
.y19{bottom:251.641467pt;}
.y9a{bottom:257.856000pt;}
.y51{bottom:261.064400pt;}
.y73{bottom:266.066533pt;}
.y3b{bottom:271.966667pt;}
.y18{bottom:272.169467pt;}
.y99{bottom:275.060000pt;}
.y50{bottom:279.992400pt;}
.y72{bottom:285.138533pt;}
.y98{bottom:292.264000pt;}
.y3a{bottom:292.366667pt;}
.y17{bottom:292.697467pt;}
.y4f{bottom:298.920400pt;}
.y71{bottom:304.210533pt;}
.y97{bottom:309.468000pt;}
.y39{bottom:312.766667pt;}
.y16{bottom:313.225467pt;}
.y4e{bottom:317.848400pt;}
.y70{bottom:323.282533pt;}
.yba{bottom:324.274267pt;}
.y96{bottom:326.672000pt;}
.y38{bottom:333.166667pt;}
.y15{bottom:333.753467pt;}
.y4d{bottom:336.776400pt;}
.yb9{bottom:340.274267pt;}
.y6f{bottom:342.354533pt;}
.y95{bottom:343.876000pt;}
.y37{bottom:353.566667pt;}
.y14{bottom:354.281467pt;}
.y4c{bottom:355.704400pt;}
.yb8{bottom:356.274267pt;}
.y94{bottom:361.080000pt;}
.y6e{bottom:361.426533pt;}
.yb7{bottom:372.274267pt;}
.y36{bottom:373.966667pt;}
.y4b{bottom:374.632400pt;}
.y13{bottom:374.809467pt;}
.y93{bottom:378.284000pt;}
.y6d{bottom:380.498533pt;}
.y35{bottom:394.366667pt;}
.y12{bottom:395.337467pt;}
.y92{bottom:395.488000pt;}
.y6c{bottom:399.570533pt;}
.yb6{bottom:407.474267pt;}
.y91{bottom:412.692000pt;}
.y34{bottom:414.766667pt;}
.y11{bottom:415.913467pt;}
.y6b{bottom:418.642533pt;}
.y4a{bottom:420.058133pt;}
.yb5{bottom:425.074267pt;}
.y90{bottom:429.896000pt;}
.y33{bottom:435.166667pt;}
.y10{bottom:436.441467pt;}
.y6a{bottom:437.714533pt;}
.y8f{bottom:447.100000pt;}
.y32{bottom:455.566667pt;}
.y69{bottom:456.786533pt;}
.yf{bottom:456.969467pt;}
.yb4{bottom:461.874267pt;}
.y8e{bottom:464.304000pt;}
.y68{bottom:475.858533pt;}
.y31{bottom:475.966667pt;}
.ye{bottom:477.497467pt;}
.yb3{bottom:479.474267pt;}
.y8d{bottom:481.508000pt;}
.y67{bottom:494.930533pt;}
.y30{bottom:496.366667pt;}
.yb2{bottom:497.074267pt;}
.yd{bottom:498.025467pt;}
.y8c{bottom:498.712000pt;}
.yb1{bottom:514.674267pt;}
.y8b{bottom:515.916000pt;}
.y2f{bottom:516.766667pt;}
.yc{bottom:518.553467pt;}
.y66{bottom:521.556267pt;}
.yb0{bottom:532.274267pt;}
.y8a{bottom:533.120000pt;}
.y2e{bottom:537.166667pt;}
.yb{bottom:539.081467pt;}
.yaf{bottom:549.874267pt;}
.y89{bottom:550.280000pt;}
.y2d{bottom:557.566667pt;}
.ya{bottom:559.609467pt;}
.yae{bottom:567.474267pt;}
.y88{bottom:567.484000pt;}
.y2c{bottom:577.966667pt;}
.y9{bottom:580.137467pt;}
.y87{bottom:584.688000pt;}
.yad{bottom:585.074267pt;}
.y65{bottom:597.428267pt;}
.y8{bottom:600.665467pt;}
.y86{bottom:601.892000pt;}
.yac{bottom:602.674267pt;}
.y2b{bottom:615.246000pt;}
.y64{bottom:616.361600pt;}
.y85{bottom:619.096000pt;}
.yab{bottom:620.274267pt;}
.y2a{bottom:632.452000pt;}
.y63{bottom:635.294933pt;}
.y84{bottom:636.300000pt;}
.yaa{bottom:637.874267pt;}
.y29{bottom:649.658000pt;}
.y83{bottom:653.504000pt;}
.y62{bottom:654.270933pt;}
.ya9{bottom:655.474267pt;}
.y28{bottom:666.864000pt;}
.y82{bottom:670.708000pt;}
.ya8{bottom:673.074267pt;}
.y61{bottom:673.198933pt;}
.y7{bottom:678.798800pt;}
.y27{bottom:684.070000pt;}
.y81{bottom:687.912000pt;}
.ya7{bottom:690.674267pt;}
.y60{bottom:692.126933pt;}
.y49{bottom:694.348133pt;}
.y6{bottom:696.398800pt;}
.y26{bottom:701.276000pt;}
.y80{bottom:705.116000pt;}
.ya6{bottom:708.274267pt;}
.y5f{bottom:711.054933pt;}
.y25{bottom:718.482000pt;}
.y48{bottom:719.545467pt;}
.y7f{bottom:722.312000pt;}
.ya5{bottom:725.874267pt;}
.y5e{bottom:729.982933pt;}
.y5{bottom:733.198800pt;}
.y24{bottom:735.688000pt;}
.y7e{bottom:739.516000pt;}
.ya4{bottom:743.474267pt;}
.y47{bottom:744.742800pt;}
.y5d{bottom:748.910933pt;}
.y23{bottom:752.894000pt;}
.y7d{bottom:756.712000pt;}
.y4{bottom:760.398800pt;}
.y5c{bottom:767.838933pt;}
.y46{bottom:769.940133pt;}
.y22{bottom:770.100000pt;}
.y7c{bottom:773.916000pt;}
.ya3{bottom:780.274267pt;}
.y5b{bottom:786.766933pt;}
.y7b{bottom:791.112000pt;}
.y45{bottom:795.137467pt;}
.y21{bottom:804.233333pt;}
.ya2{bottom:805.433333pt;}
.y5a{bottom:805.694933pt;}
.y7a{bottom:808.316000pt;}
.y3{bottom:809.520000pt;}
.y59{bottom:824.622933pt;}
.y20{bottom:824.633333pt;}
.y44{bottom:825.509600pt;}
.y2{bottom:825.520000pt;}
.h3{height:31.700521pt;}
.h6{height:33.059115pt;}
.hb{height:36.229167pt;}
.h2{height:36.796875pt;}
.h4{height:39.101562pt;}
.h10{height:43.022135pt;}
.h9{height:44.156250pt;}
.h12{height:44.427083pt;}
.hd{height:45.286458pt;}
.ha{height:47.550781pt;}
.h11{height:48.869792pt;}
.h7{height:49.815104pt;}
.he{height:49.831104pt;}
.hf{height:49.847104pt;}
.hc{height:53.312500pt;}
.h8{height:54.343750pt;}
.h5{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:68.017067pt;}
.x1{left:86.929200pt;}
.x9{left:94.122133pt;}
.x4{left:105.824800pt;}
.x8{left:122.150133pt;}
.xa{left:124.733067pt;}
.x2{left:133.929200pt;}
.xc{left:140.204400pt;}
.x3{left:192.795467pt;}
.x5{left:239.334800pt;}
.xb{left:480.180933pt;}
.x6{left:508.590533pt;}
}




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