
    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_b59dc135ff8099babe2c9e76.woff')format("woff");}.ff1{font-family:ff1;line-height:1.100586;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_aa8907b2c09b96333bcd7e58.woff')format("woff");}.ff2{font-family:ff2;line-height:0.927734;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_07486dd0569420475b06f8a5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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:-77.039977px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.119933px;}
.v1{vertical-align:27.360004px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036246px;}
.ls3{letter-spacing:0.049631px;}
.ls0{letter-spacing:0.053947px;}
.ls4{letter-spacing:68.416317px;}
.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;}
}
.ws5{word-spacing:-18.036285px;}
.ws0{word-spacing:-17.982338px;}
.ws6{word-spacing:-16.543688px;}
.ws4{word-spacing:-14.925263px;}
.ws2{word-spacing:-14.206050px;}
.ws3{word-spacing:-10.429729px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-7.013112px;}
._a{margin-left:-5.280958px;}
._1{margin-left:-4.207860px;}
._0{margin-left:-2.945502px;}
._2{margin-left:-1.851458px;}
._3{width:1.221394px;}
._7{width:2.405419px;}
._6{width:3.723749px;}
._b{width:5.089282px;}
._9{width:6.761359px;}
._8{width:8.145718px;}
._c{width:9.192908px;}
._13{width:10.200201px;}
._4{width:11.221821px;}
._5{width:12.353023px;}
._10{width:13.775313px;}
._11{width:15.108254px;}
._12{width:16.292279px;}
._17{width:17.583362px;}
._19{width:19.010421px;}
._14{width:21.975259px;}
._1a{width:22.998929px;}
._1b{width:24.097829px;}
._15{width:25.500921px;}
._16{width:26.559912px;}
._f{width:28.558762px;}
._d{width:33.556447px;}
._e{width:34.776998px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(8,8,8);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.718915px;}
.fs2{font-size:56.824200px;}
.fs4{font-size:59.701050px;}
.fs5{font-size:66.174750px;}
.fs7{font-size:69.938217px;}
.fs0{font-size:71.929350px;}
.fs6{font-size:74.806200px;}
.fs1{font-size:84.157196px;}
.y0{bottom:0.000000px;}
.y3{bottom:30.960022px;}
.y2{bottom:51.120002px;}
.y5a{bottom:80.639992px;}
.y13b{bottom:85.139992px;}
.y59{bottom:97.019989px;}
.y106{bottom:98.639992px;}
.yc2{bottom:103.320030px;}
.y13a{bottom:107.639992px;}
.y127{bottom:110.519989px;}
.y58{bottom:113.580025px;}
.y7a{bottom:115.019989px;}
.y44{bottom:115.379998px;}
.y105{bottom:116.639992px;}
.y22{bottom:118.259994px;}
.yc1{bottom:122.759994px;}
.ye1{bottom:125.639992px;}
.y126{bottom:128.519989px;}
.y85{bottom:130.139992px;}
.y57{bottom:131.580025px;}
.y104{bottom:134.639992px;}
.y43{bottom:134.820030px;}
.y21{bottom:137.879998px;}
.y79{bottom:139.320030px;}
.ybf{bottom:142.379998px;}
.ye0{bottom:143.639992px;}
.y84{bottom:146.519989px;}
.y103{bottom:152.639992px;}
.y42{bottom:154.259994px;}
.y20{bottom:157.320030px;}
.y78{bottom:158.759994px;}
.ydf{bottom:161.639992px;}
.ybe{bottom:161.820030px;}
.y83{bottom:163.080025px;}
.y98{bottom:163.259994px;}
.y125{bottom:164.519989px;}
.y56{bottom:164.879998px;}
.yb6{bottom:166.320030px;}
.y102{bottom:170.639992px;}
.y41{bottom:173.879998px;}
.y1f{bottom:176.759994px;}
.y77{bottom:178.379998px;}
.y82{bottom:179.639992px;}
.ybd{bottom:181.259994px;}
.y124{bottom:182.519989px;}
.y97{bottom:182.879998px;}
.y55{bottom:184.320030px;}
.yb5{bottom:185.759994px;}
.y101{bottom:188.639992px;}
.y40{bottom:193.320030px;}
.y81{bottom:196.019989px;}
.y1e{bottom:196.379998px;}
.yde{bottom:197.639992px;}
.y76{bottom:197.820030px;}
.y123{bottom:200.519989px;}
.ybc{bottom:200.879998px;}
.y96{bottom:202.320030px;}
.y54{bottom:203.759994px;}
.yb4{bottom:205.379998px;}
.y100{bottom:206.639992px;}
.y80{bottom:212.580025px;}
.y3f{bottom:212.759994px;}
.ydd{bottom:215.639992px;}
.y1d{bottom:215.820030px;}
.y75{bottom:217.259994px;}
.y122{bottom:218.519989px;}
.ybb{bottom:220.320030px;}
.y95{bottom:221.759994px;}
.y53{bottom:223.379998px;}
.yff{bottom:224.639992px;}
.yb3{bottom:224.820030px;}
.y7f{bottom:229.139992px;}
.y3e{bottom:232.379998px;}
.ydc{bottom:233.639992px;}
.y1c{bottom:235.259994px;}
.y121{bottom:236.519989px;}
.y74{bottom:236.879998px;}
.yc4{bottom:238.320030px;}
.yba{bottom:239.759994px;}
.y94{bottom:241.379998px;}
.yfe{bottom:242.639992px;}
.yb2{bottom:244.259994px;}
.y7e{bottom:245.519989px;}
.ydb{bottom:251.639992px;}
.y3d{bottom:251.820030px;}
.y120{bottom:254.519989px;}
.y1b{bottom:254.879998px;}
.y73{bottom:256.320030px;}
.yb9{bottom:259.379998px;}
.yfd{bottom:260.639992px;}
.y52{bottom:260.820030px;}
.y7d{bottom:262.080025px;}
.yb1{bottom:263.879998px;}
.yda{bottom:269.639992px;}
.y3c{bottom:271.259994px;}
.y11f{bottom:272.519989px;}
.y139{bottom:274.139992px;}
.y1a{bottom:274.320030px;}
.y72{bottom:275.759994px;}
.y7c{bottom:278.639992px;}
.yb8{bottom:278.820030px;}
.yc3{bottom:280.080025px;}
.y93{bottom:280.259994px;}
.yb0{bottom:283.320030px;}
.yd9{bottom:287.639992px;}
.y11e{bottom:290.519989px;}
.y3b{bottom:290.879998px;}
.y138{bottom:292.139992px;}
.y19{bottom:293.759994px;}
.y9b{bottom:295.019989px;}
.y71{bottom:295.379998px;}
.y7b{bottom:296.459988px;}
.yfc{bottom:296.639992px;}
.y51{bottom:298.259994px;}
.y92{bottom:299.879998px;}
.yd8{bottom:305.639992px;}
.yaf{bottom:307.259994px;}
.y137{bottom:310.139992px;}
.y3a{bottom:310.319995px;}
.y9a{bottom:311.579990px;}
.y11d{bottom:313.019989px;}
.y18{bottom:313.379998px;}
.yfb{bottom:314.639992px;}
.y70{bottom:314.819995px;}
.yb7{bottom:316.259994px;}
.y50{bottom:317.879998px;}
.y91{bottom:319.319995px;}
.yd7{bottom:323.639992px;}
.yae{bottom:326.879998px;}
.y136{bottom:328.139992px;}
.y99{bottom:329.579990px;}
.y39{bottom:329.759994px;}
.yfa{bottom:332.639992px;}
.y17{bottom:332.819995px;}
.y6f{bottom:334.259994px;}
.y11c{bottom:335.519989px;}
.y4f{bottom:337.319995px;}
.y90{bottom:338.759994px;}
.yd6{bottom:341.639992px;}
.y135{bottom:346.139992px;}
.yad{bottom:346.319995px;}
.y38{bottom:349.379998px;}
.yf9{bottom:350.639992px;}
.y16{bottom:352.259994px;}
.y6e{bottom:353.879998px;}
.y4e{bottom:356.759994px;}
.y11b{bottom:358.019989px;}
.y8f{bottom:358.379998px;}
.yd5{bottom:359.639992px;}
.y134{bottom:364.139992px;}
.yac{bottom:365.759994px;}
.yf8{bottom:368.639992px;}
.y37{bottom:368.819995px;}
.y15{bottom:371.879998px;}
.y6d{bottom:373.319995px;}
.y11a{bottom:376.019989px;}
.y4d{bottom:376.379998px;}
.yd4{bottom:377.639992px;}
.y8e{bottom:377.819995px;}
.y133{bottom:382.139992px;}
.yf7{bottom:386.639992px;}
.y36{bottom:388.259994px;}
.yab{bottom:389.879998px;}
.y14{bottom:391.319995px;}
.y6c{bottom:392.759994px;}
.y119{bottom:394.019989px;}
.yd3{bottom:395.639992px;}
.y4c{bottom:395.819995px;}
.y8d{bottom:397.259994px;}
.y132{bottom:400.139992px;}
.yf6{bottom:404.639992px;}
.y35{bottom:407.879998px;}
.yaa{bottom:409.319995px;}
.y13{bottom:410.759994px;}
.y118{bottom:412.019989px;}
.y6b{bottom:412.379998px;}
.yd2{bottom:413.639992px;}
.yc0{bottom:413.819995px;}
.y4b{bottom:415.259994px;}
.y131{bottom:418.139992px;}
.y8c{bottom:421.379998px;}
.yf5{bottom:422.639992px;}
.y34{bottom:427.319995px;}
.ya9{bottom:428.759994px;}
.y117{bottom:430.019989px;}
.y12{bottom:430.379998px;}
.yd1{bottom:431.639992px;}
.y6a{bottom:431.819995px;}
.y4a{bottom:434.879998px;}
.y130{bottom:436.139992px;}
.yf4{bottom:440.639992px;}
.y8b{bottom:440.819995px;}
.y33{bottom:446.759994px;}
.ya8{bottom:448.379998px;}
.yd0{bottom:449.639992px;}
.y11{bottom:449.819995px;}
.y69{bottom:451.259994px;}
.y116{bottom:452.519989px;}
.y12f{bottom:454.139992px;}
.y49{bottom:454.319995px;}
.yf3{bottom:458.639992px;}
.y8a{bottom:460.259994px;}
.y32{bottom:466.379998px;}
.ycf{bottom:467.639992px;}
.ya7{bottom:467.819995px;}
.y10{bottom:469.439999px;}
.y68{bottom:470.879998px;}
.y12e{bottom:472.139992px;}
.y48{bottom:473.759994px;}
.y115{bottom:475.019989px;}
.yf2{bottom:476.639992px;}
.y89{bottom:484.379998px;}
.yce{bottom:485.639992px;}
.y31{bottom:485.819995px;}
.ya6{bottom:487.259994px;}
.y67{bottom:490.319995px;}
.y114{bottom:493.019989px;}
.yf{bottom:493.379998px;}
.yf1{bottom:494.639992px;}
.ycd{bottom:503.639992px;}
.y30{bottom:505.259994px;}
.ya5{bottom:506.879998px;}
.y88{bottom:508.319995px;}
.y66{bottom:509.759994px;}
.y113{bottom:511.019989px;}
.yf0{bottom:512.639992px;}
.ye{bottom:512.819995px;}
.ycc{bottom:521.639992px;}
.y2f{bottom:524.879998px;}
.ya4{bottom:526.319995px;}
.y112{bottom:529.019989px;}
.y65{bottom:529.379998px;}
.yef{bottom:530.639992px;}
.yd{bottom:532.259994px;}
.y12d{bottom:535.139992px;}
.ycb{bottom:539.639992px;}
.y2e{bottom:544.319996px;}
.ya3{bottom:545.759994px;}
.y111{bottom:547.019989px;}
.yee{bottom:548.639992px;}
.y64{bottom:548.819996px;}
.yc{bottom:551.879998px;}
.yca{bottom:557.639992px;}
.y2d{bottom:563.759994px;}
.y110{bottom:565.019989px;}
.ya2{bottom:565.560001px;}
.yed{bottom:566.639992px;}
.y63{bottom:568.259994px;}
.yb{bottom:571.319996px;}
.yc9{bottom:575.639992px;}
.y10f{bottom:583.020006px;}
.y2c{bottom:583.379998px;}
.yec{bottom:584.639992px;}
.y62{bottom:587.879998px;}
.ya1{bottom:589.319996px;}
.ya{bottom:590.759994px;}
.yc8{bottom:593.639992px;}
.y10e{bottom:601.020006px;}
.yeb{bottom:602.639992px;}
.y2b{bottom:602.819996px;}
.y61{bottom:607.319996px;}
.ya0{bottom:608.759994px;}
.y9{bottom:610.379998px;}
.yc7{bottom:611.639992px;}
.y10d{bottom:619.020006px;}
.yea{bottom:620.639992px;}
.y2a{bottom:622.259994px;}
.y13d{bottom:625.139992px;}
.y60{bottom:626.759994px;}
.y87{bottom:628.379998px;}
.yc6{bottom:629.639992px;}
.y8{bottom:629.819996px;}
.y10c{bottom:637.020006px;}
.ye9{bottom:638.639992px;}
.y29{bottom:641.879998px;}
.y5f{bottom:646.379998px;}
.y12c{bottom:647.639992px;}
.y9f{bottom:647.819996px;}
.y86{bottom:648.000000px;}
.y47{bottom:649.259994px;}
.y7{bottom:649.439999px;}
.y10b{bottom:655.020006px;}
.ye8{bottom:656.639992px;}
.y28{bottom:661.319996px;}
.y12b{bottom:665.639992px;}
.y5e{bottom:665.819996px;}
.yc5{bottom:667.080008px;}
.y9e{bottom:667.259994px;}
.y46{bottom:668.879998px;}
.y10a{bottom:673.020006px;}
.ye7{bottom:674.639992px;}
.y6{bottom:677.879998px;}
.y27{bottom:680.759994px;}
.y12a{bottom:683.639992px;}
.y5d{bottom:685.259994px;}
.y9d{bottom:686.879998px;}
.y109{bottom:691.020006px;}
.ye6{bottom:692.639992px;}
.y5{bottom:697.500000px;}
.y26{bottom:700.379998px;}
.y129{bottom:701.639992px;}
.y5c{bottom:704.879998px;}
.y13c{bottom:706.139992px;}
.y45{bottom:706.319996px;}
.y108{bottom:709.020006px;}
.ye5{bottom:710.639992px;}
.y25{bottom:719.819996px;}
.y128{bottom:724.140000px;}
.y5b{bottom:724.319996px;}
.y4{bottom:726.120002px;}
.y107{bottom:727.379998px;}
.ye4{bottom:728.640000px;}
.y24{bottom:743.760003px;}
.ye3{bottom:746.640000px;}
.y23{bottom:763.379998px;}
.y9c{bottom:763.560001px;}
.ye2{bottom:764.640000px;}
.y1{bottom:805.860000px;}
.he{height:44.816591px;}
.h10{height:47.365384px;}
.h3{height:48.713871px;}
.h7{height:49.993799px;}
.ha{height:50.489365px;}
.hc{height:55.414891px;}
.hd{height:55.964193px;}
.h2{height:56.995132px;}
.h1{height:60.233806px;}
.h4{height:60.830876px;}
.h6{height:62.295319px;}
.h9{height:62.295490px;}
.h5{height:62.295522px;}
.hb{height:62.295526px;}
.h8{height:62.295594px;}
.hf{height:62.642887px;}
.h0{height:864.000000px;}
.w0{width:540.000000px;}
.x0{left:0.000000px;}
.xc{left:63.899999px;}
.x6{left:85.140000px;}
.x8{left:106.379998px;}
.x4{left:129.780001px;}
.x11{left:152.099997px;}
.x5{left:158.219999px;}
.x9{left:195.840002px;}
.x7{left:255.240006px;}
.xf{left:263.699993px;}
.xa{left:268.020006px;}
.xb{left:276.479994px;}
.xe{left:279.900003px;}
.x10{left:284.939999px;}
.x1{left:287.099997px;}
.x2{left:289.259994px;}
.x3{left:297.720017px;}
.xd{left:301.139992px;}
@media print{
.v3{vertical-align:-68.479980pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.439940pt;}
.v1{vertical-align:24.320004pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032218pt;}
.ls3{letter-spacing:0.044116pt;}
.ls0{letter-spacing:0.047953pt;}
.ls4{letter-spacing:60.814504pt;}
.ws5{word-spacing:-16.032253pt;}
.ws0{word-spacing:-15.984300pt;}
.ws6{word-spacing:-14.705500pt;}
.ws4{word-spacing:-13.266900pt;}
.ws2{word-spacing:-12.627600pt;}
.ws3{word-spacing:-9.270870pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-6.233877pt;}
._a{margin-left:-4.694184pt;}
._1{margin-left:-3.740320pt;}
._0{margin-left:-2.618224pt;}
._2{margin-left:-1.645741pt;}
._3{width:1.085684pt;}
._7{width:2.138150pt;}
._6{width:3.309999pt;}
._b{width:4.523807pt;}
._9{width:6.010097pt;}
._8{width:7.240638pt;}
._c{width:8.171474pt;}
._13{width:9.066845pt;}
._4{width:9.974952pt;}
._5{width:10.980465pt;}
._10{width:12.244723pt;}
._11{width:13.429559pt;}
._12{width:14.482026pt;}
._17{width:15.629655pt;}
._19{width:16.898152pt;}
._14{width:19.533564pt;}
._1a{width:20.443492pt;}
._1b{width:21.420293pt;}
._15{width:22.667486pt;}
._16{width:23.608811pt;}
._f{width:25.385566pt;}
._d{width:29.827952pt;}
._e{width:30.912887pt;}
.fs3{font-size:37.083480pt;}
.fs2{font-size:50.510400pt;}
.fs4{font-size:53.067600pt;}
.fs5{font-size:58.822000pt;}
.fs7{font-size:62.167304pt;}
.fs0{font-size:63.937200pt;}
.fs6{font-size:66.494400pt;}
.fs1{font-size:74.806396pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:27.520020pt;}
.y2{bottom:45.440002pt;}
.y5a{bottom:71.679993pt;}
.y13b{bottom:75.679993pt;}
.y59{bottom:86.239990pt;}
.y106{bottom:87.679993pt;}
.yc2{bottom:91.840027pt;}
.y13a{bottom:95.679993pt;}
.y127{bottom:98.239990pt;}
.y58{bottom:100.960022pt;}
.y7a{bottom:102.239990pt;}
.y44{bottom:102.559998pt;}
.y105{bottom:103.679993pt;}
.y22{bottom:105.119995pt;}
.yc1{bottom:109.119995pt;}
.ye1{bottom:111.679993pt;}
.y126{bottom:114.239990pt;}
.y85{bottom:115.679993pt;}
.y57{bottom:116.960022pt;}
.y104{bottom:119.679993pt;}
.y43{bottom:119.840027pt;}
.y21{bottom:122.559998pt;}
.y79{bottom:123.840027pt;}
.ybf{bottom:126.559998pt;}
.ye0{bottom:127.679993pt;}
.y84{bottom:130.239990pt;}
.y103{bottom:135.679993pt;}
.y42{bottom:137.119995pt;}
.y20{bottom:139.840027pt;}
.y78{bottom:141.119995pt;}
.ydf{bottom:143.679993pt;}
.ybe{bottom:143.840027pt;}
.y83{bottom:144.960022pt;}
.y98{bottom:145.119995pt;}
.y125{bottom:146.239990pt;}
.y56{bottom:146.559998pt;}
.yb6{bottom:147.840027pt;}
.y102{bottom:151.679993pt;}
.y41{bottom:154.559998pt;}
.y1f{bottom:157.119995pt;}
.y77{bottom:158.559998pt;}
.y82{bottom:159.679993pt;}
.ybd{bottom:161.119995pt;}
.y124{bottom:162.239990pt;}
.y97{bottom:162.559998pt;}
.y55{bottom:163.840027pt;}
.yb5{bottom:165.119995pt;}
.y101{bottom:167.679993pt;}
.y40{bottom:171.840027pt;}
.y81{bottom:174.239990pt;}
.y1e{bottom:174.559998pt;}
.yde{bottom:175.679993pt;}
.y76{bottom:175.840027pt;}
.y123{bottom:178.239990pt;}
.ybc{bottom:178.559998pt;}
.y96{bottom:179.840027pt;}
.y54{bottom:181.119995pt;}
.yb4{bottom:182.559998pt;}
.y100{bottom:183.679993pt;}
.y80{bottom:188.960022pt;}
.y3f{bottom:189.119995pt;}
.ydd{bottom:191.679993pt;}
.y1d{bottom:191.840027pt;}
.y75{bottom:193.119995pt;}
.y122{bottom:194.239990pt;}
.ybb{bottom:195.840027pt;}
.y95{bottom:197.119995pt;}
.y53{bottom:198.559998pt;}
.yff{bottom:199.679993pt;}
.yb3{bottom:199.840027pt;}
.y7f{bottom:203.679993pt;}
.y3e{bottom:206.559998pt;}
.ydc{bottom:207.679993pt;}
.y1c{bottom:209.119995pt;}
.y121{bottom:210.239990pt;}
.y74{bottom:210.559998pt;}
.yc4{bottom:211.840027pt;}
.yba{bottom:213.119995pt;}
.y94{bottom:214.559998pt;}
.yfe{bottom:215.679993pt;}
.yb2{bottom:217.119995pt;}
.y7e{bottom:218.239990pt;}
.ydb{bottom:223.679993pt;}
.y3d{bottom:223.840027pt;}
.y120{bottom:226.239990pt;}
.y1b{bottom:226.559998pt;}
.y73{bottom:227.840027pt;}
.yb9{bottom:230.559998pt;}
.yfd{bottom:231.679993pt;}
.y52{bottom:231.840027pt;}
.y7d{bottom:232.960022pt;}
.yb1{bottom:234.559998pt;}
.yda{bottom:239.679993pt;}
.y3c{bottom:241.119995pt;}
.y11f{bottom:242.239990pt;}
.y139{bottom:243.679993pt;}
.y1a{bottom:243.840027pt;}
.y72{bottom:245.119995pt;}
.y7c{bottom:247.679993pt;}
.yb8{bottom:247.840027pt;}
.yc3{bottom:248.960022pt;}
.y93{bottom:249.119995pt;}
.yb0{bottom:251.840027pt;}
.yd9{bottom:255.679993pt;}
.y11e{bottom:258.239990pt;}
.y3b{bottom:258.559998pt;}
.y138{bottom:259.679993pt;}
.y19{bottom:261.119995pt;}
.y9b{bottom:262.239990pt;}
.y71{bottom:262.559998pt;}
.y7b{bottom:263.519989pt;}
.yfc{bottom:263.679993pt;}
.y51{bottom:265.119995pt;}
.y92{bottom:266.559998pt;}
.yd8{bottom:271.679993pt;}
.yaf{bottom:273.119995pt;}
.y137{bottom:275.679993pt;}
.y3a{bottom:275.839996pt;}
.y9a{bottom:276.959991pt;}
.y11d{bottom:278.239990pt;}
.y18{bottom:278.559998pt;}
.yfb{bottom:279.679993pt;}
.y70{bottom:279.839996pt;}
.yb7{bottom:281.119995pt;}
.y50{bottom:282.559998pt;}
.y91{bottom:283.839996pt;}
.yd7{bottom:287.679993pt;}
.yae{bottom:290.559998pt;}
.y136{bottom:291.679993pt;}
.y99{bottom:292.959991pt;}
.y39{bottom:293.119995pt;}
.yfa{bottom:295.679993pt;}
.y17{bottom:295.839996pt;}
.y6f{bottom:297.119995pt;}
.y11c{bottom:298.239990pt;}
.y4f{bottom:299.839996pt;}
.y90{bottom:301.119995pt;}
.yd6{bottom:303.679993pt;}
.y135{bottom:307.679993pt;}
.yad{bottom:307.839996pt;}
.y38{bottom:310.559998pt;}
.yf9{bottom:311.679993pt;}
.y16{bottom:313.119995pt;}
.y6e{bottom:314.559998pt;}
.y4e{bottom:317.119995pt;}
.y11b{bottom:318.239990pt;}
.y8f{bottom:318.559998pt;}
.yd5{bottom:319.679993pt;}
.y134{bottom:323.679993pt;}
.yac{bottom:325.119995pt;}
.yf8{bottom:327.679993pt;}
.y37{bottom:327.839996pt;}
.y15{bottom:330.559998pt;}
.y6d{bottom:331.839996pt;}
.y11a{bottom:334.239990pt;}
.y4d{bottom:334.559998pt;}
.yd4{bottom:335.679993pt;}
.y8e{bottom:335.839996pt;}
.y133{bottom:339.679993pt;}
.yf7{bottom:343.679993pt;}
.y36{bottom:345.119995pt;}
.yab{bottom:346.559998pt;}
.y14{bottom:347.839996pt;}
.y6c{bottom:349.119995pt;}
.y119{bottom:350.239990pt;}
.yd3{bottom:351.679993pt;}
.y4c{bottom:351.839996pt;}
.y8d{bottom:353.119995pt;}
.y132{bottom:355.679993pt;}
.yf6{bottom:359.679993pt;}
.y35{bottom:362.559998pt;}
.yaa{bottom:363.839996pt;}
.y13{bottom:365.119995pt;}
.y118{bottom:366.239990pt;}
.y6b{bottom:366.559998pt;}
.yd2{bottom:367.679993pt;}
.yc0{bottom:367.839996pt;}
.y4b{bottom:369.119995pt;}
.y131{bottom:371.679993pt;}
.y8c{bottom:374.559998pt;}
.yf5{bottom:375.679993pt;}
.y34{bottom:379.839996pt;}
.ya9{bottom:381.119995pt;}
.y117{bottom:382.239990pt;}
.y12{bottom:382.559998pt;}
.yd1{bottom:383.679993pt;}
.y6a{bottom:383.839996pt;}
.y4a{bottom:386.559998pt;}
.y130{bottom:387.679993pt;}
.yf4{bottom:391.679993pt;}
.y8b{bottom:391.839996pt;}
.y33{bottom:397.119995pt;}
.ya8{bottom:398.559998pt;}
.yd0{bottom:399.679993pt;}
.y11{bottom:399.839996pt;}
.y69{bottom:401.119995pt;}
.y116{bottom:402.239990pt;}
.y12f{bottom:403.679993pt;}
.y49{bottom:403.839996pt;}
.yf3{bottom:407.679993pt;}
.y8a{bottom:409.119995pt;}
.y32{bottom:414.559998pt;}
.ycf{bottom:415.679993pt;}
.ya7{bottom:415.839996pt;}
.y10{bottom:417.279999pt;}
.y68{bottom:418.559998pt;}
.y12e{bottom:419.679993pt;}
.y48{bottom:421.119995pt;}
.y115{bottom:422.239990pt;}
.yf2{bottom:423.679993pt;}
.y89{bottom:430.559998pt;}
.yce{bottom:431.679993pt;}
.y31{bottom:431.839996pt;}
.ya6{bottom:433.119995pt;}
.y67{bottom:435.839996pt;}
.y114{bottom:438.239990pt;}
.yf{bottom:438.559998pt;}
.yf1{bottom:439.679993pt;}
.ycd{bottom:447.679993pt;}
.y30{bottom:449.119995pt;}
.ya5{bottom:450.559998pt;}
.y88{bottom:451.839996pt;}
.y66{bottom:453.119995pt;}
.y113{bottom:454.239990pt;}
.yf0{bottom:455.679993pt;}
.ye{bottom:455.839996pt;}
.ycc{bottom:463.679993pt;}
.y2f{bottom:466.559998pt;}
.ya4{bottom:467.839996pt;}
.y112{bottom:470.239990pt;}
.y65{bottom:470.559998pt;}
.yef{bottom:471.679993pt;}
.yd{bottom:473.119995pt;}
.y12d{bottom:475.679993pt;}
.ycb{bottom:479.679993pt;}
.y2e{bottom:483.839996pt;}
.ya3{bottom:485.119995pt;}
.y111{bottom:486.239990pt;}
.yee{bottom:487.679993pt;}
.y64{bottom:487.839996pt;}
.yc{bottom:490.559998pt;}
.yca{bottom:495.679993pt;}
.y2d{bottom:501.119995pt;}
.y110{bottom:502.239990pt;}
.ya2{bottom:502.720001pt;}
.yed{bottom:503.679993pt;}
.y63{bottom:505.119995pt;}
.yb{bottom:507.839996pt;}
.yc9{bottom:511.679993pt;}
.y10f{bottom:518.240005pt;}
.y2c{bottom:518.559998pt;}
.yec{bottom:519.679993pt;}
.y62{bottom:522.559998pt;}
.ya1{bottom:523.839996pt;}
.ya{bottom:525.119995pt;}
.yc8{bottom:527.679993pt;}
.y10e{bottom:534.240005pt;}
.yeb{bottom:535.679993pt;}
.y2b{bottom:535.839996pt;}
.y61{bottom:539.839996pt;}
.ya0{bottom:541.119995pt;}
.y9{bottom:542.559998pt;}
.yc7{bottom:543.679993pt;}
.y10d{bottom:550.240005pt;}
.yea{bottom:551.679993pt;}
.y2a{bottom:553.119995pt;}
.y13d{bottom:555.679993pt;}
.y60{bottom:557.119995pt;}
.y87{bottom:558.559998pt;}
.yc6{bottom:559.679993pt;}
.y8{bottom:559.839996pt;}
.y10c{bottom:566.240005pt;}
.ye9{bottom:567.679993pt;}
.y29{bottom:570.559998pt;}
.y5f{bottom:574.559998pt;}
.y12c{bottom:575.679993pt;}
.y9f{bottom:575.839996pt;}
.y86{bottom:576.000000pt;}
.y47{bottom:577.119995pt;}
.y7{bottom:577.279999pt;}
.y10b{bottom:582.240005pt;}
.ye8{bottom:583.679993pt;}
.y28{bottom:587.839996pt;}
.y12b{bottom:591.679993pt;}
.y5e{bottom:591.839996pt;}
.yc5{bottom:592.960007pt;}
.y9e{bottom:593.119995pt;}
.y46{bottom:594.559998pt;}
.y10a{bottom:598.240005pt;}
.ye7{bottom:599.679993pt;}
.y6{bottom:602.559998pt;}
.y27{bottom:605.119995pt;}
.y12a{bottom:607.679993pt;}
.y5d{bottom:609.119995pt;}
.y9d{bottom:610.559998pt;}
.y109{bottom:614.240005pt;}
.ye6{bottom:615.679993pt;}
.y5{bottom:620.000000pt;}
.y26{bottom:622.559998pt;}
.y129{bottom:623.679993pt;}
.y5c{bottom:626.559998pt;}
.y13c{bottom:627.679993pt;}
.y45{bottom:627.839996pt;}
.y108{bottom:630.240005pt;}
.ye5{bottom:631.679993pt;}
.y25{bottom:639.839996pt;}
.y128{bottom:643.680000pt;}
.y5b{bottom:643.839996pt;}
.y4{bottom:645.440002pt;}
.y107{bottom:646.559998pt;}
.ye4{bottom:647.680000pt;}
.y24{bottom:661.120003pt;}
.ye3{bottom:663.680000pt;}
.y23{bottom:678.559998pt;}
.y9c{bottom:678.720001pt;}
.ye2{bottom:679.680000pt;}
.y1{bottom:716.320000pt;}
.he{height:39.836970pt;}
.h10{height:42.102564pt;}
.h3{height:43.301219pt;}
.h7{height:44.438933pt;}
.ha{height:44.879435pt;}
.hc{height:49.257681pt;}
.hd{height:49.745949pt;}
.h2{height:50.662339pt;}
.h1{height:53.541161pt;}
.h4{height:54.071890pt;}
.h6{height:55.373617pt;}
.h9{height:55.373769pt;}
.h5{height:55.373797pt;}
.hb{height:55.373801pt;}
.h8{height:55.373861pt;}
.hf{height:55.682566pt;}
.h0{height:768.000000pt;}
.w0{width:480.000000pt;}
.x0{left:0.000000pt;}
.xc{left:56.799999pt;}
.x6{left:75.680000pt;}
.x8{left:94.559998pt;}
.x4{left:115.360001pt;}
.x11{left:135.199997pt;}
.x5{left:140.639999pt;}
.x9{left:174.080002pt;}
.x7{left:226.880005pt;}
.xf{left:234.399994pt;}
.xa{left:238.240005pt;}
.xb{left:245.759995pt;}
.xe{left:248.800003pt;}
.x10{left:253.279999pt;}
.x1{left:255.199997pt;}
.x2{left:257.119995pt;}
.x3{left:264.640015pt;}
.xd{left:267.679993pt;}
}




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