
    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_321e1620c931a3b0309f5547.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_e00f0eca8b6dde38418c8d9d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_0138f300e49a6689a34f99e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.096680;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_8dba017d33273221a26a50d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7d47accfaa5542a0d57fabf9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.009104px;}
.ls3{letter-spacing:0.259081px;}
.ls4{letter-spacing:0.259220px;}
.ls8{letter-spacing:0.358879px;}
.ls5{letter-spacing:0.358884px;}
.ls2{letter-spacing:0.376444px;}
.lsb{letter-spacing:0.376462px;}
.ls0{letter-spacing:0.424662px;}
.ls7{letter-spacing:0.701854px;}
.lsa{letter-spacing:0.701926px;}
.ls6{letter-spacing:0.701993px;}
.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:-23.335351px;}
.ws3{word-spacing:-18.349228px;}
.ws7{word-spacing:-16.563248px;}
.ws0{word-spacing:-16.554143px;}
.ws1{word-spacing:-15.840595px;}
.ws2{word-spacing:-14.958623px;}
.ws6{word-spacing:-10.770171px;}
.ws4{word-spacing:0.000000px;}
._b{margin-left:-3.855408px;}
._3{margin-left:-2.499933px;}
._4{margin-left:-1.030221px;}
._0{width:1.304731px;}
._1{width:2.609070px;}
._2{width:4.063002px;}
._5{width:5.082919px;}
._7{width:6.086075px;}
._d{width:7.109784px;}
._6{width:8.152202px;}
._8{width:9.629893px;}
._c{width:11.740383px;}
._a{width:13.078060px;}
._9{width:14.857011px;}
._e{width:847.607992px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.881485px;}
.fs1{font-size:54.002250px;}
.fs0{font-size:59.762250px;}
.fs5{font-size:66.242700px;}
.fs3{font-size:72.002705px;}
.fs4{font-size:84.243145px;}
.fs2{font-size:156.245841px;}
.y0{bottom:0.000000px;}
.y8{bottom:1.980010px;}
.yb{bottom:24.120072px;}
.ya{bottom:66.960022px;}
.y119{bottom:112.860077px;}
.yc1{bottom:114.480079px;}
.y6e{bottom:115.920043px;}
.y33{bottom:116.640060px;}
.y52{bottom:117.360077px;}
.y9e{bottom:118.980079px;}
.ydb{bottom:121.140060px;}
.y123{bottom:126.720085px;}
.y118{bottom:130.860077px;}
.yc0{bottom:132.480079px;}
.y6d{bottom:133.920043px;}
.y32{bottom:134.640060px;}
.y51{bottom:135.360077px;}
.y9d{bottom:136.980079px;}
.yda{bottom:139.140060px;}
.y117{bottom:148.860077px;}
.y122{bottom:149.760064px;}
.y6c{bottom:151.920043px;}
.y31{bottom:152.640060px;}
.y50{bottom:153.360077px;}
.y106{bottom:154.980079px;}
.yd9{bottom:157.140060px;}
.ybf{bottom:159.480079px;}
.y147{bottom:161.280052px;}
.y9c{bottom:163.980079px;}
.y116{bottom:166.860077px;}
.y6b{bottom:169.920043px;}
.y30{bottom:170.640060px;}
.y4f{bottom:171.360077px;}
.y105{bottom:172.980079px;}
.yd8{bottom:175.140060px;}
.y146{bottom:178.920043px;}
.y9b{bottom:181.980079px;}
.y12e{bottom:182.340088px;}
.y115{bottom:184.860077px;}
.ybe{bottom:186.480079px;}
.y4e{bottom:189.360077px;}
.y104{bottom:190.980079px;}
.yd7{bottom:193.140060px;}
.y6a{bottom:197.280052px;}
.y2f{bottom:197.640060px;}
.y9a{bottom:199.980079px;}
.y114{bottom:202.860077px;}
.y145{bottom:205.920043px;}
.y4d{bottom:207.360077px;}
.yd6{bottom:211.140060px;}
.ybd{bottom:213.480079px;}
.y2e{bottom:215.640060px;}
.y99{bottom:217.980079px;}
.y12d{bottom:219.420043px;}
.y144{bottom:223.920043px;}
.y4c{bottom:225.360077px;}
.y113{bottom:230.400055px;}
.ybc{bottom:231.480079px;}
.y2d{bottom:233.640060px;}
.y69{bottom:234.360077px;}
.y98{bottom:235.980079px;}
.y12c{bottom:237.420043px;}
.yd5{bottom:238.140060px;}
.y143{bottom:241.920043px;}
.y4b{bottom:243.360077px;}
.ybb{bottom:249.480079px;}
.y2c{bottom:251.640060px;}
.y68{bottom:252.360077px;}
.y97{bottom:253.980079px;}
.y12b{bottom:255.420043px;}
.yd4{bottom:256.140060px;}
.y142{bottom:259.920043px;}
.yba{bottom:267.480079px;}
.y112{bottom:268.740074px;}
.y2b{bottom:269.640060px;}
.y4a{bottom:270.360077px;}
.y96{bottom:271.980079px;}
.y12a{bottom:273.420043px;}
.yd3{bottom:274.140060px;}
.y141{bottom:277.920043px;}
.y2a{bottom:287.640060px;}
.y67{bottom:288.360077px;}
.y95{bottom:289.980079px;}
.y129{bottom:291.420043px;}
.yd2{bottom:292.140060px;}
.yb9{bottom:294.480079px;}
.y140{bottom:295.920043px;}
.y49{bottom:297.360077px;}
.y29{bottom:305.640060px;}
.y66{bottom:306.360077px;}
.y103{bottom:307.980079px;}
.y111{bottom:309.420043px;}
.yd1{bottom:310.140060px;}
.y13f{bottom:313.920043px;}
.y48{bottom:315.360077px;}
.y94{bottom:317.340088px;}
.yb8{bottom:321.480079px;}
.y28{bottom:323.640060px;}
.y102{bottom:325.980079px;}
.yd0{bottom:328.140060px;}
.y13e{bottom:331.920043px;}
.y65{bottom:333.360077px;}
.y110{bottom:336.420043px;}
.y47{bottom:338.760064px;}
.yb7{bottom:339.480079px;}
.y27{bottom:341.640060px;}
.y101{bottom:343.980079px;}
.ycf{bottom:346.140060px;}
.y13d{bottom:349.920043px;}
.y64{bottom:351.360077px;}
.y93{bottom:354.420043px;}
.yb6{bottom:357.480079px;}
.y100{bottom:361.980079px;}
.yce{bottom:364.140060px;}
.y63{bottom:369.360077px;}
.y26{bottom:369.900055px;}
.y92{bottom:372.420043px;}
.yb5{bottom:375.480079px;}
.y13c{bottom:376.920043px;}
.yff{bottom:379.980079px;}
.y62{bottom:387.360077px;}
.y91{bottom:390.420043px;}
.ycd{bottom:391.140060px;}
.yb4{bottom:393.480079px;}
.y13b{bottom:394.920043px;}
.yfe{bottom:397.980079px;}
.y61{bottom:405.360077px;}
.y90{bottom:408.420043px;}
.ycc{bottom:409.140060px;}
.y25{bottom:410.580093px;}
.y13a{bottom:412.920043px;}
.yfd{bottom:415.980079px;}
.yb3{bottom:420.840088px;}
.y60{bottom:423.360077px;}
.y8f{bottom:426.420043px;}
.ycb{bottom:427.140060px;}
.y139{bottom:430.920043px;}
.yfc{bottom:433.980079px;}
.y24{bottom:437.220085px;}
.y8e{bottom:444.420043px;}
.yca{bottom:445.140060px;}
.y138{bottom:448.920043px;}
.y5f{bottom:450.360077px;}
.y23{bottom:453.780052px;}
.yb2{bottom:457.920043px;}
.yfb{bottom:460.980079px;}
.y8d{bottom:462.420043px;}
.yc9{bottom:463.140060px;}
.y137{bottom:466.920043px;}
.y5e{bottom:468.360077px;}
.y121{bottom:475.200096px;}
.yb1{bottom:475.920043px;}
.y22{bottom:476.280052px;}
.yfa{bottom:478.980079px;}
.y8c{bottom:480.420043px;}
.yc8{bottom:481.140060px;}
.y5d{bottom:486.360077px;}
.y21{bottom:492.840088px;}
.y120{bottom:493.200096px;}
.yb0{bottom:493.920043px;}
.yf9{bottom:496.980079px;}
.y8b{bottom:498.420043px;}
.yc7{bottom:499.140060px;}
.y11f{bottom:511.200096px;}
.yaf{bottom:511.920043px;}
.y5c{bottom:513.360077px;}
.y20{bottom:515.340088px;}
.y8a{bottom:516.420043px;}
.yf8{bottom:519.480079px;}
.y10f{bottom:525.420043px;}
.yc6{bottom:526.500068px;}
.y11e{bottom:529.200096px;}
.yae{bottom:529.920043px;}
.y5b{bottom:531.360077px;}
.y128{bottom:534.420043px;}
.yf7{bottom:537.480079px;}
.y1f{bottom:537.840088px;}
.y89{bottom:543.420043px;}
.y11d{bottom:547.200096px;}
.yad{bottom:547.920043px;}
.y5a{bottom:549.360077px;}
.y1e{bottom:554.220085px;}
.yf6{bottom:555.480079px;}
.y88{bottom:561.420043px;}
.yc5{bottom:563.580093px;}
.y11c{bottom:565.200096px;}
.y136{bottom:565.920043px;}
.y1d{bottom:570.780052px;}
.yac{bottom:574.920043px;}
.y59{bottom:576.900055px;}
.yf5{bottom:577.980079px;}
.y87{bottom:579.420043px;}
.y135{bottom:583.920043px;}
.y1c{bottom:587.340088px;}
.yc4{bottom:590.220085px;}
.y11b{bottom:591.840088px;}
.yab{bottom:592.920043px;}
.yf4{bottom:595.980079px;}
.y86{bottom:597.420043px;}
.y134{bottom:601.920043px;}
.y1b{bottom:603.720085px;}
.y161{bottom:606.060036px;}
.yaa{bottom:610.920043px;}
.yc3{bottom:613.260064px;}
.y58{bottom:613.980079px;}
.y11a{bottom:614.880066px;}
.y85{bottom:615.420043px;}
.y133{bottom:619.920043px;}
.y1a{bottom:626.220085px;}
.y160{bottom:628.560036px;}
.y57{bottom:631.980079px;}
.y84{bottom:633.420043px;}
.yf3{bottom:636.480079px;}
.ya9{bottom:637.920043px;}
.y19{bottom:648.720085px;}
.y15f{bottom:651.060036px;}
.y83{bottom:651.420043px;}
.yf2{bottom:654.480079px;}
.ya8{bottom:655.920043px;}
.y56{bottom:658.980079px;}
.y18{bottom:665.280052px;}
.y15e{bottom:667.620072px;}
.y82{bottom:669.420043px;}
.ya7{bottom:673.920043px;}
.yf1{bottom:676.980079px;}
.y17{bottom:681.840088px;}
.y55{bottom:685.620072px;}
.y81{bottom:687.420078px;}
.y15d{bottom:690.120072px;}
.ya6{bottom:691.920078px;}
.yf0{bottom:694.980079px;}
.y16{bottom:698.220051px;}
.y54{bottom:702.720051px;}
.y80{bottom:705.420078px;}
.ya5{bottom:709.920078px;}
.y15c{bottom:712.620072px;}
.yef{bottom:712.980079px;}
.y15{bottom:714.780052px;}
.y132{bottom:720.180073px;}
.y7f{bottom:723.420078px;}
.y53{bottom:725.760064px;}
.ya4{bottom:727.920078px;}
.y15b{bottom:729.000068px;}
.yee{bottom:730.980079px;}
.y14{bottom:737.280052px;}
.y7e{bottom:741.420078px;}
.y46{bottom:745.920078px;}
.y15a{bottom:751.500068px;}
.y127{bottom:751.860077px;}
.ya3{bottom:756.180073px;}
.yed{bottom:758.340054px;}
.y7d{bottom:759.420078px;}
.y13{bottom:760.320065px;}
.y131{bottom:760.860077px;}
.y45{bottom:763.920078px;}
.y159{bottom:768.060070px;}
.y126{bottom:769.860077px;}
.y7c{bottom:777.420078px;}
.y12{bottom:779.940067px;}
.y44{bottom:781.920078px;}
.y125{bottom:787.860077px;}
.y158{bottom:790.560070px;}
.y7b{bottom:795.420078px;}
.ya2{bottom:796.860077px;}
.y11{bottom:799.560070px;}
.y43{bottom:799.920078px;}
.y10e{bottom:804.420078px;}
.y124{bottom:805.860077px;}
.y157{bottom:807.120072px;}
.yec{bottom:813.420078px;}
.y42{bottom:817.920078px;}
.y10d{bottom:822.420078px;}
.y7a{bottom:822.780052px;}
.ya1{bottom:823.860077px;}
.y10{bottom:828.000068px;}
.y156{bottom:829.980079px;}
.yeb{bottom:831.420078px;}
.y41{bottom:835.920078px;}
.y10c{bottom:840.420078px;}
.ya0{bottom:841.860077px;}
.y155{bottom:847.620072px;}
.yea{bottom:849.420078px;}
.y40{bottom:853.920078px;}
.yf{bottom:856.440067px;}
.y10b{bottom:858.420078px;}
.y79{bottom:859.860077px;}
.ye9{bottom:867.420078px;}
.y154{bottom:870.120072px;}
.y78{bottom:877.860077px;}
.y3f{bottom:880.920078px;}
.ye8{bottom:885.420078px;}
.y153{bottom:892.620072px;}
.y77{bottom:895.860077px;}
.y3e{bottom:898.920078px;}
.ye7{bottom:903.420078px;}
.y76{bottom:913.860077px;}
.y152{bottom:915.120072px;}
.y3d{bottom:916.920078px;}
.ye{bottom:917.820065px;}
.ye6{bottom:921.420078px;}
.y75{bottom:931.860077px;}
.y3c{bottom:934.920078px;}
.y151{bottom:937.620072px;}
.ye5{bottom:939.420078px;}
.y74{bottom:949.860077px;}
.y3b{bottom:952.920078px;}
.ye4{bottom:957.420078px;}
.yd{bottom:959.940067px;}
.y150{bottom:960.120072px;}
.y10a{bottom:966.780053px;}
.y73{bottom:967.860077px;}
.y3a{bottom:970.920078px;}
.ye3{bottom:975.420061px;}
.y14f{bottom:976.500068px;}
.y72{bottom:985.860060px;}
.y130{bottom:994.860060px;}
.y14e{bottom:999.000068px;}
.y39{bottom:999.180073px;}
.yc{bottom:1002.060070px;}
.ye2{bottom:1002.420061px;}
.y71{bottom:1003.860060px;}
.y12f{bottom:1012.860060px;}
.y14d{bottom:1015.560070px;}
.ye1{bottom:1020.420061px;}
.y70{bottom:1021.860060px;}
.y9f{bottom:1030.860060px;}
.y14c{bottom:1038.060070px;}
.ye0{bottom:1038.420061px;}
.y38{bottom:1039.860060px;}
.y109{bottom:1044.360060px;}
.y6f{bottom:1048.860060px;}
.ydf{bottom:1056.420061px;}
.yc2{bottom:1057.860060px;}
.y14b{bottom:1060.560070px;}
.y108{bottom:1062.360060px;}
.y37{bottom:1066.860060px;}
.yde{bottom:1074.420061px;}
.y107{bottom:1080.360060px;}
.y14a{bottom:1083.060070px;}
.y36{bottom:1084.860060px;}
.ydd{bottom:1092.420061px;}
.y9{bottom:1098.720068px;}
.y149{bottom:1099.620072px;}
.y35{bottom:1102.860060px;}
.y7{bottom:1112.760064px;}
.y6{bottom:1116.000068px;}
.ydc{bottom:1119.780069px;}
.y34{bottom:1120.860068px;}
.y148{bottom:1122.120063px;}
.y1{bottom:1126.800067px;}
.y5{bottom:1133.280069px;}
.y4{bottom:1150.560070px;}
.y3{bottom:1167.840063px;}
.y2{bottom:1185.120063px;}
.h4{height:15.840001px;}
.h5{height:48.412173px;}
.h9{height:48.860434px;}
.hb{height:53.430019px;}
.h2{height:53.575923px;}
.h3{height:54.071997px;}
.h8{height:62.650791px;}
.h7{height:63.213312px;}
.hc{height:65.146978px;}
.ha{height:76.221948px;}
.h6{height:137.172862px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:3.420044px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:63.899999px;}
.xa{left:85.140000px;}
.x9{left:106.379998px;}
.xe{left:133.560001px;}
.xf{left:140.040003px;}
.x12{left:165.419992px;}
.xc{left:191.520006px;}
.x16{left:234.360008px;}
.x14{left:247.680005px;}
.x1{left:318.060001px;}
.x10{left:380.699993px;}
.x4{left:398.519989px;}
.x6{left:420.839985px;}
.x2{left:570.240006px;}
.x5{left:622.799973px;}
.x3{left:627.840019px;}
.x15{left:684.179970px;}
.x13{left:688.320030px;}
.xb{left:739.080025px;}
.x7{left:825.659981px;}
.x11{left:829.080025px;}
.xd{left:835.559967px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.008093pt;}
.ls3{letter-spacing:0.230294pt;}
.ls4{letter-spacing:0.230418pt;}
.ls8{letter-spacing:0.319004pt;}
.ls5{letter-spacing:0.319008pt;}
.ls2{letter-spacing:0.334617pt;}
.lsb{letter-spacing:0.334633pt;}
.ls0{letter-spacing:0.377478pt;}
.ls7{letter-spacing:0.623870pt;}
.lsa{letter-spacing:0.623934pt;}
.ls6{letter-spacing:0.623994pt;}
.ws5{word-spacing:-20.742534pt;}
.ws3{word-spacing:-16.310425pt;}
.ws7{word-spacing:-14.722887pt;}
.ws0{word-spacing:-14.714794pt;}
.ws1{word-spacing:-14.080529pt;}
.ws2{word-spacing:-13.296554pt;}
.ws6{word-spacing:-9.573486pt;}
.ws4{word-spacing:0.000000pt;}
._b{margin-left:-3.427030pt;}
._3{margin-left:-2.222163pt;}
._4{margin-left:-0.915752pt;}
._0{width:1.159761pt;}
._1{width:2.319173pt;}
._2{width:3.611558pt;}
._5{width:4.518151pt;}
._7{width:5.409844pt;}
._d{width:6.319808pt;}
._6{width:7.246402pt;}
._8{width:8.559905pt;}
._c{width:10.435896pt;}
._a{width:11.624942pt;}
._9{width:13.206232pt;}
._e{width:753.429326pt;}
.fs6{font-size:34.561320pt;}
.fs1{font-size:48.002000pt;}
.fs0{font-size:53.122000pt;}
.fs5{font-size:58.882400pt;}
.fs3{font-size:64.002404pt;}
.fs4{font-size:74.882796pt;}
.fs2{font-size:138.885192pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:1.760009pt;}
.yb{bottom:21.440064pt;}
.ya{bottom:59.520020pt;}
.y119{bottom:100.320069pt;}
.yc1{bottom:101.760071pt;}
.y6e{bottom:103.040039pt;}
.y33{bottom:103.680054pt;}
.y52{bottom:104.320069pt;}
.y9e{bottom:105.760071pt;}
.ydb{bottom:107.680054pt;}
.y123{bottom:112.640076pt;}
.y118{bottom:116.320069pt;}
.yc0{bottom:117.760071pt;}
.y6d{bottom:119.040039pt;}
.y32{bottom:119.680054pt;}
.y51{bottom:120.320069pt;}
.y9d{bottom:121.760071pt;}
.yda{bottom:123.680054pt;}
.y117{bottom:132.320069pt;}
.y122{bottom:133.120057pt;}
.y6c{bottom:135.040039pt;}
.y31{bottom:135.680054pt;}
.y50{bottom:136.320069pt;}
.y106{bottom:137.760071pt;}
.yd9{bottom:139.680054pt;}
.ybf{bottom:141.760071pt;}
.y147{bottom:143.360047pt;}
.y9c{bottom:145.760071pt;}
.y116{bottom:148.320069pt;}
.y6b{bottom:151.040039pt;}
.y30{bottom:151.680054pt;}
.y4f{bottom:152.320069pt;}
.y105{bottom:153.760071pt;}
.yd8{bottom:155.680054pt;}
.y146{bottom:159.040039pt;}
.y9b{bottom:161.760071pt;}
.y12e{bottom:162.080079pt;}
.y115{bottom:164.320069pt;}
.ybe{bottom:165.760071pt;}
.y4e{bottom:168.320069pt;}
.y104{bottom:169.760071pt;}
.yd7{bottom:171.680054pt;}
.y6a{bottom:175.360047pt;}
.y2f{bottom:175.680054pt;}
.y9a{bottom:177.760071pt;}
.y114{bottom:180.320069pt;}
.y145{bottom:183.040039pt;}
.y4d{bottom:184.320069pt;}
.yd6{bottom:187.680054pt;}
.ybd{bottom:189.760071pt;}
.y2e{bottom:191.680054pt;}
.y99{bottom:193.760071pt;}
.y12d{bottom:195.040039pt;}
.y144{bottom:199.040039pt;}
.y4c{bottom:200.320069pt;}
.y113{bottom:204.800049pt;}
.ybc{bottom:205.760071pt;}
.y2d{bottom:207.680054pt;}
.y69{bottom:208.320069pt;}
.y98{bottom:209.760071pt;}
.y12c{bottom:211.040039pt;}
.yd5{bottom:211.680054pt;}
.y143{bottom:215.040039pt;}
.y4b{bottom:216.320069pt;}
.ybb{bottom:221.760071pt;}
.y2c{bottom:223.680054pt;}
.y68{bottom:224.320069pt;}
.y97{bottom:225.760071pt;}
.y12b{bottom:227.040039pt;}
.yd4{bottom:227.680054pt;}
.y142{bottom:231.040039pt;}
.yba{bottom:237.760071pt;}
.y112{bottom:238.880066pt;}
.y2b{bottom:239.680054pt;}
.y4a{bottom:240.320069pt;}
.y96{bottom:241.760071pt;}
.y12a{bottom:243.040039pt;}
.yd3{bottom:243.680054pt;}
.y141{bottom:247.040039pt;}
.y2a{bottom:255.680054pt;}
.y67{bottom:256.320069pt;}
.y95{bottom:257.760071pt;}
.y129{bottom:259.040039pt;}
.yd2{bottom:259.680054pt;}
.yb9{bottom:261.760071pt;}
.y140{bottom:263.040039pt;}
.y49{bottom:264.320069pt;}
.y29{bottom:271.680054pt;}
.y66{bottom:272.320069pt;}
.y103{bottom:273.760071pt;}
.y111{bottom:275.040039pt;}
.yd1{bottom:275.680054pt;}
.y13f{bottom:279.040039pt;}
.y48{bottom:280.320069pt;}
.y94{bottom:282.080079pt;}
.yb8{bottom:285.760071pt;}
.y28{bottom:287.680054pt;}
.y102{bottom:289.760071pt;}
.yd0{bottom:291.680054pt;}
.y13e{bottom:295.040039pt;}
.y65{bottom:296.320069pt;}
.y110{bottom:299.040039pt;}
.y47{bottom:301.120057pt;}
.yb7{bottom:301.760071pt;}
.y27{bottom:303.680054pt;}
.y101{bottom:305.760071pt;}
.ycf{bottom:307.680054pt;}
.y13d{bottom:311.040039pt;}
.y64{bottom:312.320069pt;}
.y93{bottom:315.040039pt;}
.yb6{bottom:317.760071pt;}
.y100{bottom:321.760071pt;}
.yce{bottom:323.680054pt;}
.y63{bottom:328.320069pt;}
.y26{bottom:328.800049pt;}
.y92{bottom:331.040039pt;}
.yb5{bottom:333.760071pt;}
.y13c{bottom:335.040039pt;}
.yff{bottom:337.760071pt;}
.y62{bottom:344.320069pt;}
.y91{bottom:347.040039pt;}
.ycd{bottom:347.680054pt;}
.yb4{bottom:349.760071pt;}
.y13b{bottom:351.040039pt;}
.yfe{bottom:353.760071pt;}
.y61{bottom:360.320069pt;}
.y90{bottom:363.040039pt;}
.ycc{bottom:363.680054pt;}
.y25{bottom:364.960083pt;}
.y13a{bottom:367.040039pt;}
.yfd{bottom:369.760071pt;}
.yb3{bottom:374.080079pt;}
.y60{bottom:376.320069pt;}
.y8f{bottom:379.040039pt;}
.ycb{bottom:379.680054pt;}
.y139{bottom:383.040039pt;}
.yfc{bottom:385.760071pt;}
.y24{bottom:388.640076pt;}
.y8e{bottom:395.040039pt;}
.yca{bottom:395.680054pt;}
.y138{bottom:399.040039pt;}
.y5f{bottom:400.320069pt;}
.y23{bottom:403.360047pt;}
.yb2{bottom:407.040039pt;}
.yfb{bottom:409.760071pt;}
.y8d{bottom:411.040039pt;}
.yc9{bottom:411.680054pt;}
.y137{bottom:415.040039pt;}
.y5e{bottom:416.320069pt;}
.y121{bottom:422.400086pt;}
.yb1{bottom:423.040039pt;}
.y22{bottom:423.360047pt;}
.yfa{bottom:425.760071pt;}
.y8c{bottom:427.040039pt;}
.yc8{bottom:427.680054pt;}
.y5d{bottom:432.320069pt;}
.y21{bottom:438.080079pt;}
.y120{bottom:438.400086pt;}
.yb0{bottom:439.040039pt;}
.yf9{bottom:441.760071pt;}
.y8b{bottom:443.040039pt;}
.yc7{bottom:443.680054pt;}
.y11f{bottom:454.400086pt;}
.yaf{bottom:455.040039pt;}
.y5c{bottom:456.320069pt;}
.y20{bottom:458.080079pt;}
.y8a{bottom:459.040039pt;}
.yf8{bottom:461.760071pt;}
.y10f{bottom:467.040039pt;}
.yc6{bottom:468.000061pt;}
.y11e{bottom:470.400086pt;}
.yae{bottom:471.040039pt;}
.y5b{bottom:472.320069pt;}
.y128{bottom:475.040039pt;}
.yf7{bottom:477.760071pt;}
.y1f{bottom:478.080079pt;}
.y89{bottom:483.040039pt;}
.y11d{bottom:486.400086pt;}
.yad{bottom:487.040039pt;}
.y5a{bottom:488.320069pt;}
.y1e{bottom:492.640076pt;}
.yf6{bottom:493.760071pt;}
.y88{bottom:499.040039pt;}
.yc5{bottom:500.960083pt;}
.y11c{bottom:502.400086pt;}
.y136{bottom:503.040039pt;}
.y1d{bottom:507.360047pt;}
.yac{bottom:511.040039pt;}
.y59{bottom:512.800049pt;}
.yf5{bottom:513.760071pt;}
.y87{bottom:515.040039pt;}
.y135{bottom:519.040039pt;}
.y1c{bottom:522.080079pt;}
.yc4{bottom:524.640076pt;}
.y11b{bottom:526.080079pt;}
.yab{bottom:527.040039pt;}
.yf4{bottom:529.760071pt;}
.y86{bottom:531.040039pt;}
.y134{bottom:535.040039pt;}
.y1b{bottom:536.640076pt;}
.y161{bottom:538.720032pt;}
.yaa{bottom:543.040039pt;}
.yc3{bottom:545.120057pt;}
.y58{bottom:545.760071pt;}
.y11a{bottom:546.560059pt;}
.y85{bottom:547.040039pt;}
.y133{bottom:551.040039pt;}
.y1a{bottom:556.640076pt;}
.y160{bottom:558.720032pt;}
.y57{bottom:561.760071pt;}
.y84{bottom:563.040039pt;}
.yf3{bottom:565.760071pt;}
.ya9{bottom:567.040039pt;}
.y19{bottom:576.640076pt;}
.y15f{bottom:578.720032pt;}
.y83{bottom:579.040039pt;}
.yf2{bottom:581.760071pt;}
.ya8{bottom:583.040039pt;}
.y56{bottom:585.760071pt;}
.y18{bottom:591.360047pt;}
.y15e{bottom:593.440064pt;}
.y82{bottom:595.040039pt;}
.ya7{bottom:599.040039pt;}
.yf1{bottom:601.760071pt;}
.y17{bottom:606.080079pt;}
.y55{bottom:609.440064pt;}
.y81{bottom:611.040070pt;}
.y15d{bottom:613.440064pt;}
.ya6{bottom:615.040070pt;}
.yf0{bottom:617.760071pt;}
.y16{bottom:620.640046pt;}
.y54{bottom:624.640046pt;}
.y80{bottom:627.040070pt;}
.ya5{bottom:631.040070pt;}
.y15c{bottom:633.440064pt;}
.yef{bottom:633.760071pt;}
.y15{bottom:635.360047pt;}
.y132{bottom:640.160065pt;}
.y7f{bottom:643.040070pt;}
.y53{bottom:645.120057pt;}
.ya4{bottom:647.040070pt;}
.y15b{bottom:648.000061pt;}
.yee{bottom:649.760071pt;}
.y14{bottom:655.360047pt;}
.y7e{bottom:659.040070pt;}
.y46{bottom:663.040070pt;}
.y15a{bottom:668.000061pt;}
.y127{bottom:668.320069pt;}
.ya3{bottom:672.160065pt;}
.yed{bottom:674.080048pt;}
.y7d{bottom:675.040070pt;}
.y13{bottom:675.840058pt;}
.y131{bottom:676.320069pt;}
.y45{bottom:679.040070pt;}
.y159{bottom:682.720063pt;}
.y126{bottom:684.320069pt;}
.y7c{bottom:691.040070pt;}
.y12{bottom:693.280060pt;}
.y44{bottom:695.040070pt;}
.y125{bottom:700.320069pt;}
.y158{bottom:702.720063pt;}
.y7b{bottom:707.040070pt;}
.ya2{bottom:708.320069pt;}
.y11{bottom:710.720063pt;}
.y43{bottom:711.040070pt;}
.y10e{bottom:715.040070pt;}
.y124{bottom:716.320069pt;}
.y157{bottom:717.440064pt;}
.yec{bottom:723.040070pt;}
.y42{bottom:727.040070pt;}
.y10d{bottom:731.040070pt;}
.y7a{bottom:731.360047pt;}
.ya1{bottom:732.320069pt;}
.y10{bottom:736.000061pt;}
.y156{bottom:737.760071pt;}
.yeb{bottom:739.040070pt;}
.y41{bottom:743.040070pt;}
.y10c{bottom:747.040070pt;}
.ya0{bottom:748.320069pt;}
.y155{bottom:753.440064pt;}
.yea{bottom:755.040070pt;}
.y40{bottom:759.040070pt;}
.yf{bottom:761.280060pt;}
.y10b{bottom:763.040070pt;}
.y79{bottom:764.320069pt;}
.ye9{bottom:771.040070pt;}
.y154{bottom:773.440064pt;}
.y78{bottom:780.320069pt;}
.y3f{bottom:783.040070pt;}
.ye8{bottom:787.040070pt;}
.y153{bottom:793.440064pt;}
.y77{bottom:796.320069pt;}
.y3e{bottom:799.040070pt;}
.ye7{bottom:803.040070pt;}
.y76{bottom:812.320069pt;}
.y152{bottom:813.440064pt;}
.y3d{bottom:815.040070pt;}
.ye{bottom:815.840058pt;}
.ye6{bottom:819.040070pt;}
.y75{bottom:828.320069pt;}
.y3c{bottom:831.040070pt;}
.y151{bottom:833.440064pt;}
.ye5{bottom:835.040070pt;}
.y74{bottom:844.320069pt;}
.y3b{bottom:847.040070pt;}
.ye4{bottom:851.040070pt;}
.yd{bottom:853.280060pt;}
.y150{bottom:853.440064pt;}
.y10a{bottom:859.360047pt;}
.y73{bottom:860.320069pt;}
.y3a{bottom:863.040070pt;}
.ye3{bottom:867.040055pt;}
.y14f{bottom:868.000061pt;}
.y72{bottom:876.320054pt;}
.y130{bottom:884.320054pt;}
.y14e{bottom:888.000061pt;}
.y39{bottom:888.160065pt;}
.yc{bottom:890.720063pt;}
.ye2{bottom:891.040055pt;}
.y71{bottom:892.320054pt;}
.y12f{bottom:900.320054pt;}
.y14d{bottom:902.720063pt;}
.ye1{bottom:907.040055pt;}
.y70{bottom:908.320054pt;}
.y9f{bottom:916.320054pt;}
.y14c{bottom:922.720063pt;}
.ye0{bottom:923.040055pt;}
.y38{bottom:924.320054pt;}
.y109{bottom:928.320054pt;}
.y6f{bottom:932.320054pt;}
.ydf{bottom:939.040055pt;}
.yc2{bottom:940.320054pt;}
.y14b{bottom:942.720063pt;}
.y108{bottom:944.320054pt;}
.y37{bottom:948.320054pt;}
.yde{bottom:955.040055pt;}
.y107{bottom:960.320054pt;}
.y14a{bottom:962.720063pt;}
.y36{bottom:964.320054pt;}
.ydd{bottom:971.040055pt;}
.y9{bottom:976.640061pt;}
.y149{bottom:977.440064pt;}
.y35{bottom:980.320054pt;}
.y7{bottom:989.120057pt;}
.y6{bottom:992.000061pt;}
.ydc{bottom:995.360062pt;}
.y34{bottom:996.320061pt;}
.y148{bottom:997.440056pt;}
.y1{bottom:1001.600060pt;}
.y5{bottom:1007.360062pt;}
.y4{bottom:1022.720063pt;}
.y3{bottom:1038.080056pt;}
.y2{bottom:1053.440056pt;}
.h4{height:14.080001pt;}
.h5{height:43.033043pt;}
.h9{height:43.431497pt;}
.hb{height:47.493351pt;}
.h2{height:47.623043pt;}
.h3{height:48.063997pt;}
.h8{height:55.689592pt;}
.h7{height:56.189611pt;}
.hc{height:57.908425pt;}
.ha{height:67.752842pt;}
.h6{height:121.931433pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:3.040039pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:56.799999pt;}
.xa{left:75.680000pt;}
.x9{left:94.559998pt;}
.xe{left:118.720001pt;}
.xf{left:124.480003pt;}
.x12{left:147.039993pt;}
.xc{left:170.240005pt;}
.x16{left:208.320007pt;}
.x14{left:220.160004pt;}
.x1{left:282.720001pt;}
.x10{left:338.399994pt;}
.x4{left:354.239990pt;}
.x6{left:374.079987pt;}
.x2{left:506.880005pt;}
.x5{left:553.599976pt;}
.x3{left:558.080017pt;}
.x15{left:608.159973pt;}
.x13{left:611.840027pt;}
.xb{left:656.960022pt;}
.x7{left:733.919983pt;}
.x11{left:736.960022pt;}
.xd{left:742.719971pt;}
}




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