
    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_16b774c23c7989d68b4a9102.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.053000;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_433e0a12748eacfa9d16a48c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_9571505cbc5090653154127f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.732000;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_daf6ada6f58037f595265e16.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_ed6133eb23117fcf5b9ebf49.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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;}
.m4{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.184800px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.320000px;}
.ls1{letter-spacing:1221.935400px;}
.ls0{letter-spacing:2288.719200px;}
.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;}
}
.ws41{word-spacing:-17.404800px;}
.ws19{word-spacing:-16.200000px;}
.ws5b{word-spacing:-12.000000px;}
.ws34{word-spacing:-9.360000px;}
.ws0{word-spacing:-9.120000px;}
.ws18{word-spacing:-4.116000px;}
.ws20{word-spacing:-3.292800px;}
.ws43{word-spacing:-3.175200px;}
.wsd{word-spacing:-3.116400px;}
.ws4a{word-spacing:-2.998800px;}
.ws32{word-spacing:-2.881200px;}
.ws45{word-spacing:-2.587200px;}
.ws53{word-spacing:-2.528400px;}
.wsb{word-spacing:-2.352000px;}
.ws54{word-spacing:-2.293200px;}
.ws51{word-spacing:-2.234400px;}
.ws8{word-spacing:-2.175600px;}
.ws28{word-spacing:-1.999200px;}
.ws2a{word-spacing:-1.940400px;}
.ws4c{word-spacing:-1.881600px;}
.ws2f{word-spacing:-1.822800px;}
.ws30{word-spacing:-1.764000px;}
.ws38{word-spacing:-1.117200px;}
.ws2c{word-spacing:-1.058400px;}
.wsf{word-spacing:-0.999600px;}
.ws23{word-spacing:-0.882000px;}
.ws9{word-spacing:-0.823200px;}
.ws13{word-spacing:-0.646800px;}
.ws2e{word-spacing:-0.470400px;}
.ws3{word-spacing:-0.411600px;}
.ws5c{word-spacing:-0.364800px;}
.wsc{word-spacing:-0.352800px;}
.ws1{word-spacing:0.000000px;}
.ws39{word-spacing:0.176400px;}
.ws47{word-spacing:0.294000px;}
.ws2d{word-spacing:0.588000px;}
.ws40{word-spacing:0.748800px;}
.ws3e{word-spacing:0.823200px;}
.ws3d{word-spacing:1.117200px;}
.ws6{word-spacing:1.176000px;}
.ws44{word-spacing:1.234800px;}
.ws4d{word-spacing:1.293600px;}
.ws1e{word-spacing:1.352400px;}
.ws56{word-spacing:1.404000px;}
.ws3c{word-spacing:1.528800px;}
.ws4f{word-spacing:1.587600px;}
.ws33{word-spacing:1.646400px;}
.ws49{word-spacing:1.705200px;}
.ws48{word-spacing:1.822800px;}
.ws1d{word-spacing:1.999200px;}
.ws22{word-spacing:2.058000px;}
.ws42{word-spacing:2.175600px;}
.ws10{word-spacing:2.293200px;}
.ws31{word-spacing:2.410800px;}
.ws4{word-spacing:2.587200px;}
.ws59{word-spacing:2.667600px;}
.ws25{word-spacing:2.822400px;}
.ws2{word-spacing:2.881200px;}
.ws24{word-spacing:2.940000px;}
.ws12{word-spacing:3.057600px;}
.ws5d{word-spacing:3.237600px;}
.ws29{word-spacing:3.351600px;}
.ws50{word-spacing:3.704400px;}
.ws14{word-spacing:3.763200px;}
.wse{word-spacing:3.939600px;}
.ws5f{word-spacing:3.967200px;}
.ws37{word-spacing:3.998400px;}
.ws27{word-spacing:4.116000px;}
.ws5{word-spacing:4.233600px;}
.ws52{word-spacing:4.410000px;}
.ws3f{word-spacing:4.468800px;}
.ws4e{word-spacing:4.586400px;}
.ws21{word-spacing:4.821600px;}
.ws16{word-spacing:5.115600px;}
.ws7{word-spacing:5.468400px;}
.ws4b{word-spacing:5.644800px;}
.ws15{word-spacing:5.762400px;}
.ws35{word-spacing:6.468000px;}
.ws3b{word-spacing:6.762000px;}
.ws17{word-spacing:6.938400px;}
.ws46{word-spacing:7.056000px;}
.ws1f{word-spacing:7.173600px;}
.ws1b{word-spacing:7.291200px;}
.ws1c{word-spacing:7.350000px;}
.ws5e{word-spacing:7.478400px;}
.ws3a{word-spacing:7.938000px;}
.ws2b{word-spacing:8.055600px;}
.ws55{word-spacing:8.190000px;}
.ws26{word-spacing:8.408400px;}
.ws57{word-spacing:8.470800px;}
.ws11{word-spacing:8.526000px;}
.ws5a{word-spacing:9.406800px;}
.ws36{word-spacing:9.584400px;}
.wsa{word-spacing:9.643200px;}
.ws58{word-spacing:12.448800px;}
.ws1a{word-spacing:1608.129600px;}
._7{margin-left:-1608.112800px;}
._8{margin-left:-7.585200px;}
._4{margin-left:-6.343200px;}
._9{margin-left:-4.847760px;}
._6{margin-left:-3.599760px;}
._5{margin-left:-2.332080px;}
._1{margin-left:-1.074000px;}
._0{width:1.782000px;}
._2{width:3.708000px;}
._3{width:9.114000px;}
._a{width:1085.442000px;}
.fc4{color:rgb(0,80,152);}
.fc3{color:rgb(147,22,120);}
.fc1{color:rgb(124,16,100);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(94,112,127);}
.fs8{font-size:26.584800px;}
.fs4{font-size:44.400000px;}
.fs0{font-size:45.600000px;}
.fs6{font-size:46.800000px;}
.fs3{font-size:58.800000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:81.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:77.698800px;}
.y1e{bottom:142.792800px;}
.y41{bottom:142.828800px;}
.y58{bottom:142.846800px;}
.y44{bottom:142.942800px;}
.y1f{bottom:142.948800px;}
.y1d{bottom:164.548800px;}
.y40{bottom:164.584800px;}
.y57{bottom:164.602800px;}
.y43{bottom:164.698800px;}
.y1c{bottom:186.304800px;}
.y3f{bottom:186.340800px;}
.y56{bottom:186.358800px;}
.y1b{bottom:208.060800px;}
.y3e{bottom:208.096800px;}
.y55{bottom:208.114800px;}
.y62{bottom:208.180800px;}
.y42{bottom:208.198800px;}
.y1a{bottom:229.816800px;}
.y3d{bottom:229.852800px;}
.y54{bottom:229.870800px;}
.y61{bottom:229.936800px;}
.y19{bottom:251.572800px;}
.y3c{bottom:251.608800px;}
.y53{bottom:251.626800px;}
.y60{bottom:251.692800px;}
.y18{bottom:273.328800px;}
.y3b{bottom:273.364800px;}
.y52{bottom:273.382800px;}
.y5f{bottom:273.448800px;}
.y17{bottom:295.084800px;}
.y3a{bottom:295.120800px;}
.y51{bottom:295.138800px;}
.y5e{bottom:295.198800px;}
.y16{bottom:316.840800px;}
.y39{bottom:316.876800px;}
.y50{bottom:316.894800px;}
.y15{bottom:338.596800px;}
.y38{bottom:338.632800px;}
.y4f{bottom:338.650800px;}
.y5d{bottom:338.680800px;}
.y14{bottom:360.352800px;}
.y37{bottom:360.388800px;}
.y4e{bottom:360.406800px;}
.y5c{bottom:360.436800px;}
.y13{bottom:382.108800px;}
.y36{bottom:382.144800px;}
.y4d{bottom:382.162800px;}
.y5b{bottom:382.192800px;}
.y12{bottom:403.864800px;}
.y35{bottom:403.900800px;}
.y4c{bottom:403.918800px;}
.y5a{bottom:403.948800px;}
.y11{bottom:425.620800px;}
.y34{bottom:425.656800px;}
.y4b{bottom:425.674800px;}
.y10{bottom:447.376800px;}
.y33{bottom:447.412800px;}
.y4a{bottom:447.430800px;}
.yf{bottom:469.132800px;}
.y32{bottom:469.168800px;}
.y49{bottom:469.186800px;}
.ye{bottom:490.888800px;}
.y31{bottom:490.924800px;}
.y48{bottom:490.942800px;}
.yd{bottom:512.644800px;}
.y30{bottom:512.680800px;}
.y47{bottom:512.698800px;}
.yc{bottom:534.400800px;}
.y2f{bottom:534.436800px;}
.yb{bottom:556.156800px;}
.y2e{bottom:556.192800px;}
.ya{bottom:577.912800px;}
.y6a{bottom:577.924500px;}
.y2d{bottom:577.948800px;}
.y59{bottom:579.162150px;}
.y69{bottom:594.129000px;}
.y9{bottom:599.668800px;}
.y68{bottom:610.333500px;}
.y8{bottom:621.424800px;}
.y2c{bottom:621.448800px;}
.y67{bottom:626.538000px;}
.y7{bottom:643.180800px;}
.y66{bottom:658.935300px;}
.y6{bottom:664.936800px;}
.y65{bottom:675.139800px;}
.y75{bottom:676.951350px;}
.y2b{bottom:686.626800px;}
.y5{bottom:686.692800px;}
.y46{bottom:688.247400px;}
.y64{bottom:691.344300px;}
.y74{bottom:693.447150px;}
.y45{bottom:704.451900px;}
.y63{bottom:707.548800px;}
.y2a{bottom:708.382800px;}
.y4{bottom:708.448800px;}
.y73{bottom:709.942950px;}
.y72{bottom:709.947150px;}
.y71{bottom:722.646750px;}
.y29{bottom:730.138800px;}
.y28{bottom:751.894800px;}
.y27{bottom:773.650800px;}
.y26{bottom:795.406800px;}
.y25{bottom:817.162800px;}
.y70{bottom:829.694850px;}
.y6f{bottom:829.707150px;}
.y24{bottom:838.918800px;}
.y6e{bottom:850.455150px;}
.y23{bottom:860.674800px;}
.y3{bottom:860.698800px;}
.y6d{bottom:866.950950px;}
.y22{bottom:882.430800px;}
.y6c{bottom:883.446750px;}
.y21{bottom:904.186800px;}
.y6b{bottom:904.198800px;}
.y20{bottom:925.942800px;}
.y2{bottom:947.698800px;}
.ha{height:33.014400px;}
.h7{height:34.351200px;}
.h2{height:37.392000px;}
.h8{height:38.376000px;}
.h9{height:44.040000px;}
.h3{height:47.718000px;}
.h5{height:49.921200px;}
.hb{height:52.576800px;}
.h6{height:58.644000px;}
.h4{height:86.880000px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.x9{left:125.304750px;}
.x3{left:131.815560px;}
.x2{left:144.567000px;}
.xb{left:148.501950px;}
.x5{left:198.557400px;}
.xc{left:287.785650px;}
.x6{left:406.810500px;}
.x7{left:412.440900px;}
.x8{left:427.194450px;}
.xd{left:521.675100px;}
.xa{left:654.743700px;}
.x4{left:673.656300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.497600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.173333pt;}
.ls1{letter-spacing:1086.164800pt;}
.ls0{letter-spacing:2034.417067pt;}
.ws41{word-spacing:-15.470933pt;}
.ws19{word-spacing:-14.400000pt;}
.ws5b{word-spacing:-10.666667pt;}
.ws34{word-spacing:-8.320000pt;}
.ws0{word-spacing:-8.106667pt;}
.ws18{word-spacing:-3.658667pt;}
.ws20{word-spacing:-2.926933pt;}
.ws43{word-spacing:-2.822400pt;}
.wsd{word-spacing:-2.770133pt;}
.ws4a{word-spacing:-2.665600pt;}
.ws32{word-spacing:-2.561067pt;}
.ws45{word-spacing:-2.299733pt;}
.ws53{word-spacing:-2.247467pt;}
.wsb{word-spacing:-2.090667pt;}
.ws54{word-spacing:-2.038400pt;}
.ws51{word-spacing:-1.986133pt;}
.ws8{word-spacing:-1.933867pt;}
.ws28{word-spacing:-1.777067pt;}
.ws2a{word-spacing:-1.724800pt;}
.ws4c{word-spacing:-1.672533pt;}
.ws2f{word-spacing:-1.620267pt;}
.ws30{word-spacing:-1.568000pt;}
.ws38{word-spacing:-0.993067pt;}
.ws2c{word-spacing:-0.940800pt;}
.wsf{word-spacing:-0.888533pt;}
.ws23{word-spacing:-0.784000pt;}
.ws9{word-spacing:-0.731733pt;}
.ws13{word-spacing:-0.574933pt;}
.ws2e{word-spacing:-0.418133pt;}
.ws3{word-spacing:-0.365867pt;}
.ws5c{word-spacing:-0.324267pt;}
.wsc{word-spacing:-0.313600pt;}
.ws1{word-spacing:0.000000pt;}
.ws39{word-spacing:0.156800pt;}
.ws47{word-spacing:0.261333pt;}
.ws2d{word-spacing:0.522667pt;}
.ws40{word-spacing:0.665600pt;}
.ws3e{word-spacing:0.731733pt;}
.ws3d{word-spacing:0.993067pt;}
.ws6{word-spacing:1.045333pt;}
.ws44{word-spacing:1.097600pt;}
.ws4d{word-spacing:1.149867pt;}
.ws1e{word-spacing:1.202133pt;}
.ws56{word-spacing:1.248000pt;}
.ws3c{word-spacing:1.358933pt;}
.ws4f{word-spacing:1.411200pt;}
.ws33{word-spacing:1.463467pt;}
.ws49{word-spacing:1.515733pt;}
.ws48{word-spacing:1.620267pt;}
.ws1d{word-spacing:1.777067pt;}
.ws22{word-spacing:1.829333pt;}
.ws42{word-spacing:1.933867pt;}
.ws10{word-spacing:2.038400pt;}
.ws31{word-spacing:2.142933pt;}
.ws4{word-spacing:2.299733pt;}
.ws59{word-spacing:2.371200pt;}
.ws25{word-spacing:2.508800pt;}
.ws2{word-spacing:2.561067pt;}
.ws24{word-spacing:2.613333pt;}
.ws12{word-spacing:2.717867pt;}
.ws5d{word-spacing:2.877867pt;}
.ws29{word-spacing:2.979200pt;}
.ws50{word-spacing:3.292800pt;}
.ws14{word-spacing:3.345067pt;}
.wse{word-spacing:3.501867pt;}
.ws5f{word-spacing:3.526400pt;}
.ws37{word-spacing:3.554133pt;}
.ws27{word-spacing:3.658667pt;}
.ws5{word-spacing:3.763200pt;}
.ws52{word-spacing:3.920000pt;}
.ws3f{word-spacing:3.972267pt;}
.ws4e{word-spacing:4.076800pt;}
.ws21{word-spacing:4.285867pt;}
.ws16{word-spacing:4.547200pt;}
.ws7{word-spacing:4.860800pt;}
.ws4b{word-spacing:5.017600pt;}
.ws15{word-spacing:5.122133pt;}
.ws35{word-spacing:5.749333pt;}
.ws3b{word-spacing:6.010667pt;}
.ws17{word-spacing:6.167467pt;}
.ws46{word-spacing:6.272000pt;}
.ws1f{word-spacing:6.376533pt;}
.ws1b{word-spacing:6.481067pt;}
.ws1c{word-spacing:6.533333pt;}
.ws5e{word-spacing:6.647467pt;}
.ws3a{word-spacing:7.056000pt;}
.ws2b{word-spacing:7.160533pt;}
.ws55{word-spacing:7.280000pt;}
.ws26{word-spacing:7.474133pt;}
.ws57{word-spacing:7.529600pt;}
.ws11{word-spacing:7.578667pt;}
.ws5a{word-spacing:8.361600pt;}
.ws36{word-spacing:8.519467pt;}
.wsa{word-spacing:8.571733pt;}
.ws58{word-spacing:11.065600pt;}
.ws1a{word-spacing:1429.448533pt;}
._7{margin-left:-1429.433600pt;}
._8{margin-left:-6.742400pt;}
._4{margin-left:-5.638400pt;}
._9{margin-left:-4.309120pt;}
._6{margin-left:-3.199787pt;}
._5{margin-left:-2.072960pt;}
._1{margin-left:-0.954667pt;}
._0{width:1.584000pt;}
._2{width:3.296000pt;}
._3{width:8.101333pt;}
._a{width:964.837333pt;}
.fs8{font-size:23.630933pt;}
.fs4{font-size:39.466667pt;}
.fs0{font-size:40.533333pt;}
.fs6{font-size:41.600000pt;}
.fs3{font-size:52.266667pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:72.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:69.065600pt;}
.y1e{bottom:126.926933pt;}
.y41{bottom:126.958933pt;}
.y58{bottom:126.974933pt;}
.y44{bottom:127.060267pt;}
.y1f{bottom:127.065600pt;}
.y1d{bottom:146.265600pt;}
.y40{bottom:146.297600pt;}
.y57{bottom:146.313600pt;}
.y43{bottom:146.398933pt;}
.y1c{bottom:165.604267pt;}
.y3f{bottom:165.636267pt;}
.y56{bottom:165.652267pt;}
.y1b{bottom:184.942933pt;}
.y3e{bottom:184.974933pt;}
.y55{bottom:184.990933pt;}
.y62{bottom:185.049600pt;}
.y42{bottom:185.065600pt;}
.y1a{bottom:204.281600pt;}
.y3d{bottom:204.313600pt;}
.y54{bottom:204.329600pt;}
.y61{bottom:204.388267pt;}
.y19{bottom:223.620267pt;}
.y3c{bottom:223.652267pt;}
.y53{bottom:223.668267pt;}
.y60{bottom:223.726933pt;}
.y18{bottom:242.958933pt;}
.y3b{bottom:242.990933pt;}
.y52{bottom:243.006933pt;}
.y5f{bottom:243.065600pt;}
.y17{bottom:262.297600pt;}
.y3a{bottom:262.329600pt;}
.y51{bottom:262.345600pt;}
.y5e{bottom:262.398933pt;}
.y16{bottom:281.636267pt;}
.y39{bottom:281.668267pt;}
.y50{bottom:281.684267pt;}
.y15{bottom:300.974933pt;}
.y38{bottom:301.006933pt;}
.y4f{bottom:301.022933pt;}
.y5d{bottom:301.049600pt;}
.y14{bottom:320.313600pt;}
.y37{bottom:320.345600pt;}
.y4e{bottom:320.361600pt;}
.y5c{bottom:320.388267pt;}
.y13{bottom:339.652267pt;}
.y36{bottom:339.684267pt;}
.y4d{bottom:339.700267pt;}
.y5b{bottom:339.726933pt;}
.y12{bottom:358.990933pt;}
.y35{bottom:359.022933pt;}
.y4c{bottom:359.038933pt;}
.y5a{bottom:359.065600pt;}
.y11{bottom:378.329600pt;}
.y34{bottom:378.361600pt;}
.y4b{bottom:378.377600pt;}
.y10{bottom:397.668267pt;}
.y33{bottom:397.700267pt;}
.y4a{bottom:397.716267pt;}
.yf{bottom:417.006933pt;}
.y32{bottom:417.038933pt;}
.y49{bottom:417.054933pt;}
.ye{bottom:436.345600pt;}
.y31{bottom:436.377600pt;}
.y48{bottom:436.393600pt;}
.yd{bottom:455.684267pt;}
.y30{bottom:455.716267pt;}
.y47{bottom:455.732267pt;}
.yc{bottom:475.022933pt;}
.y2f{bottom:475.054933pt;}
.yb{bottom:494.361600pt;}
.y2e{bottom:494.393600pt;}
.ya{bottom:513.700267pt;}
.y6a{bottom:513.710667pt;}
.y2d{bottom:513.732267pt;}
.y59{bottom:514.810800pt;}
.y69{bottom:528.114667pt;}
.y9{bottom:533.038933pt;}
.y68{bottom:542.518667pt;}
.y8{bottom:552.377600pt;}
.y2c{bottom:552.398933pt;}
.y67{bottom:556.922667pt;}
.y7{bottom:571.716267pt;}
.y66{bottom:585.720267pt;}
.y6{bottom:591.054933pt;}
.y65{bottom:600.124267pt;}
.y75{bottom:601.734533pt;}
.y2b{bottom:610.334933pt;}
.y5{bottom:610.393600pt;}
.y46{bottom:611.775467pt;}
.y64{bottom:614.528267pt;}
.y74{bottom:616.397467pt;}
.y45{bottom:626.179467pt;}
.y63{bottom:628.932267pt;}
.y2a{bottom:629.673600pt;}
.y4{bottom:629.732267pt;}
.y73{bottom:631.060400pt;}
.y72{bottom:631.064133pt;}
.y71{bottom:642.352667pt;}
.y29{bottom:649.012267pt;}
.y28{bottom:668.350933pt;}
.y27{bottom:687.689600pt;}
.y26{bottom:707.028267pt;}
.y25{bottom:726.366933pt;}
.y70{bottom:737.506533pt;}
.y6f{bottom:737.517467pt;}
.y24{bottom:745.705600pt;}
.y6e{bottom:755.960133pt;}
.y23{bottom:765.044267pt;}
.y3{bottom:765.065600pt;}
.y6d{bottom:770.623067pt;}
.y22{bottom:784.382933pt;}
.y6c{bottom:785.286000pt;}
.y21{bottom:803.721600pt;}
.y6b{bottom:803.732267pt;}
.y20{bottom:823.060267pt;}
.y2{bottom:842.398933pt;}
.ha{height:29.346133pt;}
.h7{height:30.534400pt;}
.h2{height:33.237333pt;}
.h8{height:34.112000pt;}
.h9{height:39.146667pt;}
.h3{height:42.416000pt;}
.h5{height:44.374400pt;}
.hb{height:46.734933pt;}
.h6{height:52.128000pt;}
.h4{height:77.226667pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.x9{left:111.382000pt;}
.x3{left:117.169387pt;}
.x2{left:128.504000pt;}
.xb{left:132.001733pt;}
.x5{left:176.495467pt;}
.xc{left:255.809467pt;}
.x6{left:361.609333pt;}
.x7{left:366.614133pt;}
.x8{left:379.728400pt;}
.xd{left:463.711200pt;}
.xa{left:581.994400pt;}
.x4{left:598.805600pt;}
}




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