
    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_8a1cba0b2320f1b49f876a61.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_8ab5630bc5d7527e8671b6be.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_b4f618c4f549a03ef0c75cc2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.170410;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_98b945b178adfede4e9f0a2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.872559;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_9dc3676fc59bf8aec94f9b1d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.141602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4dfd39d41c475d88857d3b71.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.139160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_761bb33e4159450df800dff9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.860840;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:ff8;src:url('chunks/assets/font_910262e36bd19702260eb9b3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.132324;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:ff9;src:url('chunks/assets/font_33942030921d9ac63bda824f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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:ffa;src:url('chunks/assets/font_099e196590b1289431f03b58.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.979680px;}
.ls4{letter-spacing:-2.772000px;}
.ls2{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000840px;}
.ls1{letter-spacing:3.255480px;}
.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;}
}
.ws0{word-spacing:-49.500000px;}
.ws4{word-spacing:-28.858500px;}
.ws1{word-spacing:-27.000000px;}
.ws2{word-spacing:-16.500000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:165.096000px;}
._19{margin-left:-166.461149px;}
._18{margin-left:-165.097200px;}
._1b{margin-left:-14.758647px;}
._7{margin-left:-12.019644px;}
._6{margin-left:-9.946292px;}
._8{margin-left:-7.969633px;}
._1{margin-left:-6.059764px;}
._4{margin-left:-4.767186px;}
._3{margin-left:-2.868679px;}
._0{margin-left:-1.068821px;}
._2{width:1.186819px;}
._9{width:2.452151px;}
._a{width:3.457612px;}
._5{width:4.996878px;}
._c{width:6.571873px;}
._11{width:8.078928px;}
._b{width:9.114864px;}
._10{width:10.120242px;}
._16{width:11.259402px;}
._15{width:12.546072px;}
._f{width:13.886730px;}
._13{width:15.002328px;}
._12{width:18.407862px;}
._1d{width:19.509336px;}
._14{width:20.683608px;}
._1c{width:22.394526px;}
._20{width:23.456268px;}
._d{width:24.525006px;}
._e{width:26.029674px;}
._1a{width:27.435936px;}
._1e{width:29.423460px;}
._1f{width:30.810401px;}
._17{width:34.675806px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:38.478000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:29.511300px;}
.y3{bottom:29.511362px;}
.y2b{bottom:29.865300px;}
.y2{bottom:30.645150px;}
.yc0{bottom:54.000000px;}
.y5f{bottom:54.975000px;}
.yb5{bottom:57.975000px;}
.ya0{bottom:63.975000px;}
.yca{bottom:69.975000px;}
.ybf{bottom:75.600000px;}
.y5e{bottom:75.975000px;}
.yb4{bottom:78.975000px;}
.y9f{bottom:84.975000px;}
.yc9{bottom:90.975000px;}
.y5d{bottom:96.975000px;}
.ybe{bottom:97.200000px;}
.yb3{bottom:99.975000px;}
.y9e{bottom:105.975000px;}
.yf0{bottom:108.148650px;}
.y88{bottom:111.975000px;}
.y5c{bottom:117.975000px;}
.ybd{bottom:118.800000px;}
.yb2{bottom:120.975000px;}
.y9d{bottom:126.975000px;}
.yef{bottom:129.148650px;}
.y87{bottom:132.975000px;}
.y5b{bottom:138.975000px;}
.ybc{bottom:140.400000px;}
.yb1{bottom:141.975000px;}
.y9c{bottom:147.975000px;}
.yee{bottom:150.148650px;}
.yc8{bottom:153.975000px;}
.ybb{bottom:162.000000px;}
.yb0{bottom:162.975000px;}
.y86{bottom:168.975000px;}
.y5a{bottom:174.975000px;}
.yba{bottom:183.600000px;}
.yed{bottom:183.904500px;}
.yaf{bottom:183.975000px;}
.y85{bottom:189.975000px;}
.y59{bottom:195.975000px;}
.yae{bottom:204.975000px;}
.y84{bottom:210.975000px;}
.y58{bottom:216.975000px;}
.yec{bottom:217.660500px;}
.yad{bottom:225.975000px;}
.y83{bottom:231.975000px;}
.y23{bottom:232.893750px;}
.y57{bottom:237.975000px;}
.yeb{bottom:238.660500px;}
.yac{bottom:246.975000px;}
.y82{bottom:252.975000px;}
.y22{bottom:253.893750px;}
.y56{bottom:258.975000px;}
.yea{bottom:259.660500px;}
.yab{bottom:267.975000px;}
.y81{bottom:273.975000px;}
.y21{bottom:274.893750px;}
.y55{bottom:279.975000px;}
.yaa{bottom:288.975000px;}
.ye9{bottom:293.416800px;}
.y80{bottom:294.975000px;}
.y20{bottom:295.893750px;}
.y54{bottom:300.975000px;}
.ya9{bottom:309.975000px;}
.ye8{bottom:314.416800px;}
.y7f{bottom:315.975000px;}
.y1f{bottom:316.893750px;}
.y53{bottom:321.975000px;}
.ya8{bottom:330.975000px;}
.ye7{bottom:335.416800px;}
.y7e{bottom:336.975000px;}
.y1e{bottom:337.893750px;}
.y52{bottom:342.975000px;}
.y26{bottom:347.698500px;}
.y9b{bottom:351.975000px;}
.y18{bottom:354.376200px;}
.y7d{bottom:357.975000px;}
.y1d{bottom:358.893750px;}
.y51{bottom:363.975000px;}
.ye6{bottom:369.173250px;}
.y9a{bottom:372.975000px;}
.y17{bottom:375.376200px;}
.y7c{bottom:378.975000px;}
.y1c{bottom:379.893750px;}
.y50{bottom:384.975000px;}
.ye5{bottom:390.173250px;}
.y99{bottom:393.975000px;}
.y16{bottom:396.376200px;}
.y7b{bottom:399.975000px;}
.y1b{bottom:400.893750px;}
.y4f{bottom:405.975000px;}
.ye4{bottom:411.173250px;}
.y98{bottom:414.975000px;}
.y15{bottom:417.376200px;}
.y7a{bottom:420.975000px;}
.y1a{bottom:421.893750px;}
.yc7{bottom:426.975000px;}
.y97{bottom:435.975000px;}
.y4e{bottom:441.975000px;}
.ye3{bottom:444.929100px;}
.yc6{bottom:447.975000px;}
.y96{bottom:456.975000px;}
.y4d{bottom:462.975000px;}
.y19{bottom:463.893750px;}
.ye2{bottom:465.929100px;}
.yc5{bottom:468.975000px;}
.y95{bottom:477.975000px;}
.y4c{bottom:483.975000px;}
.yc4{bottom:489.975000px;}
.y94{bottom:498.975000px;}
.ye1{bottom:499.684950px;}
.y14{bottom:502.593150px;}
.y4b{bottom:504.975000px;}
.yc3{bottom:510.975000px;}
.ya7{bottom:513.975000px;}
.y93{bottom:519.975000px;}
.ye0{bottom:520.684950px;}
.y4a{bottom:525.975000px;}
.yc2{bottom:531.975000px;}
.ya6{bottom:534.975000px;}
.y13{bottom:534.993150px;}
.y92{bottom:540.975000px;}
.ydf{bottom:541.684950px;}
.y49{bottom:546.975000px;}
.yc1{bottom:552.975000px;}
.ya5{bottom:555.975000px;}
.y79{bottom:561.975000px;}
.yde{bottom:562.684950px;}
.y12{bottom:567.393150px;}
.y48{bottom:567.975000px;}
.ya4{bottom:576.975000px;}
.y78{bottom:582.975000px;}
.y47{bottom:588.975000px;}
.ydd{bottom:596.440800px;}
.ya3{bottom:597.975000px;}
.y77{bottom:603.975000px;}
.y46{bottom:609.975000px;}
.ydc{bottom:617.440800px;}
.ya2{bottom:618.975000px;}
.y76{bottom:624.975000px;}
.y45{bottom:630.975000px;}
.ya1{bottom:639.975000px;}
.y75{bottom:645.975000px;}
.ydb{bottom:651.196650px;}
.y44{bottom:651.975000px;}
.y91{bottom:660.975000px;}
.y74{bottom:666.975000px;}
.yda{bottom:672.196650px;}
.y43{bottom:672.975000px;}
.y90{bottom:681.975000px;}
.y73{bottom:687.975000px;}
.yd9{bottom:693.196650px;}
.y42{bottom:693.975000px;}
.y8f{bottom:702.975000px;}
.y72{bottom:708.975000px;}
.y41{bottom:714.975000px;}
.ye{bottom:720.741000px;}
.y8e{bottom:723.975000px;}
.yd8{bottom:726.952500px;}
.y71{bottom:729.975000px;}
.y40{bottom:735.975000px;}
.yd{bottom:741.741000px;}
.y8d{bottom:744.975000px;}
.yd7{bottom:747.952500px;}
.y70{bottom:750.975000px;}
.y3f{bottom:756.975000px;}
.yc{bottom:762.741000px;}
.y8c{bottom:765.975000px;}
.yd6{bottom:768.952500px;}
.y6f{bottom:771.975000px;}
.y3e{bottom:777.975000px;}
.yb{bottom:783.741000px;}
.y8b{bottom:786.975000px;}
.y6e{bottom:792.975000px;}
.y3d{bottom:798.975000px;}
.yd5{bottom:802.708650px;}
.ya{bottom:804.741000px;}
.y8a{bottom:807.975000px;}
.yb9{bottom:813.975000px;}
.y3c{bottom:819.975000px;}
.y2a{bottom:822.091500px;}
.yd4{bottom:823.708650px;}
.y9{bottom:825.741000px;}
.y6d{bottom:828.975000px;}
.yb8{bottom:834.975000px;}
.y3b{bottom:840.975000px;}
.y89{bottom:842.853000px;}
.y29{bottom:843.091500px;}
.y8{bottom:846.741000px;}
.y6c{bottom:849.975000px;}
.yb7{bottom:855.975000px;}
.yd3{bottom:857.463300px;}
.y3a{bottom:861.975000px;}
.y28{bottom:864.091500px;}
.y7{bottom:867.741000px;}
.y6b{bottom:870.975000px;}
.yb6{bottom:876.975000px;}
.yd2{bottom:878.463300px;}
.ycb{bottom:882.975000px;}
.y27{bottom:885.091500px;}
.y6{bottom:888.741000px;}
.y6a{bottom:891.975000px;}
.y39{bottom:897.975000px;}
.yd1{bottom:912.219150px;}
.y69{bottom:912.975000px;}
.y38{bottom:918.975000px;}
.y5{bottom:930.741000px;}
.yd0{bottom:933.219150px;}
.y68{bottom:933.975000px;}
.y37{bottom:939.975000px;}
.ycf{bottom:954.219150px;}
.y67{bottom:954.975000px;}
.y36{bottom:960.975000px;}
.y11{bottom:964.287150px;}
.y66{bottom:975.975000px;}
.y35{bottom:981.975000px;}
.y10{bottom:985.887150px;}
.yce{bottom:987.975000px;}
.y65{bottom:996.975000px;}
.y34{bottom:1002.975000px;}
.ycd{bottom:1008.975000px;}
.yf{bottom:1016.755500px;}
.y64{bottom:1017.975000px;}
.y33{bottom:1023.975000px;}
.ycc{bottom:1029.975000px;}
.y63{bottom:1038.975000px;}
.y32{bottom:1044.975000px;}
.y25{bottom:1052.799750px;}
.y62{bottom:1059.975000px;}
.y31{bottom:1065.975000px;}
.y61{bottom:1080.975000px;}
.y24{bottom:1085.199750px;}
.y30{bottom:1086.975000px;}
.y60{bottom:1101.975000px;}
.y2f{bottom:1122.975000px;}
.y1{bottom:1160.236500px;}
.y4{bottom:1160.236862px;}
.y2c{bottom:1160.874300px;}
.y2e{bottom:1161.547800px;}
.h10{height:45.858398px;}
.h2{height:46.992000px;}
.h3{height:48.017578px;}
.hf{height:49.992188px;}
.he{height:51.264000px;}
.h5{height:51.328125px;}
.h6{height:53.583984px;}
.hb{height:56.460938px;}
.ha{height:57.202148px;}
.hd{height:58.007813px;}
.h4{height:58.942383px;}
.h11{height:58.947183px;}
.h8{height:62.402344px;}
.h7{height:68.554688px;}
.h9{height:75.041016px;}
.hc{height:94.921875px;}
.h1{height:1190.250000px;}
.h0{height:1190.550000px;}
.w1{width:935.250000px;}
.w0{width:935.430000px;}
.x0{left:0.000000px;}
.x1c{left:7.266210px;}
.x3{left:54.177000px;}
.xe{left:56.729265px;}
.x1{left:63.744150px;}
.x16{left:64.956375px;}
.xf{left:66.864810px;}
.x10{left:70.369305px;}
.x15{left:75.672000px;}
.xd{left:84.347415px;}
.x17{left:92.365425px;}
.x19{left:107.100000px;}
.x6{left:212.598000px;}
.xa{left:216.409665px;}
.x12{left:230.844705px;}
.x9{left:329.714115px;}
.x8{left:344.320950px;}
.xb{left:358.766115px;}
.x13{left:406.383705px;}
.xc{left:438.717915px;}
.x7{left:468.726000px;}
.x1a{left:476.716620px;}
.x11{left:507.986805px;}
.x1b{left:529.816620px;}
.x5{left:536.179500px;}
.x4{left:695.196000px;}
.x18{left:698.173500px;}
.x2{left:728.787000px;}
.x14{left:928.167000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.537493pt;}
.ls4{letter-spacing:-2.464000pt;}
.ls2{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000747pt;}
.ls1{letter-spacing:2.893760pt;}
.ws0{word-spacing:-44.000000pt;}
.ws4{word-spacing:-25.652000pt;}
.ws1{word-spacing:-24.000000pt;}
.ws2{word-spacing:-14.666667pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:146.752000pt;}
._19{margin-left:-147.965466pt;}
._18{margin-left:-146.753067pt;}
._1b{margin-left:-13.118798pt;}
._7{margin-left:-10.684128pt;}
._6{margin-left:-8.841149pt;}
._8{margin-left:-7.084118pt;}
._1{margin-left:-5.386457pt;}
._4{margin-left:-4.237499pt;}
._3{margin-left:-2.549937pt;}
._0{margin-left:-0.950063pt;}
._2{width:1.054950pt;}
._9{width:2.179690pt;}
._a{width:3.073433pt;}
._5{width:4.441669pt;}
._c{width:5.841665pt;}
._11{width:7.181269pt;}
._b{width:8.102101pt;}
._10{width:8.995771pt;}
._16{width:10.008357pt;}
._15{width:11.152064pt;}
._f{width:12.343760pt;}
._13{width:13.335403pt;}
._12{width:16.362544pt;}
._1d{width:17.341632pt;}
._14{width:18.385429pt;}
._1c{width:19.906245pt;}
._20{width:20.850016pt;}
._d{width:21.800005pt;}
._e{width:23.137488pt;}
._1a{width:24.387499pt;}
._1e{width:26.154187pt;}
._1f{width:27.387023pt;}
._17{width:30.822939pt;}
.fs5{font-size:34.202667pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:26.232267pt;}
.y3{bottom:26.232321pt;}
.y2b{bottom:26.546933pt;}
.y2{bottom:27.240133pt;}
.yc0{bottom:48.000000pt;}
.y5f{bottom:48.866667pt;}
.yb5{bottom:51.533333pt;}
.ya0{bottom:56.866667pt;}
.yca{bottom:62.200000pt;}
.ybf{bottom:67.200000pt;}
.y5e{bottom:67.533333pt;}
.yb4{bottom:70.200000pt;}
.y9f{bottom:75.533333pt;}
.yc9{bottom:80.866667pt;}
.y5d{bottom:86.200000pt;}
.ybe{bottom:86.400000pt;}
.yb3{bottom:88.866667pt;}
.y9e{bottom:94.200000pt;}
.yf0{bottom:96.132133pt;}
.y88{bottom:99.533333pt;}
.y5c{bottom:104.866667pt;}
.ybd{bottom:105.600000pt;}
.yb2{bottom:107.533333pt;}
.y9d{bottom:112.866667pt;}
.yef{bottom:114.798800pt;}
.y87{bottom:118.200000pt;}
.y5b{bottom:123.533333pt;}
.ybc{bottom:124.800000pt;}
.yb1{bottom:126.200000pt;}
.y9c{bottom:131.533333pt;}
.yee{bottom:133.465467pt;}
.yc8{bottom:136.866667pt;}
.ybb{bottom:144.000000pt;}
.yb0{bottom:144.866667pt;}
.y86{bottom:150.200000pt;}
.y5a{bottom:155.533333pt;}
.yba{bottom:163.200000pt;}
.yed{bottom:163.470667pt;}
.yaf{bottom:163.533333pt;}
.y85{bottom:168.866667pt;}
.y59{bottom:174.200000pt;}
.yae{bottom:182.200000pt;}
.y84{bottom:187.533333pt;}
.y58{bottom:192.866667pt;}
.yec{bottom:193.476000pt;}
.yad{bottom:200.866667pt;}
.y83{bottom:206.200000pt;}
.y23{bottom:207.016667pt;}
.y57{bottom:211.533333pt;}
.yeb{bottom:212.142667pt;}
.yac{bottom:219.533333pt;}
.y82{bottom:224.866667pt;}
.y22{bottom:225.683333pt;}
.y56{bottom:230.200000pt;}
.yea{bottom:230.809333pt;}
.yab{bottom:238.200000pt;}
.y81{bottom:243.533333pt;}
.y21{bottom:244.350000pt;}
.y55{bottom:248.866667pt;}
.yaa{bottom:256.866667pt;}
.ye9{bottom:260.814933pt;}
.y80{bottom:262.200000pt;}
.y20{bottom:263.016667pt;}
.y54{bottom:267.533333pt;}
.ya9{bottom:275.533333pt;}
.ye8{bottom:279.481600pt;}
.y7f{bottom:280.866667pt;}
.y1f{bottom:281.683333pt;}
.y53{bottom:286.200000pt;}
.ya8{bottom:294.200000pt;}
.ye7{bottom:298.148267pt;}
.y7e{bottom:299.533333pt;}
.y1e{bottom:300.350000pt;}
.y52{bottom:304.866667pt;}
.y26{bottom:309.065333pt;}
.y9b{bottom:312.866667pt;}
.y18{bottom:315.001067pt;}
.y7d{bottom:318.200000pt;}
.y1d{bottom:319.016667pt;}
.y51{bottom:323.533333pt;}
.ye6{bottom:328.154000pt;}
.y9a{bottom:331.533333pt;}
.y17{bottom:333.667733pt;}
.y7c{bottom:336.866667pt;}
.y1c{bottom:337.683333pt;}
.y50{bottom:342.200000pt;}
.ye5{bottom:346.820667pt;}
.y99{bottom:350.200000pt;}
.y16{bottom:352.334400pt;}
.y7b{bottom:355.533333pt;}
.y1b{bottom:356.350000pt;}
.y4f{bottom:360.866667pt;}
.ye4{bottom:365.487333pt;}
.y98{bottom:368.866667pt;}
.y15{bottom:371.001067pt;}
.y7a{bottom:374.200000pt;}
.y1a{bottom:375.016667pt;}
.yc7{bottom:379.533333pt;}
.y97{bottom:387.533333pt;}
.y4e{bottom:392.866667pt;}
.ye3{bottom:395.492533pt;}
.yc6{bottom:398.200000pt;}
.y96{bottom:406.200000pt;}
.y4d{bottom:411.533333pt;}
.y19{bottom:412.350000pt;}
.ye2{bottom:414.159200pt;}
.yc5{bottom:416.866667pt;}
.y95{bottom:424.866667pt;}
.y4c{bottom:430.200000pt;}
.yc4{bottom:435.533333pt;}
.y94{bottom:443.533333pt;}
.ye1{bottom:444.164400pt;}
.y14{bottom:446.749467pt;}
.y4b{bottom:448.866667pt;}
.yc3{bottom:454.200000pt;}
.ya7{bottom:456.866667pt;}
.y93{bottom:462.200000pt;}
.ye0{bottom:462.831067pt;}
.y4a{bottom:467.533333pt;}
.yc2{bottom:472.866667pt;}
.ya6{bottom:475.533333pt;}
.y13{bottom:475.549467pt;}
.y92{bottom:480.866667pt;}
.ydf{bottom:481.497733pt;}
.y49{bottom:486.200000pt;}
.yc1{bottom:491.533333pt;}
.ya5{bottom:494.200000pt;}
.y79{bottom:499.533333pt;}
.yde{bottom:500.164400pt;}
.y12{bottom:504.349467pt;}
.y48{bottom:504.866667pt;}
.ya4{bottom:512.866667pt;}
.y78{bottom:518.200000pt;}
.y47{bottom:523.533333pt;}
.ydd{bottom:530.169600pt;}
.ya3{bottom:531.533333pt;}
.y77{bottom:536.866667pt;}
.y46{bottom:542.200000pt;}
.ydc{bottom:548.836267pt;}
.ya2{bottom:550.200000pt;}
.y76{bottom:555.533333pt;}
.y45{bottom:560.866667pt;}
.ya1{bottom:568.866667pt;}
.y75{bottom:574.200000pt;}
.ydb{bottom:578.841467pt;}
.y44{bottom:579.533333pt;}
.y91{bottom:587.533333pt;}
.y74{bottom:592.866667pt;}
.yda{bottom:597.508133pt;}
.y43{bottom:598.200000pt;}
.y90{bottom:606.200000pt;}
.y73{bottom:611.533333pt;}
.yd9{bottom:616.174800pt;}
.y42{bottom:616.866667pt;}
.y8f{bottom:624.866667pt;}
.y72{bottom:630.200000pt;}
.y41{bottom:635.533333pt;}
.ye{bottom:640.658667pt;}
.y8e{bottom:643.533333pt;}
.yd8{bottom:646.180000pt;}
.y71{bottom:648.866667pt;}
.y40{bottom:654.200000pt;}
.yd{bottom:659.325333pt;}
.y8d{bottom:662.200000pt;}
.yd7{bottom:664.846667pt;}
.y70{bottom:667.533333pt;}
.y3f{bottom:672.866667pt;}
.yc{bottom:677.992000pt;}
.y8c{bottom:680.866667pt;}
.yd6{bottom:683.513333pt;}
.y6f{bottom:686.200000pt;}
.y3e{bottom:691.533333pt;}
.yb{bottom:696.658667pt;}
.y8b{bottom:699.533333pt;}
.y6e{bottom:704.866667pt;}
.y3d{bottom:710.200000pt;}
.yd5{bottom:713.518800pt;}
.ya{bottom:715.325333pt;}
.y8a{bottom:718.200000pt;}
.yb9{bottom:723.533333pt;}
.y3c{bottom:728.866667pt;}
.y2a{bottom:730.748000pt;}
.yd4{bottom:732.185467pt;}
.y9{bottom:733.992000pt;}
.y6d{bottom:736.866667pt;}
.yb8{bottom:742.200000pt;}
.y3b{bottom:747.533333pt;}
.y89{bottom:749.202667pt;}
.y29{bottom:749.414667pt;}
.y8{bottom:752.658667pt;}
.y6c{bottom:755.533333pt;}
.yb7{bottom:760.866667pt;}
.yd3{bottom:762.189600pt;}
.y3a{bottom:766.200000pt;}
.y28{bottom:768.081333pt;}
.y7{bottom:771.325333pt;}
.y6b{bottom:774.200000pt;}
.yb6{bottom:779.533333pt;}
.yd2{bottom:780.856267pt;}
.ycb{bottom:784.866667pt;}
.y27{bottom:786.748000pt;}
.y6{bottom:789.992000pt;}
.y6a{bottom:792.866667pt;}
.y39{bottom:798.200000pt;}
.yd1{bottom:810.861467pt;}
.y69{bottom:811.533333pt;}
.y38{bottom:816.866667pt;}
.y5{bottom:827.325333pt;}
.yd0{bottom:829.528133pt;}
.y68{bottom:830.200000pt;}
.y37{bottom:835.533333pt;}
.ycf{bottom:848.194800pt;}
.y67{bottom:848.866667pt;}
.y36{bottom:854.200000pt;}
.y11{bottom:857.144133pt;}
.y66{bottom:867.533333pt;}
.y35{bottom:872.866667pt;}
.y10{bottom:876.344133pt;}
.yce{bottom:878.200000pt;}
.y65{bottom:886.200000pt;}
.y34{bottom:891.533333pt;}
.ycd{bottom:896.866667pt;}
.yf{bottom:903.782667pt;}
.y64{bottom:904.866667pt;}
.y33{bottom:910.200000pt;}
.ycc{bottom:915.533333pt;}
.y63{bottom:923.533333pt;}
.y32{bottom:928.866667pt;}
.y25{bottom:935.822000pt;}
.y62{bottom:942.200000pt;}
.y31{bottom:947.533333pt;}
.y61{bottom:960.866667pt;}
.y24{bottom:964.622000pt;}
.y30{bottom:966.200000pt;}
.y60{bottom:979.533333pt;}
.y2f{bottom:998.200000pt;}
.y1{bottom:1031.321333pt;}
.y4{bottom:1031.321655pt;}
.y2c{bottom:1031.888267pt;}
.y2e{bottom:1032.486933pt;}
.h10{height:40.763021pt;}
.h2{height:41.770667pt;}
.h3{height:42.682292pt;}
.hf{height:44.437500pt;}
.he{height:45.568000pt;}
.h5{height:45.625000pt;}
.h6{height:47.630208pt;}
.hb{height:50.187500pt;}
.ha{height:50.846354pt;}
.hd{height:51.562500pt;}
.h4{height:52.393229pt;}
.h11{height:52.397496pt;}
.h8{height:55.468750pt;}
.h7{height:60.937500pt;}
.h9{height:66.703125pt;}
.hc{height:84.375000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.266667pt;}
.w1{width:831.333333pt;}
.w0{width:831.493333pt;}
.x0{left:0.000000pt;}
.x1c{left:6.458853pt;}
.x3{left:48.157333pt;}
.xe{left:50.426013pt;}
.x1{left:56.661467pt;}
.x16{left:57.739000pt;}
.xf{left:59.435387pt;}
.x10{left:62.550493pt;}
.x15{left:67.264000pt;}
.xd{left:74.975480pt;}
.x17{left:82.102600pt;}
.x19{left:95.200000pt;}
.x6{left:188.976000pt;}
.xa{left:192.364147pt;}
.x12{left:205.195293pt;}
.x9{left:293.079213pt;}
.x8{left:306.063067pt;}
.xb{left:318.903213pt;}
.x13{left:361.229960pt;}
.xc{left:389.971480pt;}
.x7{left:416.645333pt;}
.x1a{left:423.748107pt;}
.x11{left:451.543827pt;}
.x1b{left:470.948107pt;}
.x5{left:476.604000pt;}
.x4{left:617.952000pt;}
.x18{left:620.598667pt;}
.x2{left:647.810667pt;}
.x14{left:825.037333pt;}
}




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