
    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_509225bb492201cb8bde326e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.981445;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_d662cc4549bb4252dc06b0a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.021484;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_76f2b66986725f5c5ddeba18.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_8233ad3109c37a864ee50f7e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_c980a31ed34d208b2556e6a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_38f37a4701a1cafabed0f95d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d4c4c6f8d6daa0ded97c227b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.696000;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_20b0a48df55f66c0b9804f6a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953125;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_233c7c2e7566df9ed3d168b6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.957000;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_a6d5469e41fa9952e3a2fb16.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.964844;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_9f202b15de0c1150cfc1bac1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893000;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:ffc;src:url('chunks/assets/font_beead0d4328ffc2d721f9eab.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.746094;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);}
.v4{vertical-align:-76.500002px;}
.v7{vertical-align:-56.250002px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:56.250002px;}
.v3{vertical-align:63.000002px;}
.v2{vertical-align:67.500002px;}
.v5{vertical-align:76.500002px;}
.v1{vertical-align:81.000003px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000827px;}
.ls3{letter-spacing:0.008460px;}
.ls7{letter-spacing:0.043574px;}
.ls0{letter-spacing:0.051746px;}
.ls2{letter-spacing:5.625000px;}
.ls4{letter-spacing:5.752804px;}
.ls5{letter-spacing:11.250000px;}
.ls6{letter-spacing:107.986470px;}
.ls1{letter-spacing:108.000705px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(89,89,89),0 0.015em rgb(89,89,89),0.015em 0 rgb(89,89,89),0 -0.015em  rgb(89,89,89);}
.sc1{text-shadow:-0.015em 0 rgb(238,238,238),0 0.015em rgb(238,238,238),0.015em 0 rgb(238,238,238),0 -0.015em  rgb(238,238,238);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(89,89,89);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(238,238,238);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-101.880003px;}
.ws2{word-spacing:-44.640001px;}
.ws6{word-spacing:-41.664000px;}
.ws9{word-spacing:-37.200000px;}
.ws0{word-spacing:-35.712003px;}
.wsc{word-spacing:-33.728002px;}
.ws4{word-spacing:-29.760002px;}
.ws7{word-spacing:-27.776001px;}
.wsd{word-spacing:-24.800001px;}
.ws5{word-spacing:-0.360000px;}
.wsb{word-spacing:-0.204000px;}
.ws8{word-spacing:-0.186000px;}
.ws3{word-spacing:-0.180000px;}
.wsa{word-spacing:-0.168000px;}
.wse{word-spacing:-0.150000px;}
.wsf{word-spacing:0.000000px;}
._8{margin-left:-14.515650px;}
._a{margin-left:-13.302399px;}
._9{margin-left:-7.992000px;}
._3{margin-left:-6.840000px;}
._7{margin-left:-5.427083px;}
._2{margin-left:-4.368000px;}
._6{margin-left:-2.880000px;}
._0{margin-left:-1.728000px;}
._1{width:1.195650px;}
._5{width:2.460375px;}
._4{width:4.428000px;}
._d{width:1536.817645px;}
._e{width:1579.657730px;}
._c{width:1691.032013px;}
._b{width:1717.872384px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(255,127,14);}
.fc4{color:rgb(31,119,180);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(238,238,238);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:96.000006px;}
.fs10{font-size:100.000004px;}
.fsd{font-size:108.000003px;}
.fs8{font-size:112.000005px;}
.fs3{font-size:120.000001px;}
.fs6{font-size:120.000010px;}
.fsf{font-size:136.000007px;}
.fs2{font-size:144.000012px;}
.fsc{font-size:149.999999px;}
.fs7{font-size:167.999999px;}
.fs5{font-size:180.000006px;}
.fsa{font-size:186.000000px;}
.fse{font-size:204.000001px;}
.fsb{font-size:210.000013px;}
.fs1{font-size:216.000007px;}
.fs4{font-size:360.000012px;}
.fs0{font-size:588.000034px;}
.y0{bottom:0.000000px;}
.y2f{bottom:11.788751px;}
.y2e{bottom:44.188741px;}
.y2d{bottom:76.588742px;}
.y2c{bottom:108.988750px;}
.y36{bottom:109.275512px;}
.y2b{bottom:141.388755px;}
.y35{bottom:141.675518px;}
.y26{bottom:176.083419px;}
.y34{bottom:326.460137px;}
.y33{bottom:434.460130px;}
.y25{bottom:664.564514px;}
.y2a{bottom:945.894619px;}
.y29{bottom:1132.456974px;}
.y40{bottom:1308.141705px;}
.y31{bottom:1407.022290px;}
.y1b{bottom:1477.231872px;}
.y32{bottom:1563.652279px;}
.y28{bottom:1951.107013px;}
.y27{bottom:2067.374867px;}
.y3b{bottom:2210.161401px;}
.y3f{bottom:2232.661402px;}
.y3a{bottom:2255.161403px;}
.y3e{bottom:2277.661404px;}
.y39{bottom:2300.161404px;}
.y3c{bottom:2322.661405px;}
.y3d{bottom:2336.723903px;}
.y38{bottom:2345.161404px;}
.y37{bottom:2433.141741px;}
.y30{bottom:2536.551126px;}
.y1a{bottom:2606.926646px;}
.y23{bottom:2805.227628px;}
.y21{bottom:2806.369391px;}
.y20{bottom:2856.769392px;}
.y1f{bottom:2907.169371px;}
.y1e{bottom:2957.569362px;}
.y1d{bottom:3007.969352px;}
.y1c{bottom:3059.089346px;}
.y22{bottom:3067.730636px;}
.y17{bottom:3483.156598px;}
.y13{bottom:3490.397661px;}
.y16{bottom:3533.556600px;}
.y12{bottom:3540.797663px;}
.y15{bottom:3583.956602px;}
.y11{bottom:3591.197658px;}
.y14{bottom:3634.356597px;}
.y19{bottom:3744.421370px;}
.y10{bottom:3744.889076px;}
.y18{bottom:3798.421372px;}
.yf{bottom:3798.889078px;}
.y24{bottom:3891.481837px;}
.ye{bottom:4070.421118px;}
.yb{bottom:4070.421163px;}
.yd{bottom:4132.521120px;}
.ya{bottom:4132.521143px;}
.y9{bottom:4194.621122px;}
.yc{bottom:4209.621119px;}
.y8{bottom:4271.721121px;}
.y7{bottom:4333.821115px;}
.y6{bottom:4480.360316px;}
.y5{bottom:4646.779007px;}
.y4{bottom:4682.779008px;}
.y3{bottom:4718.779010px;}
.y2{bottom:4785.259008px;}
.y1{bottom:4872.379011px;}
.hb{height:69.937504px;}
.hf{height:78.679690px;}
.h15{height:80.224613px;}
.h3{height:95.449219px;}
.he{height:114.038085px;}
.h14{height:120.336913px;}
.h10{height:122.390625px;}
.ha{height:127.722656px;}
.h8{height:134.777343px;}
.h13{height:136.474615px;}
.h6{height:136.845708px;}
.hc{height:141.407227px;}
.h5{height:144.404301px;}
.h11{height:146.027344px;}
.h9{height:152.851569px;}
.h12{height:163.658204px;}
.h7{height:163.769541px;}
.hd{height:168.471690px;}
.h2{height:195.539074px;}
.h4{height:283.320009px;}
.h1{height:447.029323px;}
.h0{height:5055.000000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x25{left:126.507432px;}
.x29{left:176.622053px;}
.x7{left:194.837546px;}
.xb{left:210.037761px;}
.x20{left:228.897649px;}
.xc{left:243.568035px;}
.x8{left:249.017723px;}
.x1f{left:256.125012px;}
.x1e{left:282.375009px;}
.x1c{left:291.568093px;}
.x2f{left:309.754883px;}
.x28{left:311.111881px;}
.x24{left:393.611244px;}
.x1{left:416.540207px;}
.x26{left:515.700849px;}
.xd{left:857.376831px;}
.xe{left:901.380476px;}
.x22{left:929.932297px;}
.xf{left:953.309151px;}
.x2a{left:964.701869px;}
.x16{left:1078.933400px;}
.x17{left:1081.903461px;}
.x2{left:1156.458581px;}
.x23{left:1198.609688px;}
.x3{left:1244.276309px;}
.x4{left:1310.491111px;}
.x1b{left:1474.216157px;}
.x6{left:1602.780869px;}
.x5{left:1628.581496px;}
.x18{left:1631.096490px;}
.x2b{left:1693.923489px;}
.x9{left:1725.885892px;}
.xa{left:1780.066069px;}
.x2c{left:1802.428230px;}
.x2d{left:1852.074847px;}
.x13{left:2059.908869px;}
.x10{left:2094.541827px;}
.x12{left:2096.582091px;}
.x1d{left:2109.673305px;}
.x21{left:2127.366181px;}
.x11{left:2133.224427px;}
.x14{left:2501.880110px;}
.x15{left:2516.601789px;}
.x2e{left:2640.154556px;}
.x27{left:2793.165502px;}
.x1a{left:3094.860249px;}
.x19{left:3170.235251px;}
@media print{
.v4{vertical-align:-68.000002pt;}
.v7{vertical-align:-50.000002pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:50.000002pt;}
.v3{vertical-align:56.000002pt;}
.v2{vertical-align:60.000002pt;}
.v5{vertical-align:68.000002pt;}
.v1{vertical-align:72.000002pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000735pt;}
.ls3{letter-spacing:0.007520pt;}
.ls7{letter-spacing:0.038733pt;}
.ls0{letter-spacing:0.045996pt;}
.ls2{letter-spacing:5.000000pt;}
.ls4{letter-spacing:5.113603pt;}
.ls5{letter-spacing:10.000000pt;}
.ls6{letter-spacing:95.987973pt;}
.ls1{letter-spacing:96.000627pt;}
.ws1{word-spacing:-90.560003pt;}
.ws2{word-spacing:-39.680001pt;}
.ws6{word-spacing:-37.034667pt;}
.ws9{word-spacing:-33.066666pt;}
.ws0{word-spacing:-31.744003pt;}
.wsc{word-spacing:-29.980446pt;}
.ws4{word-spacing:-26.453336pt;}
.ws7{word-spacing:-24.689779pt;}
.wsd{word-spacing:-22.044445pt;}
.ws5{word-spacing:-0.320000pt;}
.wsb{word-spacing:-0.181333pt;}
.ws8{word-spacing:-0.165333pt;}
.ws3{word-spacing:-0.160000pt;}
.wsa{word-spacing:-0.149333pt;}
.wse{word-spacing:-0.133333pt;}
.wsf{word-spacing:0.000000pt;}
._8{margin-left:-12.902800pt;}
._a{margin-left:-11.824355pt;}
._9{margin-left:-7.104000pt;}
._3{margin-left:-6.080000pt;}
._7{margin-left:-4.824074pt;}
._2{margin-left:-3.882667pt;}
._6{margin-left:-2.560000pt;}
._0{margin-left:-1.536000pt;}
._1{width:1.062800pt;}
._5{width:2.187000pt;}
._4{width:3.936000pt;}
._d{width:1366.060129pt;}
._e{width:1404.140204pt;}
._c{width:1503.139568pt;}
._b{width:1526.997675pt;}
.fs9{font-size:85.333339pt;}
.fs10{font-size:88.888893pt;}
.fsd{font-size:96.000003pt;}
.fs8{font-size:99.555560pt;}
.fs3{font-size:106.666667pt;}
.fs6{font-size:106.666675pt;}
.fsf{font-size:120.888895pt;}
.fs2{font-size:128.000010pt;}
.fsc{font-size:133.333332pt;}
.fs7{font-size:149.333333pt;}
.fs5{font-size:160.000005pt;}
.fsa{font-size:165.333333pt;}
.fse{font-size:181.333334pt;}
.fsb{font-size:186.666678pt;}
.fs1{font-size:192.000006pt;}
.fs4{font-size:320.000010pt;}
.fs0{font-size:522.666697pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:10.478890pt;}
.y2e{bottom:39.278881pt;}
.y2d{bottom:68.078882pt;}
.y2c{bottom:96.878889pt;}
.y36{bottom:97.133789pt;}
.y2b{bottom:125.678894pt;}
.y35{bottom:125.933794pt;}
.y26{bottom:156.518595pt;}
.y34{bottom:290.186789pt;}
.y33{bottom:386.186782pt;}
.y25{bottom:590.724012pt;}
.y2a{bottom:840.795216pt;}
.y29{bottom:1006.628422pt;}
.y40{bottom:1162.792627pt;}
.y31{bottom:1250.686480pt;}
.y1b{bottom:1313.094998pt;}
.y32{bottom:1389.913137pt;}
.y28{bottom:1734.317345pt;}
.y27{bottom:1837.666548pt;}
.y3b{bottom:1964.587912pt;}
.y3f{bottom:1984.587913pt;}
.y3a{bottom:2004.587914pt;}
.y3e{bottom:2024.587914pt;}
.y39{bottom:2044.587915pt;}
.y3c{bottom:2064.587916pt;}
.y3d{bottom:2077.087914pt;}
.y38{bottom:2084.587914pt;}
.y37{bottom:2162.792659pt;}
.y30{bottom:2254.712112pt;}
.y1a{bottom:2317.268130pt;}
.y23{bottom:2493.535669pt;}
.y21{bottom:2494.550569pt;}
.y20{bottom:2539.350571pt;}
.y1f{bottom:2584.150552pt;}
.y1e{bottom:2628.950544pt;}
.y1d{bottom:2673.750535pt;}
.y1c{bottom:2719.190530pt;}
.y22{bottom:2726.871677pt;}
.y17{bottom:3096.139199pt;}
.y13{bottom:3102.575699pt;}
.y16{bottom:3140.939200pt;}
.y12{bottom:3147.375700pt;}
.y15{bottom:3185.739201pt;}
.y11{bottom:3192.175696pt;}
.y14{bottom:3230.539197pt;}
.y19{bottom:3328.374551pt;}
.y10{bottom:3328.790290pt;}
.y18{bottom:3376.374553pt;}
.yf{bottom:3376.790292pt;}
.y24{bottom:3459.094966pt;}
.ye{bottom:3618.152105pt;}
.yb{bottom:3618.152145pt;}
.yd{bottom:3673.352107pt;}
.ya{bottom:3673.352127pt;}
.y9{bottom:3728.552109pt;}
.yc{bottom:3741.885439pt;}
.y8{bottom:3797.085441pt;}
.y7{bottom:3852.285436pt;}
.y6{bottom:3982.542503pt;}
.y5{bottom:4130.470229pt;}
.y4{bottom:4162.470230pt;}
.y3{bottom:4194.470231pt;}
.y2{bottom:4253.563563pt;}
.y1{bottom:4331.003565pt;}
.hb{height:62.166671pt;}
.hf{height:69.937502pt;}
.h15{height:71.310767pt;}
.h3{height:84.843751pt;}
.he{height:101.367187pt;}
.h14{height:106.966145pt;}
.h10{height:108.791666pt;}
.ha{height:113.531250pt;}
.h8{height:119.802083pt;}
.h13{height:121.310768pt;}
.h6{height:121.640629pt;}
.hc{height:125.695312pt;}
.h5{height:128.359379pt;}
.h11{height:129.802084pt;}
.h9{height:135.868061pt;}
.h12{height:145.473959pt;}
.h7{height:145.572926pt;}
.hd{height:149.752613pt;}
.h2{height:173.812511pt;}
.h4{height:251.840008pt;}
.h1{height:397.359398pt;}
.h0{height:4493.333333pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x25{left:112.451051pt;}
.x29{left:156.997380pt;}
.x7{left:173.188930pt;}
.xb{left:186.700232pt;}
.x20{left:203.464577pt;}
.xc{left:216.504920pt;}
.x8{left:221.349087pt;}
.x1f{left:227.666677pt;}
.x1e{left:251.000008pt;}
.x1c{left:259.171638pt;}
.x2f{left:275.337674pt;}
.x28{left:276.543894pt;}
.x24{left:349.876661pt;}
.x1{left:370.257962pt;}
.x26{left:458.400755pt;}
.xd{left:762.112738pt;}
.xe{left:801.227090pt;}
.x22{left:826.606486pt;}
.xf{left:847.385912pt;}
.x2a{left:857.512772pt;}
.x16{left:959.051911pt;}
.x17{left:961.691966pt;}
.x2{left:1027.963183pt;}
.x23{left:1065.430834pt;}
.x3{left:1106.023385pt;}
.x4{left:1164.880987pt;}
.x1b{left:1310.414362pt;}
.x6{left:1424.694106pt;}
.x5{left:1447.627996pt;}
.x18{left:1449.863546pt;}
.x2b{left:1505.709768pt;}
.x9{left:1534.120793pt;}
.xa{left:1582.280951pt;}
.x2c{left:1602.158426pt;}
.x2d{left:1646.288753pt;}
.x13{left:1831.030106pt;}
.x10{left:1861.814958pt;}
.x12{left:1863.628526pt;}
.x1d{left:1875.265160pt;}
.x21{left:1890.992161pt;}
.x11{left:1896.199491pt;}
.x14{left:2223.893431pt;}
.x15{left:2236.979368pt;}
.x2e{left:2346.804050pt;}
.x27{left:2482.813779pt;}
.x1a{left:2750.986888pt;}
.x19{left:2817.986890pt;}
}




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