
    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_d46e04ba979b417764aada4b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_c075761186bc10201c265f0f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.801270;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_12b6f594fdf28093eb207101.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_669d1d7f62f77bcfe3a02b9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935547;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_73d4a81865bacebad9b4be3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925293;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_c075761186bc10201c265f0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.801270;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_c1addaa2a3d623be2e2c6def.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a5e0b7e8664a3306cb649a75.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1e398b7a95d1b4917839d5e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_4eaa6c8feb8b017eb398c2b5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;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:ffb;src:url('chunks/assets/font_54ca52442c59164a396932fa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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:8.261400px;}
.ls1{letter-spacing:-0.480000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1050.116400px;}
.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:-479.520000px;}
.ws2{word-spacing:-16.500000px;}
.ws5{word-spacing:-13.500000px;}
.ws11{word-spacing:-6.336000px;}
.ws29{word-spacing:-5.346000px;}
.ws2f{word-spacing:-4.488000px;}
.ws6{word-spacing:-3.630000px;}
.ws7{word-spacing:-3.432000px;}
.ws23{word-spacing:-3.366000px;}
.ws3{word-spacing:-3.300000px;}
.ws16{word-spacing:-3.234000px;}
.ws25{word-spacing:-2.970000px;}
.ws17{word-spacing:-2.376000px;}
.wse{word-spacing:-2.178000px;}
.ws10{word-spacing:-1.914000px;}
.ws8{word-spacing:-1.848000px;}
.ws28{word-spacing:-1.584000px;}
.ws22{word-spacing:-1.452000px;}
.ws2c{word-spacing:-1.386000px;}
.ws1d{word-spacing:-1.188000px;}
.ws31{word-spacing:-1.056000px;}
.ws2b{word-spacing:-0.858000px;}
.ws4{word-spacing:-0.462000px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:0.132000px;}
.wsf{word-spacing:0.198000px;}
.ws1c{word-spacing:1.056000px;}
.ws21{word-spacing:1.386000px;}
.ws33{word-spacing:1.452000px;}
.wsb{word-spacing:1.584000px;}
.ws1b{word-spacing:1.782000px;}
.ws26{word-spacing:2.178000px;}
.wsd{word-spacing:2.574000px;}
.ws14{word-spacing:2.838000px;}
.ws15{word-spacing:3.168000px;}
.ws19{word-spacing:3.366000px;}
.ws12{word-spacing:3.564000px;}
.ws2e{word-spacing:3.630000px;}
.ws27{word-spacing:3.762000px;}
.ws20{word-spacing:4.488000px;}
.ws1e{word-spacing:5.478000px;}
.ws24{word-spacing:6.468000px;}
.ws2a{word-spacing:6.732000px;}
.ws2d{word-spacing:7.194000px;}
.ws18{word-spacing:7.392000px;}
.wsa{word-spacing:7.590000px;}
.ws1f{word-spacing:8.316000px;}
.ws13{word-spacing:9.372000px;}
.ws32{word-spacing:9.570000px;}
.ws1a{word-spacing:14.322000px;}
.ws30{word-spacing:15.444000px;}
.wsc{word-spacing:17.688000px;}
.ws34{word-spacing:18.084000px;}
.ws35{word-spacing:68.508000px;}
.ws36{word-spacing:996.116400px;}
._1{margin-left:-9.556800px;}
._a{margin-left:-8.472000px;}
._4{margin-left:-7.306200px;}
._b{margin-left:-6.025800px;}
._5{margin-left:-4.620000px;}
._3{margin-left:-3.270000px;}
._0{margin-left:-2.238000px;}
._6{margin-left:-1.036800px;}
._c{width:1.128000px;}
._d{width:2.168400px;}
._9{width:4.831200px;}
._8{width:6.778200px;}
._f{width:10.309200px;}
._e{width:17.509800px;}
._10{width:18.711000px;}
._7{width:183.018000px;}
._2{width:1346.629200px;}
.fc2{color:rgb(48,88,159);}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.fs3{font-size:132.000000px;}
.fs4{font-size:144.000000px;}
.fs6{font-size:216.000000px;}
.fs2{font-size:480.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:106.299150px;}
.y1d{bottom:106.299450px;}
.y44{bottom:106.422150px;}
.yba{bottom:110.079000px;}
.y6e{bottom:112.655100px;}
.ycd{bottom:113.886000px;}
.yce{bottom:115.698600px;}
.ycf{bottom:116.299200px;}
.y1c{bottom:126.099450px;}
.y43{bottom:126.222150px;}
.yb9{bottom:129.879000px;}
.y95{bottom:131.695200px;}
.y6d{bottom:132.454950px;}
.y1b{bottom:145.899450px;}
.yb8{bottom:149.679000px;}
.y94{bottom:151.495050px;}
.y6c{bottom:152.255100px;}
.y1a{bottom:165.699450px;}
.y42{bottom:165.822300px;}
.yb7{bottom:169.479000px;}
.y6b{bottom:172.055100px;}
.y41{bottom:185.622300px;}
.yb6{bottom:189.279000px;}
.y93{bottom:191.095050px;}
.y6a{bottom:191.855100px;}
.yb5{bottom:209.079000px;}
.y92{bottom:210.895050px;}
.y69{bottom:211.655100px;}
.y19{bottom:225.099450px;}
.y40{bottom:225.222150px;}
.yb4{bottom:228.879000px;}
.y91{bottom:230.695200px;}
.y68{bottom:231.454950px;}
.y3f{bottom:245.022150px;}
.yb3{bottom:248.679000px;}
.y90{bottom:250.495050px;}
.y67{bottom:251.255100px;}
.y7{bottom:261.630000px;}
.yd1{bottom:263.629350px;}
.y3e{bottom:264.822300px;}
.y8f{bottom:270.295050px;}
.y3d{bottom:284.622300px;}
.yd0{bottom:285.229350px;}
.yb2{bottom:288.279000px;}
.y8e{bottom:290.095050px;}
.y66{bottom:290.855100px;}
.y3c{bottom:304.422150px;}
.y6{bottom:304.830150px;}
.y8d{bottom:309.895050px;}
.y3b{bottom:324.222150px;}
.yb1{bottom:327.879000px;}
.y8c{bottom:329.695200px;}
.y65{bottom:330.454950px;}
.y3a{bottom:344.022150px;}
.y5{bottom:344.430150px;}
.yb0{bottom:347.679000px;}
.y8b{bottom:349.495050px;}
.y64{bottom:350.255100px;}
.y39{bottom:363.822300px;}
.y8a{bottom:369.295050px;}
.y38{bottom:383.622150px;}
.y4{bottom:384.030150px;}
.yaf{bottom:387.279000px;}
.y89{bottom:389.095050px;}
.y63{bottom:389.855100px;}
.y37{bottom:403.422300px;}
.y36{bottom:423.222150px;}
.yae{bottom:428.679000px;}
.y88{bottom:428.695050px;}
.y62{bottom:431.255100px;}
.y35{bottom:443.022150px;}
.y18{bottom:445.773750px;}
.y61{bottom:451.055100px;}
.y34{bottom:462.822300px;}
.y17{bottom:465.573750px;}
.yad{bottom:468.279000px;}
.y87{bottom:468.295050px;}
.y60{bottom:470.855100px;}
.yac{bottom:488.079000px;}
.y86{bottom:488.095050px;}
.y5f{bottom:490.655100px;}
.y33{bottom:502.422300px;}
.y16{bottom:505.173750px;}
.yab{bottom:527.679000px;}
.y85{bottom:527.695050px;}
.y5e{bottom:530.255100px;}
.ycc{bottom:531.295050px;}
.y32{bottom:542.022150px;}
.yaa{bottom:547.479000px;}
.y5d{bottom:550.055100px;}
.ycb{bottom:551.095050px;}
.y31{bottom:561.822300px;}
.ya9{bottom:567.279000px;}
.y84{bottom:569.095050px;}
.y5c{bottom:569.855100px;}
.yca{bottom:570.895050px;}
.ya8{bottom:587.079000px;}
.y83{bottom:588.895050px;}
.y30{bottom:601.422300px;}
.ya7{bottom:606.879000px;}
.y5b{bottom:609.455100px;}
.yc9{bottom:610.495050px;}
.y15{bottom:613.481250px;}
.y82{bottom:628.495050px;}
.y5a{bottom:629.255100px;}
.yc8{bottom:630.295050px;}
.y14{bottom:631.481250px;}
.y2f{bottom:642.822300px;}
.ya6{bottom:646.479000px;}
.y81{bottom:648.295050px;}
.y59{bottom:649.055100px;}
.y13{bottom:667.481250px;}
.y58{bottom:668.855100px;}
.yc7{bottom:669.895050px;}
.y2e{bottom:682.422300px;}
.y12{bottom:685.481250px;}
.ya5{bottom:686.079000px;}
.y80{bottom:687.895050px;}
.y57{bottom:688.655100px;}
.yc6{bottom:689.695050px;}
.y2d{bottom:702.222150px;}
.y11{bottom:703.481250px;}
.ya4{bottom:705.879000px;}
.y7f{bottom:707.695050px;}
.y56{bottom:708.455100px;}
.y10{bottom:721.481250px;}
.y2c{bottom:722.022150px;}
.y7e{bottom:727.495050px;}
.y55{bottom:728.255100px;}
.yc5{bottom:729.295050px;}
.y2b{bottom:741.822300px;}
.ya3{bottom:745.479000px;}
.y7d{bottom:747.295050px;}
.y54{bottom:748.055100px;}
.yc4{bottom:749.095050px;}
.y2a{bottom:761.622150px;}
.y7c{bottom:767.095050px;}
.y53{bottom:767.855100px;}
.y29{bottom:781.422150px;}
.ya2{bottom:786.879000px;}
.y7b{bottom:786.895050px;}
.y52{bottom:787.655100px;}
.yc3{bottom:788.695200px;}
.y28{bottom:801.222150px;}
.y7a{bottom:806.695200px;}
.y51{bottom:807.454950px;}
.yc2{bottom:808.495050px;}
.y27{bottom:821.022150px;}
.ya1{bottom:826.479000px;}
.y79{bottom:826.495050px;}
.ya0{bottom:846.279000px;}
.y78{bottom:846.295050px;}
.y50{bottom:847.055100px;}
.yc1{bottom:848.095050px;}
.yf{bottom:854.655600px;}
.y26{bottom:860.622300px;}
.y77{bottom:866.095050px;}
.y25{bottom:880.422150px;}
.y9f{bottom:885.879000px;}
.y4f{bottom:886.655100px;}
.yc0{bottom:887.695200px;}
.ye{bottom:897.855600px;}
.y24{bottom:900.222150px;}
.y9e{bottom:905.679000px;}
.y76{bottom:905.695200px;}
.y4e{bottom:906.454950px;}
.ybf{bottom:907.495050px;}
.y9d{bottom:925.479000px;}
.yd{bottom:937.455600px;}
.y23{bottom:939.822300px;}
.y9c{bottom:945.278850px;}
.y75{bottom:945.295050px;}
.y4d{bottom:946.054950px;}
.ybe{bottom:947.095050px;}
.y9b{bottom:965.078850px;}
.y74{bottom:965.095050px;}
.y4c{bottom:965.854950px;}
.yc{bottom:977.055600px;}
.y22{bottom:979.422150px;}
.y4b{bottom:985.654950px;}
.ybd{bottom:986.695050px;}
.y21{bottom:999.222150px;}
.y9a{bottom:1004.678850px;}
.y73{bottom:1004.695050px;}
.y4a{bottom:1005.454950px;}
.y3{bottom:1006.728750px;}
.ybc{bottom:1026.295050px;}
.y20{bottom:1038.822300px;}
.y99{bottom:1044.278850px;}
.y49{bottom:1045.054950px;}
.y72{bottom:1046.095050px;}
.y98{bottom:1064.078850px;}
.y48{bottom:1064.854950px;}
.y1f{bottom:1083.822300px;}
.y47{bottom:1084.654950px;}
.y71{bottom:1085.695050px;}
.y97{bottom:1103.678850px;}
.y46{bottom:1104.454950px;}
.y70{bottom:1105.494900px;}
.y1e{bottom:1109.022150px;}
.yb{bottom:1113.552000px;}
.ybb{bottom:1125.295050px;}
.y45{bottom:1144.054950px;}
.y96{bottom:1145.078850px;}
.y6f{bottom:1145.095050px;}
.y1{bottom:1186.574550px;}
.y9{bottom:1186.574700px;}
.y2{bottom:1188.640050px;}
.ya{bottom:1250.354250px;}
.h3{height:40.546875px;}
.hc{height:47.381836px;}
.h9{height:53.789062px;}
.ha{height:57.911133px;}
.h2{height:63.175781px;}
.hb{height:73.705078px;}
.h7{height:78.626953px;}
.h5{height:96.099609px;}
.h6{height:126.720000px;}
.h8{height:190.080000px;}
.h4{height:422.400000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.299150px;}
.x1d{left:127.559100px;}
.x21{left:144.410850px;}
.x6{left:161.289600px;}
.xe{left:170.353950px;}
.x22{left:191.401650px;}
.x10{left:192.804150px;}
.x5{left:202.257600px;}
.x1e{left:204.820650px;}
.x13{left:212.645100px;}
.x20{left:215.638650px;}
.x1f{left:225.157200px;}
.x9{left:247.773300px;}
.x12{left:272.034600px;}
.xa{left:278.498400px;}
.xf{left:282.085650px;}
.x8{left:293.151600px;}
.x4{left:294.884850px;}
.xd{left:315.342900px;}
.x14{left:317.381400px;}
.x1a{left:318.953700px;}
.x16{left:320.469900px;}
.x17{left:341.708700px;}
.xb{left:348.668100px;}
.x19{left:349.702200px;}
.x18{left:357.704700px;}
.x15{left:359.287950px;}
.xc{left:364.008600px;}
.x7{left:369.971400px;}
.x2{left:371.450250px;}
.x11{left:386.531550px;}
.x1b{left:395.143950px;}
.x1c{left:401.089800px;}
.x1{left:777.614100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.343467pt;}
.ls1{letter-spacing:-0.426667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:933.436800pt;}
.ws0{word-spacing:-426.240000pt;}
.ws2{word-spacing:-14.666667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws11{word-spacing:-5.632000pt;}
.ws29{word-spacing:-4.752000pt;}
.ws2f{word-spacing:-3.989333pt;}
.ws6{word-spacing:-3.226667pt;}
.ws7{word-spacing:-3.050667pt;}
.ws23{word-spacing:-2.992000pt;}
.ws3{word-spacing:-2.933333pt;}
.ws16{word-spacing:-2.874667pt;}
.ws25{word-spacing:-2.640000pt;}
.ws17{word-spacing:-2.112000pt;}
.wse{word-spacing:-1.936000pt;}
.ws10{word-spacing:-1.701333pt;}
.ws8{word-spacing:-1.642667pt;}
.ws28{word-spacing:-1.408000pt;}
.ws22{word-spacing:-1.290667pt;}
.ws2c{word-spacing:-1.232000pt;}
.ws1d{word-spacing:-1.056000pt;}
.ws31{word-spacing:-0.938667pt;}
.ws2b{word-spacing:-0.762667pt;}
.ws4{word-spacing:-0.410667pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:0.117333pt;}
.wsf{word-spacing:0.176000pt;}
.ws1c{word-spacing:0.938667pt;}
.ws21{word-spacing:1.232000pt;}
.ws33{word-spacing:1.290667pt;}
.wsb{word-spacing:1.408000pt;}
.ws1b{word-spacing:1.584000pt;}
.ws26{word-spacing:1.936000pt;}
.wsd{word-spacing:2.288000pt;}
.ws14{word-spacing:2.522667pt;}
.ws15{word-spacing:2.816000pt;}
.ws19{word-spacing:2.992000pt;}
.ws12{word-spacing:3.168000pt;}
.ws2e{word-spacing:3.226667pt;}
.ws27{word-spacing:3.344000pt;}
.ws20{word-spacing:3.989333pt;}
.ws1e{word-spacing:4.869333pt;}
.ws24{word-spacing:5.749333pt;}
.ws2a{word-spacing:5.984000pt;}
.ws2d{word-spacing:6.394667pt;}
.ws18{word-spacing:6.570667pt;}
.wsa{word-spacing:6.746667pt;}
.ws1f{word-spacing:7.392000pt;}
.ws13{word-spacing:8.330667pt;}
.ws32{word-spacing:8.506667pt;}
.ws1a{word-spacing:12.730667pt;}
.ws30{word-spacing:13.728000pt;}
.wsc{word-spacing:15.722667pt;}
.ws34{word-spacing:16.074667pt;}
.ws35{word-spacing:60.896000pt;}
.ws36{word-spacing:885.436800pt;}
._1{margin-left:-8.494933pt;}
._a{margin-left:-7.530667pt;}
._4{margin-left:-6.494400pt;}
._b{margin-left:-5.356267pt;}
._5{margin-left:-4.106667pt;}
._3{margin-left:-2.906667pt;}
._0{margin-left:-1.989333pt;}
._6{margin-left:-0.921600pt;}
._c{width:1.002667pt;}
._d{width:1.927467pt;}
._9{width:4.294400pt;}
._8{width:6.025067pt;}
._f{width:9.163733pt;}
._e{width:15.564267pt;}
._10{width:16.632000pt;}
._7{width:162.682667pt;}
._2{width:1197.003733pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.fs3{font-size:117.333333pt;}
.fs4{font-size:128.000000pt;}
.fs6{font-size:192.000000pt;}
.fs2{font-size:426.666667pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:94.488133pt;}
.y1d{bottom:94.488400pt;}
.y44{bottom:94.597467pt;}
.yba{bottom:97.848000pt;}
.y6e{bottom:100.137867pt;}
.ycd{bottom:101.232000pt;}
.yce{bottom:102.843200pt;}
.ycf{bottom:103.377067pt;}
.y1c{bottom:112.088400pt;}
.y43{bottom:112.197467pt;}
.yb9{bottom:115.448000pt;}
.y95{bottom:117.062400pt;}
.y6d{bottom:117.737733pt;}
.y1b{bottom:129.688400pt;}
.yb8{bottom:133.048000pt;}
.y94{bottom:134.662267pt;}
.y6c{bottom:135.337867pt;}
.y1a{bottom:147.288400pt;}
.y42{bottom:147.397600pt;}
.yb7{bottom:150.648000pt;}
.y6b{bottom:152.937867pt;}
.y41{bottom:164.997600pt;}
.yb6{bottom:168.248000pt;}
.y93{bottom:169.862267pt;}
.y6a{bottom:170.537867pt;}
.yb5{bottom:185.848000pt;}
.y92{bottom:187.462267pt;}
.y69{bottom:188.137867pt;}
.y19{bottom:200.088400pt;}
.y40{bottom:200.197467pt;}
.yb4{bottom:203.448000pt;}
.y91{bottom:205.062400pt;}
.y68{bottom:205.737733pt;}
.y3f{bottom:217.797467pt;}
.yb3{bottom:221.048000pt;}
.y90{bottom:222.662267pt;}
.y67{bottom:223.337867pt;}
.y7{bottom:232.560000pt;}
.yd1{bottom:234.337200pt;}
.y3e{bottom:235.397600pt;}
.y8f{bottom:240.262267pt;}
.y3d{bottom:252.997600pt;}
.yd0{bottom:253.537200pt;}
.yb2{bottom:256.248000pt;}
.y8e{bottom:257.862267pt;}
.y66{bottom:258.537867pt;}
.y3c{bottom:270.597467pt;}
.y6{bottom:270.960133pt;}
.y8d{bottom:275.462267pt;}
.y3b{bottom:288.197467pt;}
.yb1{bottom:291.448000pt;}
.y8c{bottom:293.062400pt;}
.y65{bottom:293.737733pt;}
.y3a{bottom:305.797467pt;}
.y5{bottom:306.160133pt;}
.yb0{bottom:309.048000pt;}
.y8b{bottom:310.662267pt;}
.y64{bottom:311.337867pt;}
.y39{bottom:323.397600pt;}
.y8a{bottom:328.262267pt;}
.y38{bottom:340.997467pt;}
.y4{bottom:341.360133pt;}
.yaf{bottom:344.248000pt;}
.y89{bottom:345.862267pt;}
.y63{bottom:346.537867pt;}
.y37{bottom:358.597600pt;}
.y36{bottom:376.197467pt;}
.yae{bottom:381.048000pt;}
.y88{bottom:381.062267pt;}
.y62{bottom:383.337867pt;}
.y35{bottom:393.797467pt;}
.y18{bottom:396.243333pt;}
.y61{bottom:400.937867pt;}
.y34{bottom:411.397600pt;}
.y17{bottom:413.843333pt;}
.yad{bottom:416.248000pt;}
.y87{bottom:416.262267pt;}
.y60{bottom:418.537867pt;}
.yac{bottom:433.848000pt;}
.y86{bottom:433.862267pt;}
.y5f{bottom:436.137867pt;}
.y33{bottom:446.597600pt;}
.y16{bottom:449.043333pt;}
.yab{bottom:469.048000pt;}
.y85{bottom:469.062267pt;}
.y5e{bottom:471.337867pt;}
.ycc{bottom:472.262267pt;}
.y32{bottom:481.797467pt;}
.yaa{bottom:486.648000pt;}
.y5d{bottom:488.937867pt;}
.ycb{bottom:489.862267pt;}
.y31{bottom:499.397600pt;}
.ya9{bottom:504.248000pt;}
.y84{bottom:505.862267pt;}
.y5c{bottom:506.537867pt;}
.yca{bottom:507.462267pt;}
.ya8{bottom:521.848000pt;}
.y83{bottom:523.462267pt;}
.y30{bottom:534.597600pt;}
.ya7{bottom:539.448000pt;}
.y5b{bottom:541.737867pt;}
.yc9{bottom:542.662267pt;}
.y15{bottom:545.316667pt;}
.y82{bottom:558.662267pt;}
.y5a{bottom:559.337867pt;}
.yc8{bottom:560.262267pt;}
.y14{bottom:561.316667pt;}
.y2f{bottom:571.397600pt;}
.ya6{bottom:574.648000pt;}
.y81{bottom:576.262267pt;}
.y59{bottom:576.937867pt;}
.y13{bottom:593.316667pt;}
.y58{bottom:594.537867pt;}
.yc7{bottom:595.462267pt;}
.y2e{bottom:606.597600pt;}
.y12{bottom:609.316667pt;}
.ya5{bottom:609.848000pt;}
.y80{bottom:611.462267pt;}
.y57{bottom:612.137867pt;}
.yc6{bottom:613.062267pt;}
.y2d{bottom:624.197467pt;}
.y11{bottom:625.316667pt;}
.ya4{bottom:627.448000pt;}
.y7f{bottom:629.062267pt;}
.y56{bottom:629.737867pt;}
.y10{bottom:641.316667pt;}
.y2c{bottom:641.797467pt;}
.y7e{bottom:646.662267pt;}
.y55{bottom:647.337867pt;}
.yc5{bottom:648.262267pt;}
.y2b{bottom:659.397600pt;}
.ya3{bottom:662.648000pt;}
.y7d{bottom:664.262267pt;}
.y54{bottom:664.937867pt;}
.yc4{bottom:665.862267pt;}
.y2a{bottom:676.997467pt;}
.y7c{bottom:681.862267pt;}
.y53{bottom:682.537867pt;}
.y29{bottom:694.597467pt;}
.ya2{bottom:699.448000pt;}
.y7b{bottom:699.462267pt;}
.y52{bottom:700.137867pt;}
.yc3{bottom:701.062400pt;}
.y28{bottom:712.197467pt;}
.y7a{bottom:717.062400pt;}
.y51{bottom:717.737733pt;}
.yc2{bottom:718.662267pt;}
.y27{bottom:729.797467pt;}
.ya1{bottom:734.648000pt;}
.y79{bottom:734.662267pt;}
.ya0{bottom:752.248000pt;}
.y78{bottom:752.262267pt;}
.y50{bottom:752.937867pt;}
.yc1{bottom:753.862267pt;}
.yf{bottom:759.693867pt;}
.y26{bottom:764.997600pt;}
.y77{bottom:769.862267pt;}
.y25{bottom:782.597467pt;}
.y9f{bottom:787.448000pt;}
.y4f{bottom:788.137867pt;}
.yc0{bottom:789.062400pt;}
.ye{bottom:798.093867pt;}
.y24{bottom:800.197467pt;}
.y9e{bottom:805.048000pt;}
.y76{bottom:805.062400pt;}
.y4e{bottom:805.737733pt;}
.ybf{bottom:806.662267pt;}
.y9d{bottom:822.648000pt;}
.yd{bottom:833.293867pt;}
.y23{bottom:835.397600pt;}
.y9c{bottom:840.247867pt;}
.y75{bottom:840.262267pt;}
.y4d{bottom:840.937733pt;}
.ybe{bottom:841.862267pt;}
.y9b{bottom:857.847867pt;}
.y74{bottom:857.862267pt;}
.y4c{bottom:858.537733pt;}
.yc{bottom:868.493867pt;}
.y22{bottom:870.597467pt;}
.y4b{bottom:876.137733pt;}
.ybd{bottom:877.062267pt;}
.y21{bottom:888.197467pt;}
.y9a{bottom:893.047867pt;}
.y73{bottom:893.062267pt;}
.y4a{bottom:893.737733pt;}
.y3{bottom:894.870000pt;}
.ybc{bottom:912.262267pt;}
.y20{bottom:923.397600pt;}
.y99{bottom:928.247867pt;}
.y49{bottom:928.937733pt;}
.y72{bottom:929.862267pt;}
.y98{bottom:945.847867pt;}
.y48{bottom:946.537733pt;}
.y1f{bottom:963.397600pt;}
.y47{bottom:964.137733pt;}
.y71{bottom:965.062267pt;}
.y97{bottom:981.047867pt;}
.y46{bottom:981.737733pt;}
.y70{bottom:982.662133pt;}
.y1e{bottom:985.797467pt;}
.yb{bottom:989.824000pt;}
.ybb{bottom:1000.262267pt;}
.y45{bottom:1016.937733pt;}
.y96{bottom:1017.847867pt;}
.y6f{bottom:1017.862267pt;}
.y1{bottom:1054.732933pt;}
.y9{bottom:1054.733067pt;}
.y2{bottom:1056.568933pt;}
.ya{bottom:1111.426000pt;}
.h3{height:36.041667pt;}
.hc{height:42.117188pt;}
.h9{height:47.812500pt;}
.ha{height:51.476562pt;}
.h2{height:56.156250pt;}
.hb{height:65.515625pt;}
.h7{height:69.890625pt;}
.h5{height:85.421875pt;}
.h6{height:112.640000pt;}
.h8{height:168.960000pt;}
.h4{height:375.466667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.488133pt;}
.x1d{left:113.385867pt;}
.x21{left:128.365200pt;}
.x6{left:143.368533pt;}
.xe{left:151.425733pt;}
.x22{left:170.134800pt;}
.x10{left:171.381467pt;}
.x5{left:179.784533pt;}
.x1e{left:182.062800pt;}
.x13{left:189.017867pt;}
.x20{left:191.678800pt;}
.x1f{left:200.139733pt;}
.x9{left:220.242933pt;}
.x12{left:241.808533pt;}
.xa{left:247.554133pt;}
.xf{left:250.742800pt;}
.x8{left:260.579200pt;}
.x4{left:262.119867pt;}
.xd{left:280.304800pt;}
.x14{left:282.116800pt;}
.x1a{left:283.514400pt;}
.x16{left:284.862133pt;}
.x17{left:303.741067pt;}
.xb{left:309.927200pt;}
.x19{left:310.846400pt;}
.x18{left:317.959733pt;}
.x15{left:319.367067pt;}
.xc{left:323.563200pt;}
.x7{left:328.863467pt;}
.x2{left:330.178000pt;}
.x11{left:343.583600pt;}
.x1b{left:351.239067pt;}
.x1c{left:356.524267pt;}
.x1{left:691.212533pt;}
}




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