
    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_8996e8d8dbfd8b3b84b6f6de.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.176000;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_94512979f9029b727c66c17b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.041992;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_214169cde628d0e871a7426d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_5cc9108010dc27f7e8e6dbe8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_77b583646bd553666144964f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.089500;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_ea55b788c1d49423a99a4f5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.828000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:49.500002px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.004950px;}
.ls3{letter-spacing:107.963599px;}
.ls1{letter-spacing:107.986253px;}
.ls2{letter-spacing:107.997540px;}
.ls5{letter-spacing:108.000408px;}
.ls4{letter-spacing:108.000426px;}
.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:-142.200001px;}
.wsb{word-spacing:-127.980004px;}
.ws9{word-spacing:-99.540006px;}
.ws0{word-spacing:-66.834004px;}
.ws3{word-spacing:-39.816000px;}
.wsa{word-spacing:-26.784001px;}
.ws6{word-spacing:-21.501602px;}
.ws7{word-spacing:-17.037600px;}
.ws8{word-spacing:-15.759781px;}
.ws5{word-spacing:-0.168000px;}
.wsc{word-spacing:-0.108000px;}
.ws4{word-spacing:-0.090000px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-19.740001px;}
._9{margin-left:-12.096000px;}
._10{margin-left:-10.413900px;}
._b{margin-left:-8.400000px;}
._0{margin-left:-6.768000px;}
._1{margin-left:-5.076000px;}
._4{margin-left:-3.948000px;}
._7{margin-left:-2.256000px;}
._5{margin-left:-1.128000px;}
._8{width:1.056000px;}
._2{width:2.256000px;}
._c{width:3.528000px;}
._d{width:4.536000px;}
._6{width:6.486000px;}
._e{width:8.400001px;}
._11{width:9.948600px;}
._f{width:11.076001px;}
._a{width:14.748000px;}
._13{width:108.073830px;}
._12{width:1689.653009px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(49,57,77);}
.fc4{color:rgb(0,147,132);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(98,107,115);}
.fc0{color:rgb(0,47,74);}
.fsb{font-size:63.547504px;}
.fs9{font-size:68.699999px;}
.fs13{font-size:78.000005px;}
.fs10{font-size:84.000000px;}
.fs8{font-size:86.700009px;}
.fs6{font-size:90.000003px;}
.fsa{font-size:94.350005px;}
.fs5{font-size:96.000006px;}
.fs7{font-size:102.000000px;}
.fsd{font-size:108.000003px;}
.fs12{font-size:120.000001px;}
.fs1{font-size:132.000007px;}
.fs2{font-size:144.000005px;}
.fs14{font-size:151.200005px;}
.fs4{font-size:167.999999px;}
.fs11{font-size:216.000007px;}
.fs0{font-size:282.000015px;}
.fsf{font-size:359.099989px;}
.fsc{font-size:420.000025px;}
.fse{font-size:540.000017px;}
.fs3{font-size:600.000004px;}
.y0{bottom:0.000000px;}
.y49{bottom:27.170711px;}
.y6e{bottom:38.797902px;}
.y48{bottom:43.375324px;}
.y34{bottom:46.755365px;}
.y6a{bottom:50.670432px;}
.y47{bottom:59.579934px;}
.y33{bottom:66.334865px;}
.y15{bottom:69.003298px;}
.y46{bottom:75.784546px;}
.y32{bottom:85.914361px;}
.y45{bottom:91.989157px;}
.y56{bottom:97.136520px;}
.y6{bottom:100.406346px;}
.y4c{bottom:100.784628px;}
.y53{bottom:102.016401px;}
.y31{bottom:105.493856px;}
.y67{bottom:107.496462px;}
.y44{bottom:108.193765px;}
.y5f{bottom:127.575215px;}
.y66{bottom:132.246463px;}
.y6d{bottom:132.397894px;}
.y20{bottom:134.110639px;}
.y62{bottom:139.950221px;}
.y5{bottom:143.606348px;}
.y7{bottom:149.332643px;}
.y52{bottom:150.616425px;}
.y5e{bottom:152.325216px;}
.y65{bottom:156.996464px;}
.y61{bottom:164.700222px;}
.y43{bottom:169.490789px;}
.y5d{bottom:177.075222px;}
.y72{bottom:181.216438px;}
.y64{bottom:181.746470px;}
.y1f{bottom:183.160640px;}
.y60{bottom:189.450225px;}
.y30{bottom:198.987118px;}
.y42{bottom:199.211040px;}
.y51{bottom:199.216427px;}
.y69{bottom:200.762346px;}
.y5c{bottom:201.825222px;}
.y63{bottom:206.496470px;}
.y1e{bottom:214.210652px;}
.y6c{bottom:225.997908px;}
.y2f{bottom:226.297619px;}
.y4b{bottom:226.784632px;}
.y41{bottom:228.931291px;}
.y71{bottom:229.816439px;}
.y14{bottom:232.210619px;}
.y23{bottom:239.175440px;}
.y1d{bottom:245.260665px;}
.y50{bottom:247.816428px;}
.y76{bottom:252.021161px;}
.y2e{bottom:253.608120px;}
.y4{bottom:256.165526px;}
.y40{bottom:258.651542px;}
.y24{bottom:259.890683px;}
.y35{bottom:263.890643px;}
.y13{bottom:265.330620px;}
.y68{bottom:266.012344px;}
.y55{bottom:269.180503px;}
.y1c{bottom:276.310654px;}
.y70{bottom:278.416418px;}
.y2d{bottom:280.918610px;}
.y3f{bottom:288.371793px;}
.y3{bottom:295.765528px;}
.y4f{bottom:296.416413px;}
.y12{bottom:298.450621px;}
.y75{bottom:300.621146px;}
.y2c{bottom:308.229110px;}
.y3e{bottom:318.092022px;}
.y6b{bottom:319.597911px;}
.y1b{bottom:325.360645px;}
.y5b{bottom:326.652989px;}
.y11{bottom:331.570622px;}
.y2b{bottom:335.539611px;}
.y58{bottom:339.027993px;}
.y4e{bottom:345.016409px;}
.yb{bottom:346.690634px;}
.y3d{bottom:347.812273px;}
.y74{bottom:349.221142px;}
.y57{bottom:351.402994px;}
.y4a{bottom:352.784636px;}
.y1a{bottom:356.410634px;}
.y2a{bottom:362.850123px;}
.y59{bottom:363.777994px;}
.y10{bottom:364.690635px;}
.y5a{bottom:376.152997px;}
.y3c{bottom:377.532524px;}
.y2{bottom:381.347944px;}
.y29{bottom:390.160624px;}
.y4d{bottom:393.616411px;}
.ya{bottom:397.090636px;}
.yf{bottom:397.810636px;}
.y73{bottom:397.821143px;}
.y19{bottom:405.460636px;}
.y3b{bottom:407.252775px;}
.y28{bottom:417.471120px;}
.ye{bottom:430.930642px;}
.y54{bottom:431.180475px;}
.y18{bottom:436.510633px;}
.y3a{bottom:436.973026px;}
.y27{bottom:444.781622px;}
.y9{bottom:447.490637px;}
.y1{bottom:465.947947px;}
.y39{bottom:466.693281px;}
.y17{bottom:467.560632px;}
.y26{bottom:472.092127px;}
.y22{bottom:478.540635px;}
.yd{bottom:482.050634px;}
.y38{bottom:496.413527px;}
.y8{bottom:497.890632px;}
.y6f{bottom:501.922631px;}
.y21{bottom:513.730630px;}
.yc{bottom:515.170628px;}
.y16{bottom:516.610629px;}
.y25{bottom:517.402628px;}
.y37{bottom:526.133781px;}
.y36{bottom:555.854029px;}
.hf{height:51.632347px;}
.hc{height:55.818749px;}
.h18{height:63.375004px;}
.hb{height:65.914020px;}
.h15{height:68.250000px;}
.ha{height:70.443757px;}
.he{height:71.729959px;}
.h7{height:73.125002px;}
.hd{height:76.659379px;}
.h6{height:78.000005px;}
.h8{height:82.875000px;}
.h11{height:87.750003px;}
.h17{height:97.500001px;}
.h2{height:107.250006px;}
.h3{height:109.476566px;}
.h14{height:117.750001px;}
.h19{height:136.987204px;}
.h9{height:137.675999px;}
.h5{height:152.207999px;}
.h16{height:175.500006px;}
.h1{height:255.492014px;}
.h13{height:325.344590px;}
.h10{height:380.520023px;}
.h12{height:489.240016px;}
.h4{height:543.600004px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x4{left:31.502954px;}
.x1{left:46.939963px;}
.x2b{left:51.646506px;}
.x16{left:57.631857px;}
.x23{left:67.431960px;}
.x19{left:68.764220px;}
.x21{left:73.965186px;}
.x22{left:84.623238px;}
.x20{left:96.613615px;}
.x17{left:100.939964px;}
.x18{left:111.631864px;}
.x2e{left:154.939966px;}
.x9{left:193.353684px;}
.x2d{left:215.314972px;}
.x10{left:249.457740px;}
.x24{left:324.087694px;}
.x1e{left:328.350936px;}
.x1f{left:335.283720px;}
.x1d{left:341.335386px;}
.x25{left:352.008762px;}
.x2c{left:522.800957px;}
.x5{left:558.708655px;}
.x12{left:567.883354px;}
.x6{left:571.216093px;}
.xa{left:572.617571px;}
.x11{left:576.394530px;}
.xe{left:578.615142px;}
.xc{left:585.642650px;}
.x26{left:589.341827px;}
.x13{left:591.352691px;}
.xd{left:595.042553px;}
.x8{left:601.228407px;}
.x1a{left:608.199620px;}
.xb{left:612.708657px;}
.xf{left:621.499385px;}
.x7{left:626.893828px;}
.x15{left:667.508410px;}
.x14{left:693.078750px;}
.x2{left:803.561437px;}
.x3{left:836.661042px;}
.x27{left:843.206689px;}
.x1b{left:856.298708px;}
.x1c{left:857.600176px;}
.x28{left:859.373140px;}
.x29{left:872.992866px;}
.x2a{left:900.099313px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:44.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.004400pt;}
.ls3{letter-spacing:95.967644pt;}
.ls1{letter-spacing:95.987780pt;}
.ls2{letter-spacing:95.997813pt;}
.ls5{letter-spacing:96.000363pt;}
.ls4{letter-spacing:96.000379pt;}
.ws2{word-spacing:-126.400001pt;}
.wsb{word-spacing:-113.760004pt;}
.ws9{word-spacing:-88.480005pt;}
.ws0{word-spacing:-59.408003pt;}
.ws3{word-spacing:-35.392000pt;}
.wsa{word-spacing:-23.808001pt;}
.ws6{word-spacing:-19.112535pt;}
.ws7{word-spacing:-15.144533pt;}
.ws8{word-spacing:-14.008694pt;}
.ws5{word-spacing:-0.149333pt;}
.wsc{word-spacing:-0.096000pt;}
.ws4{word-spacing:-0.080000pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-17.546668pt;}
._9{margin-left:-10.752000pt;}
._10{margin-left:-9.256800pt;}
._b{margin-left:-7.466667pt;}
._0{margin-left:-6.016000pt;}
._1{margin-left:-4.512000pt;}
._4{margin-left:-3.509334pt;}
._7{margin-left:-2.005333pt;}
._5{margin-left:-1.002667pt;}
._8{width:0.938667pt;}
._2{width:2.005333pt;}
._c{width:3.136000pt;}
._d{width:4.032000pt;}
._6{width:5.765334pt;}
._e{width:7.466667pt;}
._11{width:8.843200pt;}
._f{width:9.845334pt;}
._a{width:13.109334pt;}
._13{width:96.065627pt;}
._12{width:1501.913786pt;}
.fsb{font-size:56.486670pt;}
.fs9{font-size:61.066666pt;}
.fs13{font-size:69.333338pt;}
.fs10{font-size:74.666666pt;}
.fs8{font-size:77.066674pt;}
.fs6{font-size:80.000003pt;}
.fsa{font-size:83.866671pt;}
.fs5{font-size:85.333339pt;}
.fs7{font-size:90.666667pt;}
.fsd{font-size:96.000003pt;}
.fs12{font-size:106.666667pt;}
.fs1{font-size:117.333340pt;}
.fs2{font-size:128.000004pt;}
.fs14{font-size:134.400004pt;}
.fs4{font-size:149.333333pt;}
.fs11{font-size:192.000006pt;}
.fs0{font-size:250.666680pt;}
.fsf{font-size:319.199990pt;}
.fsc{font-size:373.333356pt;}
.fse{font-size:480.000015pt;}
.fs3{font-size:533.333337pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:24.151743pt;}
.y6e{bottom:34.487024pt;}
.y48{bottom:38.555844pt;}
.y34{bottom:41.560324pt;}
.y6a{bottom:45.040384pt;}
.y47{bottom:52.959941pt;}
.y33{bottom:58.964325pt;}
.y15{bottom:61.336265pt;}
.y46{bottom:67.364041pt;}
.y32{bottom:76.368321pt;}
.y45{bottom:81.768139pt;}
.y56{bottom:86.343573pt;}
.y6{bottom:89.250086pt;}
.y4c{bottom:89.586336pt;}
.y53{bottom:90.681246pt;}
.y31{bottom:93.772317pt;}
.y67{bottom:95.552411pt;}
.y44{bottom:96.172236pt;}
.y5f{bottom:113.400191pt;}
.y66{bottom:117.552411pt;}
.y6d{bottom:117.687016pt;}
.y20{bottom:119.209457pt;}
.y62{bottom:124.400197pt;}
.y5{bottom:127.650087pt;}
.y7{bottom:132.740127pt;}
.y52{bottom:133.881267pt;}
.y5e{bottom:135.400192pt;}
.y65{bottom:139.552412pt;}
.y61{bottom:146.400197pt;}
.y43{bottom:150.658480pt;}
.y5d{bottom:157.400198pt;}
.y72{bottom:161.081278pt;}
.y64{bottom:161.552418pt;}
.y1f{bottom:162.809458pt;}
.y60{bottom:168.400200pt;}
.y30{bottom:176.877438pt;}
.y42{bottom:177.076480pt;}
.y51{bottom:177.081268pt;}
.y69{bottom:178.455418pt;}
.y5c{bottom:179.400197pt;}
.y63{bottom:183.552418pt;}
.y1e{bottom:190.409469pt;}
.y6c{bottom:200.887029pt;}
.y2f{bottom:201.153439pt;}
.y4b{bottom:201.586339pt;}
.y41{bottom:203.494481pt;}
.y71{bottom:204.281279pt;}
.y14{bottom:206.409439pt;}
.y23{bottom:212.600392pt;}
.y1d{bottom:218.009480pt;}
.y50{bottom:220.281270pt;}
.y76{bottom:224.018810pt;}
.y2e{bottom:225.429440pt;}
.y4{bottom:227.702690pt;}
.y40{bottom:229.912482pt;}
.y24{bottom:231.013940pt;}
.y35{bottom:234.569460pt;}
.y13{bottom:235.849440pt;}
.y68{bottom:236.455417pt;}
.y55{bottom:239.271558pt;}
.y1c{bottom:245.609471pt;}
.y70{bottom:247.481261pt;}
.y2d{bottom:249.705431pt;}
.y3f{bottom:256.330483pt;}
.y3{bottom:262.902691pt;}
.y4f{bottom:263.481256pt;}
.y12{bottom:265.289441pt;}
.y75{bottom:267.218796pt;}
.y2c{bottom:273.981431pt;}
.y3e{bottom:282.748464pt;}
.y6b{bottom:284.087032pt;}
.y1b{bottom:289.209462pt;}
.y5b{bottom:290.358212pt;}
.y11{bottom:294.729442pt;}
.y2b{bottom:298.257432pt;}
.y58{bottom:301.358216pt;}
.y4e{bottom:306.681253pt;}
.yb{bottom:308.169453pt;}
.y3d{bottom:309.166465pt;}
.y74{bottom:310.418793pt;}
.y57{bottom:312.358217pt;}
.y4a{bottom:313.586343pt;}
.y1a{bottom:316.809453pt;}
.y2a{bottom:322.533443pt;}
.y59{bottom:323.358217pt;}
.y10{bottom:324.169453pt;}
.y5a{bottom:334.358219pt;}
.y3c{bottom:335.584465pt;}
.y2{bottom:338.975951pt;}
.y29{bottom:346.809444pt;}
.y4d{bottom:349.881254pt;}
.ya{bottom:352.969454pt;}
.yf{bottom:353.609454pt;}
.y73{bottom:353.618794pt;}
.y19{bottom:360.409454pt;}
.y3b{bottom:362.002466pt;}
.y28{bottom:371.085440pt;}
.ye{bottom:383.049460pt;}
.y54{bottom:383.271533pt;}
.y18{bottom:388.009451pt;}
.y3a{bottom:388.420467pt;}
.y27{bottom:395.361441pt;}
.y9{bottom:397.769455pt;}
.y1{bottom:414.175953pt;}
.y39{bottom:414.838472pt;}
.y17{bottom:415.609451pt;}
.y26{bottom:419.637446pt;}
.y22{bottom:425.369453pt;}
.yd{bottom:428.489452pt;}
.y38{bottom:441.256469pt;}
.y8{bottom:442.569451pt;}
.y6f{bottom:446.153450pt;}
.y21{bottom:456.649449pt;}
.yc{bottom:457.929447pt;}
.y16{bottom:459.209448pt;}
.y25{bottom:459.913447pt;}
.y37{bottom:467.674472pt;}
.y36{bottom:494.092471pt;}
.hf{height:45.895419pt;}
.hc{height:49.616666pt;}
.h18{height:56.333337pt;}
.hb{height:58.590240pt;}
.h15{height:60.666666pt;}
.ha{height:62.616673pt;}
.he{height:63.759964pt;}
.h7{height:65.000002pt;}
.hd{height:68.141670pt;}
.h6{height:69.333338pt;}
.h8{height:73.666667pt;}
.h11{height:78.000002pt;}
.h17{height:86.666667pt;}
.h2{height:95.333339pt;}
.h3{height:97.312503pt;}
.h14{height:104.666668pt;}
.h19{height:121.766404pt;}
.h9{height:122.378666pt;}
.h5{height:135.295999pt;}
.h16{height:156.000005pt;}
.h1{height:227.104012pt;}
.h13{height:289.195191pt;}
.h10{height:338.240020pt;}
.h12{height:434.880014pt;}
.h4{height:483.200003pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x4{left:28.002626pt;}
.x1{left:41.724411pt;}
.x2b{left:45.908005pt;}
.x16{left:51.228318pt;}
.x23{left:59.939520pt;}
.x19{left:61.123751pt;}
.x21{left:65.746832pt;}
.x22{left:75.220656pt;}
.x20{left:85.878769pt;}
.x17{left:89.724413pt;}
.x18{left:99.228323pt;}
.x2e{left:137.724414pt;}
.x9{left:171.869941pt;}
.x2d{left:191.391086pt;}
.x10{left:221.740213pt;}
.x24{left:288.077950pt;}
.x1e{left:291.867498pt;}
.x1f{left:298.029974pt;}
.x1d{left:303.409232pt;}
.x25{left:312.896677pt;}
.x2c{left:464.711962pt;}
.x5{left:496.629916pt;}
.x12{left:504.785203pt;}
.x6{left:507.747638pt;}
.xa{left:508.993396pt;}
.x11{left:512.350693pt;}
.xe{left:514.324570pt;}
.xc{left:520.571245pt;}
.x26{left:523.859402pt;}
.x13{left:525.646837pt;}
.xd{left:528.926714pt;}
.x8{left:534.425251pt;}
.x1a{left:540.621884pt;}
.xb{left:544.629917pt;}
.xf{left:552.443898pt;}
.x7{left:557.238958pt;}
.x15{left:593.340809pt;}
.x14{left:616.070000pt;}
.x2{left:714.276833pt;}
.x3{left:743.698704pt;}
.x27{left:749.517057pt;}
.x1b{left:761.154407pt;}
.x1c{left:762.311267pt;}
.x28{left:763.887235pt;}
.x29{left:775.993659pt;}
.x2a{left:800.088279pt;}
}




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