
    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_5411c0b12081961d874d8460.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_454f9c99dcaf8fda526208f6.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_cba4bd180b71d5bebdf8ff4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_36e61fb041f4b7272f80c186.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_9a0b217024a6253bd615548c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_a9ca848297c1dfffcc901a53.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692383;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_debfd84ad473749aad9a545f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_ee1480ef9ab60a972982c6a3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1bfb3f12594592efbb2635ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919922;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);}
.m4{transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.324575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324575,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.334524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334524,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.334526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334526,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.334527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334527,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-30.222720px;}
.v5{vertical-align:-27.360000px;}
.v3{vertical-align:-9.391680px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:30.208320px;}
.v1{vertical-align:33.120000px;}
.ls9{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.179280px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.414720px;}
.ls8{letter-spacing:1.620000px;}
.ls5{letter-spacing:3.060000px;}
.ls6{letter-spacing:7.380000px;}
.ls7{letter-spacing:7.398000px;}
.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;}
}
.ws5{word-spacing:-27.000000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.560000px;}
.ws4{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:61.702133px;}
.ws7{word-spacing:96.226931px;}
._12{margin-left:-12.762240px;}
._3{margin-left:-8.339760px;}
._4{margin-left:-5.138640px;}
._1{margin-left:-2.021760px;}
._0{margin-left:-1.010880px;}
._2{width:1.095120px;}
._f{width:2.583360px;}
._10{width:3.642480px;}
._11{width:5.532480px;}
._13{width:6.869520px;}
._9{width:8.544240px;}
._5{width:9.671040px;}
._6{width:10.765440px;}
._e{width:12.585600px;}
._c{width:13.644720px;}
._d{width:14.771520px;}
._7{width:22.057920px;}
._8{width:23.562720px;}
._a{width:31.331520px;}
._b{width:32.492160px;}
._14{width:62.460455px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:transparent;}
.fc0{color:rgb(26,44,74);}
.fsa{font-size:23.080200px;}
.fs8{font-size:25.277400px;}
.fsd{font-size:26.536200px;}
.fs9{font-size:27.840600px;}
.fsb{font-size:29.062800px;}
.fsc{font-size:32.009400px;}
.fse{font-size:35.376600px;}
.fs7{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs10{font-size:96.000000px;}
.fsf{font-size:144.000000px;}
.y1d{bottom:-0.000900px;}
.y0{bottom:0.000000px;}
.y22{bottom:3.779100px;}
.y31{bottom:5.620500px;}
.y34{bottom:8.511150px;}
.y30{bottom:20.400450px;}
.y1f{bottom:21.059100px;}
.y33{bottom:24.380700px;}
.y1{bottom:52.093050px;}
.y2e{bottom:102.018600px;}
.y2d{bottom:117.503100px;}
.y2c{bottom:140.354100px;}
.y2b{bottom:150.249600px;}
.y2a{bottom:173.114100px;}
.y29{bottom:190.394100px;}
.y38{bottom:199.517312px;}
.y28{bottom:200.834100px;}
.y37{bottom:213.986341px;}
.y27{bottom:220.467420px;}
.y36{bottom:228.455371px;}
.y26{bottom:239.362380px;}
.y35{bottom:242.924400px;}
.y25{bottom:258.307020px;}
.y24{bottom:277.384140px;}
.y23{bottom:296.279100px;}
.y1e{bottom:311.220000px;}
.y21{bottom:329.939100px;}
.y20{bottom:332.279100px;}
.y1c{bottom:345.780000px;}
.y32{bottom:345.883500px;}
.y2f{bottom:356.518500px;}
.y1b{bottom:356.619540px;}
.y1a{bottom:610.451220px;}
.y19{bottom:629.346180px;}
.y18{bottom:648.423300px;}
.y17{bottom:667.318260px;}
.y16{bottom:686.213220px;}
.y15{bottom:705.290340px;}
.y14{bottom:724.185300px;}
.y13{bottom:743.262420px;}
.y12{bottom:762.157380px;}
.y11{bottom:781.052340px;}
.y10{bottom:800.129460px;}
.yf{bottom:819.076980px;}
.ye{bottom:838.159140px;}
.yd{bottom:857.062020px;}
.yc{bottom:875.956980px;}
.yb{bottom:895.039140px;}
.ya{bottom:921.489780px;}
.y9{bottom:940.574100px;}
.y8{bottom:960.374100px;}
.y7{bottom:972.794100px;}
.y6{bottom:993.494100px;}
.y5{bottom:1014.753000px;}
.y4{bottom:1038.866700px;}
.y3{bottom:1062.980400px;}
.y3a{bottom:1086.551550px;}
.y2{bottom:1087.094100px;}
.y39{bottom:1132.356900px;}
.h16{height:18.402638px;}
.h17{height:20.268718px;}
.h1a{height:21.158513px;}
.h18{height:21.231981px;}
.h1b{height:23.303718px;}
.h1c{height:24.411231px;}
.h1d{height:25.755132px;}
.h7{height:28.995469px;}
.h12{height:34.114922px;}
.he{height:34.560000px;}
.h6{height:42.845977px;}
.h8{height:45.992812px;}
.h10{height:47.381836px;}
.h14{height:47.961914px;}
.h11{height:52.435898px;}
.h13{height:52.453898px;}
.hf{height:53.077852px;}
.hc{height:58.121719px;}
.h4{height:61.329023px;}
.h2{height:65.003906px;}
.h9{height:66.850273px;}
.ha{height:66.861793px;}
.hb{height:66.870433px;}
.h1f{height:69.890625px;}
.h5{height:75.965977px;}
.h3{height:76.054570px;}
.h1e{height:104.835938px;}
.h15{height:249.825000px;}
.h19{height:260.461500px;}
.hd{height:260.490000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:269.113500px;}
.w5{width:299.244000px;}
.w2{width:324.073500px;}
.w3{width:648.285000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:9.973050px;}
.xe{left:12.960300px;}
.x15{left:29.726850px;}
.x10{left:73.614300px;}
.xd{left:102.183000px;}
.x8{left:110.283300px;}
.x3{left:114.777900px;}
.x2{left:127.203300px;}
.x14{left:129.741000px;}
.x6{left:131.883300px;}
.x9{left:163.387860px;}
.xf{left:168.957300px;}
.x16{left:225.760350px;}
.x17{left:234.460950px;}
.x13{left:237.999300px;}
.x18{left:239.605350px;}
.x1b{left:246.148650px;}
.x1c{left:255.854400px;}
.x1d{left:261.592950px;}
.xc{left:311.653800px;}
.x7{left:333.876300px;}
.x4{left:354.040560px;}
.xa{left:398.679420px;}
.x1e{left:417.539400px;}
.x12{left:424.689300px;}
.xb{left:426.403500px;}
.x5{left:429.098400px;}
.x19{left:438.703500px;}
.x1f{left:480.917250px;}
.x11{left:522.012300px;}
.x20{left:788.218050px;}
.x1{left:838.876200px;}
@media print{
.v2{vertical-align:-26.864640pt;}
.v5{vertical-align:-24.320000pt;}
.v3{vertical-align:-8.348160pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:26.851840pt;}
.v1{vertical-align:29.440000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.159360pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.368640pt;}
.ls8{letter-spacing:1.440000pt;}
.ls5{letter-spacing:2.720000pt;}
.ls6{letter-spacing:6.560000pt;}
.ls7{letter-spacing:6.576000pt;}
.ws5{word-spacing:-24.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:54.846341pt;}
.ws7{word-spacing:85.535050pt;}
._12{margin-left:-11.344213pt;}
._3{margin-left:-7.413120pt;}
._4{margin-left:-4.567680pt;}
._1{margin-left:-1.797120pt;}
._0{margin-left:-0.898560pt;}
._2{width:0.973440pt;}
._f{width:2.296320pt;}
._10{width:3.237760pt;}
._11{width:4.917760pt;}
._13{width:6.106240pt;}
._9{width:7.594880pt;}
._5{width:8.596480pt;}
._6{width:9.569280pt;}
._e{width:11.187200pt;}
._c{width:12.128640pt;}
._d{width:13.130240pt;}
._7{width:19.607040pt;}
._8{width:20.944640pt;}
._a{width:27.850240pt;}
._b{width:28.881920pt;}
._14{width:55.520405pt;}
.fsa{font-size:20.515733pt;}
.fs8{font-size:22.468800pt;}
.fsd{font-size:23.587733pt;}
.fs9{font-size:24.747200pt;}
.fsb{font-size:25.833600pt;}
.fsc{font-size:28.452800pt;}
.fse{font-size:31.445867pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs10{font-size:85.333333pt;}
.fsf{font-size:128.000000pt;}
.y1d{bottom:-0.000800pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:3.359200pt;}
.y31{bottom:4.996000pt;}
.y34{bottom:7.565467pt;}
.y30{bottom:18.133733pt;}
.y1f{bottom:18.719200pt;}
.y33{bottom:21.671733pt;}
.y1{bottom:46.304933pt;}
.y2e{bottom:90.683200pt;}
.y2d{bottom:104.447200pt;}
.y2c{bottom:124.759200pt;}
.y2b{bottom:133.555200pt;}
.y2a{bottom:153.879200pt;}
.y29{bottom:169.239200pt;}
.y38{bottom:177.348722pt;}
.y28{bottom:178.519200pt;}
.y37{bottom:190.210081pt;}
.y27{bottom:195.971040pt;}
.y36{bottom:203.071441pt;}
.y26{bottom:212.766560pt;}
.y35{bottom:215.932800pt;}
.y25{bottom:229.606240pt;}
.y24{bottom:246.563680pt;}
.y23{bottom:263.359200pt;}
.y1e{bottom:276.640000pt;}
.y21{bottom:293.279200pt;}
.y20{bottom:295.359200pt;}
.y1c{bottom:307.360000pt;}
.y32{bottom:307.452000pt;}
.y2f{bottom:316.905333pt;}
.y1b{bottom:316.995147pt;}
.y1a{bottom:542.623307pt;}
.y19{bottom:559.418827pt;}
.y18{bottom:576.376267pt;}
.y17{bottom:593.171787pt;}
.y16{bottom:609.967307pt;}
.y15{bottom:626.924747pt;}
.y14{bottom:643.720267pt;}
.y13{bottom:660.677707pt;}
.y12{bottom:677.473227pt;}
.y11{bottom:694.268747pt;}
.y10{bottom:711.226187pt;}
.yf{bottom:728.068427pt;}
.ye{bottom:745.030347pt;}
.yd{bottom:761.832907pt;}
.yc{bottom:778.628427pt;}
.yb{bottom:795.590347pt;}
.ya{bottom:819.102027pt;}
.y9{bottom:836.065867pt;}
.y8{bottom:853.665867pt;}
.y7{bottom:864.705867pt;}
.y6{bottom:883.105867pt;}
.y5{bottom:902.002667pt;}
.y4{bottom:923.437067pt;}
.y3{bottom:944.871467pt;}
.y3a{bottom:965.823600pt;}
.y2{bottom:966.305867pt;}
.y39{bottom:1006.539467pt;}
.h16{height:16.357901pt;}
.h17{height:18.016638pt;}
.h1a{height:18.807567pt;}
.h18{height:18.872872pt;}
.h1b{height:20.714416pt;}
.h1c{height:21.698872pt;}
.h1d{height:22.893451pt;}
.h7{height:25.773750pt;}
.h12{height:30.324375pt;}
.he{height:30.720000pt;}
.h6{height:38.085312pt;}
.h8{height:40.882500pt;}
.h10{height:42.117188pt;}
.h14{height:42.632812pt;}
.h11{height:46.609688pt;}
.h13{height:46.625687pt;}
.hf{height:47.180312pt;}
.hc{height:51.663750pt;}
.h4{height:54.514687pt;}
.h2{height:57.781250pt;}
.h9{height:59.422465pt;}
.ha{height:59.432705pt;}
.hb{height:59.440385pt;}
.h1f{height:62.125000pt;}
.h5{height:67.525312pt;}
.h3{height:67.604062pt;}
.h1e{height:93.187500pt;}
.h15{height:222.066667pt;}
.h19{height:231.521333pt;}
.hd{height:231.546667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:239.212000pt;}
.w5{width:265.994667pt;}
.w2{width:288.065333pt;}
.w3{width:576.253333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:8.864933pt;}
.xe{left:11.520267pt;}
.x15{left:26.423867pt;}
.x10{left:65.434933pt;}
.xd{left:90.829333pt;}
.x8{left:98.029600pt;}
.x3{left:102.024800pt;}
.x2{left:113.069600pt;}
.x14{left:115.325333pt;}
.x6{left:117.229600pt;}
.x9{left:145.233653pt;}
.xf{left:150.184267pt;}
.x16{left:200.675867pt;}
.x17{left:208.409733pt;}
.x13{left:211.554933pt;}
.x18{left:212.982533pt;}
.x1b{left:218.798800pt;}
.x1c{left:227.426133pt;}
.x1d{left:232.527067pt;}
.xc{left:277.025600pt;}
.x7{left:296.778933pt;}
.x4{left:314.702720pt;}
.xa{left:354.381707pt;}
.x1e{left:371.146133pt;}
.x12{left:377.501600pt;}
.xb{left:379.025333pt;}
.x5{left:381.420800pt;}
.x19{left:389.958667pt;}
.x1f{left:427.482000pt;}
.x11{left:464.010933pt;}
.x20{left:700.638267pt;}
.x1{left:745.667733pt;}
}




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