
    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_5b2593e605d491d45e65b32e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_c42f2c95303897c97f1b06e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_15310b77343b43da357b5c1c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.907000;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_9424d1fc237ceca361cc01ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.865723;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_dfc9e91dfa551729657b3847.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_52c6ddf4abd867012ab4f5b6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752930;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_2d608ba36bb1535fc2d53ade.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.646000;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_700a86dd2b188dc63f67a922.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.775000;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_60df0d17578e3497144bc5bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.712000;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_02d51ed687c7332ea7ff0d9a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.734000;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_ed2673b3bd5525eb095cbf76.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.906000;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);}
.v3{vertical-align:-58.500000px;}
.v2{vertical-align:-53.440002px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:23.400000px;}
.v4{vertical-align:58.500000px;}
.v1{vertical-align:80.160000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.045600px;}
.ls2{letter-spacing:0.054000px;}
.ls0{letter-spacing:0.060000px;}
.ls1{letter-spacing:52.000200px;}
.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;}
}
.ws0{word-spacing:-180.000000px;}
.ws7{word-spacing:-96.000000px;}
.ws4{word-spacing:-84.000000px;}
.ws6{word-spacing:-82.320000px;}
.ws1{word-spacing:-67.200000px;}
.ws5{word-spacing:-58.800000px;}
.ws2{word-spacing:-44.800006px;}
.ws3{word-spacing:-0.360000px;}
.wsb{word-spacing:-0.324000px;}
.wsc{word-spacing:-0.273600px;}
.ws8{word-spacing:-0.234000px;}
.wsd{word-spacing:0.000000px;}
.wsa{word-spacing:51.765600px;}
.ws9{word-spacing:64.833840px;}
._0{margin-left:-13.725000px;}
._d{margin-left:-12.195000px;}
._9{margin-left:-8.100000px;}
._5{margin-left:-6.840000px;}
._6{margin-left:-5.400000px;}
._2{margin-left:-4.275000px;}
._3{margin-left:-2.880000px;}
._1{margin-left:-1.125000px;}
._c{width:2.520000px;}
._4{width:4.320000px;}
._8{width:6.180000px;}
._7{width:7.875000px;}
._a{width:9.360000px;}
._b{width:64.878540px;}
.fc7{color:rgb(155,189,26);}
.fc6{color:rgb(26,133,255);}
.fc4{color:rgb(242,114,0);}
.fc2{color:rgb(233,73,110);}
.fc8{color:rgb(22,190,207);}
.fc5{color:rgb(212,17,89);}
.fc1{color:rgb(255,172,86);}
.fc9{color:rgb(94,94,94);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:160.000020px;}
.fs9{font-size:166.140000px;}
.fsc{font-size:180.000000px;}
.fs5{font-size:210.000000px;}
.fsb{font-size:228.000000px;}
.fs8{font-size:234.000000px;}
.fs2{font-size:240.000000px;}
.fsd{font-size:258.000000px;}
.fsa{font-size:270.000000px;}
.fs6{font-size:294.000000px;}
.fs4{font-size:300.000000px;}
.fs7{font-size:330.000000px;}
.fs1{font-size:360.000000px;}
.fs0{font-size:750.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:9.174000px;}
.y32{bottom:12.457500px;}
.y30{bottom:13.659000px;}
.y2b{bottom:16.540260px;}
.y14{bottom:34.795500px;}
.y2e{bottom:44.736000px;}
.y18{bottom:48.712200px;}
.y1c{bottom:49.706250px;}
.y1a{bottom:49.706400px;}
.y1e{bottom:49.707000px;}
.y23{bottom:49.872150px;}
.y7{bottom:50.709855px;}
.y6{bottom:53.125000px;}
.y8{bottom:53.125075px;}
.y39{bottom:54.172500px;}
.yb{bottom:59.647500px;}
.y3d{bottom:87.400575px;}
.y17{bottom:135.712200px;}
.y38{bottom:137.131500px;}
.y2d{bottom:137.280000px;}
.y29{bottom:141.206400px;}
.ya{bottom:148.747500px;}
.y5{bottom:158.638350px;}
.y37{bottom:218.131500px;}
.y16{bottom:222.712200px;}
.y28{bottom:232.706400px;}
.y36{bottom:299.131500px;}
.y27{bottom:333.961200px;}
.y15{bottom:334.586400px;}
.y3b{bottom:353.003550px;}
.y3a{bottom:408.503550px;}
.y26{bottom:425.461200px;}
.y25{bottom:488.172300px;}
.y24{bottom:566.001750px;}
.y19{bottom:672.978600px;}
.y22{bottom:843.046350px;}
.y1b{bottom:1111.592250px;}
.y1f{bottom:1565.491500px;}
.y13{bottom:1881.882000px;}
.y35{bottom:1943.821500px;}
.y11{bottom:1993.401000px;}
.y1d{bottom:1997.571000px;}
.y10{bottom:2228.323500px;}
.y2a{bottom:2422.324500px;}
.yf{bottom:2455.681500px;}
.ye{bottom:2547.181500px;}
.y33{bottom:2586.550500px;}
.y34{bottom:2586.898500px;}
.yd{bottom:2768.917500px;}
.yc{bottom:2860.417500px;}
.y2f{bottom:3165.508500px;}
.y31{bottom:3167.254500px;}
.y2c{bottom:3232.434000px;}
.y3c{bottom:3442.162500px;}
.y9{bottom:3446.296500px;}
.y21{bottom:3505.944000px;}
.y20{bottom:3595.044000px;}
.y4{bottom:3855.661500px;}
.y3{bottom:4046.664000px;}
.y2{bottom:4265.664000px;}
.y1{bottom:4484.664000px;}
.h14{height:57.586350px;}
.h1c{height:58.288350px;}
.h1a{height:58.600005px;}
.h9{height:60.100005px;}
.h18{height:61.600005px;}
.hb{height:91.691910px;}
.h3{height:103.410060px;}
.h4{height:118.159998px;}
.h11{height:128.257905px;}
.h20{height:128.700000px;}
.hf{height:130.762575px;}
.hc{height:150.150000px;}
.ha{height:150.629883px;}
.h1b{height:163.020000px;}
.h1f{height:163.541016px;}
.h19{height:171.600000px;}
.h15{height:184.392000px;}
.h1e{height:193.320000px;}
.h17{height:193.666992px;}
.h21{height:195.564000px;}
.he{height:210.210000px;}
.h8{height:214.500000px;}
.h7{height:215.185547px;}
.h16{height:220.424100px;}
.h10{height:227.400000px;}
.h12{height:230.010000px;}
.h5{height:246.465150px;}
.h6{height:257.400000px;}
.h2{height:272.880000px;}
.hd{height:299.477400px;}
.h1d{height:392.013900px;}
.h13{height:506.517300px;}
.h1{height:533.935547px;}
.h0{height:5055.000000px;}
.w5{width:166.473750px;}
.w4{width:181.276800px;}
.wa{width:326.434800px;}
.wf{width:400.658850px;}
.w7{width:428.062650px;}
.w10{width:451.244100px;}
.wb{width:488.577750px;}
.wd{width:524.438850px;}
.w6{width:547.690500px;}
.w9{width:609.122550px;}
.w8{width:653.569650px;}
.w11{width:698.056500px;}
.wc{width:758.248350px;}
.w2{width:816.888900px;}
.we{width:1534.206000px;}
.w3{width:1809.972000px;}
.w1{width:1823.961000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x6{left:15.705030px;}
.x15{left:20.381250px;}
.x21{left:22.449000px;}
.x2b{left:26.008500px;}
.x1b{left:28.442400px;}
.x19{left:35.986200px;}
.x17{left:37.172250px;}
.x11{left:46.749300px;}
.xf{left:53.963250px;}
.x29{left:56.599500px;}
.x5{left:61.512450px;}
.x13{left:66.985020px;}
.x31{left:71.253000px;}
.x7{left:80.512020px;}
.x2f{left:97.200000px;}
.x27{left:110.359500px;}
.x22{left:132.244500px;}
.xd{left:138.633165px;}
.x12{left:152.575800px;}
.xe{left:156.635850px;}
.x10{left:164.037450px;}
.x30{left:174.690000px;}
.x23{left:192.525000px;}
.xa{left:206.545650px;}
.xc{left:223.683150px;}
.x8{left:246.157050px;}
.x1{left:259.298250px;}
.xb{left:270.670650px;}
.x9{left:400.291650px;}
.x26{left:458.794500px;}
.x18{left:480.557850px;}
.x1a{left:482.057850px;}
.x16{left:487.046250px;}
.x14{left:491.697750px;}
.x3{left:511.205550px;}
.x4{left:674.145000px;}
.x35{left:747.409500px;}
.x2{left:890.371200px;}
.x34{left:1088.097900px;}
.x32{left:1440.684750px;}
.x33{left:1454.882250px;}
.x2c{left:1884.039000px;}
.x25{left:1958.061000px;}
.x2a{left:1985.701500px;}
.x1f{left:2038.993500px;}
.x1e{left:2060.241000px;}
.x1c{left:2159.431500px;}
.x24{left:2292.082500px;}
.x1d{left:2297.761500px;}
.x20{left:2780.997000px;}
.x2e{left:2792.862000px;}
.x2d{left:2798.469000px;}
.x28{left:2851.260000px;}
@media print{
.v3{vertical-align:-52.000000pt;}
.v2{vertical-align:-47.502224pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:20.800000pt;}
.v4{vertical-align:52.000000pt;}
.v1{vertical-align:71.253333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.040533pt;}
.ls2{letter-spacing:0.048000pt;}
.ls0{letter-spacing:0.053333pt;}
.ls1{letter-spacing:46.222400pt;}
.ws0{word-spacing:-160.000000pt;}
.ws7{word-spacing:-85.333333pt;}
.ws4{word-spacing:-74.666667pt;}
.ws6{word-spacing:-73.173333pt;}
.ws1{word-spacing:-59.733333pt;}
.ws5{word-spacing:-52.266667pt;}
.ws2{word-spacing:-39.822227pt;}
.ws3{word-spacing:-0.320000pt;}
.wsb{word-spacing:-0.288000pt;}
.wsc{word-spacing:-0.243200pt;}
.ws8{word-spacing:-0.208000pt;}
.wsd{word-spacing:0.000000pt;}
.wsa{word-spacing:46.013867pt;}
.ws9{word-spacing:57.630080pt;}
._0{margin-left:-12.200000pt;}
._d{margin-left:-10.840000pt;}
._9{margin-left:-7.200000pt;}
._5{margin-left:-6.080000pt;}
._6{margin-left:-4.800000pt;}
._2{margin-left:-3.800000pt;}
._3{margin-left:-2.560000pt;}
._1{margin-left:-1.000000pt;}
._c{width:2.240000pt;}
._4{width:3.840000pt;}
._8{width:5.493333pt;}
._7{width:7.000000pt;}
._a{width:8.320000pt;}
._b{width:57.669813pt;}
.fs3{font-size:142.222240pt;}
.fs9{font-size:147.680000pt;}
.fsc{font-size:160.000000pt;}
.fs5{font-size:186.666667pt;}
.fsb{font-size:202.666667pt;}
.fs8{font-size:208.000000pt;}
.fs2{font-size:213.333333pt;}
.fsd{font-size:229.333333pt;}
.fsa{font-size:240.000000pt;}
.fs6{font-size:261.333333pt;}
.fs4{font-size:266.666667pt;}
.fs7{font-size:293.333333pt;}
.fs1{font-size:320.000000pt;}
.fs0{font-size:666.666667pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:8.154667pt;}
.y32{bottom:11.073333pt;}
.y30{bottom:12.141333pt;}
.y2b{bottom:14.702453pt;}
.y14{bottom:30.929333pt;}
.y2e{bottom:39.765333pt;}
.y18{bottom:43.299733pt;}
.y1c{bottom:44.183333pt;}
.y1a{bottom:44.183467pt;}
.y1e{bottom:44.184000pt;}
.y23{bottom:44.330800pt;}
.y7{bottom:45.075427pt;}
.y6{bottom:47.222223pt;}
.y8{bottom:47.222289pt;}
.y39{bottom:48.153333pt;}
.yb{bottom:53.020000pt;}
.y3d{bottom:77.689400pt;}
.y17{bottom:120.633067pt;}
.y38{bottom:121.894667pt;}
.y2d{bottom:122.026667pt;}
.y29{bottom:125.516800pt;}
.ya{bottom:132.220000pt;}
.y5{bottom:141.011867pt;}
.y37{bottom:193.894667pt;}
.y16{bottom:197.966400pt;}
.y28{bottom:206.850133pt;}
.y36{bottom:265.894667pt;}
.y27{bottom:296.854400pt;}
.y15{bottom:297.410133pt;}
.y3b{bottom:313.780933pt;}
.y3a{bottom:363.114267pt;}
.y26{bottom:378.187733pt;}
.y25{bottom:433.930933pt;}
.y24{bottom:503.112667pt;}
.y19{bottom:598.203200pt;}
.y22{bottom:749.374533pt;}
.y1b{bottom:988.082000pt;}
.y1f{bottom:1391.548000pt;}
.y13{bottom:1672.784000pt;}
.y35{bottom:1727.841333pt;}
.y11{bottom:1771.912000pt;}
.y1d{bottom:1775.618667pt;}
.y10{bottom:1980.732000pt;}
.y2a{bottom:2153.177333pt;}
.yf{bottom:2182.828000pt;}
.ye{bottom:2264.161333pt;}
.y33{bottom:2299.156000pt;}
.y34{bottom:2299.465333pt;}
.yd{bottom:2461.260000pt;}
.yc{bottom:2542.593333pt;}
.y2f{bottom:2813.785333pt;}
.y31{bottom:2815.337333pt;}
.y2c{bottom:2873.274667pt;}
.y3c{bottom:3059.700000pt;}
.y9{bottom:3063.374667pt;}
.y21{bottom:3116.394667pt;}
.y20{bottom:3195.594667pt;}
.y4{bottom:3427.254667pt;}
.y3{bottom:3597.034667pt;}
.y2{bottom:3791.701333pt;}
.y1{bottom:3986.368000pt;}
.h14{height:51.187867pt;}
.h1c{height:51.811867pt;}
.h1a{height:52.088893pt;}
.h9{height:53.422227pt;}
.h18{height:54.755560pt;}
.hb{height:81.503920pt;}
.h3{height:91.920053pt;}
.h4{height:105.031109pt;}
.h11{height:114.007027pt;}
.h20{height:114.400000pt;}
.hf{height:116.233400pt;}
.hc{height:133.466667pt;}
.ha{height:133.893229pt;}
.h1b{height:144.906667pt;}
.h1f{height:145.369792pt;}
.h19{height:152.533333pt;}
.h15{height:163.904000pt;}
.h1e{height:171.840000pt;}
.h17{height:172.148438pt;}
.h21{height:173.834667pt;}
.he{height:186.853333pt;}
.h8{height:190.666667pt;}
.h7{height:191.276042pt;}
.h16{height:195.932533pt;}
.h10{height:202.133333pt;}
.h12{height:204.453333pt;}
.h5{height:219.080133pt;}
.h6{height:228.800000pt;}
.h2{height:242.560000pt;}
.hd{height:266.202133pt;}
.h1d{height:348.456800pt;}
.h13{height:450.237600pt;}
.h1{height:474.609375pt;}
.h0{height:4493.333333pt;}
.w5{width:147.976667pt;}
.w4{width:161.134933pt;}
.wa{width:290.164267pt;}
.wf{width:356.141200pt;}
.w7{width:380.500133pt;}
.w10{width:401.105867pt;}
.wb{width:434.291333pt;}
.wd{width:466.167867pt;}
.w6{width:486.836000pt;}
.w9{width:541.442267pt;}
.w8{width:580.950800pt;}
.w11{width:620.494667pt;}
.wc{width:673.998533pt;}
.w2{width:726.123467pt;}
.we{width:1363.738667pt;}
.w3{width:1608.864000pt;}
.w1{width:1621.298667pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x6{left:13.960027pt;}
.x15{left:18.116667pt;}
.x21{left:19.954667pt;}
.x2b{left:23.118667pt;}
.x1b{left:25.282133pt;}
.x19{left:31.987733pt;}
.x17{left:33.042000pt;}
.x11{left:41.554933pt;}
.xf{left:47.967333pt;}
.x29{left:50.310667pt;}
.x5{left:54.677733pt;}
.x13{left:59.542240pt;}
.x31{left:63.336000pt;}
.x7{left:71.566240pt;}
.x2f{left:86.400000pt;}
.x27{left:98.097333pt;}
.x22{left:117.550667pt;}
.xd{left:123.229480pt;}
.x12{left:135.622933pt;}
.xe{left:139.231867pt;}
.x10{left:145.811067pt;}
.x30{left:155.280000pt;}
.x23{left:171.133333pt;}
.xa{left:183.596133pt;}
.xc{left:198.829467pt;}
.x8{left:218.806267pt;}
.x1{left:230.487333pt;}
.xb{left:240.596133pt;}
.x9{left:355.814800pt;}
.x26{left:407.817333pt;}
.x18{left:427.162533pt;}
.x1a{left:428.495867pt;}
.x16{left:432.930000pt;}
.x14{left:437.064667pt;}
.x3{left:454.404933pt;}
.x4{left:599.240000pt;}
.x35{left:664.364000pt;}
.x2{left:791.441067pt;}
.x34{left:967.198133pt;}
.x32{left:1280.608667pt;}
.x33{left:1293.228667pt;}
.x2c{left:1674.701333pt;}
.x25{left:1740.498667pt;}
.x2a{left:1765.068000pt;}
.x1f{left:1812.438667pt;}
.x1e{left:1831.325333pt;}
.x1c{left:1919.494667pt;}
.x24{left:2037.406667pt;}
.x1d{left:2042.454667pt;}
.x20{left:2471.997333pt;}
.x2e{left:2482.544000pt;}
.x2d{left:2487.528000pt;}
.x28{left:2534.453333pt;}
}




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