
    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_1702ba56d0da7523dbba86ca.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_dd76fd53e88db4c35d1d4fec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_60ed4214acda43be9ca00f53.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b336fb692cdd75259187892f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.882324;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.600000px;}
.v3{vertical-align:-7.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:7.200000px;}
.v1{vertical-align:27.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.024000px;}
.ls1{letter-spacing:0.132000px;}
.ls3{letter-spacing:0.204000px;}
.ls4{letter-spacing:0.462000px;}
.ls2{letter-spacing:0.684000px;}
.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;}
}
.ws4{word-spacing:-15.048000px;}
.ws1{word-spacing:-14.916000px;}
.ws0{word-spacing:-8.678400px;}
.ws3{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-1.286400px;}
._4{width:1.650000px;}
._5{width:3.266400px;}
._1{width:4.422000px;}
._2{width:5.544000px;}
._6{width:7.453200px;}
._0{width:9.405600px;}
._d{width:10.410000px;}
._8{width:11.422800px;}
._a{width:12.525600px;}
._11{width:13.741200px;}
._7{width:16.566000px;}
._9{width:17.754000px;}
._b{width:18.810000px;}
._c{width:20.064000px;}
._f{width:21.912000px;}
._e{width:23.539200px;}
._10{width:43.705200px;}
._16{width:74.628000px;}
._15{width:88.092000px;}
._14{width:103.008000px;}
._13{width:121.488000px;}
._12{width:136.404000px;}
.fc1{color:rgb(54,95,145);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.400000px;}
.fs0{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1a{bottom:77.341500px;}
.y10a{bottom:99.091500px;}
.yc6{bottom:104.041500px;}
.ydf{bottom:107.341500px;}
.y8e{bottom:107.941500px;}
.y146{bottom:115.741500px;}
.y3e{bottom:116.641500px;}
.ya8{bottom:116.941500px;}
.y65{bottom:118.291500px;}
.yc5{bottom:127.291500px;}
.yde{bottom:130.591500px;}
.y8d{bottom:131.041500px;}
.y109{bottom:131.341500px;}
.y126{bottom:132.091500px;}
.y145{bottom:138.991500px;}
.y3d{bottom:139.741500px;}
.ya7{bottom:140.041500px;}
.y64{bottom:141.391500px;}
.yc4{bottom:150.391500px;}
.ydd{bottom:153.691500px;}
.y8c{bottom:154.291500px;}
.y108{bottom:154.441500px;}
.y125{bottom:155.341500px;}
.y3c{bottom:162.991500px;}
.ya6{bottom:163.291500px;}
.y63{bottom:164.641500px;}
.y144{bottom:171.091500px;}
.yc3{bottom:173.641500px;}
.ydc{bottom:176.941500px;}
.y8b{bottom:177.391500px;}
.y3b{bottom:186.091500px;}
.ya5{bottom:186.391500px;}
.y107{bottom:186.691500px;}
.y124{bottom:187.441500px;}
.y143{bottom:194.341500px;}
.y62{bottom:196.741500px;}
.ydb{bottom:200.041500px;}
.y8a{bottom:200.641500px;}
.yc2{bottom:205.741500px;}
.y3a{bottom:209.341500px;}
.y9e{bottom:209.641500px;}
.y142{bottom:217.441500px;}
.y106{bottom:218.791500px;}
.y123{bottom:219.691500px;}
.y61{bottom:219.991500px;}
.yda{bottom:223.291500px;}
.y89{bottom:223.741500px;}
.yc1{bottom:228.991500px;}
.y39{bottom:232.441500px;}
.y9d{bottom:232.741500px;}
.y141{bottom:240.691500px;}
.y105{bottom:242.041500px;}
.y122{bottom:242.791500px;}
.y60{bottom:243.091500px;}
.yd9{bottom:246.391500px;}
.y88{bottom:246.991500px;}
.yc0{bottom:252.091500px;}
.y38{bottom:255.691500px;}
.y9c{bottom:255.991500px;}
.y121{bottom:266.041500px;}
.y5f{bottom:266.341500px;}
.y87{bottom:270.091500px;}
.y140{bottom:272.791500px;}
.y104{bottom:274.141500px;}
.ybf{bottom:275.341500px;}
.yd8{bottom:278.641500px;}
.y37{bottom:278.791500px;}
.y9b{bottom:279.091500px;}
.y120{bottom:289.141500px;}
.y5e{bottom:289.441500px;}
.y86{bottom:293.341500px;}
.y13f{bottom:296.041500px;}
.ybe{bottom:298.441500px;}
.yd7{bottom:301.741500px;}
.y36{bottom:302.041500px;}
.y9a{bottom:302.341500px;}
.y103{bottom:306.391500px;}
.ya4{bottom:311.341500px;}
.y5d{bottom:312.691500px;}
.y11f{bottom:321.391500px;}
.ybd{bottom:321.691500px;}
.yd6{bottom:324.991500px;}
.y35{bottom:325.141500px;}
.y85{bottom:325.441500px;}
.y13e{bottom:328.141500px;}
.y102{bottom:329.491500px;}
.ya3{bottom:334.441500px;}
.y5c{bottom:335.791500px;}
.y11e{bottom:344.491500px;}
.ybc{bottom:344.791500px;}
.yd5{bottom:348.091500px;}
.y34{bottom:348.391500px;}
.y84{bottom:348.691500px;}
.ya2{bottom:357.691500px;}
.y5b{bottom:359.041500px;}
.y13d{bottom:360.391500px;}
.y101{bottom:361.741500px;}
.y11d{bottom:367.741500px;}
.ybb{bottom:368.041500px;}
.yd4{bottom:371.341500px;}
.y83{bottom:371.791500px;}
.y33{bottom:380.491500px;}
.ya1{bottom:380.791500px;}
.y5a{bottom:382.141500px;}
.y13c{bottom:383.491500px;}
.yba{bottom:391.141500px;}
.y100{bottom:393.841500px;}
.yd3{bottom:394.441500px;}
.y82{bottom:395.041500px;}
.y11c{bottom:399.841500px;}
.y159{bottom:402.841500px;}
.y32{bottom:403.741500px;}
.y99{bottom:404.041500px;}
.y59{bottom:405.391500px;}
.y13b{bottom:406.741500px;}
.yff{bottom:417.091500px;}
.yd2{bottom:417.691500px;}
.y81{bottom:418.141500px;}
.yb9{bottom:421.141500px;}
.y158{bottom:426.091500px;}
.y31{bottom:426.841500px;}
.y98{bottom:427.141500px;}
.y11b{bottom:432.091500px;}
.y58{bottom:437.491500px;}
.y13a{bottom:438.841500px;}
.yd1{bottom:440.791500px;}
.yfe{bottom:449.191500px;}
.y30{bottom:450.091500px;}
.y80{bottom:450.391500px;}
.y11a{bottom:455.191500px;}
.y157{bottom:458.191500px;}
.yb8{bottom:460.741500px;}
.y139{bottom:462.091500px;}
.yd0{bottom:464.041500px;}
.y19{bottom:464.191500px;}
.yfd{bottom:472.441500px;}
.y2f{bottom:473.191500px;}
.y7f{bottom:473.491500px;}
.y16b{bottom:479.191500px;}
.y156{bottom:481.441500px;}
.yb7{bottom:483.841500px;}
.ye7{bottom:486.841500px;}
.ycf{bottom:487.141500px;}
.y18{bottom:487.441500px;}
.y138{bottom:494.191500px;}
.yfc{bottom:495.541500px;}
.y2e{bottom:496.441500px;}
.y7e{bottom:496.741500px;}
.y57{bottom:501.841500px;}
.y16a{bottom:502.441500px;}
.y17{bottom:510.541500px;}
.yce{bottom:510.841500px;}
.y155{bottom:513.541500px;}
.yb6{bottom:516.091500px;}
.y137{bottom:517.441500px;}
.y2d{bottom:519.541500px;}
.y7d{bottom:519.841500px;}
.y56{bottom:525.091500px;}
.y169{bottom:525.541500px;}
.yfb{bottom:527.791500px;}
.y16{bottom:533.791500px;}
.ycd{bottom:534.091500px;}
.y154{bottom:536.791500px;}
.yb5{bottom:539.191500px;}
.y2c{bottom:542.791500px;}
.y7c{bottom:543.091500px;}
.y55{bottom:548.191500px;}
.y168{bottom:548.791500px;}
.y136{bottom:549.541500px;}
.yfa{bottom:550.891500px;}
.y15{bottom:556.891500px;}
.ycc{bottom:557.191500px;}
.yb4{bottom:562.441500px;}
.y2b{bottom:565.891500px;}
.y7b{bottom:566.191500px;}
.y153{bottom:568.891500px;}
.y54{bottom:571.441500px;}
.y167{bottom:571.891500px;}
.y135{bottom:572.791500px;}
.y119{bottom:574.891500px;}
.y14{bottom:580.141500px;}
.ycb{bottom:580.441500px;}
.yf9{bottom:583.141500px;}
.yb3{bottom:585.541500px;}
.y2a{bottom:589.141500px;}
.y97{bottom:589.441500px;}
.y53{bottom:594.541500px;}
.y118{bottom:598.141500px;}
.y7a{bottom:598.441500px;}
.y152{bottom:601.141500px;}
.y13{bottom:603.241500px;}
.yca{bottom:603.541500px;}
.y134{bottom:604.891500px;}
.yf8{bottom:606.241500px;}
.yb2{bottom:608.791500px;}
.y166{bottom:610.141500px;}
.y29{bottom:612.241500px;}
.y96{bottom:612.541500px;}
.y52{bottom:617.791500px;}
.y79{bottom:621.541500px;}
.y151{bottom:624.241500px;}
.y12{bottom:626.491500px;}
.ye6{bottom:626.791500px;}
.y133{bottom:628.141500px;}
.y117{bottom:630.241500px;}
.yb1{bottom:631.891500px;}
.y165{bottom:633.241500px;}
.y28{bottom:635.491500px;}
.y95{bottom:635.791500px;}
.yf7{bottom:638.491500px;}
.y51{bottom:640.891500px;}
.y78{bottom:644.791500px;}
.y11{bottom:649.591500px;}
.ye5{bottom:649.891500px;}
.y132{bottom:651.241500px;}
.yb0{bottom:655.141500px;}
.y150{bottom:656.491500px;}
.y27{bottom:658.591500px;}
.y94{bottom:658.891500px;}
.yf6{bottom:661.591500px;}
.y116{bottom:662.491500px;}
.y50{bottom:664.141500px;}
.y77{bottom:667.891500px;}
.y10{bottom:672.841500px;}
.ye4{bottom:673.141500px;}
.y131{bottom:674.491500px;}
.yaf{bottom:678.241500px;}
.y14f{bottom:679.591500px;}
.y93{bottom:682.141500px;}
.y4f{bottom:687.241500px;}
.y26{bottom:690.841500px;}
.y76{bottom:691.141500px;}
.yf5{bottom:693.841500px;}
.y115{bottom:694.591500px;}
.yf{bottom:695.941500px;}
.ye3{bottom:696.241500px;}
.yae{bottom:701.491500px;}
.y164{bottom:702.841500px;}
.y92{bottom:705.241500px;}
.y130{bottom:706.591500px;}
.y4e{bottom:710.491500px;}
.y14e{bottom:711.841500px;}
.y75{bottom:714.241500px;}
.y114{bottom:717.841500px;}
.ye{bottom:719.191500px;}
.ye2{bottom:719.491500px;}
.yf4{bottom:725.941500px;}
.y91{bottom:728.491500px;}
.y12f{bottom:729.841500px;}
.y4d{bottom:733.591500px;}
.y14d{bottom:734.941500px;}
.y74{bottom:737.491500px;}
.y113{bottom:740.941500px;}
.yd{bottom:742.291500px;}
.ye1{bottom:742.591500px;}
.y90{bottom:751.591500px;}
.yad{bottom:756.841500px;}
.yf3{bottom:758.191500px;}
.y73{bottom:760.591500px;}
.y25{bottom:761.191500px;}
.y12e{bottom:761.941500px;}
.y163{bottom:764.191500px;}
.yc{bottom:765.541500px;}
.y4c{bottom:765.841500px;}
.y14c{bottom:767.191500px;}
.y112{bottom:773.191500px;}
.y8f{bottom:774.841500px;}
.yac{bottom:779.941500px;}
.yf2{bottom:781.291500px;}
.y72{bottom:783.841500px;}
.y24{bottom:784.291500px;}
.y12d{bottom:785.191500px;}
.y162{bottom:787.291500px;}
.yb{bottom:788.641500px;}
.y4b{bottom:788.941500px;}
.y111{bottom:796.291500px;}
.y14b{bottom:799.291500px;}
.yab{bottom:803.191500px;}
.yf1{bottom:804.541500px;}
.y71{bottom:806.941500px;}
.y23{bottom:807.541500px;}
.y161{bottom:810.541500px;}
.ya{bottom:811.891500px;}
.y4a{bottom:812.191500px;}
.y12c{bottom:817.291500px;}
.y14a{bottom:822.541500px;}
.y110{bottom:825.541500px;}
.yaa{bottom:826.291500px;}
.y70{bottom:830.191500px;}
.y22{bottom:830.641500px;}
.y49{bottom:835.291500px;}
.yf0{bottom:836.641500px;}
.y12b{bottom:840.541500px;}
.y10f{bottom:845.641500px;}
.y160{bottom:848.641500px;}
.y9{bottom:849.991500px;}
.y6f{bottom:853.291500px;}
.y21{bottom:853.891500px;}
.y149{bottom:854.641500px;}
.y48{bottom:858.541500px;}
.yef{bottom:859.891500px;}
.y15f{bottom:871.891500px;}
.y12a{bottom:872.641500px;}
.y6e{bottom:876.541500px;}
.y10e{bottom:877.891500px;}
.y47{bottom:881.641500px;}
.y148{bottom:886.891500px;}
.yee{bottom:891.991500px;}
.y129{bottom:895.891500px;}
.y6d{bottom:899.641500px;}
.y46{bottom:904.891500px;}
.y10d{bottom:909.991500px;}
.y20{bottom:922.741500px;}
.y6c{bottom:922.891500px;}
.yed{bottom:924.241500px;}
.y8{bottom:926.341500px;}
.y45{bottom:927.991500px;}
.y10c{bottom:942.241500px;}
.y6b{bottom:945.991500px;}
.yec{bottom:947.341500px;}
.y15e{bottom:948.241500px;}
.y44{bottom:951.241500px;}
.y1f{bottom:953.341500px;}
.ye0{bottom:960.241500px;}
.y147{bottom:965.341500px;}
.y6a{bottom:969.241500px;}
.y7{bottom:971.341500px;}
.y43{bottom:974.341500px;}
.ya0{bottom:978.241500px;}
.yeb{bottom:979.591500px;}
.y128{bottom:983.341500px;}
.y1e{bottom:984.091500px;}
.y69{bottom:992.341500px;}
.y15d{bottom:994.591500px;}
.y42{bottom:997.591500px;}
.y9f{bottom:1001.341500px;}
.y127{bottom:1006.591500px;}
.y6{bottom:1009.591500px;}
.yea{bottom:1011.691500px;}
.y1d{bottom:1014.691500px;}
.yc9{bottom:1015.591500px;}
.y15c{bottom:1017.691500px;}
.y41{bottom:1020.691500px;}
.y68{bottom:1024.591500px;}
.ya9{bottom:1029.691500px;}
.yc8{bottom:1038.691500px;}
.y5{bottom:1040.941500px;}
.ye9{bottom:1043.941500px;}
.y1c{bottom:1045.441500px;}
.y67{bottom:1047.691500px;}
.y40{bottom:1052.941500px;}
.y15b{bottom:1055.941500px;}
.yc7{bottom:1061.941500px;}
.y4{bottom:1070.941500px;}
.y1b{bottom:1076.041500px;}
.y15a{bottom:1079.041500px;}
.y10b{bottom:1085.041500px;}
.y66{bottom:1094.041500px;}
.y3{bottom:1102.291500px;}
.ye8{bottom:1108.291500px;}
.y3f{bottom:1117.291500px;}
.y2{bottom:1140.391500px;}
.h5{height:32.512500px;}
.h3{height:45.117188px;}
.h6{height:55.880859px;}
.h4{height:59.512500px;}
.h7{height:60.112500px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.500000px;}
.x3{left:123.000000px;}
.x4{left:148.950000px;}
.x5{left:438.300000px;}
.x2{left:442.500000px;}
@media print{
.v2{vertical-align:-24.533333pt;}
.v3{vertical-align:-6.400000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:6.400000pt;}
.v1{vertical-align:24.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.021333pt;}
.ls1{letter-spacing:0.117333pt;}
.ls3{letter-spacing:0.181333pt;}
.ls4{letter-spacing:0.410667pt;}
.ls2{letter-spacing:0.608000pt;}
.ws4{word-spacing:-13.376000pt;}
.ws1{word-spacing:-13.258667pt;}
.ws0{word-spacing:-7.714133pt;}
.ws3{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-1.143467pt;}
._4{width:1.466667pt;}
._5{width:2.903467pt;}
._1{width:3.930667pt;}
._2{width:4.928000pt;}
._6{width:6.625067pt;}
._0{width:8.360533pt;}
._d{width:9.253333pt;}
._8{width:10.153600pt;}
._a{width:11.133867pt;}
._11{width:12.214400pt;}
._7{width:14.725333pt;}
._9{width:15.781333pt;}
._b{width:16.720000pt;}
._c{width:17.834667pt;}
._f{width:19.477333pt;}
._e{width:20.923733pt;}
._10{width:38.849067pt;}
._16{width:66.336000pt;}
._15{width:78.304000pt;}
._14{width:91.562667pt;}
._13{width:107.989333pt;}
._12{width:121.248000pt;}
.fs1{font-size:34.133333pt;}
.fs0{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1a{bottom:68.748000pt;}
.y10a{bottom:88.081333pt;}
.yc6{bottom:92.481333pt;}
.ydf{bottom:95.414667pt;}
.y8e{bottom:95.948000pt;}
.y146{bottom:102.881333pt;}
.y3e{bottom:103.681333pt;}
.ya8{bottom:103.948000pt;}
.y65{bottom:105.148000pt;}
.yc5{bottom:113.148000pt;}
.yde{bottom:116.081333pt;}
.y8d{bottom:116.481333pt;}
.y109{bottom:116.748000pt;}
.y126{bottom:117.414667pt;}
.y145{bottom:123.548000pt;}
.y3d{bottom:124.214667pt;}
.ya7{bottom:124.481333pt;}
.y64{bottom:125.681333pt;}
.yc4{bottom:133.681333pt;}
.ydd{bottom:136.614667pt;}
.y8c{bottom:137.148000pt;}
.y108{bottom:137.281333pt;}
.y125{bottom:138.081333pt;}
.y3c{bottom:144.881333pt;}
.ya6{bottom:145.148000pt;}
.y63{bottom:146.348000pt;}
.y144{bottom:152.081333pt;}
.yc3{bottom:154.348000pt;}
.ydc{bottom:157.281333pt;}
.y8b{bottom:157.681333pt;}
.y3b{bottom:165.414667pt;}
.ya5{bottom:165.681333pt;}
.y107{bottom:165.948000pt;}
.y124{bottom:166.614667pt;}
.y143{bottom:172.748000pt;}
.y62{bottom:174.881333pt;}
.ydb{bottom:177.814667pt;}
.y8a{bottom:178.348000pt;}
.yc2{bottom:182.881333pt;}
.y3a{bottom:186.081333pt;}
.y9e{bottom:186.348000pt;}
.y142{bottom:193.281333pt;}
.y106{bottom:194.481333pt;}
.y123{bottom:195.281333pt;}
.y61{bottom:195.548000pt;}
.yda{bottom:198.481333pt;}
.y89{bottom:198.881333pt;}
.yc1{bottom:203.548000pt;}
.y39{bottom:206.614667pt;}
.y9d{bottom:206.881333pt;}
.y141{bottom:213.948000pt;}
.y105{bottom:215.148000pt;}
.y122{bottom:215.814667pt;}
.y60{bottom:216.081333pt;}
.yd9{bottom:219.014667pt;}
.y88{bottom:219.548000pt;}
.yc0{bottom:224.081333pt;}
.y38{bottom:227.281333pt;}
.y9c{bottom:227.548000pt;}
.y121{bottom:236.481333pt;}
.y5f{bottom:236.748000pt;}
.y87{bottom:240.081333pt;}
.y140{bottom:242.481333pt;}
.y104{bottom:243.681333pt;}
.ybf{bottom:244.748000pt;}
.yd8{bottom:247.681333pt;}
.y37{bottom:247.814667pt;}
.y9b{bottom:248.081333pt;}
.y120{bottom:257.014667pt;}
.y5e{bottom:257.281333pt;}
.y86{bottom:260.748000pt;}
.y13f{bottom:263.148000pt;}
.ybe{bottom:265.281333pt;}
.yd7{bottom:268.214667pt;}
.y36{bottom:268.481333pt;}
.y9a{bottom:268.748000pt;}
.y103{bottom:272.348000pt;}
.ya4{bottom:276.748000pt;}
.y5d{bottom:277.948000pt;}
.y11f{bottom:285.681333pt;}
.ybd{bottom:285.948000pt;}
.yd6{bottom:288.881333pt;}
.y35{bottom:289.014667pt;}
.y85{bottom:289.281333pt;}
.y13e{bottom:291.681333pt;}
.y102{bottom:292.881333pt;}
.ya3{bottom:297.281333pt;}
.y5c{bottom:298.481333pt;}
.y11e{bottom:306.214667pt;}
.ybc{bottom:306.481333pt;}
.yd5{bottom:309.414667pt;}
.y34{bottom:309.681333pt;}
.y84{bottom:309.948000pt;}
.ya2{bottom:317.948000pt;}
.y5b{bottom:319.148000pt;}
.y13d{bottom:320.348000pt;}
.y101{bottom:321.548000pt;}
.y11d{bottom:326.881333pt;}
.ybb{bottom:327.148000pt;}
.yd4{bottom:330.081333pt;}
.y83{bottom:330.481333pt;}
.y33{bottom:338.214667pt;}
.ya1{bottom:338.481333pt;}
.y5a{bottom:339.681333pt;}
.y13c{bottom:340.881333pt;}
.yba{bottom:347.681333pt;}
.y100{bottom:350.081333pt;}
.yd3{bottom:350.614667pt;}
.y82{bottom:351.148000pt;}
.y11c{bottom:355.414667pt;}
.y159{bottom:358.081333pt;}
.y32{bottom:358.881333pt;}
.y99{bottom:359.148000pt;}
.y59{bottom:360.348000pt;}
.y13b{bottom:361.548000pt;}
.yff{bottom:370.748000pt;}
.yd2{bottom:371.281333pt;}
.y81{bottom:371.681333pt;}
.yb9{bottom:374.348000pt;}
.y158{bottom:378.748000pt;}
.y31{bottom:379.414667pt;}
.y98{bottom:379.681333pt;}
.y11b{bottom:384.081333pt;}
.y58{bottom:388.881333pt;}
.y13a{bottom:390.081333pt;}
.yd1{bottom:391.814667pt;}
.yfe{bottom:399.281333pt;}
.y30{bottom:400.081333pt;}
.y80{bottom:400.348000pt;}
.y11a{bottom:404.614667pt;}
.y157{bottom:407.281333pt;}
.yb8{bottom:409.548000pt;}
.y139{bottom:410.748000pt;}
.yd0{bottom:412.481333pt;}
.y19{bottom:412.614667pt;}
.yfd{bottom:419.948000pt;}
.y2f{bottom:420.614667pt;}
.y7f{bottom:420.881333pt;}
.y16b{bottom:425.948000pt;}
.y156{bottom:427.948000pt;}
.yb7{bottom:430.081333pt;}
.ye7{bottom:432.748000pt;}
.ycf{bottom:433.014667pt;}
.y18{bottom:433.281333pt;}
.y138{bottom:439.281333pt;}
.yfc{bottom:440.481333pt;}
.y2e{bottom:441.281333pt;}
.y7e{bottom:441.548000pt;}
.y57{bottom:446.081333pt;}
.y16a{bottom:446.614667pt;}
.y17{bottom:453.814667pt;}
.yce{bottom:454.081333pt;}
.y155{bottom:456.481333pt;}
.yb6{bottom:458.748000pt;}
.y137{bottom:459.948000pt;}
.y2d{bottom:461.814667pt;}
.y7d{bottom:462.081333pt;}
.y56{bottom:466.748000pt;}
.y169{bottom:467.148000pt;}
.yfb{bottom:469.148000pt;}
.y16{bottom:474.481333pt;}
.ycd{bottom:474.748000pt;}
.y154{bottom:477.148000pt;}
.yb5{bottom:479.281333pt;}
.y2c{bottom:482.481333pt;}
.y7c{bottom:482.748000pt;}
.y55{bottom:487.281333pt;}
.y168{bottom:487.814667pt;}
.y136{bottom:488.481333pt;}
.yfa{bottom:489.681333pt;}
.y15{bottom:495.014667pt;}
.ycc{bottom:495.281333pt;}
.yb4{bottom:499.948000pt;}
.y2b{bottom:503.014667pt;}
.y7b{bottom:503.281333pt;}
.y153{bottom:505.681333pt;}
.y54{bottom:507.948000pt;}
.y167{bottom:508.348000pt;}
.y135{bottom:509.148000pt;}
.y119{bottom:511.014667pt;}
.y14{bottom:515.681333pt;}
.ycb{bottom:515.948000pt;}
.yf9{bottom:518.348000pt;}
.yb3{bottom:520.481333pt;}
.y2a{bottom:523.681333pt;}
.y97{bottom:523.948000pt;}
.y53{bottom:528.481333pt;}
.y118{bottom:531.681333pt;}
.y7a{bottom:531.948000pt;}
.y152{bottom:534.348000pt;}
.y13{bottom:536.214667pt;}
.yca{bottom:536.481333pt;}
.y134{bottom:537.681333pt;}
.yf8{bottom:538.881333pt;}
.yb2{bottom:541.148000pt;}
.y166{bottom:542.348000pt;}
.y29{bottom:544.214667pt;}
.y96{bottom:544.481333pt;}
.y52{bottom:549.148000pt;}
.y79{bottom:552.481333pt;}
.y151{bottom:554.881333pt;}
.y12{bottom:556.881333pt;}
.ye6{bottom:557.148000pt;}
.y133{bottom:558.348000pt;}
.y117{bottom:560.214667pt;}
.yb1{bottom:561.681333pt;}
.y165{bottom:562.881333pt;}
.y28{bottom:564.881333pt;}
.y95{bottom:565.148000pt;}
.yf7{bottom:567.548000pt;}
.y51{bottom:569.681333pt;}
.y78{bottom:573.148000pt;}
.y11{bottom:577.414667pt;}
.ye5{bottom:577.681333pt;}
.y132{bottom:578.881333pt;}
.yb0{bottom:582.348000pt;}
.y150{bottom:583.548000pt;}
.y27{bottom:585.414667pt;}
.y94{bottom:585.681333pt;}
.yf6{bottom:588.081333pt;}
.y116{bottom:588.881333pt;}
.y50{bottom:590.348000pt;}
.y77{bottom:593.681333pt;}
.y10{bottom:598.081333pt;}
.ye4{bottom:598.348000pt;}
.y131{bottom:599.548000pt;}
.yaf{bottom:602.881333pt;}
.y14f{bottom:604.081333pt;}
.y93{bottom:606.348000pt;}
.y4f{bottom:610.881333pt;}
.y26{bottom:614.081333pt;}
.y76{bottom:614.348000pt;}
.yf5{bottom:616.748000pt;}
.y115{bottom:617.414667pt;}
.yf{bottom:618.614667pt;}
.ye3{bottom:618.881333pt;}
.yae{bottom:623.548000pt;}
.y164{bottom:624.748000pt;}
.y92{bottom:626.881333pt;}
.y130{bottom:628.081333pt;}
.y4e{bottom:631.548000pt;}
.y14e{bottom:632.748000pt;}
.y75{bottom:634.881333pt;}
.y114{bottom:638.081333pt;}
.ye{bottom:639.281333pt;}
.ye2{bottom:639.548000pt;}
.yf4{bottom:645.281333pt;}
.y91{bottom:647.548000pt;}
.y12f{bottom:648.748000pt;}
.y4d{bottom:652.081333pt;}
.y14d{bottom:653.281333pt;}
.y74{bottom:655.548000pt;}
.y113{bottom:658.614667pt;}
.yd{bottom:659.814667pt;}
.ye1{bottom:660.081333pt;}
.y90{bottom:668.081333pt;}
.yad{bottom:672.748000pt;}
.yf3{bottom:673.948000pt;}
.y73{bottom:676.081333pt;}
.y25{bottom:676.614667pt;}
.y12e{bottom:677.281333pt;}
.y163{bottom:679.281333pt;}
.yc{bottom:680.481333pt;}
.y4c{bottom:680.748000pt;}
.y14c{bottom:681.948000pt;}
.y112{bottom:687.281333pt;}
.y8f{bottom:688.748000pt;}
.yac{bottom:693.281333pt;}
.yf2{bottom:694.481333pt;}
.y72{bottom:696.748000pt;}
.y24{bottom:697.148000pt;}
.y12d{bottom:697.948000pt;}
.y162{bottom:699.814667pt;}
.yb{bottom:701.014667pt;}
.y4b{bottom:701.281333pt;}
.y111{bottom:707.814667pt;}
.y14b{bottom:710.481333pt;}
.yab{bottom:713.948000pt;}
.yf1{bottom:715.148000pt;}
.y71{bottom:717.281333pt;}
.y23{bottom:717.814667pt;}
.y161{bottom:720.481333pt;}
.ya{bottom:721.681333pt;}
.y4a{bottom:721.948000pt;}
.y12c{bottom:726.481333pt;}
.y14a{bottom:731.148000pt;}
.y110{bottom:733.814667pt;}
.yaa{bottom:734.481333pt;}
.y70{bottom:737.948000pt;}
.y22{bottom:738.348000pt;}
.y49{bottom:742.481333pt;}
.yf0{bottom:743.681333pt;}
.y12b{bottom:747.148000pt;}
.y10f{bottom:751.681333pt;}
.y160{bottom:754.348000pt;}
.y9{bottom:755.548000pt;}
.y6f{bottom:758.481333pt;}
.y21{bottom:759.014667pt;}
.y149{bottom:759.681333pt;}
.y48{bottom:763.148000pt;}
.yef{bottom:764.348000pt;}
.y15f{bottom:775.014667pt;}
.y12a{bottom:775.681333pt;}
.y6e{bottom:779.148000pt;}
.y10e{bottom:780.348000pt;}
.y47{bottom:783.681333pt;}
.y148{bottom:788.348000pt;}
.yee{bottom:792.881333pt;}
.y129{bottom:796.348000pt;}
.y6d{bottom:799.681333pt;}
.y46{bottom:804.348000pt;}
.y10d{bottom:808.881333pt;}
.y20{bottom:820.214667pt;}
.y6c{bottom:820.348000pt;}
.yed{bottom:821.548000pt;}
.y8{bottom:823.414667pt;}
.y45{bottom:824.881333pt;}
.y10c{bottom:837.548000pt;}
.y6b{bottom:840.881333pt;}
.yec{bottom:842.081333pt;}
.y15e{bottom:842.881333pt;}
.y44{bottom:845.548000pt;}
.y1f{bottom:847.414667pt;}
.ye0{bottom:853.548000pt;}
.y147{bottom:858.081333pt;}
.y6a{bottom:861.548000pt;}
.y7{bottom:863.414667pt;}
.y43{bottom:866.081333pt;}
.ya0{bottom:869.548000pt;}
.yeb{bottom:870.748000pt;}
.y128{bottom:874.081333pt;}
.y1e{bottom:874.748000pt;}
.y69{bottom:882.081333pt;}
.y15d{bottom:884.081333pt;}
.y42{bottom:886.748000pt;}
.y9f{bottom:890.081333pt;}
.y127{bottom:894.748000pt;}
.y6{bottom:897.414667pt;}
.yea{bottom:899.281333pt;}
.y1d{bottom:901.948000pt;}
.yc9{bottom:902.748000pt;}
.y15c{bottom:904.614667pt;}
.y41{bottom:907.281333pt;}
.y68{bottom:910.748000pt;}
.ya9{bottom:915.281333pt;}
.yc8{bottom:923.281333pt;}
.y5{bottom:925.281333pt;}
.ye9{bottom:927.948000pt;}
.y1c{bottom:929.281333pt;}
.y67{bottom:931.281333pt;}
.y40{bottom:935.948000pt;}
.y15b{bottom:938.614667pt;}
.yc7{bottom:943.948000pt;}
.y4{bottom:951.948000pt;}
.y1b{bottom:956.481333pt;}
.y15a{bottom:959.148000pt;}
.y10b{bottom:964.481333pt;}
.y66{bottom:972.481333pt;}
.y3{bottom:979.814667pt;}
.ye8{bottom:985.148000pt;}
.y3f{bottom:993.148000pt;}
.y2{bottom:1013.681333pt;}
.h5{height:28.900000pt;}
.h3{height:40.104167pt;}
.h6{height:49.671875pt;}
.h4{height:52.900000pt;}
.h7{height:53.433333pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.666667pt;}
.x3{left:109.333333pt;}
.x4{left:132.400000pt;}
.x5{left:389.600000pt;}
.x2{left:393.333333pt;}
}




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