
    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_5b62761e1f4d1bd517c1f4b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_cddfb7a47f9f29fd1d4386be.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_0d4a347bdf99ac5956a831c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_f7b59c02bc4c064fad5fb810.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_1c1cfa54c2b6f4495e8947dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937500;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_0d91d66dbfc63f4bb8919788.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.960000px;}
.ls14{letter-spacing:-0.798000px;}
.ls28{letter-spacing:-0.786000px;}
.ls21{letter-spacing:-0.696000px;}
.ls26{letter-spacing:-0.544800px;}
.ls1f{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.533400px;}
.ls5{letter-spacing:-0.463800px;}
.lsf{letter-spacing:-0.414000px;}
.ls1d{letter-spacing:-0.326400px;}
.lse{letter-spacing:-0.240600px;}
.ls23{letter-spacing:-0.226800px;}
.ls13{letter-spacing:-0.214800px;}
.ls4{letter-spacing:-0.132600px;}
.lsa{letter-spacing:-0.115800px;}
.ls1e{letter-spacing:-0.107400px;}
.ls25{letter-spacing:-0.067200px;}
.ls30{letter-spacing:-0.064800px;}
.ls11{letter-spacing:-0.058320px;}
.ls19{letter-spacing:-0.055440px;}
.ls2c{letter-spacing:-0.041040px;}
.ls2{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.023760px;}
.ls3{letter-spacing:0.038880px;}
.ls27{letter-spacing:0.060600px;}
.ls9{letter-spacing:0.066000px;}
.ls8{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.150000px;}
.ls2f{letter-spacing:0.169200px;}
.ls29{letter-spacing:0.174000px;}
.ls22{letter-spacing:0.175200px;}
.ls24{letter-spacing:0.186600px;}
.ls7{letter-spacing:0.190200px;}
.ls10{letter-spacing:0.306000px;}
.ls17{letter-spacing:0.314400px;}
.ls18{letter-spacing:0.393600px;}
.ls2e{letter-spacing:0.433440px;}
.lsc{letter-spacing:0.617760px;}
.ls20{letter-spacing:0.654000px;}
.ls1c{letter-spacing:2.106720px;}
.ls1b{letter-spacing:5.706720px;}
.ls2b{letter-spacing:12.186720px;}
.lsd{letter-spacing:17.226720px;}
.ls15{letter-spacing:20.106720px;}
.lsb{letter-spacing:21.546720px;}
.ls16{letter-spacing:22.986720px;}
.ls1{letter-spacing:38.106720px;}
.ls2a{letter-spacing:42.426720px;}
.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:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wsc{word-spacing:-13.899360px;}
.wsb{word-spacing:-13.820160px;}
.ws16{word-spacing:-13.811760px;}
.ws11{word-spacing:-13.692360px;}
.ws19{word-spacing:-13.680960px;}
.ws17{word-spacing:-13.674960px;}
.ws9{word-spacing:-13.646160px;}
.ws15{word-spacing:-13.529520px;}
.ws6{word-spacing:-13.505760px;}
.ws14{word-spacing:-13.464720px;}
.wsd{word-spacing:-13.450320px;}
.wse{word-spacing:-13.447440px;}
.ws18{word-spacing:-13.440960px;}
.ws13{word-spacing:-13.438560px;}
.wsf{word-spacing:-13.398360px;}
.ws7{word-spacing:-13.389960px;}
.wsa{word-spacing:-13.290960px;}
.ws10{word-spacing:-13.278960px;}
.ws12{word-spacing:-13.265160px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._21{margin-left:-214.738560px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._24{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-160.046400px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._23{margin-left:-145.036560px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._22{margin-left:-109.621680px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._19{margin-left:-32.468640px;}
._26{margin-left:-5.127120px;}
._37{margin-left:-3.970800px;}
._25{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._27{width:1.340640px;}
._28{width:2.881680px;}
._2a{width:3.886320px;}
._29{width:4.944960px;}
._32{width:6.584880px;}
._31{width:7.649280px;}
._34{width:8.964000px;}
._30{width:10.133280px;}
._2b{width:11.175120px;}
._2c{width:12.463920px;}
._2d{width:14.854320px;}
._2f{width:16.254720px;}
._2e{width:17.330400px;}
._35{width:18.439920px;}
._38{width:19.494480px;}
._36{width:20.676960px;}
._33{width:23.041440px;}
._3b{width:25.625520px;}
._39{width:26.726880px;}
._3a{width:88.465440px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:59.760000px;}
.ya4{bottom:89.460000px;}
.y30{bottom:92.160000px;}
.y8f{bottom:92.520000px;}
.y9f{bottom:101.520000px;}
.y64{bottom:110.520000px;}
.y2f{bottom:113.220000px;}
.y8e{bottom:113.580000px;}
.ya5{bottom:119.160000px;}
.y9e{bottom:122.580000px;}
.y63{bottom:131.580000px;}
.y2e{bottom:134.280000px;}
.y8d{bottom:134.640000px;}
.y9d{bottom:143.640000px;}
.y62{bottom:152.670000px;}
.y2d{bottom:155.370000px;}
.y8c{bottom:155.730000px;}
.y9c{bottom:164.730000px;}
.y61{bottom:173.730000px;}
.y2c{bottom:176.430000px;}
.y8b{bottom:176.790000px;}
.y9b{bottom:185.790000px;}
.y60{bottom:194.790000px;}
.y2b{bottom:197.490000px;}
.y8a{bottom:197.850000px;}
.y9a{bottom:206.850000px;}
.y5f{bottom:215.850000px;}
.y2a{bottom:218.550000px;}
.y89{bottom:218.910000px;}
.y99{bottom:227.910000px;}
.y5e{bottom:236.910000px;}
.y29{bottom:239.610000px;}
.y88{bottom:239.970000px;}
.y98{bottom:248.970000px;}
.y5d{bottom:257.970000px;}
.y28{bottom:260.670000px;}
.y87{bottom:261.030000px;}
.y97{bottom:270.030000px;}
.y5c{bottom:279.030000px;}
.y27{bottom:281.730000px;}
.y86{bottom:282.090000px;}
.y96{bottom:291.090000px;}
.y5b{bottom:300.090000px;}
.y26{bottom:302.790000px;}
.y85{bottom:303.150000px;}
.y95{bottom:312.150000px;}
.y5a{bottom:321.150000px;}
.y25{bottom:323.850000px;}
.y84{bottom:324.210000px;}
.y94{bottom:333.210000px;}
.y59{bottom:342.210000px;}
.y24{bottom:344.910000px;}
.y83{bottom:345.270000px;}
.y93{bottom:354.270000px;}
.y58{bottom:363.270000px;}
.y23{bottom:365.970000px;}
.y82{bottom:366.330000px;}
.y92{bottom:375.330000px;}
.y57{bottom:384.330000px;}
.y22{bottom:387.030000px;}
.y81{bottom:387.390000px;}
.y91{bottom:396.390000px;}
.y56{bottom:405.435000px;}
.y21{bottom:408.135000px;}
.y80{bottom:408.315000px;}
.y90{bottom:417.315000px;}
.y55{bottom:426.315000px;}
.y20{bottom:429.195000px;}
.y7f{bottom:429.375000px;}
.ya3{bottom:438.375000px;}
.y54{bottom:447.375000px;}
.y1f{bottom:450.255000px;}
.y7e{bottom:450.435000px;}
.ya2{bottom:459.435000px;}
.y53{bottom:468.435000px;}
.y1e{bottom:471.315000px;}
.y7d{bottom:471.495000px;}
.ya1{bottom:480.495000px;}
.y52{bottom:489.495000px;}
.y1d{bottom:492.375000px;}
.y7c{bottom:492.555000px;}
.ya0{bottom:501.555000px;}
.y51{bottom:510.555000px;}
.y7b{bottom:522.615000px;}
.y50{bottom:531.615000px;}
.y1c{bottom:536.835000px;}
.y7a{bottom:543.675000px;}
.y4f{bottom:552.675000px;}
.y79{bottom:564.735000px;}
.y1b{bottom:566.715000px;}
.y4e{bottom:573.735000px;}
.y78{bottom:585.795000px;}
.y1a{bottom:587.775000px;}
.y4d{bottom:594.795000px;}
.y77{bottom:606.855000px;}
.y19{bottom:608.835000px;}
.y4c{bottom:615.855000px;}
.y76{bottom:627.915000px;}
.y18{bottom:629.895000px;}
.y4b{bottom:636.915000px;}
.y75{bottom:648.975000px;}
.y17{bottom:650.985000px;}
.y4a{bottom:658.005000px;}
.y74{bottom:670.065000px;}
.y16{bottom:672.045000px;}
.y49{bottom:679.065000px;}
.y73{bottom:691.125000px;}
.y15{bottom:693.105000px;}
.y48{bottom:700.125000px;}
.y72{bottom:712.185000px;}
.y14{bottom:714.165000px;}
.y47{bottom:721.185000px;}
.y71{bottom:733.245000px;}
.y13{bottom:735.225000px;}
.y46{bottom:742.245000px;}
.y70{bottom:754.305000px;}
.y12{bottom:756.285000px;}
.y45{bottom:763.305000px;}
.y6f{bottom:775.365000px;}
.y11{bottom:777.345000px;}
.y44{bottom:784.365000px;}
.y6e{bottom:796.425000px;}
.y10{bottom:798.405000px;}
.y43{bottom:805.425000px;}
.y6d{bottom:817.485000px;}
.yf{bottom:819.465000px;}
.y42{bottom:826.485000px;}
.y6c{bottom:838.545000px;}
.ye{bottom:842.685000px;}
.y41{bottom:847.545000px;}
.y6b{bottom:859.605000px;}
.y40{bottom:868.605000px;}
.yd{bottom:868.965000px;}
.y6a{bottom:880.665000px;}
.y3f{bottom:889.665000px;}
.yc{bottom:890.025000px;}
.y69{bottom:901.770000px;}
.y3e{bottom:910.770000px;}
.yb{bottom:911.130000px;}
.y68{bottom:922.830000px;}
.ya{bottom:927.870000px;}
.y3d{bottom:931.830000px;}
.y67{bottom:943.890000px;}
.y9{bottom:950.190000px;}
.y3c{bottom:952.890000px;}
.y66{bottom:964.950000px;}
.y3b{bottom:973.950000px;}
.y8{bottom:975.390000px;}
.y65{bottom:986.010000px;}
.y3a{bottom:995.010000px;}
.y7{bottom:1009.050000px;}
.y39{bottom:1016.070000px;}
.y38{bottom:1037.130000px;}
.y5{bottom:1049.190000px;}
.y37{bottom:1058.190000px;}
.y36{bottom:1079.250000px;}
.y4{bottom:1081.410000px;}
.y35{bottom:1100.310000px;}
.y3{bottom:1113.630000px;}
.y34{bottom:1121.370000px;}
.y33{bottom:1142.430000px;}
.y2{bottom:1145.670000px;}
.y32{bottom:1163.520000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1191.780000px;}
.h7{height:38.671172px;}
.h8{height:45.374414px;}
.hb{height:45.578672px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.ha{height:73.722656px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:53.999987px;}
.x8{left:70.199987px;}
.x7{left:75.599987px;}
.x9{left:102.275987px;}
.x5{left:173.189987px;}
.x3{left:286.634987px;}
.x2{left:350.534987px;}
.x4{left:419.114987px;}
.x1{left:479.264987px;}
.xa{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.853333pt;}
.ls14{letter-spacing:-0.709333pt;}
.ls28{letter-spacing:-0.698667pt;}
.ls21{letter-spacing:-0.618667pt;}
.ls26{letter-spacing:-0.484267pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.474133pt;}
.ls5{letter-spacing:-0.412267pt;}
.lsf{letter-spacing:-0.368000pt;}
.ls1d{letter-spacing:-0.290133pt;}
.lse{letter-spacing:-0.213867pt;}
.ls23{letter-spacing:-0.201600pt;}
.ls13{letter-spacing:-0.190933pt;}
.ls4{letter-spacing:-0.117867pt;}
.lsa{letter-spacing:-0.102933pt;}
.ls1e{letter-spacing:-0.095467pt;}
.ls25{letter-spacing:-0.059733pt;}
.ls30{letter-spacing:-0.057600pt;}
.ls11{letter-spacing:-0.051840pt;}
.ls19{letter-spacing:-0.049280pt;}
.ls2c{letter-spacing:-0.036480pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.021120pt;}
.ls3{letter-spacing:0.034560pt;}
.ls27{letter-spacing:0.053867pt;}
.ls9{letter-spacing:0.058667pt;}
.ls8{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.133333pt;}
.ls2f{letter-spacing:0.150400pt;}
.ls29{letter-spacing:0.154667pt;}
.ls22{letter-spacing:0.155733pt;}
.ls24{letter-spacing:0.165867pt;}
.ls7{letter-spacing:0.169067pt;}
.ls10{letter-spacing:0.272000pt;}
.ls17{letter-spacing:0.279467pt;}
.ls18{letter-spacing:0.349867pt;}
.ls2e{letter-spacing:0.385280pt;}
.lsc{letter-spacing:0.549120pt;}
.ls20{letter-spacing:0.581333pt;}
.ls1c{letter-spacing:1.872640pt;}
.ls1b{letter-spacing:5.072640pt;}
.ls2b{letter-spacing:10.832640pt;}
.lsd{letter-spacing:15.312640pt;}
.ls15{letter-spacing:17.872640pt;}
.lsb{letter-spacing:19.152640pt;}
.ls16{letter-spacing:20.432640pt;}
.ls1{letter-spacing:33.872640pt;}
.ls2a{letter-spacing:37.712640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.354987pt;}
.wsb{word-spacing:-12.284587pt;}
.ws16{word-spacing:-12.277120pt;}
.ws11{word-spacing:-12.170987pt;}
.ws19{word-spacing:-12.160853pt;}
.ws17{word-spacing:-12.155520pt;}
.ws9{word-spacing:-12.129920pt;}
.ws15{word-spacing:-12.026240pt;}
.ws6{word-spacing:-12.005120pt;}
.ws14{word-spacing:-11.968640pt;}
.wsd{word-spacing:-11.955840pt;}
.wse{word-spacing:-11.953280pt;}
.ws18{word-spacing:-11.947520pt;}
.ws13{word-spacing:-11.945387pt;}
.wsf{word-spacing:-11.909653pt;}
.ws7{word-spacing:-11.902187pt;}
.wsa{word-spacing:-11.814187pt;}
.ws10{word-spacing:-11.803520pt;}
.ws12{word-spacing:-11.791253pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._21{margin-left:-190.878720pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._24{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.263467pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._23{margin-left:-128.921387pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._22{margin-left:-97.441493pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._19{margin-left:-28.861013pt;}
._26{margin-left:-4.557440pt;}
._37{margin-left:-3.529600pt;}
._25{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._27{width:1.191680pt;}
._28{width:2.561493pt;}
._2a{width:3.454507pt;}
._29{width:4.395520pt;}
._32{width:5.853227pt;}
._31{width:6.799360pt;}
._34{width:7.968000pt;}
._30{width:9.007360pt;}
._2b{width:9.933440pt;}
._2c{width:11.079040pt;}
._2d{width:13.203840pt;}
._2f{width:14.448640pt;}
._2e{width:15.404800pt;}
._35{width:16.391040pt;}
._38{width:17.328427pt;}
._36{width:18.379520pt;}
._33{width:20.481280pt;}
._3b{width:22.778240pt;}
._39{width:23.757227pt;}
._3a{width:78.635947pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.120000pt;}
.ya4{bottom:79.520000pt;}
.y30{bottom:81.920000pt;}
.y8f{bottom:82.240000pt;}
.y9f{bottom:90.240000pt;}
.y64{bottom:98.240000pt;}
.y2f{bottom:100.640000pt;}
.y8e{bottom:100.960000pt;}
.ya5{bottom:105.920000pt;}
.y9e{bottom:108.960000pt;}
.y63{bottom:116.960000pt;}
.y2e{bottom:119.360000pt;}
.y8d{bottom:119.680000pt;}
.y9d{bottom:127.680000pt;}
.y62{bottom:135.706667pt;}
.y2d{bottom:138.106667pt;}
.y8c{bottom:138.426667pt;}
.y9c{bottom:146.426667pt;}
.y61{bottom:154.426667pt;}
.y2c{bottom:156.826667pt;}
.y8b{bottom:157.146667pt;}
.y9b{bottom:165.146667pt;}
.y60{bottom:173.146667pt;}
.y2b{bottom:175.546667pt;}
.y8a{bottom:175.866667pt;}
.y9a{bottom:183.866667pt;}
.y5f{bottom:191.866667pt;}
.y2a{bottom:194.266667pt;}
.y89{bottom:194.586667pt;}
.y99{bottom:202.586667pt;}
.y5e{bottom:210.586667pt;}
.y29{bottom:212.986667pt;}
.y88{bottom:213.306667pt;}
.y98{bottom:221.306667pt;}
.y5d{bottom:229.306667pt;}
.y28{bottom:231.706667pt;}
.y87{bottom:232.026667pt;}
.y97{bottom:240.026667pt;}
.y5c{bottom:248.026667pt;}
.y27{bottom:250.426667pt;}
.y86{bottom:250.746667pt;}
.y96{bottom:258.746667pt;}
.y5b{bottom:266.746667pt;}
.y26{bottom:269.146667pt;}
.y85{bottom:269.466667pt;}
.y95{bottom:277.466667pt;}
.y5a{bottom:285.466667pt;}
.y25{bottom:287.866667pt;}
.y84{bottom:288.186667pt;}
.y94{bottom:296.186667pt;}
.y59{bottom:304.186667pt;}
.y24{bottom:306.586667pt;}
.y83{bottom:306.906667pt;}
.y93{bottom:314.906667pt;}
.y58{bottom:322.906667pt;}
.y23{bottom:325.306667pt;}
.y82{bottom:325.626667pt;}
.y92{bottom:333.626667pt;}
.y57{bottom:341.626667pt;}
.y22{bottom:344.026667pt;}
.y81{bottom:344.346667pt;}
.y91{bottom:352.346667pt;}
.y56{bottom:360.386667pt;}
.y21{bottom:362.786667pt;}
.y80{bottom:362.946667pt;}
.y90{bottom:370.946667pt;}
.y55{bottom:378.946667pt;}
.y20{bottom:381.506667pt;}
.y7f{bottom:381.666667pt;}
.ya3{bottom:389.666667pt;}
.y54{bottom:397.666667pt;}
.y1f{bottom:400.226667pt;}
.y7e{bottom:400.386667pt;}
.ya2{bottom:408.386667pt;}
.y53{bottom:416.386667pt;}
.y1e{bottom:418.946667pt;}
.y7d{bottom:419.106667pt;}
.ya1{bottom:427.106667pt;}
.y52{bottom:435.106667pt;}
.y1d{bottom:437.666667pt;}
.y7c{bottom:437.826667pt;}
.ya0{bottom:445.826667pt;}
.y51{bottom:453.826667pt;}
.y7b{bottom:464.546667pt;}
.y50{bottom:472.546667pt;}
.y1c{bottom:477.186667pt;}
.y7a{bottom:483.266667pt;}
.y4f{bottom:491.266667pt;}
.y79{bottom:501.986667pt;}
.y1b{bottom:503.746667pt;}
.y4e{bottom:509.986667pt;}
.y78{bottom:520.706667pt;}
.y1a{bottom:522.466667pt;}
.y4d{bottom:528.706667pt;}
.y77{bottom:539.426667pt;}
.y19{bottom:541.186667pt;}
.y4c{bottom:547.426667pt;}
.y76{bottom:558.146667pt;}
.y18{bottom:559.906667pt;}
.y4b{bottom:566.146667pt;}
.y75{bottom:576.866667pt;}
.y17{bottom:578.653333pt;}
.y4a{bottom:584.893333pt;}
.y74{bottom:595.613333pt;}
.y16{bottom:597.373333pt;}
.y49{bottom:603.613333pt;}
.y73{bottom:614.333333pt;}
.y15{bottom:616.093333pt;}
.y48{bottom:622.333333pt;}
.y72{bottom:633.053333pt;}
.y14{bottom:634.813333pt;}
.y47{bottom:641.053333pt;}
.y71{bottom:651.773333pt;}
.y13{bottom:653.533333pt;}
.y46{bottom:659.773333pt;}
.y70{bottom:670.493333pt;}
.y12{bottom:672.253333pt;}
.y45{bottom:678.493333pt;}
.y6f{bottom:689.213333pt;}
.y11{bottom:690.973333pt;}
.y44{bottom:697.213333pt;}
.y6e{bottom:707.933333pt;}
.y10{bottom:709.693333pt;}
.y43{bottom:715.933333pt;}
.y6d{bottom:726.653333pt;}
.yf{bottom:728.413333pt;}
.y42{bottom:734.653333pt;}
.y6c{bottom:745.373333pt;}
.ye{bottom:749.053333pt;}
.y41{bottom:753.373333pt;}
.y6b{bottom:764.093333pt;}
.y40{bottom:772.093333pt;}
.yd{bottom:772.413333pt;}
.y6a{bottom:782.813333pt;}
.y3f{bottom:790.813333pt;}
.yc{bottom:791.133333pt;}
.y69{bottom:801.573333pt;}
.y3e{bottom:809.573333pt;}
.yb{bottom:809.893333pt;}
.y68{bottom:820.293333pt;}
.ya{bottom:824.773333pt;}
.y3d{bottom:828.293333pt;}
.y67{bottom:839.013333pt;}
.y9{bottom:844.613333pt;}
.y3c{bottom:847.013333pt;}
.y66{bottom:857.733333pt;}
.y3b{bottom:865.733333pt;}
.y8{bottom:867.013333pt;}
.y65{bottom:876.453333pt;}
.y3a{bottom:884.453333pt;}
.y7{bottom:896.933333pt;}
.y39{bottom:903.173333pt;}
.y38{bottom:921.893333pt;}
.y5{bottom:932.613333pt;}
.y37{bottom:940.613333pt;}
.y36{bottom:959.333333pt;}
.y4{bottom:961.253333pt;}
.y35{bottom:978.053333pt;}
.y3{bottom:989.893333pt;}
.y34{bottom:996.773333pt;}
.y33{bottom:1015.493333pt;}
.y2{bottom:1018.373333pt;}
.y32{bottom:1034.240000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1059.360000pt;}
.h7{height:34.374375pt;}
.h8{height:40.332812pt;}
.hb{height:40.514375pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.ha{height:65.531250pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:47.999988pt;}
.x8{left:62.399988pt;}
.x7{left:67.199988pt;}
.x9{left:90.911988pt;}
.x5{left:153.946655pt;}
.x3{left:254.786655pt;}
.x2{left:311.586655pt;}
.x4{left:372.546655pt;}
.x1{left:426.013322pt;}
.xa{left:746.079988pt;}
}




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