
    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_12baba9c90e1cfe60bd616a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.094727;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_74a07c0b398b8a9c7aa6fe54.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120117;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_84ff5234efd9ca166c5c130d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.094727;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_e93efdc88e548f7fdecab52d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.117676;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_6505ac3016daf14690c77f59.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120117;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:4.500000px;}
.v2{vertical-align:19.800000px;}
.lsb{letter-spacing:-14.784000px;}
.ls8{letter-spacing:-14.322000px;}
.ls9{letter-spacing:-13.305600px;}
.lse{letter-spacing:-13.213200px;}
.lsf{letter-spacing:-12.104400px;}
.ls22{letter-spacing:-11.718000px;}
.lsa{letter-spacing:-11.688600px;}
.ls12{letter-spacing:-10.995600px;}
.ls0{letter-spacing:-3.120000px;}
.ls6{letter-spacing:-2.268000px;}
.ls1a{letter-spacing:-0.924000px;}
.ls1f{letter-spacing:-0.840000px;}
.ls3{letter-spacing:-0.702000px;}
.ls19{letter-spacing:-0.660000px;}
.ls17{letter-spacing:-0.594000px;}
.ls1c{letter-spacing:-0.420000px;}
.ls1{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.066000px;}
.ls15{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.006600px;}
.lsd{letter-spacing:0.007200px;}
.ls1d{letter-spacing:0.009600px;}
.ls18{letter-spacing:0.010800px;}
.ls1b{letter-spacing:0.060000px;}
.ls14{letter-spacing:0.066000px;}
.ls13{letter-spacing:0.132000px;}
.ls4{letter-spacing:0.215400px;}
.ls20{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.660000px;}
.ls21{letter-spacing:0.720000px;}
.lsc{letter-spacing:1.254000px;}
.ls7{letter-spacing:1.674000px;}
.ls5{letter-spacing:2.691600px;}
.ls23{letter-spacing:3.456000px;}
.ls1e{letter-spacing:3.457800px;}
.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;}
}
.ws18{word-spacing:-66.660000px;}
.wsc{word-spacing:-66.000000px;}
.ws19{word-spacing:-60.000000px;}
.ws2{word-spacing:-54.000000px;}
.ws16{word-spacing:-16.632000px;}
.ws12{word-spacing:-16.500000px;}
.ws13{word-spacing:-16.434000px;}
.ws1c{word-spacing:-15.360000px;}
.ws7{word-spacing:-15.174000px;}
.ws1a{word-spacing:-15.060000px;}
.wsd{word-spacing:-15.000000px;}
.ws1b{word-spacing:-14.160000px;}
.ws1{word-spacing:-12.798000px;}
.ws5{word-spacing:-12.000000px;}
.wsf{word-spacing:-11.550000px;}
.ws6{word-spacing:-11.232000px;}
.ws17{word-spacing:-10.500000px;}
.ws3{word-spacing:0.000000px;}
.ws15{word-spacing:10.441200px;}
.wsa{word-spacing:11.811600px;}
.ws11{word-spacing:12.658200px;}
.ws14{word-spacing:12.658800px;}
.ws1e{word-spacing:13.985400px;}
.ws1d{word-spacing:13.986000px;}
.wse{word-spacing:14.876400px;}
.ws9{word-spacing:16.170000px;}
.wsb{word-spacing:17.001600px;}
.ws10{word-spacing:17.093400px;}
.ws8{word-spacing:17.094000px;}
.ws0{word-spacing:144.000000px;}
.ws4{word-spacing:1109.914800px;}
._f{margin-left:-2041.200000px;}
._13{margin-left:-11.179200px;}
._12{margin-left:-8.577600px;}
._10{margin-left:-6.735000px;}
._2{margin-left:-5.610000px;}
._4{margin-left:-4.413000px;}
._1{margin-left:-2.976600px;}
._3{margin-left:-1.024200px;}
._5{width:1.152000px;}
._0{width:2.976000px;}
._a{width:4.024200px;}
._8{width:5.166000px;}
._9{width:6.218400px;}
._d{width:7.756200px;}
._e{width:8.827800px;}
._11{width:10.652400px;}
._b{width:12.967800px;}
._c{width:15.123000px;}
._6{width:21.360000px;}
._7{width:350.544000px;}
.fc1{color:rgb(57,56,56);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:66.410400px;}
.yc6{bottom:66.410700px;}
.y81{bottom:106.299150px;}
.y3e{bottom:108.592950px;}
.y66{bottom:110.917950px;}
.yee{bottom:110.918250px;}
.y100{bottom:117.818250px;}
.ya{bottom:122.664600px;}
.y80{bottom:122.799150px;}
.y3d{bottom:127.192950px;}
.y65{bottom:129.517950px;}
.yed{bottom:129.518250px;}
.yff{bottom:134.918250px;}
.y9{bottom:135.864600px;}
.y7f{bottom:139.299150px;}
.yc2{bottom:142.273800px;}
.y3c{bottom:145.792950px;}
.y64{bottom:148.117950px;}
.yec{bottom:148.118250px;}
.y8{bottom:149.064600px;}
.yfe{bottom:152.018250px;}
.y7e{bottom:155.799150px;}
.yc1{bottom:160.873800px;}
.y3b{bottom:164.392950px;}
.y63{bottom:166.717950px;}
.yeb{bottom:166.718250px;}
.yfd{bottom:169.118250px;}
.y7d{bottom:172.299150px;}
.y7{bottom:175.464600px;}
.yc0{bottom:179.473800px;}
.y3a{bottom:182.992950px;}
.y62{bottom:185.317950px;}
.yea{bottom:185.318250px;}
.yfc{bottom:186.218250px;}
.y8d{bottom:188.799150px;}
.y6{bottom:191.964600px;}
.ybf{bottom:198.073800px;}
.y39{bottom:201.592950px;}
.yfb{bottom:203.318250px;}
.y61{bottom:203.917950px;}
.ye9{bottom:203.918250px;}
.y5{bottom:208.464600px;}
.ybe{bottom:216.673800px;}
.y7c{bottom:219.966750px;}
.y38{bottom:220.192950px;}
.yfa{bottom:220.418250px;}
.y60{bottom:222.517950px;}
.ye8{bottom:222.518250px;}
.y4{bottom:224.964600px;}
.ybd{bottom:235.273800px;}
.yf9{bottom:237.518250px;}
.y7b{bottom:238.566750px;}
.y37{bottom:238.792950px;}
.y5f{bottom:241.117950px;}
.ye7{bottom:241.118250px;}
.y3{bottom:241.464600px;}
.ybc{bottom:253.873800px;}
.yf8{bottom:254.618250px;}
.y7a{bottom:257.166750px;}
.y36{bottom:257.392950px;}
.y2{bottom:257.964600px;}
.y5e{bottom:259.717950px;}
.ye6{bottom:259.718250px;}
.yf7{bottom:271.718250px;}
.ybb{bottom:272.473800px;}
.y1{bottom:274.464600px;}
.y79{bottom:275.766750px;}
.y35{bottom:275.992950px;}
.y5d{bottom:278.317950px;}
.ye5{bottom:278.318250px;}
.y9d{bottom:282.678600px;}
.yf6{bottom:288.818250px;}
.yba{bottom:291.073800px;}
.y78{bottom:294.366750px;}
.y34{bottom:294.592950px;}
.y1a{bottom:295.439100px;}
.y5c{bottom:296.917950px;}
.ye4{bottom:296.918250px;}
.y9c{bottom:301.278600px;}
.yf5{bottom:305.918250px;}
.yb9{bottom:309.673800px;}
.y19{bottom:311.939100px;}
.y77{bottom:312.966750px;}
.y33{bottom:313.192950px;}
.y5b{bottom:315.517950px;}
.ye3{bottom:315.518250px;}
.y9b{bottom:319.878600px;}
.yf4{bottom:323.018250px;}
.yb8{bottom:328.273800px;}
.y18{bottom:328.439100px;}
.y76{bottom:331.566750px;}
.y32{bottom:331.792950px;}
.y5a{bottom:334.117950px;}
.ye2{bottom:334.118250px;}
.y9a{bottom:338.478600px;}
.yf3{bottom:340.118250px;}
.y17{bottom:344.939100px;}
.yb7{bottom:346.873800px;}
.y75{bottom:350.166750px;}
.y31{bottom:350.392950px;}
.y59{bottom:352.717950px;}
.ye1{bottom:352.718250px;}
.y99{bottom:357.078600px;}
.yf2{bottom:357.218250px;}
.y16{bottom:361.439100px;}
.yb6{bottom:365.473800px;}
.y117{bottom:367.503900px;}
.y74{bottom:368.766750px;}
.y30{bottom:368.992950px;}
.y58{bottom:371.317950px;}
.yf1{bottom:374.318250px;}
.y98{bottom:375.678600px;}
.y15{bottom:377.939100px;}
.ye0{bottom:381.523050px;}
.yb5{bottom:384.073800px;}
.y73{bottom:387.366750px;}
.y2f{bottom:387.592950px;}
.y57{bottom:389.917950px;}
.yf0{bottom:391.418250px;}
.y97{bottom:394.278600px;}
.y14{bottom:394.439100px;}
.y116{bottom:401.103900px;}
.yb4{bottom:402.673800px;}
.y72{bottom:405.966750px;}
.y2e{bottom:406.192950px;}
.y56{bottom:408.517950px;}
.y13{bottom:410.939100px;}
.y96{bottom:412.878600px;}
.ydf{bottom:412.878900px;}
.y115{bottom:417.903900px;}
.yef{bottom:418.723050px;}
.yb3{bottom:421.273800px;}
.y71{bottom:424.566750px;}
.y2d{bottom:424.792950px;}
.y55{bottom:427.117950px;}
.y12{bottom:427.439100px;}
.y95{bottom:431.478600px;}
.yde{bottom:431.478900px;}
.y114{bottom:434.703900px;}
.yb2{bottom:439.873800px;}
.y70{bottom:443.166750px;}
.y2c{bottom:443.392950px;}
.y54{bottom:445.717950px;}
.y94{bottom:450.078600px;}
.ydd{bottom:450.078900px;}
.y113{bottom:451.503900px;}
.yc4{bottom:455.922600px;}
.yb1{bottom:458.473800px;}
.y6f{bottom:461.766750px;}
.y2b{bottom:461.992950px;}
.y53{bottom:464.317950px;}
.y112{bottom:468.303900px;}
.y93{bottom:468.678600px;}
.ydc{bottom:468.678900px;}
.yc3{bottom:474.522600px;}
.yb0{bottom:477.073800px;}
.y6e{bottom:480.366750px;}
.y2a{bottom:480.592950px;}
.y52{bottom:482.917950px;}
.y92{bottom:487.278600px;}
.ydb{bottom:487.278900px;}
.yaf{bottom:495.673800px;}
.y29{bottom:499.192950px;}
.y51{bottom:501.517950px;}
.y111{bottom:501.903900px;}
.y91{bottom:505.878600px;}
.yda{bottom:505.878900px;}
.y11{bottom:508.739100px;}
.y6d{bottom:511.722600px;}
.yae{bottom:514.273800px;}
.y28{bottom:517.792950px;}
.y110{bottom:518.703900px;}
.y8c{bottom:520.117950px;}
.y90{bottom:524.478600px;}
.yd9{bottom:524.478900px;}
.y50{bottom:530.322600px;}
.yad{bottom:532.873800px;}
.y10f{bottom:535.503900px;}
.y27{bottom:536.392950px;}
.y8b{bottom:538.717950px;}
.y8f{bottom:543.078600px;}
.yd8{bottom:543.078900px;}
.y6c{bottom:548.922600px;}
.yac{bottom:551.473800px;}
.y26{bottom:554.992950px;}
.y8a{bottom:557.317950px;}
.y4f{bottom:561.678600px;}
.yd7{bottom:561.678900px;}
.y6b{bottom:567.522600px;}
.y10e{bottom:569.103900px;}
.yab{bottom:570.073800px;}
.y10{bottom:570.539100px;}
.y89{bottom:575.917950px;}
.y4e{bottom:580.278600px;}
.yd6{bottom:580.278900px;}
.y25{bottom:583.797600px;}
.y10d{bottom:585.903900px;}
.y6a{bottom:586.122600px;}
.yaa{bottom:588.673800px;}
.yf{bottom:589.139100px;}
.y88{bottom:594.517950px;}
.y4d{bottom:598.878600px;}
.yd5{bottom:598.878900px;}
.y10c{bottom:602.703900px;}
.y69{bottom:604.722600px;}
.ya9{bottom:607.273800px;}
.y87{bottom:613.117950px;}
.y4c{bottom:617.478450px;}
.y8e{bottom:617.478600px;}
.yd4{bottom:617.478900px;}
.ya8{bottom:625.873800px;}
.y86{bottom:631.717950px;}
.y4b{bottom:636.078600px;}
.yd3{bottom:636.078900px;}
.ya7{bottom:644.473800px;}
.y85{bottom:650.317950px;}
.ye{bottom:650.939100px;}
.y4a{bottom:654.678600px;}
.yd2{bottom:654.678900px;}
.ya6{bottom:663.073800px;}
.y84{bottom:668.917950px;}
.y49{bottom:673.278600px;}
.yd1{bottom:673.278900px;}
.yd{bottom:679.439100px;}
.ya5{bottom:681.673800px;}
.y83{bottom:687.517950px;}
.y10b{bottom:689.403900px;}
.y48{bottom:691.878450px;}
.y68{bottom:691.878600px;}
.yd0{bottom:691.878900px;}
.ya4{bottom:700.273800px;}
.y24{bottom:704.553600px;}
.y10a{bottom:706.503900px;}
.y47{bottom:710.478450px;}
.ycf{bottom:710.478900px;}
.y82{bottom:716.322600px;}
.ya3{bottom:718.873800px;}
.y23{bottom:721.053600px;}
.y109{bottom:723.603900px;}
.y46{bottom:729.078600px;}
.yce{bottom:729.078900px;}
.yc{bottom:736.739100px;}
.ya2{bottom:737.473800px;}
.y22{bottom:737.553600px;}
.y108{bottom:740.703900px;}
.y45{bottom:747.678600px;}
.ycd{bottom:747.678900px;}
.y21{bottom:754.053600px;}
.ya1{bottom:756.073800px;}
.y107{bottom:757.803900px;}
.yb{bottom:765.239100px;}
.y44{bottom:766.278600px;}
.ycc{bottom:766.278900px;}
.y20{bottom:770.553450px;}
.ya0{bottom:774.673800px;}
.y106{bottom:774.903900px;}
.y43{bottom:784.878600px;}
.ycb{bottom:784.878900px;}
.y1f{bottom:787.053450px;}
.y105{bottom:792.003900px;}
.y9f{bottom:793.273800px;}
.y42{bottom:803.478450px;}
.yca{bottom:803.478900px;}
.y1e{bottom:803.553450px;}
.y104{bottom:809.103900px;}
.y9e{bottom:811.873950px;}
.y1d{bottom:820.053450px;}
.y41{bottom:822.078600px;}
.yc9{bottom:822.078900px;}
.y103{bottom:826.203900px;}
.y40{bottom:840.678450px;}
.y67{bottom:840.678600px;}
.yc8{bottom:840.678900px;}
.y102{bottom:843.303900px;}
.y3f{bottom:859.278600px;}
.yc7{bottom:859.278900px;}
.y101{bottom:860.403900px;}
.y1b{bottom:902.936250px;}
.yc5{bottom:902.936550px;}
.h7{height:42.937500px;}
.h2{height:43.054688px;}
.he{height:47.856445px;}
.h9{height:48.304688px;}
.h8{height:48.436523px;}
.h6{height:53.173828px;}
.hd{height:53.671875px;}
.h5{height:53.818359px;}
.hc{height:57.472852px;}
.hb{height:59.039062px;}
.ha{height:59.200195px;}
.h4{height:85.078125px;}
.h3{height:101.030273px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:106.235400px;}
.xd{left:109.626900px;}
.x12{left:114.685950px;}
.x2{left:121.619850px;}
.x14{left:136.074300px;}
.x16{left:147.421350px;}
.x6{left:162.307050px;}
.x3{left:167.779950px;}
.x5{left:171.818550px;}
.x7{left:173.120400px;}
.x19{left:184.311000px;}
.x17{left:189.006450px;}
.x1c{left:196.944150px;}
.x1a{left:201.195300px;}
.x1b{left:239.827350px;}
.x4{left:246.943050px;}
.x9{left:248.448600px;}
.x8{left:257.636100px;}
.xa{left:263.730600px;}
.x1e{left:269.418600px;}
.x18{left:277.275600px;}
.xe{left:282.684750px;}
.xc{left:298.496550px;}
.x1d{left:306.970800px;}
.x13{left:309.768900px;}
.x11{left:322.834350px;}
.x10{left:325.913400px;}
.xb{left:328.479150px;}
.xf{left:464.800350px;}
.x15{left:594.075000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.000000pt;}
.v2{vertical-align:17.600000pt;}
.lsb{letter-spacing:-13.141333pt;}
.ls8{letter-spacing:-12.730667pt;}
.ls9{letter-spacing:-11.827200pt;}
.lse{letter-spacing:-11.745067pt;}
.lsf{letter-spacing:-10.759467pt;}
.ls22{letter-spacing:-10.416000pt;}
.lsa{letter-spacing:-10.389867pt;}
.ls12{letter-spacing:-9.773867pt;}
.ls0{letter-spacing:-2.773333pt;}
.ls6{letter-spacing:-2.016000pt;}
.ls1a{letter-spacing:-0.821333pt;}
.ls1f{letter-spacing:-0.746667pt;}
.ls3{letter-spacing:-0.624000pt;}
.ls19{letter-spacing:-0.586667pt;}
.ls17{letter-spacing:-0.528000pt;}
.ls1c{letter-spacing:-0.373333pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.058667pt;}
.ls15{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.005867pt;}
.lsd{letter-spacing:0.006400pt;}
.ls1d{letter-spacing:0.008533pt;}
.ls18{letter-spacing:0.009600pt;}
.ls1b{letter-spacing:0.053333pt;}
.ls14{letter-spacing:0.058667pt;}
.ls13{letter-spacing:0.117333pt;}
.ls4{letter-spacing:0.191467pt;}
.ls20{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.586667pt;}
.ls21{letter-spacing:0.640000pt;}
.lsc{letter-spacing:1.114667pt;}
.ls7{letter-spacing:1.488000pt;}
.ls5{letter-spacing:2.392533pt;}
.ls23{letter-spacing:3.072000pt;}
.ls1e{letter-spacing:3.073600pt;}
.ws18{word-spacing:-59.253333pt;}
.wsc{word-spacing:-58.666667pt;}
.ws19{word-spacing:-53.333333pt;}
.ws2{word-spacing:-48.000000pt;}
.ws16{word-spacing:-14.784000pt;}
.ws12{word-spacing:-14.666667pt;}
.ws13{word-spacing:-14.608000pt;}
.ws1c{word-spacing:-13.653333pt;}
.ws7{word-spacing:-13.488000pt;}
.ws1a{word-spacing:-13.386667pt;}
.wsd{word-spacing:-13.333333pt;}
.ws1b{word-spacing:-12.586667pt;}
.ws1{word-spacing:-11.376000pt;}
.ws5{word-spacing:-10.666667pt;}
.wsf{word-spacing:-10.266667pt;}
.ws6{word-spacing:-9.984000pt;}
.ws17{word-spacing:-9.333333pt;}
.ws3{word-spacing:0.000000pt;}
.ws15{word-spacing:9.281067pt;}
.wsa{word-spacing:10.499200pt;}
.ws11{word-spacing:11.251733pt;}
.ws14{word-spacing:11.252267pt;}
.ws1e{word-spacing:12.431467pt;}
.ws1d{word-spacing:12.432000pt;}
.wse{word-spacing:13.223467pt;}
.ws9{word-spacing:14.373333pt;}
.wsb{word-spacing:15.112533pt;}
.ws10{word-spacing:15.194133pt;}
.ws8{word-spacing:15.194667pt;}
.ws0{word-spacing:128.000000pt;}
.ws4{word-spacing:986.590933pt;}
._f{margin-left:-1814.400000pt;}
._13{margin-left:-9.937067pt;}
._12{margin-left:-7.624533pt;}
._10{margin-left:-5.986667pt;}
._2{margin-left:-4.986667pt;}
._4{margin-left:-3.922667pt;}
._1{margin-left:-2.645867pt;}
._3{margin-left:-0.910400pt;}
._5{width:1.024000pt;}
._0{width:2.645333pt;}
._a{width:3.577067pt;}
._8{width:4.592000pt;}
._9{width:5.527467pt;}
._d{width:6.894400pt;}
._e{width:7.846933pt;}
._11{width:9.468800pt;}
._b{width:11.526933pt;}
._c{width:13.442667pt;}
._6{width:18.986667pt;}
._7{width:311.594667pt;}
.fs8{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:59.031467pt;}
.yc6{bottom:59.031733pt;}
.y81{bottom:94.488133pt;}
.y3e{bottom:96.527067pt;}
.y66{bottom:98.593733pt;}
.yee{bottom:98.594000pt;}
.y100{bottom:104.727333pt;}
.ya{bottom:109.035200pt;}
.y80{bottom:109.154800pt;}
.y3d{bottom:113.060400pt;}
.y65{bottom:115.127067pt;}
.yed{bottom:115.127333pt;}
.yff{bottom:119.927333pt;}
.y9{bottom:120.768533pt;}
.y7f{bottom:123.821467pt;}
.yc2{bottom:126.465600pt;}
.y3c{bottom:129.593733pt;}
.y64{bottom:131.660400pt;}
.yec{bottom:131.660667pt;}
.y8{bottom:132.501867pt;}
.yfe{bottom:135.127333pt;}
.y7e{bottom:138.488133pt;}
.yc1{bottom:142.998933pt;}
.y3b{bottom:146.127067pt;}
.y63{bottom:148.193733pt;}
.yeb{bottom:148.194000pt;}
.yfd{bottom:150.327333pt;}
.y7d{bottom:153.154800pt;}
.y7{bottom:155.968533pt;}
.yc0{bottom:159.532267pt;}
.y3a{bottom:162.660400pt;}
.y62{bottom:164.727067pt;}
.yea{bottom:164.727333pt;}
.yfc{bottom:165.527333pt;}
.y8d{bottom:167.821467pt;}
.y6{bottom:170.635200pt;}
.ybf{bottom:176.065600pt;}
.y39{bottom:179.193733pt;}
.yfb{bottom:180.727333pt;}
.y61{bottom:181.260400pt;}
.ye9{bottom:181.260667pt;}
.y5{bottom:185.301867pt;}
.ybe{bottom:192.598933pt;}
.y7c{bottom:195.526000pt;}
.y38{bottom:195.727067pt;}
.yfa{bottom:195.927333pt;}
.y60{bottom:197.793733pt;}
.ye8{bottom:197.794000pt;}
.y4{bottom:199.968533pt;}
.ybd{bottom:209.132267pt;}
.yf9{bottom:211.127333pt;}
.y7b{bottom:212.059333pt;}
.y37{bottom:212.260400pt;}
.y5f{bottom:214.327067pt;}
.ye7{bottom:214.327333pt;}
.y3{bottom:214.635200pt;}
.ybc{bottom:225.665600pt;}
.yf8{bottom:226.327333pt;}
.y7a{bottom:228.592667pt;}
.y36{bottom:228.793733pt;}
.y2{bottom:229.301867pt;}
.y5e{bottom:230.860400pt;}
.ye6{bottom:230.860667pt;}
.yf7{bottom:241.527333pt;}
.ybb{bottom:242.198933pt;}
.y1{bottom:243.968533pt;}
.y79{bottom:245.126000pt;}
.y35{bottom:245.327067pt;}
.y5d{bottom:247.393733pt;}
.ye5{bottom:247.394000pt;}
.y9d{bottom:251.269867pt;}
.yf6{bottom:256.727333pt;}
.yba{bottom:258.732267pt;}
.y78{bottom:261.659333pt;}
.y34{bottom:261.860400pt;}
.y1a{bottom:262.612533pt;}
.y5c{bottom:263.927067pt;}
.ye4{bottom:263.927333pt;}
.y9c{bottom:267.803200pt;}
.yf5{bottom:271.927333pt;}
.yb9{bottom:275.265600pt;}
.y19{bottom:277.279200pt;}
.y77{bottom:278.192667pt;}
.y33{bottom:278.393733pt;}
.y5b{bottom:280.460400pt;}
.ye3{bottom:280.460667pt;}
.y9b{bottom:284.336533pt;}
.yf4{bottom:287.127333pt;}
.yb8{bottom:291.798933pt;}
.y18{bottom:291.945867pt;}
.y76{bottom:294.726000pt;}
.y32{bottom:294.927067pt;}
.y5a{bottom:296.993733pt;}
.ye2{bottom:296.994000pt;}
.y9a{bottom:300.869867pt;}
.yf3{bottom:302.327333pt;}
.y17{bottom:306.612533pt;}
.yb7{bottom:308.332267pt;}
.y75{bottom:311.259333pt;}
.y31{bottom:311.460400pt;}
.y59{bottom:313.527067pt;}
.ye1{bottom:313.527333pt;}
.y99{bottom:317.403200pt;}
.yf2{bottom:317.527333pt;}
.y16{bottom:321.279200pt;}
.yb6{bottom:324.865600pt;}
.y117{bottom:326.670133pt;}
.y74{bottom:327.792667pt;}
.y30{bottom:327.993733pt;}
.y58{bottom:330.060400pt;}
.yf1{bottom:332.727333pt;}
.y98{bottom:333.936533pt;}
.y15{bottom:335.945867pt;}
.ye0{bottom:339.131600pt;}
.yb5{bottom:341.398933pt;}
.y73{bottom:344.326000pt;}
.y2f{bottom:344.527067pt;}
.y57{bottom:346.593733pt;}
.yf0{bottom:347.927333pt;}
.y97{bottom:350.469867pt;}
.y14{bottom:350.612533pt;}
.y116{bottom:356.536800pt;}
.yb4{bottom:357.932267pt;}
.y72{bottom:360.859333pt;}
.y2e{bottom:361.060400pt;}
.y56{bottom:363.127067pt;}
.y13{bottom:365.279200pt;}
.y96{bottom:367.003200pt;}
.ydf{bottom:367.003467pt;}
.y115{bottom:371.470133pt;}
.yef{bottom:372.198267pt;}
.yb3{bottom:374.465600pt;}
.y71{bottom:377.392667pt;}
.y2d{bottom:377.593733pt;}
.y55{bottom:379.660400pt;}
.y12{bottom:379.945867pt;}
.y95{bottom:383.536533pt;}
.yde{bottom:383.536800pt;}
.y114{bottom:386.403467pt;}
.yb2{bottom:390.998933pt;}
.y70{bottom:393.926000pt;}
.y2c{bottom:394.127067pt;}
.y54{bottom:396.193733pt;}
.y94{bottom:400.069867pt;}
.ydd{bottom:400.070133pt;}
.y113{bottom:401.336800pt;}
.yc4{bottom:405.264533pt;}
.yb1{bottom:407.532267pt;}
.y6f{bottom:410.459333pt;}
.y2b{bottom:410.660400pt;}
.y53{bottom:412.727067pt;}
.y112{bottom:416.270133pt;}
.y93{bottom:416.603200pt;}
.ydc{bottom:416.603467pt;}
.yc3{bottom:421.797867pt;}
.yb0{bottom:424.065600pt;}
.y6e{bottom:426.992667pt;}
.y2a{bottom:427.193733pt;}
.y52{bottom:429.260400pt;}
.y92{bottom:433.136533pt;}
.ydb{bottom:433.136800pt;}
.yaf{bottom:440.598933pt;}
.y29{bottom:443.727067pt;}
.y51{bottom:445.793733pt;}
.y111{bottom:446.136800pt;}
.y91{bottom:449.669867pt;}
.yda{bottom:449.670133pt;}
.y11{bottom:452.212533pt;}
.y6d{bottom:454.864533pt;}
.yae{bottom:457.132267pt;}
.y28{bottom:460.260400pt;}
.y110{bottom:461.070133pt;}
.y8c{bottom:462.327067pt;}
.y90{bottom:466.203200pt;}
.yd9{bottom:466.203467pt;}
.y50{bottom:471.397867pt;}
.yad{bottom:473.665600pt;}
.y10f{bottom:476.003467pt;}
.y27{bottom:476.793733pt;}
.y8b{bottom:478.860400pt;}
.y8f{bottom:482.736533pt;}
.yd8{bottom:482.736800pt;}
.y6c{bottom:487.931200pt;}
.yac{bottom:490.198933pt;}
.y26{bottom:493.327067pt;}
.y8a{bottom:495.393733pt;}
.y4f{bottom:499.269867pt;}
.yd7{bottom:499.270133pt;}
.y6b{bottom:504.464533pt;}
.y10e{bottom:505.870133pt;}
.yab{bottom:506.732267pt;}
.y10{bottom:507.145867pt;}
.y89{bottom:511.927067pt;}
.y4e{bottom:515.803200pt;}
.yd6{bottom:515.803467pt;}
.y25{bottom:518.931200pt;}
.y10d{bottom:520.803467pt;}
.y6a{bottom:520.997867pt;}
.yaa{bottom:523.265600pt;}
.yf{bottom:523.679200pt;}
.y88{bottom:528.460400pt;}
.y4d{bottom:532.336533pt;}
.yd5{bottom:532.336800pt;}
.y10c{bottom:535.736800pt;}
.y69{bottom:537.531200pt;}
.ya9{bottom:539.798933pt;}
.y87{bottom:544.993733pt;}
.y4c{bottom:548.869733pt;}
.y8e{bottom:548.869867pt;}
.yd4{bottom:548.870133pt;}
.ya8{bottom:556.332267pt;}
.y86{bottom:561.527067pt;}
.y4b{bottom:565.403200pt;}
.yd3{bottom:565.403467pt;}
.ya7{bottom:572.865600pt;}
.y85{bottom:578.060400pt;}
.ye{bottom:578.612533pt;}
.y4a{bottom:581.936533pt;}
.yd2{bottom:581.936800pt;}
.ya6{bottom:589.398933pt;}
.y84{bottom:594.593733pt;}
.y49{bottom:598.469867pt;}
.yd1{bottom:598.470133pt;}
.yd{bottom:603.945867pt;}
.ya5{bottom:605.932267pt;}
.y83{bottom:611.127067pt;}
.y10b{bottom:612.803467pt;}
.y48{bottom:615.003067pt;}
.y68{bottom:615.003200pt;}
.yd0{bottom:615.003467pt;}
.ya4{bottom:622.465600pt;}
.y24{bottom:626.269867pt;}
.y10a{bottom:628.003467pt;}
.y47{bottom:631.536400pt;}
.ycf{bottom:631.536800pt;}
.y82{bottom:636.731200pt;}
.ya3{bottom:638.998933pt;}
.y23{bottom:640.936533pt;}
.y109{bottom:643.203467pt;}
.y46{bottom:648.069867pt;}
.yce{bottom:648.070133pt;}
.yc{bottom:654.879200pt;}
.ya2{bottom:655.532267pt;}
.y22{bottom:655.603200pt;}
.y108{bottom:658.403467pt;}
.y45{bottom:664.603200pt;}
.ycd{bottom:664.603467pt;}
.y21{bottom:670.269867pt;}
.ya1{bottom:672.065600pt;}
.y107{bottom:673.603467pt;}
.yb{bottom:680.212533pt;}
.y44{bottom:681.136533pt;}
.ycc{bottom:681.136800pt;}
.y20{bottom:684.936400pt;}
.ya0{bottom:688.598933pt;}
.y106{bottom:688.803467pt;}
.y43{bottom:697.669867pt;}
.ycb{bottom:697.670133pt;}
.y1f{bottom:699.603067pt;}
.y105{bottom:704.003467pt;}
.y9f{bottom:705.132267pt;}
.y42{bottom:714.203067pt;}
.yca{bottom:714.203467pt;}
.y1e{bottom:714.269733pt;}
.y104{bottom:719.203467pt;}
.y9e{bottom:721.665733pt;}
.y1d{bottom:728.936400pt;}
.y41{bottom:730.736533pt;}
.yc9{bottom:730.736800pt;}
.y103{bottom:734.403467pt;}
.y40{bottom:747.269733pt;}
.y67{bottom:747.269867pt;}
.yc8{bottom:747.270133pt;}
.y102{bottom:749.603467pt;}
.y3f{bottom:763.803200pt;}
.yc7{bottom:763.803467pt;}
.y101{bottom:764.803467pt;}
.y1b{bottom:802.610000pt;}
.yc5{bottom:802.610267pt;}
.h7{height:38.166667pt;}
.h2{height:38.270833pt;}
.he{height:42.539062pt;}
.h9{height:42.937500pt;}
.h8{height:43.054688pt;}
.h6{height:47.265625pt;}
.hd{height:47.708333pt;}
.h5{height:47.838542pt;}
.hc{height:51.086979pt;}
.hb{height:52.479167pt;}
.ha{height:52.622396pt;}
.h4{height:75.625000pt;}
.h3{height:89.804688pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:94.431467pt;}
.xd{left:97.446133pt;}
.x12{left:101.943067pt;}
.x2{left:108.106533pt;}
.x14{left:120.954933pt;}
.x16{left:131.041200pt;}
.x6{left:144.272933pt;}
.x3{left:149.137733pt;}
.x5{left:152.727600pt;}
.x7{left:153.884800pt;}
.x19{left:163.832000pt;}
.x17{left:168.005733pt;}
.x1c{left:175.061467pt;}
.x1a{left:178.840267pt;}
.x1b{left:213.179867pt;}
.x4{left:219.504933pt;}
.x9{left:220.843200pt;}
.x8{left:229.009867pt;}
.xa{left:234.427200pt;}
.x1e{left:239.483200pt;}
.x18{left:246.467200pt;}
.xe{left:251.275333pt;}
.xc{left:265.330267pt;}
.x1d{left:272.862933pt;}
.x13{left:275.350133pt;}
.x11{left:286.963867pt;}
.x10{left:289.700800pt;}
.xb{left:291.981467pt;}
.xf{left:413.155867pt;}
.x15{left:528.066667pt;}
}




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