
    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_f07f0bd6c7d0d71e196412c7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_4a25d810b4f8fcf8ff480d71.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_44aa152c40c8f99de9156d07.woff')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_d6d7b93088be97ffbfc01222.woff')format("woff");}.ff4{font-family:ff4;line-height:1.024414;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_8c6289c172a9cd3889064a06.woff')format("woff");}.ff5{font-family:ff5;line-height:0.839355;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_e9d885fea4e878166029f80d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.016113;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_06c233b5afafb4ca3a17c400.woff')format("woff");}.ff7{font-family:ff7;line-height:1.016113;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);}
.v2{vertical-align:-29.964000px;}
.v4{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:16.944000px;}
.v3{vertical-align:21.982800px;}
.v1{vertical-align:30.152400px;}
.ls7{letter-spacing:-1.944000px;}
.lsf{letter-spacing:-0.855000px;}
.ls16{letter-spacing:-0.627000px;}
.ls4{letter-spacing:-0.567000px;}
.ls6{letter-spacing:-0.240000px;}
.lse{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000300px;}
.ls0{letter-spacing:0.280200px;}
.ls13{letter-spacing:1.134000px;}
.lsb{letter-spacing:2.400000px;}
.ls1{letter-spacing:2.629200px;}
.ls10{letter-spacing:3.300000px;}
.lsd{letter-spacing:3.600000px;}
.ls2{letter-spacing:4.200000px;}
.ls11{letter-spacing:4.275000px;}
.ls15{letter-spacing:4.650000px;}
.lsa{letter-spacing:4.800000px;}
.ls8{letter-spacing:5.880000px;}
.ls5{letter-spacing:6.000000px;}
.ls19{letter-spacing:6.300000px;}
.ls1b{letter-spacing:6.378000px;}
.ls1a{letter-spacing:6.426000px;}
.lsc{letter-spacing:6.675000px;}
.ls1d{letter-spacing:7.200000px;}
.ls14{letter-spacing:8.160156px;}
.ls12{letter-spacing:8.160756px;}
.ls18{letter-spacing:8.175000px;}
.ls1c{letter-spacing:9.882000px;}
.ls17{letter-spacing:29.673000px;}
.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:-30.348000px;}
.ws14{word-spacing:-29.250000px;}
.ws19{word-spacing:-28.275000px;}
.ws8{word-spacing:-27.750000px;}
.ws12{word-spacing:-25.725000px;}
.ws10{word-spacing:-25.350000px;}
.wse{word-spacing:-24.375000px;}
.ws11{word-spacing:-23.895000px;}
.ws17{word-spacing:-22.860000px;}
.ws1{word-spacing:-22.740000px;}
.wsf{word-spacing:-19.389000px;}
.ws18{word-spacing:-16.860000px;}
.ws15{word-spacing:-15.561000px;}
.ws1a{word-spacing:-14.820000px;}
.ws9{word-spacing:-11.303787px;}
.ws16{word-spacing:-6.300000px;}
.ws4{word-spacing:-6.000000px;}
.ws7{word-spacing:-4.200000px;}
.wsb{word-spacing:-3.600000px;}
.wsa{word-spacing:-2.400000px;}
.ws2{word-spacing:0.000000px;}
.wsc{word-spacing:0.180000px;}
.ws5{word-spacing:0.240000px;}
.ws3{word-spacing:0.567000px;}
.ws13{word-spacing:0.627000px;}
.wsd{word-spacing:0.855000px;}
.ws6{word-spacing:1.944000px;}
._b{margin-left:-14.289000px;}
._29{margin-left:-10.950300px;}
._2a{margin-left:-9.878100px;}
._33{margin-left:-8.807400px;}
._31{margin-left:-7.569300px;}
._c{margin-left:-6.367200px;}
._9{margin-left:-5.041800px;}
._8{margin-left:-3.087000px;}
._5{margin-left:-1.668000px;}
._3{width:1.191000px;}
._1{width:2.400000px;}
._4{width:3.421200px;}
._a{width:4.738200px;}
._6{width:5.940000px;}
._7{width:7.308000px;}
._20{width:8.495700px;}
._12{width:10.534800px;}
._11{width:11.733000px;}
._13{width:13.722600px;}
._16{width:14.887200px;}
._10{width:16.621674px;}
._1c{width:17.673900px;}
._35{width:19.346004px;}
._21{width:20.654100px;}
._2b{width:22.351200px;}
._1f{width:24.024600px;}
._25{width:25.282800px;}
._17{width:26.295900px;}
._26{width:27.704160px;}
._2c{width:30.180600px;}
._2d{width:31.836600px;}
._36{width:33.221400px;}
._1d{width:37.078800px;}
._28{width:38.483100px;}
._1b{width:40.006200px;}
._1a{width:41.430300px;}
._e{width:42.894600px;}
._19{width:44.191200px;}
._1e{width:46.218600px;}
._32{width:50.285700px;}
._34{width:55.330800px;}
._2f{width:57.062400px;}
._2e{width:58.129800px;}
._f{width:61.134000px;}
._d{width:62.454000px;}
._15{width:260.610000px;}
._30{width:492.457200px;}
._37{width:494.430000px;}
._14{width:501.390000px;}
._27{width:503.040000px;}
._22{width:504.711000px;}
._0{width:578.400000px;}
._18{width:993.706200px;}
._23{width:996.331200px;}
._24{width:1000.381200px;}
._2{width:1002.361200px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.482000px;}
.fsc{font-size:40.227000px;}
.fs7{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs6{font-size:48.972000px;}
.fs9{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:62.964000px;}
.fs2{font-size:63.000000px;}
.fsb{font-size:69.000000px;}
.fsd{font-size:72.000000px;}
.fs1{font-size:75.000000px;}
.fsf{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yd5{bottom:106.101600px;}
.yf6{bottom:106.194000px;}
.y1e{bottom:106.293300px;}
.yb4{bottom:107.696400px;}
.y56{bottom:109.294800px;}
.y35{bottom:109.294950px;}
.y1d{bottom:123.546300px;}
.yf5{bottom:125.724000px;}
.yd4{bottom:126.482100px;}
.yb3{bottom:127.946400px;}
.y57{bottom:129.976350px;}
.ya8{bottom:130.796700px;}
.y34{bottom:130.797000px;}
.y6a{bottom:136.090500px;}
.y1c{bottom:143.794800px;}
.yf4{bottom:145.254000px;}
.yd3{bottom:146.862600px;}
.ya7{bottom:152.298750px;}
.y8a{bottom:152.299200px;}
.y1b{bottom:162.295200px;}
.yf3{bottom:164.784000px;}
.ya6{bottom:173.800650px;}
.y33{bottom:174.827700px;}
.y55{bottom:175.085850px;}
.yd2{bottom:175.748100px;}
.y1a{bottom:179.548200px;}
.yf2{bottom:184.314000px;}
.ya5{bottom:195.302700px;}
.y32{bottom:195.372450px;}
.y69{bottom:195.825600px;}
.yd1{bottom:196.128600px;}
.y89{bottom:196.272750px;}
.y54{bottom:196.855350px;}
.y19{bottom:199.796700px;}
.yf1{bottom:203.844000px;}
.y31{bottom:215.917200px;}
.yd0{bottom:216.509100px;}
.ya4{bottom:216.804600px;}
.y68{bottom:216.818850px;}
.y88{bottom:217.024500px;}
.y53{bottom:218.624850px;}
.yf0{bottom:223.374000px;}
.y30{bottom:236.478450px;}
.y87{bottom:237.776250px;}
.y67{bottom:237.812100px;}
.y52{bottom:240.394350px;}
.yef{bottom:242.904000px;}
.y18{bottom:243.797550px;}
.ycf{bottom:245.394600px;}
.y2f{bottom:257.023200px;}
.y86{bottom:258.528000px;}
.y66{bottom:258.805350px;}
.y51{bottom:262.163850px;}
.yee{bottom:262.434000px;}
.y17{bottom:264.827550px;}
.yce{bottom:265.775100px;}
.y2e{bottom:277.567950px;}
.y85{bottom:279.279750px;}
.y65{bottom:279.805500px;}
.yed{bottom:281.964000px;}
.y50{bottom:283.933350px;}
.y16{bottom:285.857550px;}
.ycd{bottom:286.155600px;}
.y2d{bottom:298.112700px;}
.y84{bottom:300.031500px;}
.y64{bottom:300.798750px;}
.yec{bottom:301.494000px;}
.y4f{bottom:305.702850px;}
.y15{bottom:306.887550px;}
.ycc{bottom:315.041100px;}
.y2c{bottom:318.657450px;}
.y83{bottom:320.783250px;}
.yeb{bottom:321.024000px;}
.y63{bottom:321.792000px;}
.y4e{bottom:327.472350px;}
.y14{bottom:327.892500px;}
.ycb{bottom:335.421600px;}
.yea{bottom:340.554000px;}
.y82{bottom:341.535000px;}
.y13{bottom:347.422500px;}
.y4d{bottom:349.241850px;}
.y2b{bottom:359.755350px;}
.ye9{bottom:360.084000px;}
.y62{bottom:363.785400px;}
.yca{bottom:364.307100px;}
.y12{bottom:366.952500px;}
.y4c{bottom:371.011350px;}
.ye8{bottom:379.614000px;}
.y81{bottom:383.540250px;}
.yc9{bottom:384.687600px;}
.y2a{bottom:392.304150px;}
.y4b{bottom:392.780850px;}
.ya3{bottom:396.440850px;}
.yb2{bottom:398.696400px;}
.ye7{bottom:399.144000px;}
.y11{bottom:399.232500px;}
.yc8{bottom:413.573100px;}
.y4a{bottom:414.550350px;}
.ya2{bottom:416.692350px;}
.ye6{bottom:418.674000px;}
.yb1{bottom:418.946400px;}
.yc7{bottom:433.953600px;}
.y49{bottom:436.319850px;}
.ya1{bottom:436.943850px;}
.ye5{bottom:438.204000px;}
.y80{bottom:446.284050px;}
.y10{bottom:448.522500px;}
.yc6{bottom:454.334100px;}
.ya0{bottom:457.195350px;}
.ye4{bottom:457.734000px;}
.y48{bottom:458.089350px;}
.y7f{bottom:467.035800px;}
.yf{bottom:468.802500px;}
.yc5{bottom:474.714600px;}
.y9f{bottom:477.446850px;}
.y47{bottom:479.858850px;}
.y7e{bottom:487.787550px;}
.ye3{bottom:490.014000px;}
.y9e{bottom:497.698350px;}
.y46{bottom:501.628350px;}
.yc4{bottom:503.600100px;}
.y7d{bottom:508.513800px;}
.ye{bottom:511.102050px;}
.y9d{bottom:517.949850px;}
.yc3{bottom:523.980600px;}
.y7c{bottom:529.265550px;}
.yd{bottom:538.129050px;}
.y9c{bottom:538.186350px;}
.ye2{bottom:539.304000px;}
.y45{bottom:544.671900px;}
.y7b{bottom:550.017300px;}
.yc2{bottom:552.866100px;}
.y9b{bottom:558.437850px;}
.ye1{bottom:559.584000px;}
.y44{bottom:570.186900px;}
.y7a{bottom:570.769050px;}
.yc1{bottom:573.246600px;}
.y9a{bottom:578.689350px;}
.yc{bottom:586.407300px;}
.ye0{bottom:588.359850px;}
.y79{bottom:591.508050px;}
.yc0{bottom:593.627100px;}
.y43{bottom:595.701900px;}
.y99{bottom:598.940850px;}
.yb{bottom:606.687300px;}
.y78{bottom:612.259800px;}
.ydf{bottom:615.386850px;}
.y98{bottom:619.192350px;}
.y42{bottom:621.216900px;}
.ybf{bottom:622.512600px;}
.y77{bottom:632.928600px;}
.y97{bottom:639.443850px;}
.ya{bottom:640.438500px;}
.ybe{bottom:642.893100px;}
.y76{bottom:653.680350px;}
.y96{bottom:659.695350px;}
.ybd{bottom:663.273600px;}
.y29{bottom:663.912300px;}
.y9{bottom:671.974500px;}
.y75{bottom:674.432100px;}
.y95{bottom:679.946850px;}
.y28{bottom:684.457050px;}
.y41{bottom:685.006350px;}
.yff{bottom:690.942750px;}
.ybc{bottom:692.159100px;}
.y61{bottom:692.741550px;}
.y74{bottom:695.183850px;}
.y94{bottom:700.198350px;}
.y8{bottom:703.510500px;}
.yde{bottom:704.256600px;}
.y27{bottom:705.001800px;}
.y40{bottom:706.775850px;}
.yfe{bottom:711.192750px;}
.ybb{bottom:712.539600px;}
.y60{bottom:713.734800px;}
.y73{bottom:715.935600px;}
.y93{bottom:720.449850px;}
.ydd{bottom:724.526850px;}
.y3f{bottom:728.545350px;}
.yb0{bottom:730.190400px;}
.yfd{bottom:731.442750px;}
.y5f{bottom:734.755350px;}
.y7{bottom:735.046500px;}
.y72{bottom:736.687350px;}
.y92{bottom:740.698350px;}
.yba{bottom:741.425100px;}
.ydc{bottom:744.797100px;}
.y3e{bottom:750.314850px;}
.yaf{bottom:750.441900px;}
.yfc{bottom:751.692750px;}
.y5e{bottom:755.748600px;}
.y71{bottom:757.439100px;}
.y91{bottom:760.949850px;}
.yb9{bottom:761.805600px;}
.y6{bottom:766.582500px;}
.y26{bottom:766.645200px;}
.yae{bottom:770.693400px;}
.y3d{bottom:772.084350px;}
.ydb{bottom:773.572350px;}
.y5d{bottom:776.741850px;}
.y70{bottom:778.190850px;}
.y90{bottom:781.196850px;}
.yfb{bottom:784.692750px;}
.y25{bottom:787.945200px;}
.yb8{bottom:790.691100px;}
.yad{bottom:790.944900px;}
.yda{bottom:793.842600px;}
.y3c{bottom:793.853850px;}
.y5c{bottom:797.735100px;}
.y6f{bottom:798.942600px;}
.y8f{bottom:801.448350px;}
.y24{bottom:809.245200px;}
.yac{bottom:811.196400px;}
.yd9{bottom:814.112850px;}
.y3b{bottom:815.623350px;}
.y5b{bottom:818.728350px;}
.y6e{bottom:819.694350px;}
.y8e{bottom:821.699850px;}
.y5{bottom:823.604700px;}
.yfa{bottom:826.197750px;}
.y23{bottom:830.545200px;}
.y3a{bottom:837.392850px;}
.y5a{bottom:839.721600px;}
.y6d{bottom:840.446100px;}
.yb7{bottom:841.584600px;}
.y8d{bottom:841.946850px;}
.yd8{bottom:842.888100px;}
.yf9{bottom:845.697750px;}
.y22{bottom:851.847750px;}
.yab{bottom:852.713700px;}
.y4{bottom:853.139700px;}
.y39{bottom:859.162350px;}
.y59{bottom:860.714850px;}
.y6c{bottom:861.197850px;}
.yb6{bottom:861.956850px;}
.y8c{bottom:862.198350px;}
.yd7{bottom:863.158350px;}
.yf8{bottom:865.197750px;}
.y21{bottom:871.647750px;}
.yaa{bottom:876.709950px;}
.y38{bottom:880.931850px;}
.y58{bottom:881.708100px;}
.y6b{bottom:881.949600px;}
.yb5{bottom:882.329100px;}
.y8b{bottom:882.449850px;}
.y3{bottom:882.674700px;}
.yd6{bottom:883.428600px;}
.yf7{bottom:884.697750px;}
.ya9{bottom:900.706200px;}
.y37{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:904.197750px;}
.y1f{bottom:948.189000px;}
.y36{bottom:966.189000px;}
.h8{height:33.870539px;}
.ha{height:40.757812px;}
.h9{height:45.852539px;}
.hd{height:46.992188px;}
.h4{height:50.947266px;}
.h6{height:51.884766px;}
.h3{height:53.494629px;}
.h13{height:54.479004px;}
.hc{height:56.390625px;}
.hb{height:58.589355px;}
.h11{height:58.601355px;}
.h10{height:58.607355px;}
.h12{height:58.631355px;}
.hf{height:58.640355px;}
.h2{height:63.684082px;}
.he{height:68.778809px;}
.h7{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:82.214250px;}
.xd{left:83.793300px;}
.x1{left:85.039350px;}
.xc{left:104.353800px;}
.x8{left:105.891000px;}
.xb{left:212.663850px;}
.x5{left:230.857800px;}
.x2{left:233.345250px;}
.x7{left:332.091000px;}
.x6{left:419.361000px;}
.x3{left:424.990950px;}
.x4{left:429.760950px;}
.xa{left:637.795350px;}
@media print{
.v2{vertical-align:-26.634667pt;}
.v4{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.061333pt;}
.v3{vertical-align:19.540267pt;}
.v1{vertical-align:26.802133pt;}
.ls7{letter-spacing:-1.728000pt;}
.lsf{letter-spacing:-0.760000pt;}
.ls16{letter-spacing:-0.557333pt;}
.ls4{letter-spacing:-0.504000pt;}
.ls6{letter-spacing:-0.213333pt;}
.lse{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000267pt;}
.ls0{letter-spacing:0.249067pt;}
.ls13{letter-spacing:1.008000pt;}
.lsb{letter-spacing:2.133333pt;}
.ls1{letter-spacing:2.337067pt;}
.ls10{letter-spacing:2.933333pt;}
.lsd{letter-spacing:3.200000pt;}
.ls2{letter-spacing:3.733333pt;}
.ls11{letter-spacing:3.800000pt;}
.ls15{letter-spacing:4.133333pt;}
.lsa{letter-spacing:4.266667pt;}
.ls8{letter-spacing:5.226667pt;}
.ls5{letter-spacing:5.333333pt;}
.ls19{letter-spacing:5.600000pt;}
.ls1b{letter-spacing:5.669333pt;}
.ls1a{letter-spacing:5.712000pt;}
.lsc{letter-spacing:5.933333pt;}
.ls1d{letter-spacing:6.400000pt;}
.ls14{letter-spacing:7.253472pt;}
.ls12{letter-spacing:7.254005pt;}
.ls18{letter-spacing:7.266667pt;}
.ls1c{letter-spacing:8.784000pt;}
.ls17{letter-spacing:26.376000pt;}
.ws0{word-spacing:-26.976000pt;}
.ws14{word-spacing:-26.000000pt;}
.ws19{word-spacing:-25.133333pt;}
.ws8{word-spacing:-24.666667pt;}
.ws12{word-spacing:-22.866667pt;}
.ws10{word-spacing:-22.533333pt;}
.wse{word-spacing:-21.666667pt;}
.ws11{word-spacing:-21.240000pt;}
.ws17{word-spacing:-20.320000pt;}
.ws1{word-spacing:-20.213333pt;}
.wsf{word-spacing:-17.234667pt;}
.ws18{word-spacing:-14.986667pt;}
.ws15{word-spacing:-13.832000pt;}
.ws1a{word-spacing:-13.173333pt;}
.ws9{word-spacing:-10.047811pt;}
.ws16{word-spacing:-5.600000pt;}
.ws4{word-spacing:-5.333333pt;}
.ws7{word-spacing:-3.733333pt;}
.wsb{word-spacing:-3.200000pt;}
.wsa{word-spacing:-2.133333pt;}
.ws2{word-spacing:0.000000pt;}
.wsc{word-spacing:0.160000pt;}
.ws5{word-spacing:0.213333pt;}
.ws3{word-spacing:0.504000pt;}
.ws13{word-spacing:0.557333pt;}
.wsd{word-spacing:0.760000pt;}
.ws6{word-spacing:1.728000pt;}
._b{margin-left:-12.701333pt;}
._29{margin-left:-9.733600pt;}
._2a{margin-left:-8.780533pt;}
._33{margin-left:-7.828800pt;}
._31{margin-left:-6.728267pt;}
._c{margin-left:-5.659733pt;}
._9{margin-left:-4.481600pt;}
._8{margin-left:-2.744000pt;}
._5{margin-left:-1.482667pt;}
._3{width:1.058667pt;}
._1{width:2.133333pt;}
._4{width:3.041067pt;}
._a{width:4.211733pt;}
._6{width:5.280000pt;}
._7{width:6.496000pt;}
._20{width:7.551733pt;}
._12{width:9.364267pt;}
._11{width:10.429333pt;}
._13{width:12.197867pt;}
._16{width:13.233067pt;}
._10{width:14.774821pt;}
._1c{width:15.710133pt;}
._35{width:17.196448pt;}
._21{width:18.359200pt;}
._2b{width:19.867733pt;}
._1f{width:21.355200pt;}
._25{width:22.473600pt;}
._17{width:23.374133pt;}
._26{width:24.625920pt;}
._2c{width:26.827200pt;}
._2d{width:28.299200pt;}
._36{width:29.530133pt;}
._1d{width:32.958933pt;}
._28{width:34.207200pt;}
._1b{width:35.561067pt;}
._1a{width:36.826933pt;}
._e{width:38.128533pt;}
._19{width:39.281067pt;}
._1e{width:41.083200pt;}
._32{width:44.698400pt;}
._34{width:49.182933pt;}
._2f{width:50.722133pt;}
._2e{width:51.670933pt;}
._f{width:54.341333pt;}
._d{width:55.514667pt;}
._15{width:231.653333pt;}
._30{width:437.739733pt;}
._37{width:439.493333pt;}
._14{width:445.680000pt;}
._27{width:447.146667pt;}
._22{width:448.632000pt;}
._0{width:514.133333pt;}
._18{width:883.294400pt;}
._23{width:885.627733pt;}
._24{width:889.227733pt;}
._2{width:890.987733pt;}
.fs8{font-size:27.984000pt;}
.fsc{font-size:35.757333pt;}
.fs7{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs6{font-size:43.530667pt;}
.fs9{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:55.968000pt;}
.fs2{font-size:56.000000pt;}
.fsb{font-size:61.333333pt;}
.fsd{font-size:64.000000pt;}
.fs1{font-size:66.666667pt;}
.fsf{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yd5{bottom:94.312533pt;}
.yf6{bottom:94.394667pt;}
.y1e{bottom:94.482933pt;}
.yb4{bottom:95.730133pt;}
.y56{bottom:97.150933pt;}
.y35{bottom:97.151067pt;}
.y1d{bottom:109.818933pt;}
.yf5{bottom:111.754667pt;}
.yd4{bottom:112.428533pt;}
.yb3{bottom:113.730133pt;}
.y57{bottom:115.534533pt;}
.ya8{bottom:116.263733pt;}
.y34{bottom:116.264000pt;}
.y6a{bottom:120.969333pt;}
.y1c{bottom:127.817600pt;}
.yf4{bottom:129.114667pt;}
.yd3{bottom:130.544533pt;}
.ya7{bottom:135.376667pt;}
.y8a{bottom:135.377067pt;}
.y1b{bottom:144.262400pt;}
.yf3{bottom:146.474667pt;}
.ya6{bottom:154.489467pt;}
.y33{bottom:155.402400pt;}
.y55{bottom:155.631867pt;}
.yd2{bottom:156.220533pt;}
.y1a{bottom:159.598400pt;}
.yf2{bottom:163.834667pt;}
.ya5{bottom:173.602400pt;}
.y32{bottom:173.664400pt;}
.y69{bottom:174.067200pt;}
.yd1{bottom:174.336533pt;}
.y89{bottom:174.464667pt;}
.y54{bottom:174.982533pt;}
.y19{bottom:177.597067pt;}
.yf1{bottom:181.194667pt;}
.y31{bottom:191.926400pt;}
.yd0{bottom:192.452533pt;}
.ya4{bottom:192.715200pt;}
.y68{bottom:192.727867pt;}
.y88{bottom:192.910667pt;}
.y53{bottom:194.333200pt;}
.yf0{bottom:198.554667pt;}
.y30{bottom:210.203067pt;}
.y87{bottom:211.356667pt;}
.y67{bottom:211.388533pt;}
.y52{bottom:213.683867pt;}
.yef{bottom:215.914667pt;}
.y18{bottom:216.708933pt;}
.ycf{bottom:218.128533pt;}
.y2f{bottom:228.465067pt;}
.y86{bottom:229.802667pt;}
.y66{bottom:230.049200pt;}
.y51{bottom:233.034533pt;}
.yee{bottom:233.274667pt;}
.y17{bottom:235.402267pt;}
.yce{bottom:236.244533pt;}
.y2e{bottom:246.727067pt;}
.y85{bottom:248.248667pt;}
.y65{bottom:248.716000pt;}
.yed{bottom:250.634667pt;}
.y50{bottom:252.385200pt;}
.y16{bottom:254.095600pt;}
.ycd{bottom:254.360533pt;}
.y2d{bottom:264.989067pt;}
.y84{bottom:266.694667pt;}
.y64{bottom:267.376667pt;}
.yec{bottom:267.994667pt;}
.y4f{bottom:271.735867pt;}
.y15{bottom:272.788933pt;}
.ycc{bottom:280.036533pt;}
.y2c{bottom:283.251067pt;}
.y83{bottom:285.140667pt;}
.yeb{bottom:285.354667pt;}
.y63{bottom:286.037333pt;}
.y4e{bottom:291.086533pt;}
.y14{bottom:291.460000pt;}
.ycb{bottom:298.152533pt;}
.yea{bottom:302.714667pt;}
.y82{bottom:303.586667pt;}
.y13{bottom:308.820000pt;}
.y4d{bottom:310.437200pt;}
.y2b{bottom:319.782533pt;}
.ye9{bottom:320.074667pt;}
.y62{bottom:323.364800pt;}
.yca{bottom:323.828533pt;}
.y12{bottom:326.180000pt;}
.y4c{bottom:329.787867pt;}
.ye8{bottom:337.434667pt;}
.y81{bottom:340.924667pt;}
.yc9{bottom:341.944533pt;}
.y2a{bottom:348.714800pt;}
.y4b{bottom:349.138533pt;}
.ya3{bottom:352.391867pt;}
.yb2{bottom:354.396800pt;}
.ye7{bottom:354.794667pt;}
.y11{bottom:354.873333pt;}
.yc8{bottom:367.620533pt;}
.y4a{bottom:368.489200pt;}
.ya2{bottom:370.393200pt;}
.ye6{bottom:372.154667pt;}
.yb1{bottom:372.396800pt;}
.yc7{bottom:385.736533pt;}
.y49{bottom:387.839867pt;}
.ya1{bottom:388.394533pt;}
.ye5{bottom:389.514667pt;}
.y80{bottom:396.696933pt;}
.y10{bottom:398.686667pt;}
.yc6{bottom:403.852533pt;}
.ya0{bottom:406.395867pt;}
.ye4{bottom:406.874667pt;}
.y48{bottom:407.190533pt;}
.y7f{bottom:415.142933pt;}
.yf{bottom:416.713333pt;}
.yc5{bottom:421.968533pt;}
.y9f{bottom:424.397200pt;}
.y47{bottom:426.541200pt;}
.y7e{bottom:433.588933pt;}
.ye3{bottom:435.568000pt;}
.y9e{bottom:442.398533pt;}
.y46{bottom:445.891867pt;}
.yc4{bottom:447.644533pt;}
.y7d{bottom:452.012267pt;}
.ye{bottom:454.312933pt;}
.y9d{bottom:460.399867pt;}
.yc3{bottom:465.760533pt;}
.y7c{bottom:470.458267pt;}
.yd{bottom:478.336933pt;}
.y9c{bottom:478.387867pt;}
.ye2{bottom:479.381333pt;}
.y45{bottom:484.152800pt;}
.y7b{bottom:488.904267pt;}
.yc2{bottom:491.436533pt;}
.y9b{bottom:496.389200pt;}
.ye1{bottom:497.408000pt;}
.y44{bottom:506.832800pt;}
.y7a{bottom:507.350267pt;}
.yc1{bottom:509.552533pt;}
.y9a{bottom:514.390533pt;}
.yc{bottom:521.250933pt;}
.ye0{bottom:522.986533pt;}
.y79{bottom:525.784933pt;}
.yc0{bottom:527.668533pt;}
.y43{bottom:529.512800pt;}
.y99{bottom:532.391867pt;}
.yb{bottom:539.277600pt;}
.y78{bottom:544.230933pt;}
.ydf{bottom:547.010533pt;}
.y98{bottom:550.393200pt;}
.y42{bottom:552.192800pt;}
.ybf{bottom:553.344533pt;}
.y77{bottom:562.603200pt;}
.y97{bottom:568.394533pt;}
.ya{bottom:569.278667pt;}
.ybe{bottom:571.460533pt;}
.y76{bottom:581.049200pt;}
.y96{bottom:586.395867pt;}
.ybd{bottom:589.576533pt;}
.y29{bottom:590.144267pt;}
.y9{bottom:597.310667pt;}
.y75{bottom:599.495200pt;}
.y95{bottom:604.397200pt;}
.y28{bottom:608.406267pt;}
.y41{bottom:608.894533pt;}
.yff{bottom:614.171333pt;}
.ybc{bottom:615.252533pt;}
.y61{bottom:615.770267pt;}
.y74{bottom:617.941200pt;}
.y94{bottom:622.398533pt;}
.y8{bottom:625.342667pt;}
.yde{bottom:626.005867pt;}
.y27{bottom:626.668267pt;}
.y40{bottom:628.245200pt;}
.yfe{bottom:632.171333pt;}
.ybb{bottom:633.368533pt;}
.y60{bottom:634.430933pt;}
.y73{bottom:636.387200pt;}
.y93{bottom:640.399867pt;}
.ydd{bottom:644.023867pt;}
.y3f{bottom:647.595867pt;}
.yb0{bottom:649.058133pt;}
.yfd{bottom:650.171333pt;}
.y5f{bottom:653.115867pt;}
.y7{bottom:653.374667pt;}
.y72{bottom:654.833200pt;}
.y92{bottom:658.398533pt;}
.yba{bottom:659.044533pt;}
.ydc{bottom:662.041867pt;}
.y3e{bottom:666.946533pt;}
.yaf{bottom:667.059467pt;}
.yfc{bottom:668.171333pt;}
.y5e{bottom:671.776533pt;}
.y71{bottom:673.279200pt;}
.y91{bottom:676.399867pt;}
.yb9{bottom:677.160533pt;}
.y6{bottom:681.406667pt;}
.y26{bottom:681.462400pt;}
.yae{bottom:685.060800pt;}
.y3d{bottom:686.297200pt;}
.ydb{bottom:687.619867pt;}
.y5d{bottom:690.437200pt;}
.y70{bottom:691.725200pt;}
.y90{bottom:694.397200pt;}
.yfb{bottom:697.504667pt;}
.y25{bottom:700.395733pt;}
.yb8{bottom:702.836533pt;}
.yad{bottom:703.062133pt;}
.yda{bottom:705.637867pt;}
.y3c{bottom:705.647867pt;}
.y5c{bottom:709.097867pt;}
.y6f{bottom:710.171200pt;}
.y8f{bottom:712.398533pt;}
.y24{bottom:719.329067pt;}
.yac{bottom:721.063467pt;}
.yd9{bottom:723.655867pt;}
.y3b{bottom:724.998533pt;}
.y5b{bottom:727.758533pt;}
.y6e{bottom:728.617200pt;}
.y8e{bottom:730.399867pt;}
.y5{bottom:732.093067pt;}
.yfa{bottom:734.398000pt;}
.y23{bottom:738.262400pt;}
.y3a{bottom:744.349200pt;}
.y5a{bottom:746.419200pt;}
.y6d{bottom:747.063200pt;}
.yb7{bottom:748.075200pt;}
.y8d{bottom:748.397200pt;}
.yd8{bottom:749.233867pt;}
.yf9{bottom:751.731333pt;}
.y22{bottom:757.198000pt;}
.yab{bottom:757.967733pt;}
.y4{bottom:758.346400pt;}
.y39{bottom:763.699867pt;}
.y59{bottom:765.079867pt;}
.y6c{bottom:765.509200pt;}
.yb6{bottom:766.183867pt;}
.y8c{bottom:766.398533pt;}
.yd7{bottom:767.251867pt;}
.yf8{bottom:769.064667pt;}
.y21{bottom:774.798000pt;}
.yaa{bottom:779.297733pt;}
.y38{bottom:783.050533pt;}
.y58{bottom:783.740533pt;}
.y6b{bottom:783.955200pt;}
.yb5{bottom:784.292533pt;}
.y8b{bottom:784.399867pt;}
.y3{bottom:784.599733pt;}
.yd6{bottom:785.269867pt;}
.yf7{bottom:786.398000pt;}
.ya9{bottom:800.627733pt;}
.y37{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:803.731333pt;}
.y1f{bottom:842.834667pt;}
.y36{bottom:858.834667pt;}
.h8{height:30.107146pt;}
.ha{height:36.229167pt;}
.h9{height:40.757812pt;}
.hd{height:41.770833pt;}
.h4{height:45.286458pt;}
.h6{height:46.119792pt;}
.h3{height:47.550781pt;}
.h13{height:48.425781pt;}
.hc{height:50.125000pt;}
.hb{height:52.079427pt;}
.h11{height:52.090094pt;}
.h10{height:52.095427pt;}
.h12{height:52.116760pt;}
.hf{height:52.124760pt;}
.h2{height:56.608073pt;}
.he{height:61.136719pt;}
.h7{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:73.079333pt;}
.xd{left:74.482933pt;}
.x1{left:75.590533pt;}
.xc{left:92.758933pt;}
.x8{left:94.125333pt;}
.xb{left:189.034533pt;}
.x5{left:205.206933pt;}
.x2{left:207.418000pt;}
.x7{left:295.192000pt;}
.x6{left:372.765333pt;}
.x3{left:377.769733pt;}
.x4{left:382.009733pt;}
.xa{left:566.929200pt;}
}




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