
    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_7a4cb007f92a6f695e306706.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087402;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_2cf3cb998e4a07d3c7ee7598.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_82dd23e2a55eef349ccefc64.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_6b64dabfc6bf9636af7781e5.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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);}
.v5{vertical-align:-21.978000px;}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.976000px;}
.v4{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009186px;}
.ls0{letter-spacing:0.016200px;}
.ls3{letter-spacing:0.513157px;}
.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;}
}
.ws2{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws6{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.004280px;}
.ws5{word-spacing:-8.465160px;}
.ws3{word-spacing:-6.926040px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-9.169200px;}
._21{margin-left:-8.093100px;}
._1f{margin-left:-6.561096px;}
._8{margin-left:-5.557200px;}
._2{margin-left:-4.063500px;}
._3{margin-left:-2.457000px;}
._1{margin-left:-1.278900px;}
._b{width:1.041000px;}
._9{width:2.362800px;}
._18{width:3.372600px;}
._6{width:4.404000px;}
._c{width:6.144600px;}
._4{width:7.261200px;}
._5{width:8.345400px;}
._12{width:10.177200px;}
._a{width:11.510400px;}
._d{width:12.942600px;}
._7{width:15.846600px;}
._15{width:16.864500px;}
._14{width:17.907600px;}
._10{width:19.364400px;}
._11{width:20.473200px;}
._13{width:21.799800px;}
._f{width:23.179200px;}
._1e{width:24.646200px;}
._19{width:26.004000px;}
._1d{width:27.317400px;}
._e{width:29.198400px;}
._23{width:31.845000px;}
._1b{width:32.980200px;}
._1c{width:34.069200px;}
._20{width:35.488500px;}
._16{width:37.950000px;}
._17{width:39.474600px;}
._1a{width:40.722000px;}
._24{width:41.817900px;}
._22{width:48.569400px;}
.fc1{color:rgb(19,16,15);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs2{font-size:36.729000px;}
.fs8{font-size:38.478000px;}
.fs4{font-size:45.474000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:89.291400px;}
.y4e{bottom:123.306900px;}
.y6f{bottom:123.419400px;}
.y24{bottom:129.836400px;}
.y90{bottom:131.136900px;}
.y79{bottom:133.653900px;}
.yef{bottom:134.136900px;}
.yba{bottom:143.549400px;}
.y4d{bottom:144.002400px;}
.y6e{bottom:144.114900px;}
.y23{bottom:146.036400px;}
.y8f{bottom:149.886900px;}
.y7b{bottom:151.653900px;}
.yee{bottom:152.886900px;}
.yb9{bottom:155.253900px;}
.y70{bottom:155.819400px;}
.y78{bottom:156.149400px;}
.y22{bottom:162.236400px;}
.y8e{bottom:168.636900px;}
.y77{bottom:169.653900px;}
.y4c{bottom:170.136900px;}
.yed{bottom:173.136900px;}
.y7a{bottom:174.149400px;}
.yb8{bottom:175.949400px;}
.y21{bottom:178.436400px;}
.y8d{bottom:187.386900px;}
.y76{bottom:187.653900px;}
.y4b{bottom:188.886900px;}
.yec{bottom:191.886900px;}
.y97{bottom:197.886900px;}
.y20{bottom:199.131900px;}
.y6d{bottom:199.386900px;}
.yb7{bottom:205.653900px;}
.y8c{bottom:206.136900px;}
.y4a{bottom:207.636900px;}
.y75{bottom:210.149400px;}
.yeb{bottom:210.636900px;}
.y1f{bottom:215.331900px;}
.y96{bottom:216.636900px;}
.y6c{bottom:218.136900px;}
.ydc{bottom:221.856900px;}
.y74{bottom:223.653900px;}
.y8b{bottom:224.886900px;}
.y49{bottom:226.386900px;}
.yb6{bottom:228.149400px;}
.yea{bottom:230.886900px;}
.y95{bottom:235.386900px;}
.y6b{bottom:236.886900px;}
.y73{bottom:241.653900px;}
.y8a{bottom:243.636900px;}
.y1e{bottom:244.152900px;}
.y48{bottom:245.136900px;}
.y9d{bottom:246.149400px;}
.ye9{bottom:249.636900px;}
.y94{bottom:254.136900px;}
.ydb{bottom:255.627900px;}
.y6a{bottom:255.636900px;}
.y89{bottom:262.386900px;}
.y1d{bottom:262.902900px;}
.y47{bottom:263.886900px;}
.y72{bottom:264.149400px;}
.ye8{bottom:268.386900px;}
.y137{bottom:269.652900px;}
.y93{bottom:272.886900px;}
.yda{bottom:274.377900px;}
.y69{bottom:274.386900px;}
.yb5{bottom:277.653900px;}
.y88{bottom:281.136900px;}
.y1c{bottom:281.652900px;}
.y46{bottom:282.636900px;}
.y136{bottom:288.402900px;}
.ye7{bottom:288.636900px;}
.yd9{bottom:293.127900px;}
.y68{bottom:293.136900px;}
.y87{bottom:299.886900px;}
.yb4{bottom:300.149400px;}
.y1b{bottom:300.402900px;}
.y92{bottom:300.636900px;}
.y45{bottom:301.386900px;}
.ye6{bottom:307.386900px;}
.y135{bottom:308.652900px;}
.yd8{bottom:311.877900px;}
.y67{bottom:311.886900px;}
.y86{bottom:318.636900px;}
.y91{bottom:319.386900px;}
.y44{bottom:320.136900px;}
.ye5{bottom:326.136900px;}
.y134{bottom:327.402900px;}
.y1a{bottom:328.152900px;}
.yb3{bottom:329.136900px;}
.yd7{bottom:330.627900px;}
.y66{bottom:330.636900px;}
.y85{bottom:337.386900px;}
.y43{bottom:338.886900px;}
.y133{bottom:346.152900px;}
.ye4{bottom:346.386900px;}
.yb2{bottom:347.886900px;}
.yd6{bottom:349.377900px;}
.y9c{bottom:356.136900px;}
.y42{bottom:357.636900px;}
.y65{bottom:358.386900px;}
.y132{bottom:364.902900px;}
.ye3{bottom:365.136900px;}
.yb1{bottom:366.636900px;}
.yd5{bottom:368.127900px;}
.y19{bottom:373.902900px;}
.y9b{bottom:374.886900px;}
.y41{bottom:376.386900px;}
.y131{bottom:383.652900px;}
.ye2{bottom:383.886900px;}
.yb0{bottom:385.386900px;}
.yd4{bottom:386.877900px;}
.y18{bottom:392.652900px;}
.y9a{bottom:393.636900px;}
.y40{bottom:395.136900px;}
.y64{bottom:396.636900px;}
.y130{bottom:402.402900px;}
.ye1{bottom:402.636900px;}
.yaf{bottom:404.136900px;}
.y103{bottom:404.886900px;}
.yd3{bottom:405.627900px;}
.y11c{bottom:406.902900px;}
.y99{bottom:412.386900px;}
.y3f{bottom:413.886900px;}
.y63{bottom:415.386900px;}
.y17{bottom:420.402900px;}
.y12f{bottom:421.152900px;}
.yae{bottom:422.886900px;}
.y102{bottom:423.636900px;}
.y11b{bottom:425.652900px;}
.y3e{bottom:432.636900px;}
.yd2{bottom:433.377900px;}
.y62{bottom:434.136900px;}
.y16{bottom:439.152900px;}
.y12e{bottom:439.902900px;}
.yad{bottom:441.636900px;}
.y101{bottom:442.386900px;}
.y11a{bottom:445.902900px;}
.y3d{bottom:451.386900px;}
.y61{bottom:452.886900px;}
.y15{bottom:457.902900px;}
.y12d{bottom:458.652900px;}
.yac{bottom:460.386900px;}
.y100{bottom:462.636900px;}
.y119{bottom:464.652900px;}
.y3c{bottom:470.136900px;}
.yd1{bottom:471.627900px;}
.y60{bottom:471.636900px;}
.y14{bottom:476.652900px;}
.y12c{bottom:477.402900px;}
.ye0{bottom:479.136900px;}
.yab{bottom:480.636900px;}
.yff{bottom:481.386900px;}
.y118{bottom:483.402900px;}
.y3b{bottom:488.886900px;}
.yd0{bottom:490.377900px;}
.y5f{bottom:490.386900px;}
.y13{bottom:495.402900px;}
.y12b{bottom:496.152900px;}
.yaa{bottom:499.386900px;}
.yfe{bottom:500.136900px;}
.y117{bottom:502.152900px;}
.y3a{bottom:507.636900px;}
.ycf{bottom:509.127900px;}
.y71{bottom:509.136900px;}
.y5e{bottom:510.636900px;}
.y12{bottom:514.152900px;}
.y12a{bottom:514.902900px;}
.ya9{bottom:518.136900px;}
.yfd{bottom:520.386900px;}
.y116{bottom:520.902900px;}
.y84{bottom:526.386900px;}
.yce{bottom:527.877900px;}
.y39{bottom:527.886900px;}
.y5d{bottom:529.386900px;}
.y11{bottom:532.902900px;}
.y129{bottom:533.652900px;}
.ya8{bottom:536.886900px;}
.yfc{bottom:539.136900px;}
.y115{bottom:539.652900px;}
.y83{bottom:545.136900px;}
.ycd{bottom:546.627900px;}
.y38{bottom:546.636900px;}
.y5c{bottom:548.136900px;}
.y10{bottom:551.652900px;}
.y128{bottom:552.402900px;}
.ya7{bottom:555.636900px;}
.ydf{bottom:557.136900px;}
.yfb{bottom:557.886900px;}
.y114{bottom:558.402900px;}
.y82{bottom:563.886900px;}
.ycc{bottom:565.377900px;}
.y37{bottom:565.386900px;}
.y5b{bottom:566.886900px;}
.yf{bottom:570.402900px;}
.y127{bottom:571.152900px;}
.ya6{bottom:574.386900px;}
.yde{bottom:575.886900px;}
.yfa{bottom:576.636900px;}
.y113{bottom:577.152900px;}
.y81{bottom:582.636900px;}
.ycb{bottom:584.127900px;}
.y36{bottom:584.136900px;}
.y5a{bottom:585.636900px;}
.ye{bottom:589.152900px;}
.y126{bottom:589.902900px;}
.ya5{bottom:593.136900px;}
.y112{bottom:595.902900px;}
.yf9{bottom:596.886900px;}
.y80{bottom:601.386900px;}
.yca{bottom:602.877900px;}
.y35{bottom:602.886900px;}
.ydd{bottom:603.636900px;}
.y59{bottom:604.386900px;}
.yd{bottom:607.902900px;}
.y125{bottom:608.652900px;}
.ya4{bottom:611.886900px;}
.y111{bottom:614.652900px;}
.yf8{bottom:615.636900px;}
.y7f{bottom:620.136900px;}
.yc9{bottom:621.627900px;}
.y34{bottom:621.636900px;}
.y58{bottom:623.136900px;}
.yc{bottom:626.652900px;}
.y124{bottom:627.402900px;}
.ya3{bottom:630.636900px;}
.y110{bottom:633.402900px;}
.yf7{bottom:635.886900px;}
.y98{bottom:638.886900px;}
.yc8{bottom:640.377900px;}
.y33{bottom:640.386900px;}
.y57{bottom:641.886900px;}
.yb{bottom:645.402900px;}
.y123{bottom:646.152900px;}
.ya2{bottom:649.386900px;}
.y10f{bottom:652.152900px;}
.yf6{bottom:654.636900px;}
.yc7{bottom:659.127900px;}
.y32{bottom:659.136900px;}
.y56{bottom:660.636900px;}
.ya{bottom:664.152900px;}
.y122{bottom:664.902900px;}
.ya1{bottom:669.636900px;}
.y10e{bottom:670.902900px;}
.yf5{bottom:673.386900px;}
.yc6{bottom:677.877900px;}
.y31{bottom:677.886900px;}
.y55{bottom:679.386900px;}
.y121{bottom:683.652900px;}
.ya0{bottom:688.386900px;}
.y10d{bottom:689.652900px;}
.yf4{bottom:693.636900px;}
.yc5{bottom:696.627900px;}
.y30{bottom:696.636900px;}
.y54{bottom:698.136900px;}
.y120{bottom:702.402900px;}
.y9f{bottom:707.136900px;}
.y10c{bottom:708.402900px;}
.yf3{bottom:712.386900px;}
.yc4{bottom:715.377900px;}
.y2f{bottom:715.386900px;}
.y53{bottom:716.886900px;}
.y9{bottom:720.402900px;}
.y10b{bottom:727.152900px;}
.y11f{bottom:730.152900px;}
.yf2{bottom:732.636900px;}
.yc3{bottom:734.127900px;}
.y2e{bottom:734.136900px;}
.y9e{bottom:734.886900px;}
.y52{bottom:735.636900px;}
.y8{bottom:742.902900px;}
.y10a{bottom:745.902900px;}
.yf1{bottom:751.386900px;}
.yc2{bottom:752.877900px;}
.y2d{bottom:752.886900px;}
.y51{bottom:754.386900px;}
.y11e{bottom:762.402900px;}
.y109{bottom:764.652900px;}
.yf0{bottom:770.136900px;}
.y2c{bottom:771.636900px;}
.yc1{bottom:773.127900px;}
.y50{bottom:773.136900px;}
.y11d{bottom:781.152900px;}
.y108{bottom:783.402900px;}
.y2b{bottom:790.386900px;}
.yc0{bottom:791.877900px;}
.y4f{bottom:791.886900px;}
.y107{bottom:802.152900px;}
.y7e{bottom:809.136900px;}
.ybf{bottom:810.627900px;}
.y2a{bottom:810.636900px;}
.y106{bottom:820.902900px;}
.y7d{bottom:827.886900px;}
.ybe{bottom:829.377900px;}
.y29{bottom:829.386900px;}
.y7{bottom:829.902900px;}
.y105{bottom:839.652900px;}
.y7c{bottom:846.636900px;}
.ybd{bottom:848.127900px;}
.y28{bottom:848.136900px;}
.y6{bottom:848.652900px;}
.y3{bottom:856.293900px;}
.y104{bottom:858.402900px;}
.ybc{bottom:866.877900px;}
.y27{bottom:866.886900px;}
.y5{bottom:867.402900px;}
.ybb{bottom:885.627900px;}
.y26{bottom:885.636900px;}
.y4{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y25{bottom:922.796400px;}
.hb{height:28.951594px;}
.h3{height:38.285156px;}
.hd{height:41.718750px;}
.h5{height:44.666016px;}
.he{height:45.619629px;}
.h9{height:46.792969px;}
.hc{height:46.933594px;}
.h4{height:47.572244px;}
.h8{height:47.791992px;}
.h2{height:54.755859px;}
.h6{height:56.481445px;}
.ha{height:57.363281px;}
.h7{height:58.902683px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x4{left:91.416600px;}
.x9{left:108.425100px;}
.x5{left:131.829600px;}
.x8{left:133.937100px;}
.x7{left:142.440600px;}
.x6{left:269.300100px;}
.xd{left:292.388100px;}
.xe{left:322.938600px;}
.xc{left:329.726100px;}
.x3{left:443.360100px;}
.xa{left:459.536100px;}
.x2{left:552.690600px;}
.xb{left:596.750100px;}
.x1{left:605.471100px;}
@media print{
.v5{vertical-align:-19.536000pt;}
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.645333pt;}
.v4{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008165pt;}
.ls0{letter-spacing:0.014400pt;}
.ls3{letter-spacing:0.456139pt;}
.ws2{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.892693pt;}
.ws5{word-spacing:-7.524587pt;}
.ws3{word-spacing:-6.156480pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-8.150400pt;}
._21{margin-left:-7.193867pt;}
._1f{margin-left:-5.832085pt;}
._8{margin-left:-4.939733pt;}
._2{margin-left:-3.612000pt;}
._3{margin-left:-2.184000pt;}
._1{margin-left:-1.136800pt;}
._b{width:0.925333pt;}
._9{width:2.100267pt;}
._18{width:2.997867pt;}
._6{width:3.914667pt;}
._c{width:5.461867pt;}
._4{width:6.454400pt;}
._5{width:7.418133pt;}
._12{width:9.046400pt;}
._a{width:10.231467pt;}
._d{width:11.504533pt;}
._7{width:14.085867pt;}
._15{width:14.990667pt;}
._14{width:15.917867pt;}
._10{width:17.212800pt;}
._11{width:18.198400pt;}
._13{width:19.377600pt;}
._f{width:20.603733pt;}
._1e{width:21.907733pt;}
._19{width:23.114667pt;}
._1d{width:24.282133pt;}
._e{width:25.954133pt;}
._23{width:28.306667pt;}
._1b{width:29.315733pt;}
._1c{width:30.283733pt;}
._20{width:31.545333pt;}
._16{width:33.733333pt;}
._17{width:35.088533pt;}
._1a{width:36.197333pt;}
._24{width:37.171467pt;}
._22{width:43.172800pt;}
.fs6{font-size:27.984000pt;}
.fs2{font-size:32.648000pt;}
.fs8{font-size:34.202667pt;}
.fs4{font-size:40.421333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:79.370133pt;}
.y4e{bottom:109.606133pt;}
.y6f{bottom:109.706133pt;}
.y24{bottom:115.410133pt;}
.y90{bottom:116.566133pt;}
.y79{bottom:118.803467pt;}
.yef{bottom:119.232800pt;}
.yba{bottom:127.599467pt;}
.y4d{bottom:128.002133pt;}
.y6e{bottom:128.102133pt;}
.y23{bottom:129.810133pt;}
.y8f{bottom:133.232800pt;}
.y7b{bottom:134.803467pt;}
.yee{bottom:135.899467pt;}
.yb9{bottom:138.003467pt;}
.y70{bottom:138.506133pt;}
.y78{bottom:138.799467pt;}
.y22{bottom:144.210133pt;}
.y8e{bottom:149.899467pt;}
.y77{bottom:150.803467pt;}
.y4c{bottom:151.232800pt;}
.yed{bottom:153.899467pt;}
.y7a{bottom:154.799467pt;}
.yb8{bottom:156.399467pt;}
.y21{bottom:158.610133pt;}
.y8d{bottom:166.566133pt;}
.y76{bottom:166.803467pt;}
.y4b{bottom:167.899467pt;}
.yec{bottom:170.566133pt;}
.y97{bottom:175.899467pt;}
.y20{bottom:177.006133pt;}
.y6d{bottom:177.232800pt;}
.yb7{bottom:182.803467pt;}
.y8c{bottom:183.232800pt;}
.y4a{bottom:184.566133pt;}
.y75{bottom:186.799467pt;}
.yeb{bottom:187.232800pt;}
.y1f{bottom:191.406133pt;}
.y96{bottom:192.566133pt;}
.y6c{bottom:193.899467pt;}
.ydc{bottom:197.206133pt;}
.y74{bottom:198.803467pt;}
.y8b{bottom:199.899467pt;}
.y49{bottom:201.232800pt;}
.yb6{bottom:202.799467pt;}
.yea{bottom:205.232800pt;}
.y95{bottom:209.232800pt;}
.y6b{bottom:210.566133pt;}
.y73{bottom:214.803467pt;}
.y8a{bottom:216.566133pt;}
.y1e{bottom:217.024800pt;}
.y48{bottom:217.899467pt;}
.y9d{bottom:218.799467pt;}
.ye9{bottom:221.899467pt;}
.y94{bottom:225.899467pt;}
.ydb{bottom:227.224800pt;}
.y6a{bottom:227.232800pt;}
.y89{bottom:233.232800pt;}
.y1d{bottom:233.691467pt;}
.y47{bottom:234.566133pt;}
.y72{bottom:234.799467pt;}
.ye8{bottom:238.566133pt;}
.y137{bottom:239.691467pt;}
.y93{bottom:242.566133pt;}
.yda{bottom:243.891467pt;}
.y69{bottom:243.899467pt;}
.yb5{bottom:246.803467pt;}
.y88{bottom:249.899467pt;}
.y1c{bottom:250.358133pt;}
.y46{bottom:251.232800pt;}
.y136{bottom:256.358133pt;}
.ye7{bottom:256.566133pt;}
.yd9{bottom:260.558133pt;}
.y68{bottom:260.566133pt;}
.y87{bottom:266.566133pt;}
.yb4{bottom:266.799467pt;}
.y1b{bottom:267.024800pt;}
.y92{bottom:267.232800pt;}
.y45{bottom:267.899467pt;}
.ye6{bottom:273.232800pt;}
.y135{bottom:274.358133pt;}
.yd8{bottom:277.224800pt;}
.y67{bottom:277.232800pt;}
.y86{bottom:283.232800pt;}
.y91{bottom:283.899467pt;}
.y44{bottom:284.566133pt;}
.ye5{bottom:289.899467pt;}
.y134{bottom:291.024800pt;}
.y1a{bottom:291.691467pt;}
.yb3{bottom:292.566133pt;}
.yd7{bottom:293.891467pt;}
.y66{bottom:293.899467pt;}
.y85{bottom:299.899467pt;}
.y43{bottom:301.232800pt;}
.y133{bottom:307.691467pt;}
.ye4{bottom:307.899467pt;}
.yb2{bottom:309.232800pt;}
.yd6{bottom:310.558133pt;}
.y9c{bottom:316.566133pt;}
.y42{bottom:317.899467pt;}
.y65{bottom:318.566133pt;}
.y132{bottom:324.358133pt;}
.ye3{bottom:324.566133pt;}
.yb1{bottom:325.899467pt;}
.yd5{bottom:327.224800pt;}
.y19{bottom:332.358133pt;}
.y9b{bottom:333.232800pt;}
.y41{bottom:334.566133pt;}
.y131{bottom:341.024800pt;}
.ye2{bottom:341.232800pt;}
.yb0{bottom:342.566133pt;}
.yd4{bottom:343.891467pt;}
.y18{bottom:349.024800pt;}
.y9a{bottom:349.899467pt;}
.y40{bottom:351.232800pt;}
.y64{bottom:352.566133pt;}
.y130{bottom:357.691467pt;}
.ye1{bottom:357.899467pt;}
.yaf{bottom:359.232800pt;}
.y103{bottom:359.899467pt;}
.yd3{bottom:360.558133pt;}
.y11c{bottom:361.691467pt;}
.y99{bottom:366.566133pt;}
.y3f{bottom:367.899467pt;}
.y63{bottom:369.232800pt;}
.y17{bottom:373.691467pt;}
.y12f{bottom:374.358133pt;}
.yae{bottom:375.899467pt;}
.y102{bottom:376.566133pt;}
.y11b{bottom:378.358133pt;}
.y3e{bottom:384.566133pt;}
.yd2{bottom:385.224800pt;}
.y62{bottom:385.899467pt;}
.y16{bottom:390.358133pt;}
.y12e{bottom:391.024800pt;}
.yad{bottom:392.566133pt;}
.y101{bottom:393.232800pt;}
.y11a{bottom:396.358133pt;}
.y3d{bottom:401.232800pt;}
.y61{bottom:402.566133pt;}
.y15{bottom:407.024800pt;}
.y12d{bottom:407.691467pt;}
.yac{bottom:409.232800pt;}
.y100{bottom:411.232800pt;}
.y119{bottom:413.024800pt;}
.y3c{bottom:417.899467pt;}
.yd1{bottom:419.224800pt;}
.y60{bottom:419.232800pt;}
.y14{bottom:423.691467pt;}
.y12c{bottom:424.358133pt;}
.ye0{bottom:425.899467pt;}
.yab{bottom:427.232800pt;}
.yff{bottom:427.899467pt;}
.y118{bottom:429.691467pt;}
.y3b{bottom:434.566133pt;}
.yd0{bottom:435.891467pt;}
.y5f{bottom:435.899467pt;}
.y13{bottom:440.358133pt;}
.y12b{bottom:441.024800pt;}
.yaa{bottom:443.899467pt;}
.yfe{bottom:444.566133pt;}
.y117{bottom:446.358133pt;}
.y3a{bottom:451.232800pt;}
.ycf{bottom:452.558133pt;}
.y71{bottom:452.566133pt;}
.y5e{bottom:453.899467pt;}
.y12{bottom:457.024800pt;}
.y12a{bottom:457.691467pt;}
.ya9{bottom:460.566133pt;}
.yfd{bottom:462.566133pt;}
.y116{bottom:463.024800pt;}
.y84{bottom:467.899467pt;}
.yce{bottom:469.224800pt;}
.y39{bottom:469.232800pt;}
.y5d{bottom:470.566133pt;}
.y11{bottom:473.691467pt;}
.y129{bottom:474.358133pt;}
.ya8{bottom:477.232800pt;}
.yfc{bottom:479.232800pt;}
.y115{bottom:479.691467pt;}
.y83{bottom:484.566133pt;}
.ycd{bottom:485.891467pt;}
.y38{bottom:485.899467pt;}
.y5c{bottom:487.232800pt;}
.y10{bottom:490.358133pt;}
.y128{bottom:491.024800pt;}
.ya7{bottom:493.899467pt;}
.ydf{bottom:495.232800pt;}
.yfb{bottom:495.899467pt;}
.y114{bottom:496.358133pt;}
.y82{bottom:501.232800pt;}
.ycc{bottom:502.558133pt;}
.y37{bottom:502.566133pt;}
.y5b{bottom:503.899467pt;}
.yf{bottom:507.024800pt;}
.y127{bottom:507.691467pt;}
.ya6{bottom:510.566133pt;}
.yde{bottom:511.899467pt;}
.yfa{bottom:512.566133pt;}
.y113{bottom:513.024800pt;}
.y81{bottom:517.899467pt;}
.ycb{bottom:519.224800pt;}
.y36{bottom:519.232800pt;}
.y5a{bottom:520.566133pt;}
.ye{bottom:523.691467pt;}
.y126{bottom:524.358133pt;}
.ya5{bottom:527.232800pt;}
.y112{bottom:529.691467pt;}
.yf9{bottom:530.566133pt;}
.y80{bottom:534.566133pt;}
.yca{bottom:535.891467pt;}
.y35{bottom:535.899467pt;}
.ydd{bottom:536.566133pt;}
.y59{bottom:537.232800pt;}
.yd{bottom:540.358133pt;}
.y125{bottom:541.024800pt;}
.ya4{bottom:543.899467pt;}
.y111{bottom:546.358133pt;}
.yf8{bottom:547.232800pt;}
.y7f{bottom:551.232800pt;}
.yc9{bottom:552.558133pt;}
.y34{bottom:552.566133pt;}
.y58{bottom:553.899467pt;}
.yc{bottom:557.024800pt;}
.y124{bottom:557.691467pt;}
.ya3{bottom:560.566133pt;}
.y110{bottom:563.024800pt;}
.yf7{bottom:565.232800pt;}
.y98{bottom:567.899467pt;}
.yc8{bottom:569.224800pt;}
.y33{bottom:569.232800pt;}
.y57{bottom:570.566133pt;}
.yb{bottom:573.691467pt;}
.y123{bottom:574.358133pt;}
.ya2{bottom:577.232800pt;}
.y10f{bottom:579.691467pt;}
.yf6{bottom:581.899467pt;}
.yc7{bottom:585.891467pt;}
.y32{bottom:585.899467pt;}
.y56{bottom:587.232800pt;}
.ya{bottom:590.358133pt;}
.y122{bottom:591.024800pt;}
.ya1{bottom:595.232800pt;}
.y10e{bottom:596.358133pt;}
.yf5{bottom:598.566133pt;}
.yc6{bottom:602.558133pt;}
.y31{bottom:602.566133pt;}
.y55{bottom:603.899467pt;}
.y121{bottom:607.691467pt;}
.ya0{bottom:611.899467pt;}
.y10d{bottom:613.024800pt;}
.yf4{bottom:616.566133pt;}
.yc5{bottom:619.224800pt;}
.y30{bottom:619.232800pt;}
.y54{bottom:620.566133pt;}
.y120{bottom:624.358133pt;}
.y9f{bottom:628.566133pt;}
.y10c{bottom:629.691467pt;}
.yf3{bottom:633.232800pt;}
.yc4{bottom:635.891467pt;}
.y2f{bottom:635.899467pt;}
.y53{bottom:637.232800pt;}
.y9{bottom:640.358133pt;}
.y10b{bottom:646.358133pt;}
.y11f{bottom:649.024800pt;}
.yf2{bottom:651.232800pt;}
.yc3{bottom:652.558133pt;}
.y2e{bottom:652.566133pt;}
.y9e{bottom:653.232800pt;}
.y52{bottom:653.899467pt;}
.y8{bottom:660.358133pt;}
.y10a{bottom:663.024800pt;}
.yf1{bottom:667.899467pt;}
.yc2{bottom:669.224800pt;}
.y2d{bottom:669.232800pt;}
.y51{bottom:670.566133pt;}
.y11e{bottom:677.691467pt;}
.y109{bottom:679.691467pt;}
.yf0{bottom:684.566133pt;}
.y2c{bottom:685.899467pt;}
.yc1{bottom:687.224800pt;}
.y50{bottom:687.232800pt;}
.y11d{bottom:694.358133pt;}
.y108{bottom:696.358133pt;}
.y2b{bottom:702.566133pt;}
.yc0{bottom:703.891467pt;}
.y4f{bottom:703.899467pt;}
.y107{bottom:713.024800pt;}
.y7e{bottom:719.232800pt;}
.ybf{bottom:720.558133pt;}
.y2a{bottom:720.566133pt;}
.y106{bottom:729.691467pt;}
.y7d{bottom:735.899467pt;}
.ybe{bottom:737.224800pt;}
.y29{bottom:737.232800pt;}
.y7{bottom:737.691467pt;}
.y105{bottom:746.358133pt;}
.y7c{bottom:752.566133pt;}
.ybd{bottom:753.891467pt;}
.y28{bottom:753.899467pt;}
.y6{bottom:754.358133pt;}
.y3{bottom:761.150133pt;}
.y104{bottom:763.024800pt;}
.ybc{bottom:770.558133pt;}
.y27{bottom:770.566133pt;}
.y5{bottom:771.024800pt;}
.ybb{bottom:787.224800pt;}
.y26{bottom:787.232800pt;}
.y4{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y25{bottom:820.263467pt;}
.hb{height:25.734750pt;}
.h3{height:34.031250pt;}
.hd{height:37.083333pt;}
.h5{height:39.703125pt;}
.he{height:40.550781pt;}
.h9{height:41.593750pt;}
.hc{height:41.718750pt;}
.h4{height:42.286439pt;}
.h8{height:42.481771pt;}
.h2{height:48.671875pt;}
.h6{height:50.205729pt;}
.ha{height:50.989583pt;}
.h7{height:52.357940pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x4{left:81.259200pt;}
.x9{left:96.377867pt;}
.x5{left:117.181867pt;}
.x8{left:119.055200pt;}
.x7{left:126.613867pt;}
.x6{left:239.377867pt;}
.xd{left:259.900533pt;}
.xe{left:287.056533pt;}
.xc{left:293.089867pt;}
.x3{left:394.097867pt;}
.xa{left:408.476533pt;}
.x2{left:491.280533pt;}
.xb{left:530.444533pt;}
.x1{left:538.196533pt;}
}




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