
    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_85d02fdbe493ed298730001e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_2ea66e6a230ea2a514959a37.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_01d0a546793828dde5e9305b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_720068b6eabe9e5061e5326d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_d42d2fd01d6e1f2d5a0ce698.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_1963ebe9edc40b849eb392c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_b7e025578658750c8eeea727.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_51737ea4d69516da3d0e6b9c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_b541787e05cb094ae5168f68.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e432e9fd1213bb37e199518f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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:ffc;src:url('chunks/assets/font_1f8b899ac6a743a89f1babc4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.767578;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:ffd;src:url('chunks/assets/font_6720ea3544cb96dc752d39db.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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:-30.240000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.360000px;}
.v1{vertical-align:30.240000px;}
.ls8{letter-spacing:-2.340000px;}
.ls9{letter-spacing:-1.800000px;}
.lsd{letter-spacing:-0.900000px;}
.ls14{letter-spacing:-0.750000px;}
.ls11{letter-spacing:-0.690000px;}
.lsc{letter-spacing:-0.684000px;}
.lse{letter-spacing:-0.378600px;}
.ls15{letter-spacing:-0.369600px;}
.ls12{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.350400px;}
.ls19{letter-spacing:-0.348600px;}
.lsb{letter-spacing:-0.341400px;}
.ls22{letter-spacing:-0.331800px;}
.ls21{letter-spacing:-0.238800px;}
.lsf{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.037440px;}
.ls7{letter-spacing:-0.028080px;}
.ls1c{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls10{letter-spacing:0.037440px;}
.ls28{letter-spacing:0.149760px;}
.ls1f{letter-spacing:0.252720px;}
.ls25{letter-spacing:0.275040px;}
.ls2{letter-spacing:0.341400px;}
.ls1b{letter-spacing:0.350400px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.371400px;}
.lsa{letter-spacing:0.378600px;}
.ls24{letter-spacing:0.378720px;}
.ls1e{letter-spacing:0.388200px;}
.ls1a{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.522720px;}
.ls20{letter-spacing:0.540000px;}
.ls1{letter-spacing:7.740000px;}
.ls27{letter-spacing:18.120000px;}
.ls13{letter-spacing:22.860000px;}
.ls1d{letter-spacing:23.580000px;}
.ls23{letter-spacing:54.120000px;}
.ls2a{letter-spacing:64.620000px;}
.ls16{letter-spacing:158.717280px;}
.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;}
}
.ws12{word-spacing:-84.600000px;}
.ws17{word-spacing:-84.240000px;}
.ws1b{word-spacing:-84.221280px;}
.ws15{word-spacing:-66.611400px;}
.ws1c{word-spacing:-66.118800px;}
.ws1a{word-spacing:-66.001200px;}
.ws16{word-spacing:-65.891400px;}
.ws1{word-spacing:-27.000000px;}
.ws1d{word-spacing:-21.438720px;}
.ws7{word-spacing:-21.438600px;}
.wsc{word-spacing:-21.420000px;}
.ws18{word-spacing:-21.410400px;}
.wsd{word-spacing:-21.401400px;}
.wse{word-spacing:-21.097440px;}
.ws9{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws19{word-spacing:-21.041280px;}
.ws4{word-spacing:-21.031920px;}
.ws3{word-spacing:-21.022560px;}
.ws20{word-spacing:-20.880000px;}
.ws8{word-spacing:-20.718600px;}
.ws1f{word-spacing:-20.709600px;}
.ws10{word-spacing:-20.700000px;}
.ws14{word-spacing:-20.690400px;}
.wsb{word-spacing:-20.681400px;}
.wsa{word-spacing:-20.376000px;}
.wsf{word-spacing:-20.370000px;}
.ws13{word-spacing:-20.310000px;}
.ws0{word-spacing:-18.000000px;}
.ws1e{word-spacing:-14.970240px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-11.700000px;}
.ws11{word-spacing:0.000000px;}
._1f{margin-left:-6.608400px;}
._1e{margin-left:-4.941360px;}
._3{margin-left:-3.877200px;}
._2{margin-left:-2.751120px;}
._1{margin-left:-1.460880px;}
._0{width:1.212000px;}
._f{width:2.361360px;}
._10{width:3.773280px;}
._14{width:4.795200px;}
._13{width:5.869200px;}
._12{width:6.920880px;}
._4{width:8.361120px;}
._7{width:9.851400px;}
._b{width:11.032320px;}
._a{width:12.171360px;}
._23{width:13.562640px;}
._17{width:14.676720px;}
._11{width:16.605120px;}
._32{width:18.054480px;}
._e{width:19.488240px;}
._1b{width:22.594320px;}
._6{width:24.211440px;}
._5{width:25.464720px;}
._18{width:27.209520px;}
._19{width:28.331280px;}
._9{width:29.445120px;}
._39{width:30.580800px;}
._8{width:31.792800px;}
._1d{width:33.822720px;}
._31{width:34.824000px;}
._16{width:35.830800px;}
._15{width:36.897120px;}
._1a{width:38.666160px;}
._2f{width:39.958560px;}
._2e{width:41.599920px;}
._2d{width:42.625440px;}
._22{width:44.170560px;}
._d{width:46.338720px;}
._c{width:47.565120px;}
._30{width:48.830400px;}
._20{width:50.404320px;}
._21{width:51.782400px;}
._2c{width:53.072160px;}
._2b{width:54.086880px;}
._35{width:56.040240px;}
._36{width:57.090240px;}
._2a{width:59.422080px;}
._3a{width:64.094880px;}
._25{width:66.915360px;}
._26{width:68.063280px;}
._29{width:69.227280px;}
._27{width:70.369200px;}
._34{width:76.995360px;}
._1c{width:79.045920px;}
._38{width:80.928000px;}
._37{width:82.509840px;}
._24{width:86.770800px;}
._28{width:123.356160px;}
._33{width:177.120000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:87.120000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.980000px;}
.y2{bottom:4.320000px;}
.y3{bottom:5.940000px;}
.y8{bottom:9.180000px;}
.y42{bottom:16.560000px;}
.y48{bottom:16.605000px;}
.y44{bottom:16.740000px;}
.y8a{bottom:17.280000px;}
.ya{bottom:21.420000px;}
.y9{bottom:45.540000px;}
.y41{bottom:52.740000px;}
.y56{bottom:52.920000px;}
.y89{bottom:53.640000px;}
.y7{bottom:73.836000px;}
.y8e{bottom:88.920000px;}
.y8f{bottom:89.145000px;}
.y88{bottom:89.865000px;}
.y8d{bottom:125.280000px;}
.y87{bottom:126.045000px;}
.y72{bottom:128.196000px;}
.y81{bottom:136.656000px;}
.y3f{bottom:151.050000px;}
.y96{bottom:151.410000px;}
.y69{bottom:156.450000px;}
.y71{bottom:159.870000px;}
.y5b{bottom:160.770000px;}
.y8c{bottom:161.460000px;}
.y86{bottom:162.225000px;}
.y91{bottom:167.610000px;}
.y80{bottom:172.830000px;}
.y25{bottom:183.810000px;}
.y3e{bottom:187.230000px;}
.y95{bottom:187.590000px;}
.y68{bottom:192.630000px;}
.y5a{bottom:197.850000px;}
.y85{bottom:198.405000px;}
.y7f{bottom:209.010000px;}
.y24{bottom:219.990000px;}
.y3d{bottom:223.410000px;}
.y94{bottom:223.770000px;}
.y67{bottom:228.810000px;}
.y59{bottom:234.750000px;}
.y84{bottom:234.765000px;}
.y90{bottom:240.870000px;}
.y7e{bottom:245.370000px;}
.y23{bottom:256.170000px;}
.y3c{bottom:259.590000px;}
.y93{bottom:259.770000px;}
.y66{bottom:265.170000px;}
.y83{bottom:270.945000px;}
.y58{bottom:271.830000px;}
.y82{bottom:277.770000px;}
.y7d{bottom:281.550000px;}
.y22{bottom:292.350000px;}
.y3b{bottom:295.770000px;}
.y92{bottom:295.950000px;}
.y65{bottom:301.350000px;}
.y57{bottom:308.730000px;}
.y7c{bottom:317.730000px;}
.y21{bottom:328.710000px;}
.y3a{bottom:332.130000px;}
.y64{bottom:337.575000px;}
.y55{bottom:345.675000px;}
.y7b{bottom:353.955000px;}
.y20{bottom:364.935000px;}
.y39{bottom:368.355000px;}
.y63{bottom:373.755000px;}
.y8b{bottom:387.255000px;}
.y7a{bottom:390.135000px;}
.y1f{bottom:401.115000px;}
.y38{bottom:404.535000px;}
.y62{bottom:409.935000px;}
.y79{bottom:426.495000px;}
.y54{bottom:435.495000px;}
.y1e{bottom:437.295000px;}
.y70{bottom:437.475000px;}
.y37{bottom:440.715000px;}
.y61{bottom:446.295000px;}
.y78{bottom:462.675000px;}
.y53{bottom:471.675000px;}
.y1d{bottom:473.475000px;}
.y6f{bottom:473.655000px;}
.y36{bottom:477.075000px;}
.y60{bottom:482.475000px;}
.y77{bottom:498.855000px;}
.y52{bottom:508.035000px;}
.y1c{bottom:509.835000px;}
.y35{bottom:513.255000px;}
.y5f{bottom:518.655000px;}
.y76{bottom:535.035000px;}
.y51{bottom:544.215000px;}
.y1b{bottom:546.015000px;}
.y6e{bottom:546.195000px;}
.y34{bottom:549.435000px;}
.y5e{bottom:554.835000px;}
.y75{bottom:571.395000px;}
.y50{bottom:580.395000px;}
.y1a{bottom:582.195000px;}
.y6d{bottom:582.375000px;}
.y33{bottom:585.615000px;}
.y5d{bottom:591.195000px;}
.y74{bottom:607.605000px;}
.y4f{bottom:616.605000px;}
.y19{bottom:618.405000px;}
.y6c{bottom:618.585000px;}
.y32{bottom:622.005000px;}
.y5c{bottom:622.725000px;}
.y73{bottom:639.285000px;}
.y4e{bottom:652.965000px;}
.y18{bottom:654.765000px;}
.y31{bottom:658.185000px;}
.y4d{bottom:689.145000px;}
.y17{bottom:690.945000px;}
.y6b{bottom:691.125000px;}
.y30{bottom:694.365000px;}
.y6a{bottom:722.625000px;}
.y4c{bottom:725.325000px;}
.y16{bottom:727.125000px;}
.y2f{bottom:730.545000px;}
.y4b{bottom:761.505000px;}
.y15{bottom:763.305000px;}
.y2e{bottom:766.905000px;}
.y4a{bottom:797.865000px;}
.y2d{bottom:803.085000px;}
.y14{bottom:807.225000px;}
.y49{bottom:818.205000px;}
.y2c{bottom:839.265000px;}
.y13{bottom:843.405000px;}
.y47{bottom:855.105000px;}
.y12{bottom:872.070000px;}
.y2b{bottom:875.490000px;}
.y46{bottom:892.230000px;}
.y11{bottom:908.250000px;}
.y2a{bottom:911.670000px;}
.y45{bottom:929.130000px;}
.y10{bottom:947.130000px;}
.y29{bottom:948.030000px;}
.y43{bottom:966.030000px;}
.y28{bottom:984.210000px;}
.yf{bottom:984.390000px;}
.y40{bottom:1003.110000px;}
.y27{bottom:1020.390000px;}
.ye{bottom:1020.570000px;}
.y26{bottom:1056.570000px;}
.yd{bottom:1056.750000px;}
.yc{bottom:1092.930000px;}
.yb{bottom:1129.110000px;}
.y6{bottom:1153.260000px;}
.y4{bottom:1172.880000px;}
.y1{bottom:1198.260000px;}
.h5{height:14.580000px;}
.h2{height:21.420000px;}
.h7{height:31.140000px;}
.h14{height:36.180000px;}
.h15{height:36.216000px;}
.h13{height:36.360000px;}
.hc{height:52.971680px;}
.h4{height:52.998047px;}
.h1a{height:58.819922px;}
.hf{height:69.432187px;}
.h8{height:70.664062px;}
.h12{height:72.360000px;}
.h16{height:72.540000px;}
.h3{height:72.562500px;}
.hd{height:82.635820px;}
.h6{height:82.676953px;}
.he{height:83.211680px;}
.h10{height:83.238047px;}
.ha{height:84.898125px;}
.h11{height:86.585445px;}
.hb{height:89.204414px;}
.h19{height:108.756000px;}
.h9{height:108.843750px;}
.h18{height:181.080000px;}
.h17{height:290.550000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:28.656000px;}
.w7{width:41.400000px;}
.w3{width:44.100000px;}
.w6{width:63.036000px;}
.wb{width:73.656000px;}
.w9{width:73.836000px;}
.w8{width:92.700000px;}
.w15{width:98.676000px;}
.w13{width:100.296000px;}
.w14{width:106.740000px;}
.w12{width:116.100000px;}
.w17{width:124.200000px;}
.wa{width:126.900000px;}
.wd{width:132.300000px;}
.w16{width:137.556000px;}
.wc{width:160.410000px;}
.wf{width:188.310000px;}
.we{width:195.150000px;}
.w10{width:196.410000px;}
.w5{width:728.430000px;}
.w2{width:840.240000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.320000px;}
.x21{left:7.560000px;}
.x5{left:8.640000px;}
.x9{left:11.160000px;}
.x4{left:35.640000px;}
.x7{left:54.720000px;}
.x2{left:72.540000px;}
.x6{left:84.959987px;}
.x1e{left:89.316000px;}
.xa{left:94.175987px;}
.x17{left:96.516000px;}
.xd{left:107.855987px;}
.x26{left:115.236000px;}
.x10{left:123.875987px;}
.x14{left:127.475987px;}
.x18{left:138.636000px;}
.x16{left:145.655987px;}
.x11{left:168.329987px;}
.xb{left:201.809987px;}
.x1f{left:222.330000px;}
.x19{left:232.050000px;}
.xf{left:287.534987px;}
.x12{left:304.634987px;}
.x1a{left:306.615000px;}
.x2b{left:311.834987px;}
.x27{left:333.435000px;}
.xe{left:341.534987px;}
.x13{left:373.574987px;}
.x15{left:377.534987px;}
.x20{left:418.395000px;}
.x1b{left:434.235000px;}
.x28{left:441.075000px;}
.xc{left:446.474987px;}
.x1c{left:508.605000px;}
.x29{left:540.645000px;}
.x22{left:607.425000px;}
.x1d{left:636.225000px;}
.x2a{left:678.930000px;}
.x24{left:779.549987px;}
.x8{left:783.150000px;}
.x23{left:800.249987px;}
.x25{left:803.489987px;}
.x3{left:844.560000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls8{letter-spacing:-2.080000pt;}
.ls9{letter-spacing:-1.600000pt;}
.lsd{letter-spacing:-0.800000pt;}
.ls14{letter-spacing:-0.666667pt;}
.ls11{letter-spacing:-0.613333pt;}
.lsc{letter-spacing:-0.608000pt;}
.lse{letter-spacing:-0.336533pt;}
.ls15{letter-spacing:-0.328533pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.311467pt;}
.ls19{letter-spacing:-0.309867pt;}
.lsb{letter-spacing:-0.303467pt;}
.ls22{letter-spacing:-0.294933pt;}
.ls21{letter-spacing:-0.212267pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.033280pt;}
.ls7{letter-spacing:-0.024960pt;}
.ls1c{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls10{letter-spacing:0.033280pt;}
.ls28{letter-spacing:0.133120pt;}
.ls1f{letter-spacing:0.224640pt;}
.ls25{letter-spacing:0.244480pt;}
.ls2{letter-spacing:0.303467pt;}
.ls1b{letter-spacing:0.311467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.330133pt;}
.lsa{letter-spacing:0.336533pt;}
.ls24{letter-spacing:0.336640pt;}
.ls1e{letter-spacing:0.345067pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.464640pt;}
.ls20{letter-spacing:0.480000pt;}
.ls1{letter-spacing:6.880000pt;}
.ls27{letter-spacing:16.106667pt;}
.ls13{letter-spacing:20.320000pt;}
.ls1d{letter-spacing:20.960000pt;}
.ls23{letter-spacing:48.106667pt;}
.ls2a{letter-spacing:57.440000pt;}
.ls16{letter-spacing:141.082027pt;}
.ws12{word-spacing:-75.200000pt;}
.ws17{word-spacing:-74.880000pt;}
.ws1b{word-spacing:-74.863360pt;}
.ws15{word-spacing:-59.210133pt;}
.ws1c{word-spacing:-58.772267pt;}
.ws1a{word-spacing:-58.667733pt;}
.ws16{word-spacing:-58.570133pt;}
.ws1{word-spacing:-24.000000pt;}
.ws1d{word-spacing:-19.056640pt;}
.ws7{word-spacing:-19.056533pt;}
.wsc{word-spacing:-19.040000pt;}
.ws18{word-spacing:-19.031467pt;}
.wsd{word-spacing:-19.023467pt;}
.wse{word-spacing:-18.753280pt;}
.ws9{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws19{word-spacing:-18.703360pt;}
.ws4{word-spacing:-18.695040pt;}
.ws3{word-spacing:-18.686720pt;}
.ws20{word-spacing:-18.560000pt;}
.ws8{word-spacing:-18.416533pt;}
.ws1f{word-spacing:-18.408533pt;}
.ws10{word-spacing:-18.400000pt;}
.ws14{word-spacing:-18.391467pt;}
.wsb{word-spacing:-18.383467pt;}
.wsa{word-spacing:-18.112000pt;}
.wsf{word-spacing:-18.106667pt;}
.ws13{word-spacing:-18.053333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1e{word-spacing:-13.306880pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-10.400000pt;}
.ws11{word-spacing:0.000000pt;}
._1f{margin-left:-5.874133pt;}
._1e{margin-left:-4.392320pt;}
._3{margin-left:-3.446400pt;}
._2{margin-left:-2.445440pt;}
._1{margin-left:-1.298560pt;}
._0{width:1.077333pt;}
._f{width:2.098987pt;}
._10{width:3.354027pt;}
._14{width:4.262400pt;}
._13{width:5.217067pt;}
._12{width:6.151893pt;}
._4{width:7.432107pt;}
._7{width:8.756800pt;}
._b{width:9.806507pt;}
._a{width:10.818987pt;}
._23{width:12.055680pt;}
._17{width:13.045973pt;}
._11{width:14.760107pt;}
._32{width:16.048427pt;}
._e{width:17.322880pt;}
._1b{width:20.083840pt;}
._6{width:21.521280pt;}
._5{width:22.635307pt;}
._18{width:24.186240pt;}
._19{width:25.183360pt;}
._9{width:26.173440pt;}
._39{width:27.182933pt;}
._8{width:28.260267pt;}
._1d{width:30.064640pt;}
._31{width:30.954667pt;}
._16{width:31.849600pt;}
._15{width:32.797440pt;}
._1a{width:34.369920pt;}
._2f{width:35.518720pt;}
._2e{width:36.977707pt;}
._2d{width:37.889280pt;}
._22{width:39.262720pt;}
._d{width:41.189973pt;}
._c{width:42.280107pt;}
._30{width:43.404800pt;}
._20{width:44.803840pt;}
._21{width:46.028800pt;}
._2c{width:47.175253pt;}
._2b{width:48.077227pt;}
._35{width:49.813547pt;}
._36{width:50.746880pt;}
._2a{width:52.819627pt;}
._3a{width:56.973227pt;}
._25{width:59.480320pt;}
._26{width:60.500693pt;}
._29{width:61.535360pt;}
._27{width:62.550400pt;}
._34{width:68.440320pt;}
._1c{width:70.263040pt;}
._38{width:71.936000pt;}
._37{width:73.342080pt;}
._24{width:77.129600pt;}
._28{width:109.649920pt;}
._33{width:157.440000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:77.440000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.760000pt;}
.y2{bottom:3.840000pt;}
.y3{bottom:5.280000pt;}
.y8{bottom:8.160000pt;}
.y42{bottom:14.720000pt;}
.y48{bottom:14.760000pt;}
.y44{bottom:14.880000pt;}
.y8a{bottom:15.360000pt;}
.ya{bottom:19.040000pt;}
.y9{bottom:40.480000pt;}
.y41{bottom:46.880000pt;}
.y56{bottom:47.040000pt;}
.y89{bottom:47.680000pt;}
.y7{bottom:65.632000pt;}
.y8e{bottom:79.040000pt;}
.y8f{bottom:79.240000pt;}
.y88{bottom:79.880000pt;}
.y8d{bottom:111.360000pt;}
.y87{bottom:112.040000pt;}
.y72{bottom:113.952000pt;}
.y81{bottom:121.472000pt;}
.y3f{bottom:134.266667pt;}
.y96{bottom:134.586667pt;}
.y69{bottom:139.066667pt;}
.y71{bottom:142.106667pt;}
.y5b{bottom:142.906667pt;}
.y8c{bottom:143.520000pt;}
.y86{bottom:144.200000pt;}
.y91{bottom:148.986667pt;}
.y80{bottom:153.626667pt;}
.y25{bottom:163.386667pt;}
.y3e{bottom:166.426667pt;}
.y95{bottom:166.746667pt;}
.y68{bottom:171.226667pt;}
.y5a{bottom:175.866667pt;}
.y85{bottom:176.360000pt;}
.y7f{bottom:185.786667pt;}
.y24{bottom:195.546667pt;}
.y3d{bottom:198.586667pt;}
.y94{bottom:198.906667pt;}
.y67{bottom:203.386667pt;}
.y59{bottom:208.666667pt;}
.y84{bottom:208.680000pt;}
.y90{bottom:214.106667pt;}
.y7e{bottom:218.106667pt;}
.y23{bottom:227.706667pt;}
.y3c{bottom:230.746667pt;}
.y93{bottom:230.906667pt;}
.y66{bottom:235.706667pt;}
.y83{bottom:240.840000pt;}
.y58{bottom:241.626667pt;}
.y82{bottom:246.906667pt;}
.y7d{bottom:250.266667pt;}
.y22{bottom:259.866667pt;}
.y3b{bottom:262.906667pt;}
.y92{bottom:263.066667pt;}
.y65{bottom:267.866667pt;}
.y57{bottom:274.426667pt;}
.y7c{bottom:282.426667pt;}
.y21{bottom:292.186667pt;}
.y3a{bottom:295.226667pt;}
.y64{bottom:300.066667pt;}
.y55{bottom:307.266667pt;}
.y7b{bottom:314.626667pt;}
.y20{bottom:324.386667pt;}
.y39{bottom:327.426667pt;}
.y63{bottom:332.226667pt;}
.y8b{bottom:344.226667pt;}
.y7a{bottom:346.786667pt;}
.y1f{bottom:356.546667pt;}
.y38{bottom:359.586667pt;}
.y62{bottom:364.386667pt;}
.y79{bottom:379.106667pt;}
.y54{bottom:387.106667pt;}
.y1e{bottom:388.706667pt;}
.y70{bottom:388.866667pt;}
.y37{bottom:391.746667pt;}
.y61{bottom:396.706667pt;}
.y78{bottom:411.266667pt;}
.y53{bottom:419.266667pt;}
.y1d{bottom:420.866667pt;}
.y6f{bottom:421.026667pt;}
.y36{bottom:424.066667pt;}
.y60{bottom:428.866667pt;}
.y77{bottom:443.426667pt;}
.y52{bottom:451.586667pt;}
.y1c{bottom:453.186667pt;}
.y35{bottom:456.226667pt;}
.y5f{bottom:461.026667pt;}
.y76{bottom:475.586667pt;}
.y51{bottom:483.746667pt;}
.y1b{bottom:485.346667pt;}
.y6e{bottom:485.506667pt;}
.y34{bottom:488.386667pt;}
.y5e{bottom:493.186667pt;}
.y75{bottom:507.906667pt;}
.y50{bottom:515.906667pt;}
.y1a{bottom:517.506667pt;}
.y6d{bottom:517.666667pt;}
.y33{bottom:520.546667pt;}
.y5d{bottom:525.506667pt;}
.y74{bottom:540.093333pt;}
.y4f{bottom:548.093333pt;}
.y19{bottom:549.693333pt;}
.y6c{bottom:549.853333pt;}
.y32{bottom:552.893333pt;}
.y5c{bottom:553.533333pt;}
.y73{bottom:568.253333pt;}
.y4e{bottom:580.413333pt;}
.y18{bottom:582.013333pt;}
.y31{bottom:585.053333pt;}
.y4d{bottom:612.573333pt;}
.y17{bottom:614.173333pt;}
.y6b{bottom:614.333333pt;}
.y30{bottom:617.213333pt;}
.y6a{bottom:642.333333pt;}
.y4c{bottom:644.733333pt;}
.y16{bottom:646.333333pt;}
.y2f{bottom:649.373333pt;}
.y4b{bottom:676.893333pt;}
.y15{bottom:678.493333pt;}
.y2e{bottom:681.693333pt;}
.y4a{bottom:709.213333pt;}
.y2d{bottom:713.853333pt;}
.y14{bottom:717.533333pt;}
.y49{bottom:727.293333pt;}
.y2c{bottom:746.013333pt;}
.y13{bottom:749.693333pt;}
.y47{bottom:760.093333pt;}
.y12{bottom:775.173333pt;}
.y2b{bottom:778.213333pt;}
.y46{bottom:793.093333pt;}
.y11{bottom:807.333333pt;}
.y2a{bottom:810.373333pt;}
.y45{bottom:825.893333pt;}
.y10{bottom:841.893333pt;}
.y29{bottom:842.693333pt;}
.y43{bottom:858.693333pt;}
.y28{bottom:874.853333pt;}
.yf{bottom:875.013333pt;}
.y40{bottom:891.653333pt;}
.y27{bottom:907.013333pt;}
.ye{bottom:907.173333pt;}
.y26{bottom:939.173333pt;}
.yd{bottom:939.333333pt;}
.yc{bottom:971.493333pt;}
.yb{bottom:1003.653333pt;}
.y6{bottom:1025.120000pt;}
.y4{bottom:1042.560000pt;}
.y1{bottom:1065.120000pt;}
.h5{height:12.960000pt;}
.h2{height:19.040000pt;}
.h7{height:27.680000pt;}
.h14{height:32.160000pt;}
.h15{height:32.192000pt;}
.h13{height:32.320000pt;}
.hc{height:47.085938pt;}
.h4{height:47.109375pt;}
.h1a{height:52.284375pt;}
.hf{height:61.717500pt;}
.h8{height:62.812500pt;}
.h12{height:64.320000pt;}
.h16{height:64.480000pt;}
.h3{height:64.500000pt;}
.hd{height:73.454062pt;}
.h6{height:73.490625pt;}
.he{height:73.965937pt;}
.h10{height:73.989375pt;}
.ha{height:75.465000pt;}
.h11{height:76.964840pt;}
.hb{height:79.292812pt;}
.h19{height:96.672000pt;}
.h9{height:96.750000pt;}
.h18{height:160.960000pt;}
.h17{height:258.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:25.472000pt;}
.w7{width:36.800000pt;}
.w3{width:39.200000pt;}
.w6{width:56.032000pt;}
.wb{width:65.472000pt;}
.w9{width:65.632000pt;}
.w8{width:82.400000pt;}
.w15{width:87.712000pt;}
.w13{width:89.152000pt;}
.w14{width:94.880000pt;}
.w12{width:103.200000pt;}
.w17{width:110.400000pt;}
.wa{width:112.800000pt;}
.wd{width:117.600000pt;}
.w16{width:122.272000pt;}
.wc{width:142.586667pt;}
.wf{width:167.386667pt;}
.we{width:173.466667pt;}
.w10{width:174.586667pt;}
.w5{width:647.493333pt;}
.w2{width:746.880000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:3.840000pt;}
.x21{left:6.720000pt;}
.x5{left:7.680000pt;}
.x9{left:9.920000pt;}
.x4{left:31.680000pt;}
.x7{left:48.640000pt;}
.x2{left:64.480000pt;}
.x6{left:75.519988pt;}
.x1e{left:79.392000pt;}
.xa{left:83.711988pt;}
.x17{left:85.792000pt;}
.xd{left:95.871988pt;}
.x26{left:102.432000pt;}
.x10{left:110.111988pt;}
.x14{left:113.311988pt;}
.x18{left:123.232000pt;}
.x16{left:129.471988pt;}
.x11{left:149.626655pt;}
.xb{left:179.386655pt;}
.x1f{left:197.626667pt;}
.x19{left:206.266667pt;}
.xf{left:255.586655pt;}
.x12{left:270.786655pt;}
.x1a{left:272.546667pt;}
.x2b{left:277.186655pt;}
.x27{left:296.386667pt;}
.xe{left:303.586655pt;}
.x13{left:332.066655pt;}
.x15{left:335.586655pt;}
.x20{left:371.906667pt;}
.x1b{left:385.986667pt;}
.x28{left:392.066667pt;}
.xc{left:396.866655pt;}
.x1c{left:452.093333pt;}
.x29{left:480.573333pt;}
.x22{left:539.933333pt;}
.x1d{left:565.533333pt;}
.x2a{left:603.493333pt;}
.x24{left:692.933322pt;}
.x8{left:696.133333pt;}
.x23{left:711.333322pt;}
.x25{left:714.213322pt;}
.x3{left:750.720000pt;}
}




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