
    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_9a12c27be7ae2a58bbe1da9c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_c689e8dc4ec83ec81c674434.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_57b9a8bbdcc0fa587ac8106f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_bda2fb6015b9c2b3fc97c5a8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_89319346c6db3321ec48941d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_27e8970715cc9fc0571e4b62.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934000;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_40232b7dda7d1f5df77e28b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979000;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_ae3c179d7b0f318f330afc31.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722000;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_2cd7c4ae44db2137db2c3d8f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.980000;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_72245554b105f3545c2bb370.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.698000;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_836a53e48e5a806ba2a79bcb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.951000;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);}
.v1{vertical-align:-17.742000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.018000px;}
.lsa{letter-spacing:-0.012600px;}
.lse{letter-spacing:-0.010800px;}
.ls8{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.010800px;}
.ls3{letter-spacing:0.012600px;}
.ls0{letter-spacing:0.018000px;}
.ls4{letter-spacing:4.489200px;}
.ls7{letter-spacing:8.989200px;}
.ls2{letter-spacing:8.989650px;}
.ls1{letter-spacing:13.489425px;}
.ls6{letter-spacing:13.489650px;}
.lsd{letter-spacing:17.991000px;}
.ls5{letter-spacing:22.489425px;}
.lsc{letter-spacing:22.491000px;}
.lsf{letter-spacing:153.300000px;}
.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;}
}
.wsb{word-spacing:-96.744000px;}
.wsa{word-spacing:-60.048000px;}
.ws8{word-spacing:-33.360000px;}
.ws0{word-spacing:-25.038000px;}
.ws1{word-spacing:-25.002000px;}
.ws3{word-spacing:-17.526600px;}
.ws2{word-spacing:-17.501400px;}
.ws5{word-spacing:-15.022800px;}
.ws6{word-spacing:-15.012000px;}
.ws7{word-spacing:-15.001200px;}
.ws9{word-spacing:-0.216000px;}
.ws4{word-spacing:0.000000px;}
._13{margin-left:-23.976000px;}
._14{margin-left:-17.664000px;}
._12{margin-left:-14.145840px;}
._11{margin-left:-11.481732px;}
._15{margin-left:-10.051597px;}
._6{margin-left:-7.863609px;}
._3{margin-left:-6.342543px;}
._4{margin-left:-5.140141px;}
._e{margin-left:-4.012554px;}
._5{margin-left:-2.536668px;}
._2{margin-left:-1.010763px;}
._a{width:4.382081px;}
._9{width:8.834712px;}
._d{width:9.963913px;}
._b{width:13.143424px;}
._c{width:14.292322px;}
._8{width:17.073892px;}
._10{width:18.612000px;}
._7{width:22.334189px;}
._f{width:23.399479px;}
._0{width:138.744000px;}
._1{width:190.980000px;}
.fc9{color:rgb(201,46,155);}
.fc8{color:rgb(51,106,226);}
.fc7{color:rgb(246,242,242);}
.fc4{color:rgb(234,70,38);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(67,67,67);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.999985px;}
.fs5{font-size:63.000000px;}
.fs3{font-size:66.000015px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.000015px;}
.fsb{font-size:86.400000px;}
.fse{font-size:88.560000px;}
.fs1{font-size:90.000000px;}
.fsf{font-size:95.040000px;}
.fsd{font-size:101.520000px;}
.fs12{font-size:111.600000px;}
.fs13{font-size:115.200000px;}
.fsc{font-size:120.000000px;}
.fs0{font-size:120.000015px;}
.fsa{font-size:127.440000px;}
.fs14{font-size:144.000000px;}
.fs10{font-size:162.000000px;}
.fs11{font-size:192.000000px;}
.fs9{font-size:216.000000px;}
.fs8{font-size:348.000000px;}
.y0{bottom:0.000000px;}
.y86{bottom:0.524850px;}
.y8d{bottom:3.524850px;}
.y6f{bottom:16.320000px;}
.y71{bottom:16.320150px;}
.y82{bottom:29.530200px;}
.y8b{bottom:31.743600px;}
.y76{bottom:34.010100px;}
.y8f{bottom:45.593055px;}
.y6d{bottom:49.391205px;}
.y84{bottom:50.399850px;}
.y23{bottom:59.765996px;}
.y90{bottom:61.666065px;}
.y55{bottom:63.106455px;}
.y81{bottom:65.530200px;}
.y73{bottom:70.010100px;}
.y5a{bottom:74.223060px;}
.y79{bottom:77.767950px;}
.y54{bottom:88.606455px;}
.y5e{bottom:91.322820px;}
.y60{bottom:95.621580px;}
.y59{bottom:101.223060px;}
.y75{bottom:106.010100px;}
.y78{bottom:113.767950px;}
.y22{bottom:120.819698px;}
.y5d{bottom:121.322820px;}
.y5f{bottom:125.621580px;}
.y58{bottom:128.223060px;}
.y97{bottom:135.558285px;}
.y4a{bottom:136.014135px;}
.y21{bottom:142.639095px;}
.y5c{bottom:151.322850px;}
.y20{bottom:164.458395px;}
.y49{bottom:175.014150px;}
.y96{bottom:179.058300px;}
.y68{bottom:181.903800px;}
.y77{bottom:183.290100px;}
.y1f{bottom:186.277852px;}
.y57{bottom:197.239500px;}
.y1e{bottom:208.097250px;}
.y48{bottom:214.014150px;}
.y95{bottom:222.558300px;}
.y56{bottom:227.239500px;}
.y1d{bottom:229.916648px;}
.y67{bottom:238.903800px;}
.y51{bottom:251.166600px;}
.y1c{bottom:251.736045px;}
.y47{bottom:253.014150px;}
.y7f{bottom:261.856950px;}
.y1b{bottom:273.555495px;}
.y50{bottom:276.666600px;}
.y83{bottom:278.557500px;}
.y85{bottom:292.432500px;}
.y7e{bottom:297.856950px;}
.y4f{bottom:302.166600px;}
.y1a{bottom:303.104644px;}
.y4e{bottom:327.666600px;}
.y8a{bottom:330.790500px;}
.y7d{bottom:333.856950px;}
.y19{bottom:352.856730px;}
.y44{bottom:361.027526px;}
.y43{bottom:378.879757px;}
.y18{bottom:381.702398px;}
.y69{bottom:384.389850px;}
.y53{bottom:384.542100px;}
.y42{bottom:396.732007px;}
.y66{bottom:411.949350px;}
.y52{bottom:414.542100px;}
.y41{bottom:415.737450px;}
.y7c{bottom:420.304800px;}
.y17{bottom:431.454525px;}
.y4c{bottom:449.661750px;}
.y16{bottom:452.282100px;}
.y40{bottom:453.580095px;}
.y7a{bottom:460.282200px;}
.y15{bottom:473.109675px;}
.y4b{bottom:475.161750px;}
.y3f{bottom:475.399395px;}
.y65{bottom:476.449350px;}
.y94{bottom:487.175850px;}
.y14{bottom:493.937306px;}
.y3e{bottom:497.218845px;}
.y13{bottom:514.764915px;}
.y3d{bottom:519.038295px;}
.y93{bottom:530.675850px;}
.y12{bottom:535.592524px;}
.y3c{bottom:540.857595px;}
.y64{bottom:540.949350px;}
.y11{bottom:556.420133px;}
.y3b{bottom:562.677045px;}
.y92{bottom:574.175850px;}
.y10{bottom:577.247730px;}
.y3a{bottom:584.496495px;}
.y63{bottom:605.449350px;}
.yf{bottom:606.093394px;}
.y39{bottom:606.315795px;}
.y91{bottom:617.675850px;}
.y38{bottom:628.135245px;}
.y37{bottom:649.954695px;}
.ye{bottom:656.133787px;}
.y8c{bottom:662.387550px;}
.y6a{bottom:665.513850px;}
.y62{bottom:669.949350px;}
.y36{bottom:671.773995px;}
.yd{bottom:677.953162px;}
.y74{bottom:692.982150px;}
.y35{bottom:693.593445px;}
.yc{bottom:699.772537px;}
.y34{bottom:715.412895px;}
.yb{bottom:721.591913px;}
.y46{bottom:730.013850px;}
.y61{bottom:734.449350px;}
.y33{bottom:737.232195px;}
.ya{bottom:743.411355px;}
.y32{bottom:759.051645px;}
.y9{bottom:765.230752px;}
.y31{bottom:780.871095px;}
.y8{bottom:787.050150px;}
.y88{bottom:792.531600px;}
.y70{bottom:794.846700px;}
.y30{bottom:802.690395px;}
.y89{bottom:806.406600px;}
.y7{bottom:808.869547px;}
.y2f{bottom:824.509845px;}
.y6{bottom:830.688945px;}
.y2e{bottom:846.329250px;}
.y5{bottom:860.238094px;}
.y2d{bottom:868.148648px;}
.y87{bottom:875.778450px;}
.y2c{bottom:889.968045px;}
.y45{bottom:897.054450px;}
.y4{bottom:910.278397px;}
.y2b{bottom:911.787495px;}
.y3{bottom:932.097795px;}
.y2a{bottom:933.606750px;}
.y29{bottom:955.426147px;}
.y28{bottom:977.245545px;}
.y2{bottom:980.223559px;}
.y27{bottom:999.064995px;}
.y26{bottom:1020.884400px;}
.y1{bottom:1021.860349px;}
.y25{bottom:1042.703798px;}
.y24{bottom:1064.523195px;}
.y72{bottom:1186.248300px;}
.y6e{bottom:1220.455350px;}
.y80{bottom:1276.623900px;}
.y7b{bottom:1292.702850px;}
.y8e{bottom:1433.452500px;}
.y5b{bottom:1490.709450px;}
.y6c{bottom:1490.729400px;}
.y4d{bottom:1528.209000px;}
.y6b{bottom:1528.230000px;}
.h20{height:32.625000px;}
.h9{height:39.366211px;}
.h8{height:43.740223px;}
.h5{height:45.927246px;}
.h6{height:47.244151px;}
.h3{height:48.114269px;}
.h15{height:53.208000px;}
.h17{height:55.380015px;}
.h4{height:60.128917px;}
.h2{height:65.522461px;}
.h1e{height:65.625000px;}
.he{height:67.824000px;}
.h11{height:69.519600px;}
.h12{height:74.606400px;}
.h10{height:79.693200px;}
.h1f{height:84.281295px;}
.h21{height:85.932000px;}
.h1{height:87.480480px;}
.h1d{height:87.937500px;}
.h19{height:88.680000px;}
.h22{height:88.704000px;}
.h16{height:92.400000px;}
.hf{height:94.200000px;}
.hd{height:98.128800px;}
.h7{height:108.000000px;}
.h23{height:110.880000px;}
.h1c{height:116.567970px;}
.h14{height:147.840000px;}
.h13{height:148.578000px;}
.h18{height:163.047750px;}
.hc{height:166.320000px;}
.h1a{height:214.305600px;}
.hb{height:253.692000px;}
.h1b{height:618.894450px;}
.h0{height:1188.000000px;}
.ha{height:1620.000000px;}
.wb{width:158.435700px;}
.w9{width:187.296000px;}
.w8{width:188.233500px;}
.w3{width:278.779950px;}
.w4{width:303.552750px;}
.w7{width:342.973650px;}
.wa{width:488.971350px;}
.w2{width:520.035000px;}
.w0{width:918.000000px;}
.w6{width:1657.470000px;}
.w5{width:1659.345000px;}
.w1{width:2880.000000px;}
.x0{left:0.000000px;}
.x1d{left:8.940000px;}
.x2a{left:25.881300px;}
.x22{left:33.535050px;}
.x34{left:36.707850px;}
.x26{left:46.029900px;}
.x5{left:49.187700px;}
.x31{left:57.321000px;}
.x21{left:61.855050px;}
.x1f{left:69.384900px;}
.x27{left:74.364900px;}
.x28{left:94.659900px;}
.x23{left:98.830050px;}
.x1{left:108.000000px;}
.x2b{left:128.436300px;}
.x3{left:132.000000px;}
.x3b{left:136.132650px;}
.x35{left:141.357495px;}
.x25{left:174.962700px;}
.x32{left:176.956500px;}
.x2{left:196.875000px;}
.x4{left:322.706850px;}
.x20{left:414.510450px;}
.x2c{left:619.375350px;}
.x29{left:687.872550px;}
.x2e{left:728.699700px;}
.x2d{left:742.972200px;}
.x36{left:795.807450px;}
.x1e{left:999.310650px;}
.x33{left:1301.112450px;}
.x3a{left:1446.183600px;}
.x37{left:1451.108550px;}
.x38{left:1469.502600px;}
.x1c{left:1493.625000px;}
.x1b{left:1545.333000px;}
.xe{left:1547.008500px;}
.xf{left:1563.100500px;}
.xd{left:1722.757500px;}
.x9{left:1910.439000px;}
.x18{left:1941.613500px;}
.x14{left:1966.854000px;}
.x10{left:1998.697500px;}
.xa{left:2003.967000px;}
.x30{left:2022.093000px;}
.xb{left:2065.699500px;}
.xc{left:2081.935500px;}
.x6{left:2095.983000px;}
.x2f{left:2150.700000px;}
.x24{left:2153.041500px;}
.x8{left:2193.571500px;}
.x16{left:2221.465500px;}
.x7{left:2241.610500px;}
.x39{left:2295.262500px;}
.x11{left:2309.767500px;}
.x19{left:2323.062000px;}
.x15{left:2354.052000px;}
.x13{left:2408.568000px;}
.x12{left:2414.763000px;}
.x17{left:2441.002500px;}
.x1a{left:2542.548000px;}
@media print{
.v1{vertical-align:-15.770667pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:-0.011200pt;}
.lse{letter-spacing:-0.009600pt;}
.ls8{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.009600pt;}
.ls3{letter-spacing:0.011200pt;}
.ls0{letter-spacing:0.016000pt;}
.ls4{letter-spacing:3.990400pt;}
.ls7{letter-spacing:7.990400pt;}
.ls2{letter-spacing:7.990800pt;}
.ls1{letter-spacing:11.990600pt;}
.ls6{letter-spacing:11.990800pt;}
.lsd{letter-spacing:15.992000pt;}
.ls5{letter-spacing:19.990600pt;}
.lsc{letter-spacing:19.992000pt;}
.lsf{letter-spacing:136.266667pt;}
.wsb{word-spacing:-85.994667pt;}
.wsa{word-spacing:-53.376000pt;}
.ws8{word-spacing:-29.653333pt;}
.ws0{word-spacing:-22.256000pt;}
.ws1{word-spacing:-22.224000pt;}
.ws3{word-spacing:-15.579200pt;}
.ws2{word-spacing:-15.556800pt;}
.ws5{word-spacing:-13.353600pt;}
.ws6{word-spacing:-13.344000pt;}
.ws7{word-spacing:-13.334400pt;}
.ws9{word-spacing:-0.192000pt;}
.ws4{word-spacing:0.000000pt;}
._13{margin-left:-21.312000pt;}
._14{margin-left:-15.701333pt;}
._12{margin-left:-12.574080pt;}
._11{margin-left:-10.205984pt;}
._15{margin-left:-8.934753pt;}
._6{margin-left:-6.989875pt;}
._3{margin-left:-5.637816pt;}
._4{margin-left:-4.569014pt;}
._e{margin-left:-3.566715pt;}
._5{margin-left:-2.254816pt;}
._2{margin-left:-0.898456pt;}
._a{width:3.895183pt;}
._9{width:7.853078pt;}
._d{width:8.856811pt;}
._b{width:11.683044pt;}
._c{width:12.704286pt;}
._8{width:15.176793pt;}
._10{width:16.544000pt;}
._7{width:19.852613pt;}
._f{width:20.799537pt;}
._0{width:123.328000pt;}
._1{width:169.760000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.333320pt;}
.fs5{font-size:56.000000pt;}
.fs3{font-size:58.666680pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.666680pt;}
.fsb{font-size:76.800000pt;}
.fse{font-size:78.720000pt;}
.fs1{font-size:80.000000pt;}
.fsf{font-size:84.480000pt;}
.fsd{font-size:90.240000pt;}
.fs12{font-size:99.200000pt;}
.fs13{font-size:102.400000pt;}
.fsc{font-size:106.666667pt;}
.fs0{font-size:106.666680pt;}
.fsa{font-size:113.280000pt;}
.fs14{font-size:128.000000pt;}
.fs10{font-size:144.000000pt;}
.fs11{font-size:170.666667pt;}
.fs9{font-size:192.000000pt;}
.fs8{font-size:309.333333pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:0.466533pt;}
.y8d{bottom:3.133200pt;}
.y6f{bottom:14.506667pt;}
.y71{bottom:14.506800pt;}
.y82{bottom:26.249067pt;}
.y8b{bottom:28.216533pt;}
.y76{bottom:30.231200pt;}
.y8f{bottom:40.527160pt;}
.y6d{bottom:43.903293pt;}
.y84{bottom:44.799867pt;}
.y23{bottom:53.125330pt;}
.y90{bottom:54.814280pt;}
.y55{bottom:56.094627pt;}
.y81{bottom:58.249067pt;}
.y73{bottom:62.231200pt;}
.y5a{bottom:65.976053pt;}
.y79{bottom:69.127067pt;}
.y54{bottom:78.761293pt;}
.y5e{bottom:81.175840pt;}
.y60{bottom:84.996960pt;}
.y59{bottom:89.976053pt;}
.y75{bottom:94.231200pt;}
.y78{bottom:101.127067pt;}
.y22{bottom:107.395287pt;}
.y5d{bottom:107.842507pt;}
.y5f{bottom:111.663627pt;}
.y58{bottom:113.976053pt;}
.y97{bottom:120.496253pt;}
.y4a{bottom:120.901453pt;}
.y21{bottom:126.790307pt;}
.y5c{bottom:134.509200pt;}
.y20{bottom:146.185240pt;}
.y49{bottom:155.568133pt;}
.y96{bottom:159.162933pt;}
.y68{bottom:161.692267pt;}
.y77{bottom:162.924533pt;}
.y1f{bottom:165.580313pt;}
.y57{bottom:175.324000pt;}
.y1e{bottom:184.975333pt;}
.y48{bottom:190.234800pt;}
.y95{bottom:197.829600pt;}
.y56{bottom:201.990667pt;}
.y1d{bottom:204.370353pt;}
.y67{bottom:212.358933pt;}
.y51{bottom:223.259200pt;}
.y1c{bottom:223.765373pt;}
.y47{bottom:224.901467pt;}
.y7f{bottom:232.761733pt;}
.y1b{bottom:243.160440pt;}
.y50{bottom:245.925867pt;}
.y83{bottom:247.606667pt;}
.y85{bottom:259.940000pt;}
.y7e{bottom:264.761733pt;}
.y4f{bottom:268.592533pt;}
.y1a{bottom:269.426350pt;}
.y4e{bottom:291.259200pt;}
.y8a{bottom:294.036000pt;}
.y7d{bottom:296.761733pt;}
.y19{bottom:313.650427pt;}
.y44{bottom:320.913357pt;}
.y43{bottom:336.782007pt;}
.y18{bottom:339.291020pt;}
.y69{bottom:341.679867pt;}
.y53{bottom:341.815200pt;}
.y42{bottom:352.650673pt;}
.y66{bottom:366.177200pt;}
.y52{bottom:368.481867pt;}
.y41{bottom:369.544400pt;}
.y7c{bottom:373.604267pt;}
.y17{bottom:383.515133pt;}
.y4c{bottom:399.699333pt;}
.y16{bottom:402.028533pt;}
.y40{bottom:403.182307pt;}
.y7a{bottom:409.139733pt;}
.y15{bottom:420.541933pt;}
.y4b{bottom:422.366000pt;}
.y3f{bottom:422.577240pt;}
.y65{bottom:423.510533pt;}
.y94{bottom:433.045200pt;}
.y14{bottom:439.055383pt;}
.y3e{bottom:441.972307pt;}
.y13{bottom:457.568813pt;}
.y3d{bottom:461.367373pt;}
.y93{bottom:471.711867pt;}
.y12{bottom:476.082243pt;}
.y3c{bottom:480.762307pt;}
.y64{bottom:480.843867pt;}
.y11{bottom:494.595673pt;}
.y3b{bottom:500.157373pt;}
.y92{bottom:510.378533pt;}
.y10{bottom:513.109093pt;}
.y3a{bottom:519.552440pt;}
.y63{bottom:538.177200pt;}
.yf{bottom:538.749683pt;}
.y39{bottom:538.947373pt;}
.y91{bottom:549.045200pt;}
.y38{bottom:558.342440pt;}
.y37{bottom:577.737507pt;}
.ye{bottom:583.230033pt;}
.y8c{bottom:588.788933pt;}
.y6a{bottom:591.567867pt;}
.y62{bottom:595.510533pt;}
.y36{bottom:597.132440pt;}
.yd{bottom:602.625033pt;}
.y74{bottom:615.984133pt;}
.y35{bottom:616.527507pt;}
.yc{bottom:622.020033pt;}
.y34{bottom:635.922573pt;}
.yb{bottom:641.415033pt;}
.y46{bottom:648.901200pt;}
.y61{bottom:652.843867pt;}
.y33{bottom:655.317507pt;}
.ya{bottom:660.810093pt;}
.y32{bottom:674.712573pt;}
.y9{bottom:680.205113pt;}
.y31{bottom:694.107640pt;}
.y8{bottom:699.600133pt;}
.y88{bottom:704.472533pt;}
.y70{bottom:706.530400pt;}
.y30{bottom:713.502573pt;}
.y89{bottom:716.805867pt;}
.y7{bottom:718.995153pt;}
.y2f{bottom:732.897640pt;}
.y6{bottom:738.390173pt;}
.y2e{bottom:752.292667pt;}
.y5{bottom:764.656083pt;}
.y2d{bottom:771.687687pt;}
.y87{bottom:778.469733pt;}
.y2c{bottom:791.082707pt;}
.y45{bottom:797.381733pt;}
.y4{bottom:809.136353pt;}
.y2b{bottom:810.477773pt;}
.y3{bottom:828.531373pt;}
.y2a{bottom:829.872667pt;}
.y29{bottom:849.267687pt;}
.y28{bottom:868.662707pt;}
.y2{bottom:871.309830pt;}
.y27{bottom:888.057773pt;}
.y26{bottom:907.452800pt;}
.y1{bottom:908.320310pt;}
.y25{bottom:926.847820pt;}
.y24{bottom:946.242840pt;}
.y72{bottom:1054.442933pt;}
.y6e{bottom:1084.849200pt;}
.y80{bottom:1134.776800pt;}
.y7b{bottom:1149.069200pt;}
.y8e{bottom:1274.180000pt;}
.y5b{bottom:1325.075067pt;}
.y6c{bottom:1325.092800pt;}
.y4d{bottom:1358.408000pt;}
.y6b{bottom:1358.426667pt;}
.h20{height:29.000000pt;}
.h9{height:34.992188pt;}
.h8{height:38.880199pt;}
.h5{height:40.824219pt;}
.h6{height:41.994801pt;}
.h3{height:42.768239pt;}
.h15{height:47.296000pt;}
.h17{height:49.226680pt;}
.h4{height:53.447926pt;}
.h2{height:58.242188pt;}
.h1e{height:58.333333pt;}
.he{height:60.288000pt;}
.h11{height:61.795200pt;}
.h12{height:66.316800pt;}
.h10{height:70.838400pt;}
.h1f{height:74.916707pt;}
.h21{height:76.384000pt;}
.h1{height:77.760426pt;}
.h1d{height:78.166667pt;}
.h19{height:78.826667pt;}
.h22{height:78.848000pt;}
.h16{height:82.133333pt;}
.hf{height:83.733333pt;}
.hd{height:87.225600pt;}
.h7{height:96.000000pt;}
.h23{height:98.560000pt;}
.h1c{height:103.615973pt;}
.h14{height:131.413333pt;}
.h13{height:132.069333pt;}
.h18{height:144.931333pt;}
.hc{height:147.840000pt;}
.h1a{height:190.493867pt;}
.hb{height:225.504000pt;}
.h1b{height:550.128400pt;}
.h0{height:1056.000000pt;}
.ha{height:1440.000000pt;}
.wb{width:140.831733pt;}
.w9{width:166.485333pt;}
.w8{width:167.318667pt;}
.w3{width:247.804400pt;}
.w4{width:269.824667pt;}
.w7{width:304.865467pt;}
.wa{width:434.641200pt;}
.w2{width:462.253333pt;}
.w0{width:816.000000pt;}
.w6{width:1473.306667pt;}
.w5{width:1474.973333pt;}
.w1{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:7.946667pt;}
.x2a{left:23.005600pt;}
.x22{left:29.808933pt;}
.x34{left:32.629200pt;}
.x26{left:40.915467pt;}
.x5{left:43.722400pt;}
.x31{left:50.952000pt;}
.x21{left:54.982267pt;}
.x1f{left:61.675467pt;}
.x27{left:66.102133pt;}
.x28{left:84.142133pt;}
.x23{left:87.848933pt;}
.x1{left:96.000000pt;}
.x2b{left:114.165600pt;}
.x3{left:117.333333pt;}
.x3b{left:121.006800pt;}
.x35{left:125.651107pt;}
.x25{left:155.522400pt;}
.x32{left:157.294667pt;}
.x2{left:175.000000pt;}
.x4{left:286.850533pt;}
.x20{left:368.453733pt;}
.x2c{left:550.555867pt;}
.x29{left:611.442267pt;}
.x2e{left:647.733067pt;}
.x2d{left:660.419733pt;}
.x36{left:707.384400pt;}
.x1e{left:888.276133pt;}
.x33{left:1156.544400pt;}
.x3a{left:1285.496533pt;}
.x37{left:1289.874267pt;}
.x38{left:1306.224533pt;}
.x1c{left:1327.666667pt;}
.x1b{left:1373.629333pt;}
.xe{left:1375.118667pt;}
.xf{left:1389.422667pt;}
.xd{left:1531.340000pt;}
.x9{left:1698.168000pt;}
.x18{left:1725.878667pt;}
.x14{left:1748.314667pt;}
.x10{left:1776.620000pt;}
.xa{left:1781.304000pt;}
.x30{left:1797.416000pt;}
.xb{left:1836.177333pt;}
.xc{left:1850.609333pt;}
.x6{left:1863.096000pt;}
.x2f{left:1911.733333pt;}
.x24{left:1913.814667pt;}
.x8{left:1949.841333pt;}
.x16{left:1974.636000pt;}
.x7{left:1992.542667pt;}
.x39{left:2040.233333pt;}
.x11{left:2053.126667pt;}
.x19{left:2064.944000pt;}
.x15{left:2092.490667pt;}
.x13{left:2140.949333pt;}
.x12{left:2146.456000pt;}
.x17{left:2169.780000pt;}
.x1a{left:2260.042667pt;}
}




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