
    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_e6f3ffdb7f58b905e62bb3ef.woff')format("woff");}.ff1{font-family:ff1;line-height:1.175781;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_e3efb6a06f5186059be37bae.woff')format("woff");}.ff2{font-family:ff2;line-height:1.067000;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_00461377530e536308b019a7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.981000;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_81e4b8a268f0aa5454f476be.woff')format("woff");}.ff4{font-family:ff4;line-height:1.068511;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_427eef36b241d4edf49bec7f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_37f4429465146d855aaeb505.woff')format("woff");}.ff6{font-family:ff6;line-height:1.068511;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_d01c17681e304b526e7181e6.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f59a75c14a7830d091f64b79.woff')format("woff");}.ff8{font-family:ff8;line-height:1.063511;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_8136556ff06703bfa3dd9759.woff')format("woff");}.ff9{font-family:ff9;line-height:0.962402;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_d0ce8b2d679ab6b78778276e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.063511;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_f39df78240ac955980e6c040.woff')format("woff");}.ffb{font-family:ffb;line-height:0.738000;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:-36.000000px;}
.v3{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.ls21{letter-spacing:-2.088000px;}
.lse{letter-spacing:-1.998000px;}
.ls22{letter-spacing:-1.104000px;}
.ls23{letter-spacing:-1.056000px;}
.ls4{letter-spacing:-0.654000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.082200px;}
.ls0{letter-spacing:0.883650px;}
.ls5{letter-spacing:1.740000px;}
.ls2{letter-spacing:17.598000px;}
.ls1{letter-spacing:17.882700px;}
.ls16{letter-spacing:19.574700px;}
.ls14{letter-spacing:19.865550px;}
.ls15{letter-spacing:19.882650px;}
.ls20{letter-spacing:22.681800px;}
.ls12{letter-spacing:23.411550px;}
.ls13{letter-spacing:23.620650px;}
.ls11{letter-spacing:89.186400px;}
.ls1e{letter-spacing:133.942500px;}
.ls1d{letter-spacing:133.972500px;}
.lsc{letter-spacing:134.002500px;}
.lsb{letter-spacing:134.872500px;}
.ls8{letter-spacing:134.902500px;}
.ls9{letter-spacing:134.925000px;}
.ls7{letter-spacing:134.955000px;}
.ls1a{letter-spacing:135.502500px;}
.ls1c{letter-spacing:136.372500px;}
.lsd{letter-spacing:136.402500px;}
.ls1b{letter-spacing:136.522500px;}
.ls19{letter-spacing:137.902500px;}
.ls18{letter-spacing:137.955000px;}
.ls6{letter-spacing:138.472500px;}
.lsf{letter-spacing:138.525000px;}
.ls17{letter-spacing:139.972500px;}
.ls1f{letter-spacing:142.972500px;}
.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;}
}
.ws2{word-spacing:-35.695200px;}
.ws3{word-spacing:-24.360000px;}
.ws5{word-spacing:-24.330000px;}
.wsa{word-spacing:-23.629200px;}
.ws18{word-spacing:-23.600100px;}
.ws17{word-spacing:-18.930000px;}
.ws1a{word-spacing:-17.130000px;}
.ws0{word-spacing:-16.230000px;}
.ws16{word-spacing:-3.029250px;}
.wsc{word-spacing:-2.908200px;}
.ws9{word-spacing:-2.076000px;}
.ws4{word-spacing:-1.424700px;}
.wsd{word-spacing:-0.818400px;}
.ws6{word-spacing:-0.799800px;}
.ws19{word-spacing:-0.463800px;}
.ws12{word-spacing:-0.210000px;}
.ws7{word-spacing:-0.049650px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:0.349200px;}
.ws8{word-spacing:0.369150px;}
.ws15{word-spacing:0.865200px;}
.ws10{word-spacing:20.329200px;}
.wse{word-spacing:20.470200px;}
.ws13{word-spacing:20.532000px;}
.wsf{word-spacing:21.377400px;}
.ws11{word-spacing:63.262200px;}
.ws14{word-spacing:64.822200px;}
._e{margin-left:-2945.461350px;}
._6{margin-left:-5.102550px;}
._4{margin-left:-3.822300px;}
._1{margin-left:-1.911600px;}
._2{width:1.433700px;}
._0{width:2.628450px;}
._3{width:3.823200px;}
._d{width:4.885650px;}
._5{width:15.209100px;}
._7{width:20.235600px;}
._f{width:22.905000px;}
._b{width:25.731450px;}
._10{width:37.206300px;}
._8{width:46.660650px;}
._9{width:48.237900px;}
._c{width:87.720150px;}
._a{width:89.368200px;}
.fc4{color:rgb(255,0,0);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(0,176,80);}
.fc3{color:rgb(61,61,61);}
.fc2{color:rgb(73,73,73);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fsb{font-size:49.650000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:54.150000px;}
.fsc{font-size:63.150000px;}
.fs9{font-size:67.500000px;}
.fs8{font-size:67.650000px;}
.fs6{font-size:72.150000px;}
.fs2{font-size:81.150000px;}
.fs4{font-size:85.650000px;}
.fsd{font-size:94.650000px;}
.fse{font-size:108.150000px;}
.fsa{font-size:121.650000px;}
.fs1{font-size:121.800000px;}
.fs7{font-size:166.800000px;}
.fsf{font-size:193.800000px;}
.fs0{font-size:238.950000px;}
.y0{bottom:0.000000px;}
.y42{bottom:40.575000px;}
.y9{bottom:41.362500px;}
.y21{bottom:47.062500px;}
.y37{bottom:57.187500px;}
.y51{bottom:65.100000px;}
.y1c{bottom:68.287500px;}
.y4c{bottom:69.712500px;}
.y50{bottom:70.500000px;}
.y20{bottom:76.387500px;}
.y10{bottom:92.137500px;}
.y36{bottom:93.225000px;}
.y1b{bottom:104.362500px;}
.y1f{bottom:105.675000px;}
.y4b{bottom:105.787500px;}
.y4f{bottom:106.575000px;}
.y41{bottom:112.687500px;}
.yf{bottom:128.212500px;}
.y35{bottom:129.300000px;}
.y2a{bottom:129.337500px;}
.y8{bottom:136.987500px;}
.y56{bottom:137.812500px;}
.y1a{bottom:140.437500px;}
.y23{bottom:141.225000px;}
.y4e{bottom:142.650000px;}
.y40{bottom:148.762500px;}
.y7{bottom:162.930000px;}
.y14{bottom:164.280000px;}
.y34{bottom:165.375000px;}
.y29{bottom:165.405000px;}
.y55{bottom:165.975000px;}
.y4a{bottom:177.900000px;}
.y4d{bottom:178.725000px;}
.y3f{bottom:184.845000px;}
.y6{bottom:187.725000px;}
.y54{bottom:195.300000px;}
.ye{bottom:200.370000px;}
.y33{bottom:201.450000px;}
.y28{bottom:201.480000px;}
.y5{bottom:212.505000px;}
.y19{bottom:212.595000px;}
.y49{bottom:213.975000px;}
.y3e{bottom:220.905000px;}
.y12{bottom:236.445000px;}
.y32{bottom:237.495000px;}
.y27{bottom:237.525000px;}
.y18{bottom:248.625000px;}
.y48{bottom:250.050000px;}
.y3d{bottom:256.995000px;}
.y4{bottom:268.875000px;}
.yd{bottom:272.475000px;}
.y31{bottom:273.570000px;}
.y2b{bottom:273.600000px;}
.y47{bottom:286.095000px;}
.y3c{bottom:293.025000px;}
.y3{bottom:304.950000px;}
.y11{bottom:308.550000px;}
.y13{bottom:309.450000px;}
.y30{bottom:309.645000px;}
.y26{bottom:309.675000px;}
.y53{bottom:311.370000px;}
.y17{bottom:320.775000px;}
.y3b{bottom:329.100000px;}
.yc{bottom:344.625000px;}
.y2f{bottom:345.720000px;}
.y22{bottom:345.750000px;}
.y16{bottom:356.850000px;}
.y46{bottom:358.245000px;}
.y3a{bottom:365.175000px;}
.y1e{bottom:380.700000px;}
.y25{bottom:381.780000px;}
.y45{bottom:394.320000px;}
.y2{bottom:395.820000px;}
.y39{bottom:401.250000px;}
.y52{bottom:403.800000px;}
.y1d{bottom:416.745000px;}
.y2e{bottom:417.825000px;}
.y24{bottom:417.870000px;}
.yb{bottom:417.900000px;}
.y15{bottom:428.970000px;}
.y44{bottom:430.380000px;}
.y38{bottom:437.325000px;}
.y2d{bottom:453.900000px;}
.y43{bottom:466.425000px;}
.y1{bottom:467.925000px;}
.y2c{bottom:489.975000px;}
.ya{bottom:515.880000px;}
.ha{height:36.146558px;}
.h4{height:47.078550px;}
.h5{height:47.138550px;}
.h3{height:47.258550px;}
.hd{height:54.911550px;}
.hc{height:55.061550px;}
.h6{height:62.554050px;}
.h10{height:74.258550px;}
.he{height:81.323730px;}
.h12{height:82.061550px;}
.hf{height:88.804500px;}
.h9{height:105.470550px;}
.h8{height:105.600600px;}
.h2{height:106.357050px;}
.hb{height:106.477050px;}
.h7{height:159.877148px;}
.h11{height:185.756543px;}
.h1{height:229.032642px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x23{left:41.924984px;}
.x26{left:44.174984px;}
.x1d{left:71.924984px;}
.x28{left:84.187484px;}
.x24{left:86.587484px;}
.x27{left:92.212484px;}
.xb{left:106.499984px;}
.xe{left:109.499984px;}
.x1e{left:117.112484px;}
.x30{left:121.349984px;}
.x25{left:126.599984px;}
.x29{left:131.624984px;}
.x15{left:147.037484px;}
.x3{left:148.087484px;}
.xc{left:150.929984px;}
.x1f{left:156.749984px;}
.x20{left:158.999984px;}
.x4{left:180.374984px;}
.xf{left:190.574984px;}
.x13{left:192.824984px;}
.x21{left:199.049984px;}
.x1b{left:232.994984px;}
.x1{left:269.504984px;}
.x2{left:292.619984px;}
.x8{left:349.649984px;}
.x9{left:359.444984px;}
.x18{left:396.194984px;}
.x2f{left:400.379984px;}
.x5{left:410.549984px;}
.x10{left:412.724984px;}
.x2e{left:415.004984px;}
.x1c{left:421.904984px;}
.x6{left:428.774984px;}
.x7{left:459.449984px;}
.x22{left:461.504984px;}
.x2b{left:487.424984px;}
.x2c{left:586.154984px;}
.xd{left:606.944984px;}
.x19{left:619.604984px;}
.x1a{left:657.299984px;}
.x2a{left:677.354984px;}
.x16{left:705.149984px;}
.x14{left:769.919984px;}
.x17{left:776.099984px;}
.xa{left:790.694984px;}
.x2d{left:802.004984px;}
.x12{left:820.754984px;}
.x11{left:851.204984px;}
@media print{
.v2{vertical-align:-32.000000pt;}
.v3{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls21{letter-spacing:-1.856000pt;}
.lse{letter-spacing:-1.776000pt;}
.ls22{letter-spacing:-0.981333pt;}
.ls23{letter-spacing:-0.938667pt;}
.ls4{letter-spacing:-0.581333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.073067pt;}
.ls0{letter-spacing:0.785467pt;}
.ls5{letter-spacing:1.546667pt;}
.ls2{letter-spacing:15.642667pt;}
.ls1{letter-spacing:15.895733pt;}
.ls16{letter-spacing:17.399733pt;}
.ls14{letter-spacing:17.658267pt;}
.ls15{letter-spacing:17.673467pt;}
.ls20{letter-spacing:20.161600pt;}
.ls12{letter-spacing:20.810267pt;}
.ls13{letter-spacing:20.996133pt;}
.ls11{letter-spacing:79.276800pt;}
.ls1e{letter-spacing:119.060000pt;}
.ls1d{letter-spacing:119.086667pt;}
.lsc{letter-spacing:119.113333pt;}
.lsb{letter-spacing:119.886667pt;}
.ls8{letter-spacing:119.913333pt;}
.ls9{letter-spacing:119.933333pt;}
.ls7{letter-spacing:119.960000pt;}
.ls1a{letter-spacing:120.446667pt;}
.ls1c{letter-spacing:121.220000pt;}
.lsd{letter-spacing:121.246667pt;}
.ls1b{letter-spacing:121.353333pt;}
.ls19{letter-spacing:122.580000pt;}
.ls18{letter-spacing:122.626667pt;}
.ls6{letter-spacing:123.086667pt;}
.lsf{letter-spacing:123.133333pt;}
.ls17{letter-spacing:124.420000pt;}
.ls1f{letter-spacing:127.086667pt;}
.ws2{word-spacing:-31.729067pt;}
.ws3{word-spacing:-21.653333pt;}
.ws5{word-spacing:-21.626667pt;}
.wsa{word-spacing:-21.003733pt;}
.ws18{word-spacing:-20.977867pt;}
.ws17{word-spacing:-16.826667pt;}
.ws1a{word-spacing:-15.226667pt;}
.ws0{word-spacing:-14.426667pt;}
.ws16{word-spacing:-2.692667pt;}
.wsc{word-spacing:-2.585067pt;}
.ws9{word-spacing:-1.845333pt;}
.ws4{word-spacing:-1.266400pt;}
.wsd{word-spacing:-0.727467pt;}
.ws6{word-spacing:-0.710933pt;}
.ws19{word-spacing:-0.412267pt;}
.ws12{word-spacing:-0.186667pt;}
.ws7{word-spacing:-0.044133pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:0.310400pt;}
.ws8{word-spacing:0.328133pt;}
.ws15{word-spacing:0.769067pt;}
.ws10{word-spacing:18.070400pt;}
.wse{word-spacing:18.195733pt;}
.ws13{word-spacing:18.250667pt;}
.wsf{word-spacing:19.002133pt;}
.ws11{word-spacing:56.233067pt;}
.ws14{word-spacing:57.619733pt;}
._e{margin-left:-2618.187867pt;}
._6{margin-left:-4.535600pt;}
._4{margin-left:-3.397600pt;}
._1{margin-left:-1.699200pt;}
._2{width:1.274400pt;}
._0{width:2.336400pt;}
._3{width:3.398400pt;}
._d{width:4.342800pt;}
._5{width:13.519200pt;}
._7{width:17.987200pt;}
._f{width:20.360000pt;}
._b{width:22.872400pt;}
._10{width:33.072267pt;}
._8{width:41.476133pt;}
._9{width:42.878133pt;}
._c{width:77.973467pt;}
._a{width:79.438400pt;}
.fsb{font-size:44.133333pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:48.133333pt;}
.fsc{font-size:56.133333pt;}
.fs9{font-size:60.000000pt;}
.fs8{font-size:60.133333pt;}
.fs6{font-size:64.133333pt;}
.fs2{font-size:72.133333pt;}
.fs4{font-size:76.133333pt;}
.fsd{font-size:84.133333pt;}
.fse{font-size:96.133333pt;}
.fsa{font-size:108.133333pt;}
.fs1{font-size:108.266667pt;}
.fs7{font-size:148.266667pt;}
.fsf{font-size:172.266667pt;}
.fs0{font-size:212.400000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:36.066667pt;}
.y9{bottom:36.766667pt;}
.y21{bottom:41.833333pt;}
.y37{bottom:50.833333pt;}
.y51{bottom:57.866667pt;}
.y1c{bottom:60.700000pt;}
.y4c{bottom:61.966667pt;}
.y50{bottom:62.666667pt;}
.y20{bottom:67.900000pt;}
.y10{bottom:81.900000pt;}
.y36{bottom:82.866667pt;}
.y1b{bottom:92.766667pt;}
.y1f{bottom:93.933333pt;}
.y4b{bottom:94.033333pt;}
.y4f{bottom:94.733333pt;}
.y41{bottom:100.166667pt;}
.yf{bottom:113.966667pt;}
.y35{bottom:114.933333pt;}
.y2a{bottom:114.966667pt;}
.y8{bottom:121.766667pt;}
.y56{bottom:122.500000pt;}
.y1a{bottom:124.833333pt;}
.y23{bottom:125.533333pt;}
.y4e{bottom:126.800000pt;}
.y40{bottom:132.233333pt;}
.y7{bottom:144.826667pt;}
.y14{bottom:146.026667pt;}
.y34{bottom:147.000000pt;}
.y29{bottom:147.026667pt;}
.y55{bottom:147.533333pt;}
.y4a{bottom:158.133333pt;}
.y4d{bottom:158.866667pt;}
.y3f{bottom:164.306667pt;}
.y6{bottom:166.866667pt;}
.y54{bottom:173.600000pt;}
.ye{bottom:178.106667pt;}
.y33{bottom:179.066667pt;}
.y28{bottom:179.093333pt;}
.y5{bottom:188.893333pt;}
.y19{bottom:188.973333pt;}
.y49{bottom:190.200000pt;}
.y3e{bottom:196.360000pt;}
.y12{bottom:210.173333pt;}
.y32{bottom:211.106667pt;}
.y27{bottom:211.133333pt;}
.y18{bottom:221.000000pt;}
.y48{bottom:222.266667pt;}
.y3d{bottom:228.440000pt;}
.y4{bottom:239.000000pt;}
.yd{bottom:242.200000pt;}
.y31{bottom:243.173333pt;}
.y2b{bottom:243.200000pt;}
.y47{bottom:254.306667pt;}
.y3c{bottom:260.466667pt;}
.y3{bottom:271.066667pt;}
.y11{bottom:274.266667pt;}
.y13{bottom:275.066667pt;}
.y30{bottom:275.240000pt;}
.y26{bottom:275.266667pt;}
.y53{bottom:276.773333pt;}
.y17{bottom:285.133333pt;}
.y3b{bottom:292.533333pt;}
.yc{bottom:306.333333pt;}
.y2f{bottom:307.306667pt;}
.y22{bottom:307.333333pt;}
.y16{bottom:317.200000pt;}
.y46{bottom:318.440000pt;}
.y3a{bottom:324.600000pt;}
.y1e{bottom:338.400000pt;}
.y25{bottom:339.360000pt;}
.y45{bottom:350.506667pt;}
.y2{bottom:351.840000pt;}
.y39{bottom:356.666667pt;}
.y52{bottom:358.933333pt;}
.y1d{bottom:370.440000pt;}
.y2e{bottom:371.400000pt;}
.y24{bottom:371.440000pt;}
.yb{bottom:371.466667pt;}
.y15{bottom:381.306667pt;}
.y44{bottom:382.560000pt;}
.y38{bottom:388.733333pt;}
.y2d{bottom:403.466667pt;}
.y43{bottom:414.600000pt;}
.y1{bottom:415.933333pt;}
.y2c{bottom:435.533333pt;}
.ya{bottom:458.560000pt;}
.ha{height:32.130273pt;}
.h4{height:41.847600pt;}
.h5{height:41.900933pt;}
.h3{height:42.007600pt;}
.hd{height:48.810267pt;}
.hc{height:48.943600pt;}
.h6{height:55.603600pt;}
.h10{height:66.007600pt;}
.he{height:72.287760pt;}
.h12{height:72.943600pt;}
.hf{height:78.937333pt;}
.h9{height:93.751600pt;}
.h8{height:93.867200pt;}
.h2{height:94.539600pt;}
.hb{height:94.646267pt;}
.h7{height:142.113021pt;}
.h11{height:165.116927pt;}
.h1{height:203.584570pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x23{left:37.266652pt;}
.x26{left:39.266652pt;}
.x1d{left:63.933319pt;}
.x28{left:74.833319pt;}
.x24{left:76.966652pt;}
.x27{left:81.966652pt;}
.xb{left:94.666652pt;}
.xe{left:97.333319pt;}
.x1e{left:104.099986pt;}
.x30{left:107.866652pt;}
.x25{left:112.533319pt;}
.x29{left:116.999986pt;}
.x15{left:130.699986pt;}
.x3{left:131.633319pt;}
.xc{left:134.159986pt;}
.x1f{left:139.333319pt;}
.x20{left:141.333319pt;}
.x4{left:160.333319pt;}
.xf{left:169.399986pt;}
.x13{left:171.399986pt;}
.x21{left:176.933319pt;}
.x1b{left:207.106652pt;}
.x1{left:239.559986pt;}
.x2{left:260.106652pt;}
.x8{left:310.799986pt;}
.x9{left:319.506652pt;}
.x18{left:352.173319pt;}
.x2f{left:355.893319pt;}
.x5{left:364.933319pt;}
.x10{left:366.866652pt;}
.x2e{left:368.893319pt;}
.x1c{left:375.026652pt;}
.x6{left:381.133319pt;}
.x7{left:408.399986pt;}
.x22{left:410.226652pt;}
.x2b{left:433.266652pt;}
.x2c{left:521.026652pt;}
.xd{left:539.506652pt;}
.x19{left:550.759986pt;}
.x1a{left:584.266652pt;}
.x2a{left:602.093319pt;}
.x16{left:626.799986pt;}
.x14{left:684.373319pt;}
.x17{left:689.866652pt;}
.xa{left:702.839986pt;}
.x2d{left:712.893319pt;}
.x12{left:729.559986pt;}
.x11{left:756.626652pt;}
}




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