
    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_0a9a9a4cea4f47ca1159a83c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.932129;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_06370649f2ebcfbb0c10118a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.911621;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_b352526437d8e2a4ac1851e0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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_40ef78ae9d46ec4e8a4e8280.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.903320;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);}
.v1{vertical-align:-36.570000px;}
.v2{vertical-align:-16.158000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:0.000000px;}
.ls8{letter-spacing:36.527484px;}
.ls5{letter-spacing:36.529542px;}
.ls1{letter-spacing:36.531162px;}
.ls3{letter-spacing:36.544998px;}
.ls4{letter-spacing:36.553230px;}
.ls9{letter-spacing:36.584622px;}
.lsa{letter-spacing:36.613170px;}
.lsb{letter-spacing:36.615492px;}
.ls2{letter-spacing:36.619170px;}
.ls6{letter-spacing:36.624204px;}
.ls7{letter-spacing:36.629064px;}
.ls0{letter-spacing:36.630684px;}
.lsd{letter-spacing:36.650298px;}
.lsc{letter-spacing:36.680730px;}
.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;}
}
.ws1{word-spacing:-162.707796px;}
.ws0{word-spacing:-59.832000px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-19.495500px;}
._c{margin-left:-14.957880px;}
._9{margin-left:-12.744000px;}
._a{margin-left:-10.602420px;}
._e{margin-left:-9.201876px;}
._4{margin-left:-7.452000px;}
._7{margin-left:-5.400000px;}
._0{margin-left:-4.104000px;}
._8{margin-left:-3.024000px;}
._1{margin-left:-1.080000px;}
._2{width:1.596000px;}
._d{width:4.343496px;}
._6{width:15.960000px;}
._5{width:16.992000px;}
._3{width:37.296162px;}
.fcb{color:transparent;}
.fc8{color:rgb(104,159,56);}
.fc6{color:rgb(244,67,54);}
.fc9{color:rgb(123,31,162);}
.fc3{color:rgb(224,64,251);}
.fc2{color:rgb(255,179,0);}
.fca{color:rgb(158,158,158);}
.fc7{color:rgb(192,192,192);}
.fc5{color:rgb(156,204,101);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(3,169,244);}
.fc0{color:rgb(198,40,40);}
.fs3{font-size:155.964000px;}
.fs0{font-size:216.000000px;}
.fs2{font-size:324.000000px;}
.fs1{font-size:719.946000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y78{bottom:88.057500px;}
.y77{bottom:135.765000px;}
.y70{bottom:153.495000px;}
.y76{bottom:183.472500px;}
.y6f{bottom:201.202500px;}
.y75{bottom:231.178500px;}
.y6e{bottom:248.910000px;}
.y74{bottom:278.886000px;}
.y6d{bottom:296.617500px;}
.y73{bottom:326.593500px;}
.y6c{bottom:344.323500px;}
.y72{bottom:374.301000px;}
.y6b{bottom:392.031000px;}
.y5d{bottom:418.053000px;}
.y71{bottom:422.007000px;}
.y6a{bottom:439.738500px;}
.y5c{bottom:478.516500px;}
.y69{bottom:487.444500px;}
.y68{bottom:535.152000px;}
.y5b{bottom:599.442000px;}
.y5e{bottom:600.165000px;}
.y5a{bottom:693.240000px;}
.y67{bottom:696.046500px;}
.y59{bottom:753.703500px;}
.y66{bottom:756.510000px;}
.y58{bottom:814.167000px;}
.y65{bottom:816.973500px;}
.y57{bottom:874.629000px;}
.y64{bottom:877.435500px;}
.y63{bottom:937.899000px;}
.y47{bottom:997.851000px;}
.y41{bottom:1007.928000px;}
.y46{bottom:1058.314500px;}
.y40{bottom:1068.391500px;}
.y54{bottom:1108.488000px;}
.y45{bottom:1118.778000px;}
.y3f{bottom:1128.855000px;}
.y53{bottom:1168.950000px;}
.y44{bottom:1179.240000px;}
.y3e{bottom:1189.317000px;}
.y52{bottom:1229.413500px;}
.y43{bottom:1239.703500px;}
.y3d{bottom:1249.780500px;}
.y51{bottom:1289.877000px;}
.y42{bottom:1300.167000px;}
.y3c{bottom:1310.244000px;}
.y50{bottom:1350.339000px;}
.y4f{bottom:1410.802500px;}
.y4e{bottom:1471.266000px;}
.y49{bottom:1488.528000px;}
.y4d{bottom:1531.728000px;}
.y48{bottom:1548.991500px;}
.y4c{bottom:1592.191500px;}
.y4b{bottom:1652.655000px;}
.y4a{bottom:1713.117000px;}
.y56{bottom:1717.200000px;}
.y55{bottom:1777.662000px;}
.y23{bottom:2169.055500px;}
.y32{bottom:2178.283500px;}
.y3b{bottom:2368.600500px;}
.y31{bottom:2383.440000px;}
.y3a{bottom:2429.064000px;}
.y30{bottom:2443.903500px;}
.y39{bottom:2489.527500px;}
.y2f{bottom:2504.367000px;}
.y38{bottom:2549.989500px;}
.y2e{bottom:2564.829000px;}
.y37{bottom:2610.453000px;}
.y2d{bottom:2625.292500px;}
.y36{bottom:2670.916500px;}
.y2c{bottom:2685.756000px;}
.y35{bottom:2731.378500px;}
.y2b{bottom:3090.415500px;}
.y28{bottom:3103.894500px;}
.y2a{bottom:3150.879000px;}
.y27{bottom:3164.356500px;}
.y22{bottom:3202.411500px;}
.y29{bottom:3211.341000px;}
.y26{bottom:3224.820000px;}
.y1b{bottom:3249.354000px;}
.y21{bottom:3262.875000px;}
.y1a{bottom:3309.817500px;}
.y20{bottom:3323.338500px;}
.y19{bottom:3370.279500px;}
.y1f{bottom:3383.800500px;}
.y25{bottom:3430.105500px;}
.y18{bottom:3430.743000px;}
.y1e{bottom:3444.264000px;}
.y24{bottom:3490.567500px;}
.y17{bottom:3491.206500px;}
.y1d{bottom:3504.727500px;}
.y16{bottom:3551.668500px;}
.y1c{bottom:3565.189500px;}
.y7{bottom:3591.211500px;}
.y6{bottom:3651.675000px;}
.y15{bottom:3688.923000px;}
.y34{bottom:3703.804500px;}
.y5{bottom:3712.138500px;}
.y14{bottom:3749.385000px;}
.y33{bottom:3764.266500px;}
.y4{bottom:3772.600500px;}
.y13{bottom:3809.848500px;}
.y3{bottom:3833.064000px;}
.y12{bottom:3870.312000px;}
.y2{bottom:3893.527500px;}
.y11{bottom:3930.774000px;}
.y10{bottom:3991.237500px;}
.ye{bottom:4165.908000px;}
.yf{bottom:4168.629000px;}
.y7b{bottom:4233.090000px;}
.y7c{bottom:4235.811000px;}
.y79{bottom:4299.165000px;}
.y7a{bottom:4301.886000px;}
.yc{bottom:4352.400000px;}
.yd{bottom:4356.439500px;}
.y61{bottom:4467.585000px;}
.y62{bottom:4470.306000px;}
.ya{bottom:4509.850500px;}
.yb{bottom:4518.991500px;}
.y5f{bottom:4533.661500px;}
.y60{bottom:4536.382500px;}
.y8{bottom:4729.633500px;}
.y9{bottom:4738.776000px;}
.h7{height:114.079137px;}
.h3{height:156.515625px;}
.h6{height:160.312500px;}
.h5{height:240.468750px;}
.h4{height:534.334922px;}
.h2{height:5055.420000px;}
.h0{height:5055.462992px;}
.h1{height:5055.750000px;}
.w2{width:3575.820000px;}
.w0{width:3575.862992px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x74{left:66.670500px;}
.x55{left:125.859000px;}
.x57{left:128.367000px;}
.x37{left:138.402000px;}
.x56{left:141.802500px;}
.x39{left:161.446500px;}
.x38{left:165.870000px;}
.x58{left:173.395500px;}
.x36{left:191.508000px;}
.x3a{left:209.962500px;}
.x54{left:220.464000px;}
.x59{left:291.897000px;}
.x31{left:338.457000px;}
.x34{left:358.824000px;}
.x33{left:373.833000px;}
.x30{left:403.894500px;}
.x32{left:420.435000px;}
.x51{left:457.044000px;}
.x50{left:480.090000px;}
.x52{left:490.081500px;}
.x4f{left:517.081500px;}
.x4e{left:526.096500px;}
.x35{left:628.993500px;}
.x4d{left:685.714500px;}
.x8{left:765.184500px;}
.x7{left:774.325500px;}
.x3c{left:812.169000px;}
.x3e{left:816.633000px;}
.x5d{left:824.626500px;}
.x3d{left:836.617500px;}
.x5c{left:839.635500px;}
.x5b{left:847.119000px;}
.x5e{left:862.129500px;}
.x53{left:892.275000px;}
.x3b{left:894.699000px;}
.x5f{left:908.773500px;}
.x60{left:916.980000px;}
.x61{left:926.758500px;}
.x9{left:945.892500px;}
.x3f{left:1002.784500px;}
.xa{left:1008.184500px;}
.x1d{left:1036.375500px;}
.x5a{left:1040.712000px;}
.x1c{left:1045.516500px;}
.xb{left:1098.708000px;}
.x79{left:1141.441500px;}
.x77{left:1148.712000px;}
.xc{left:1162.615500px;}
.x76{left:1166.995500px;}
.x78{left:1196.419500px;}
.x7a{left:1197.694500px;}
.x75{left:1211.556000px;}
.x1e{left:1217.083500px;}
.x2b{left:1254.373500px;}
.xd{left:1259.263500px;}
.x7b{left:1283.457000px;}
.x2f{left:1382.868000px;}
.x2e{left:1385.589000px;}
.xe{left:1421.602500px;}
.x1f{left:1430.404500px;}
.xf{left:1465.696500px;}
.x20{left:1492.696500px;}
.x21{left:1581.435000px;}
.x2c{left:1625.697000px;}
.x4b{left:1639.516500px;}
.x22{left:1645.341000px;}
.x4c{left:1660.479000px;}
.x10{left:1683.864000px;}
.x23{left:1716.987000px;}
.x2d{left:1719.283500px;}
.x65{left:1745.136000px;}
.x67{left:1748.026500px;}
.x4a{left:1749.685500px;}
.x24{left:1757.679000px;}
.x66{left:1761.591000px;}
.x11{left:1780.512000px;}
.x68{left:1812.571500px;}
.x12{left:1824.604500px;}
.x25{left:1925.971500px;}
.x26{left:1970.064000px;}
.x13{left:2006.589000px;}
.x2{left:2051.107500px;}
.x3{left:2067.945000px;}
.x5{left:2073.514500px;}
.x14{left:2091.714000px;}
.x4{left:2104.129500px;}
.x15{left:2132.404500px;}
.x41{left:2146.606500px;}
.x27{left:2151.879000px;}
.x1{left:2176.030500px;}
.x28{left:2192.569500px;}
.x42{left:2199.628500px;}
.x63{left:2205.538500px;}
.x16{left:2229.052500px;}
.x29{left:2281.692000px;}
.x17{left:2285.943000px;}
.x64{left:2313.538500px;}
.x69{left:2324.635500px;}
.x18{left:2326.635000px;}
.x2a{left:2369.367000px;}
.x19{left:2424.897000px;}
.x47{left:2442.883500px;}
.x48{left:2456.277000px;}
.x45{left:2460.870000px;}
.x46{left:2468.353500px;}
.x44{left:2469.883500px;}
.x6{left:2477.239500px;}
.x49{left:2537.362500px;}
.x1a{left:2656.204500px;}
.x40{left:2670.576000px;}
.x1b{left:2746.729500px;}
.x71{left:2795.712000px;}
.x70{left:2797.242000px;}
.x6f{left:2831.641500px;}
.x72{left:2858.725500px;}
.x7d{left:2896.611000px;}
.x7c{left:2899.332000px;}
.x7f{left:2901.714000px;}
.x7e{left:2904.435000px;}
.x73{left:2918.764500px;}
.x62{left:2922.378000px;}
.x43{left:2969.149500px;}
.x6e{left:3008.182500px;}
.x6d{left:3010.861500px;}
.x6a{left:3057.037500px;}
.x6c{left:3106.191000px;}
.x6b{left:3108.870000px;}
@media print{
.v1{vertical-align:-32.506667pt;}
.v2{vertical-align:-14.362667pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:0.000000pt;}
.ls8{letter-spacing:32.468875pt;}
.ls5{letter-spacing:32.470704pt;}
.ls1{letter-spacing:32.472144pt;}
.ls3{letter-spacing:32.484443pt;}
.ls4{letter-spacing:32.491760pt;}
.ls9{letter-spacing:32.519664pt;}
.lsa{letter-spacing:32.545040pt;}
.lsb{letter-spacing:32.547104pt;}
.ls2{letter-spacing:32.550373pt;}
.ls6{letter-spacing:32.554848pt;}
.ls7{letter-spacing:32.559168pt;}
.ls0{letter-spacing:32.560608pt;}
.lsd{letter-spacing:32.578043pt;}
.lsc{letter-spacing:32.605093pt;}
.ws1{word-spacing:-144.629152pt;}
.ws0{word-spacing:-53.184000pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-17.329333pt;}
._c{margin-left:-13.295893pt;}
._9{margin-left:-11.328000pt;}
._a{margin-left:-9.424373pt;}
._e{margin-left:-8.179445pt;}
._4{margin-left:-6.624000pt;}
._7{margin-left:-4.800000pt;}
._0{margin-left:-3.648000pt;}
._8{margin-left:-2.688000pt;}
._1{margin-left:-0.960000pt;}
._2{width:1.418667pt;}
._d{width:3.860885pt;}
._6{width:14.186667pt;}
._5{width:15.104000pt;}
._3{width:33.152144pt;}
.fs3{font-size:138.634667pt;}
.fs0{font-size:192.000000pt;}
.fs2{font-size:288.000000pt;}
.fs1{font-size:639.952000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y78{bottom:78.273333pt;}
.y77{bottom:120.680000pt;}
.y70{bottom:136.440000pt;}
.y76{bottom:163.086667pt;}
.y6f{bottom:178.846667pt;}
.y75{bottom:205.492000pt;}
.y6e{bottom:221.253333pt;}
.y74{bottom:247.898667pt;}
.y6d{bottom:263.660000pt;}
.y73{bottom:290.305333pt;}
.y6c{bottom:306.065333pt;}
.y72{bottom:332.712000pt;}
.y6b{bottom:348.472000pt;}
.y5d{bottom:371.602667pt;}
.y71{bottom:375.117333pt;}
.y6a{bottom:390.878667pt;}
.y5c{bottom:425.348000pt;}
.y69{bottom:433.284000pt;}
.y68{bottom:475.690667pt;}
.y5b{bottom:532.837333pt;}
.y5e{bottom:533.480000pt;}
.y5a{bottom:616.213333pt;}
.y67{bottom:618.708000pt;}
.y59{bottom:669.958667pt;}
.y66{bottom:672.453333pt;}
.y58{bottom:723.704000pt;}
.y65{bottom:726.198667pt;}
.y57{bottom:777.448000pt;}
.y64{bottom:779.942667pt;}
.y63{bottom:833.688000pt;}
.y47{bottom:886.978667pt;}
.y41{bottom:895.936000pt;}
.y46{bottom:940.724000pt;}
.y40{bottom:949.681333pt;}
.y54{bottom:985.322667pt;}
.y45{bottom:994.469333pt;}
.y3f{bottom:1003.426667pt;}
.y53{bottom:1039.066667pt;}
.y44{bottom:1048.213333pt;}
.y3e{bottom:1057.170667pt;}
.y52{bottom:1092.812000pt;}
.y43{bottom:1101.958667pt;}
.y3d{bottom:1110.916000pt;}
.y51{bottom:1146.557333pt;}
.y42{bottom:1155.704000pt;}
.y3c{bottom:1164.661333pt;}
.y50{bottom:1200.301333pt;}
.y4f{bottom:1254.046667pt;}
.y4e{bottom:1307.792000pt;}
.y49{bottom:1323.136000pt;}
.y4d{bottom:1361.536000pt;}
.y48{bottom:1376.881333pt;}
.y4c{bottom:1415.281333pt;}
.y4b{bottom:1469.026667pt;}
.y4a{bottom:1522.770667pt;}
.y56{bottom:1526.400000pt;}
.y55{bottom:1580.144000pt;}
.y23{bottom:1928.049333pt;}
.y32{bottom:1936.252000pt;}
.y3b{bottom:2105.422667pt;}
.y31{bottom:2118.613333pt;}
.y3a{bottom:2159.168000pt;}
.y30{bottom:2172.358667pt;}
.y39{bottom:2212.913333pt;}
.y2f{bottom:2226.104000pt;}
.y38{bottom:2266.657333pt;}
.y2e{bottom:2279.848000pt;}
.y37{bottom:2320.402667pt;}
.y2d{bottom:2333.593333pt;}
.y36{bottom:2374.148000pt;}
.y2c{bottom:2387.338667pt;}
.y35{bottom:2427.892000pt;}
.y2b{bottom:2747.036000pt;}
.y28{bottom:2759.017333pt;}
.y2a{bottom:2800.781333pt;}
.y27{bottom:2812.761333pt;}
.y22{bottom:2846.588000pt;}
.y29{bottom:2854.525333pt;}
.y26{bottom:2866.506667pt;}
.y1b{bottom:2888.314667pt;}
.y21{bottom:2900.333333pt;}
.y1a{bottom:2942.060000pt;}
.y20{bottom:2954.078667pt;}
.y19{bottom:2995.804000pt;}
.y1f{bottom:3007.822667pt;}
.y25{bottom:3048.982667pt;}
.y18{bottom:3049.549333pt;}
.y1e{bottom:3061.568000pt;}
.y24{bottom:3102.726667pt;}
.y17{bottom:3103.294667pt;}
.y1d{bottom:3115.313333pt;}
.y16{bottom:3157.038667pt;}
.y1c{bottom:3169.057333pt;}
.y7{bottom:3192.188000pt;}
.y6{bottom:3245.933333pt;}
.y15{bottom:3279.042667pt;}
.y34{bottom:3292.270667pt;}
.y5{bottom:3299.678667pt;}
.y14{bottom:3332.786667pt;}
.y33{bottom:3346.014667pt;}
.y4{bottom:3353.422667pt;}
.y13{bottom:3386.532000pt;}
.y3{bottom:3407.168000pt;}
.y12{bottom:3440.277333pt;}
.y2{bottom:3460.913333pt;}
.y11{bottom:3494.021333pt;}
.y10{bottom:3547.766667pt;}
.ye{bottom:3703.029333pt;}
.yf{bottom:3705.448000pt;}
.y7b{bottom:3762.746667pt;}
.y7c{bottom:3765.165333pt;}
.y79{bottom:3821.480000pt;}
.y7a{bottom:3823.898667pt;}
.yc{bottom:3868.800000pt;}
.yd{bottom:3872.390667pt;}
.y61{bottom:3971.186667pt;}
.y62{bottom:3973.605333pt;}
.ya{bottom:4008.756000pt;}
.yb{bottom:4016.881333pt;}
.y5f{bottom:4029.921333pt;}
.y60{bottom:4032.340000pt;}
.y8{bottom:4204.118667pt;}
.y9{bottom:4212.245333pt;}
.h7{height:101.403677pt;}
.h3{height:139.125000pt;}
.h6{height:142.500000pt;}
.h5{height:213.750000pt;}
.h4{height:474.964375pt;}
.h2{height:4493.706667pt;}
.h0{height:4493.744882pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.506667pt;}
.w0{width:3178.544882pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x74{left:59.262667pt;}
.x55{left:111.874667pt;}
.x57{left:114.104000pt;}
.x37{left:123.024000pt;}
.x56{left:126.046667pt;}
.x39{left:143.508000pt;}
.x38{left:147.440000pt;}
.x58{left:154.129333pt;}
.x36{left:170.229333pt;}
.x3a{left:186.633333pt;}
.x54{left:195.968000pt;}
.x59{left:259.464000pt;}
.x31{left:300.850667pt;}
.x34{left:318.954667pt;}
.x33{left:332.296000pt;}
.x30{left:359.017333pt;}
.x32{left:373.720000pt;}
.x51{left:406.261333pt;}
.x50{left:426.746667pt;}
.x52{left:435.628000pt;}
.x4f{left:459.628000pt;}
.x4e{left:467.641333pt;}
.x35{left:559.105333pt;}
.x4d{left:609.524000pt;}
.x8{left:680.164000pt;}
.x7{left:688.289333pt;}
.x3c{left:721.928000pt;}
.x3e{left:725.896000pt;}
.x5d{left:733.001333pt;}
.x3d{left:743.660000pt;}
.x5c{left:746.342667pt;}
.x5b{left:752.994667pt;}
.x5e{left:766.337333pt;}
.x53{left:793.133333pt;}
.x3b{left:795.288000pt;}
.x5f{left:807.798667pt;}
.x60{left:815.093333pt;}
.x61{left:823.785333pt;}
.x9{left:840.793333pt;}
.x3f{left:891.364000pt;}
.xa{left:896.164000pt;}
.x1d{left:921.222667pt;}
.x5a{left:925.077333pt;}
.x1c{left:929.348000pt;}
.xb{left:976.629333pt;}
.x79{left:1014.614667pt;}
.x77{left:1021.077333pt;}
.xc{left:1033.436000pt;}
.x76{left:1037.329333pt;}
.x78{left:1063.484000pt;}
.x7a{left:1064.617333pt;}
.x75{left:1076.938667pt;}
.x1e{left:1081.852000pt;}
.x2b{left:1114.998667pt;}
.xd{left:1119.345333pt;}
.x7b{left:1140.850667pt;}
.x2f{left:1229.216000pt;}
.x2e{left:1231.634667pt;}
.xe{left:1263.646667pt;}
.x1f{left:1271.470667pt;}
.xf{left:1302.841333pt;}
.x20{left:1326.841333pt;}
.x21{left:1405.720000pt;}
.x2c{left:1445.064000pt;}
.x4b{left:1457.348000pt;}
.x22{left:1462.525333pt;}
.x4c{left:1475.981333pt;}
.x10{left:1496.768000pt;}
.x23{left:1526.210667pt;}
.x2d{left:1528.252000pt;}
.x65{left:1551.232000pt;}
.x67{left:1553.801333pt;}
.x4a{left:1555.276000pt;}
.x24{left:1562.381333pt;}
.x66{left:1565.858667pt;}
.x11{left:1582.677333pt;}
.x68{left:1611.174667pt;}
.x12{left:1621.870667pt;}
.x25{left:1711.974667pt;}
.x26{left:1751.168000pt;}
.x13{left:1783.634667pt;}
.x2{left:1823.206667pt;}
.x3{left:1838.173333pt;}
.x5{left:1843.124000pt;}
.x14{left:1859.301333pt;}
.x4{left:1870.337333pt;}
.x15{left:1895.470667pt;}
.x41{left:1908.094667pt;}
.x27{left:1912.781333pt;}
.x1{left:1934.249333pt;}
.x28{left:1948.950667pt;}
.x42{left:1955.225333pt;}
.x63{left:1960.478667pt;}
.x16{left:1981.380000pt;}
.x29{left:2028.170667pt;}
.x17{left:2031.949333pt;}
.x64{left:2056.478667pt;}
.x69{left:2066.342667pt;}
.x18{left:2068.120000pt;}
.x2a{left:2106.104000pt;}
.x19{left:2155.464000pt;}
.x47{left:2171.452000pt;}
.x48{left:2183.357333pt;}
.x45{left:2187.440000pt;}
.x46{left:2194.092000pt;}
.x44{left:2195.452000pt;}
.x6{left:2201.990667pt;}
.x49{left:2255.433333pt;}
.x1a{left:2361.070667pt;}
.x40{left:2373.845333pt;}
.x1b{left:2441.537333pt;}
.x71{left:2485.077333pt;}
.x70{left:2486.437333pt;}
.x6f{left:2517.014667pt;}
.x72{left:2541.089333pt;}
.x7d{left:2574.765333pt;}
.x7c{left:2577.184000pt;}
.x7f{left:2579.301333pt;}
.x7e{left:2581.720000pt;}
.x73{left:2594.457333pt;}
.x62{left:2597.669333pt;}
.x43{left:2639.244000pt;}
.x6e{left:2673.940000pt;}
.x6d{left:2676.321333pt;}
.x6a{left:2717.366667pt;}
.x6c{left:2761.058667pt;}
.x6b{left:2763.440000pt;}
}




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