
    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_58312e549622a1d637687278.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_fc76c4dd011f65fdbb90183a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_2dd2d1850125f05fef2e5d7f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_00980315a34bf39687f44ea0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_13b2d995c0b40597471cbe33.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_5a3b3ec7e8fc8d39a80557d1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.091797;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_6b5c77eb6339d0bb22ab5a25.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_1ab7299373eea51aaf1864eb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.030273;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);}
.v2{vertical-align:-64.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:64.800000px;}
.v3{vertical-align:119.340000px;}
.ls5{letter-spacing:-0.325200px;}
.ls6{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.064080px;}
.ls3{letter-spacing:0.288000px;}
.ls2{letter-spacing:111.549600px;}
.ls0{letter-spacing:111.600000px;}
.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:-53.117520px;}
.ws3{word-spacing:-50.040000px;}
.ws0{word-spacing:-40.032000px;}
.ws4{word-spacing:-30.024000px;}
.wsa{word-spacing:-29.520000px;}
.ws8{word-spacing:-29.261232px;}
.ws5{word-spacing:-29.232000px;}
.ws9{word-spacing:-29.088000px;}
.ws6{word-spacing:-1.176000px;}
.wsb{word-spacing:0.000000px;}
.ws7{word-spacing:0.288000px;}
.ws1{word-spacing:0.864000px;}
._5{margin-left:-2.448000px;}
._1{margin-left:-1.440000px;}
._0{width:1.008000px;}
._2{width:2.160000px;}
._4{width:30.360000px;}
._3{width:2532.516000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(25,25,25);}
.fs7{font-size:72.000000px;}
.fs6{font-size:108.000000px;}
.fs1{font-size:144.000000px;}
.fs5{font-size:144.144000px;}
.fs0{font-size:180.000000px;}
.fs4{font-size:192.240000px;}
.fs3{font-size:216.000000px;}
.fs2{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:125.928000px;}
.y1d{bottom:156.990000px;}
.y86{bottom:159.840000px;}
.y30{bottom:169.125000px;}
.y1c{bottom:200.190000px;}
.y85{bottom:203.040000px;}
.y2f{bottom:212.325000px;}
.y1b{bottom:243.390000px;}
.y84{bottom:246.240000px;}
.y2e{bottom:255.525000px;}
.y1a{bottom:286.590000px;}
.y83{bottom:289.440000px;}
.y19{bottom:329.790000px;}
.y82{bottom:332.640000px;}
.y58{bottom:342.255000px;}
.y2d{bottom:352.110000px;}
.y18{bottom:372.990000px;}
.y57{bottom:374.655000px;}
.y81{bottom:375.840000px;}
.y2c{bottom:384.510000px;}
.y56{bottom:407.055000px;}
.y17{bottom:416.190000px;}
.y80{bottom:419.040000px;}
.y16{bottom:459.390000px;}
.y7f{bottom:462.240000px;}
.y15{bottom:502.590000px;}
.y7e{bottom:505.440000px;}
.y7d{bottom:548.640000px;}
.y26{bottom:561.210000px;}
.y7c{bottom:591.840000px;}
.y25{bottom:604.410000px;}
.y7b{bottom:635.040000px;}
.y24{bottom:655.170000px;}
.y7a{bottom:678.240000px;}
.y23{bottom:698.370000px;}
.y79{bottom:721.470000px;}
.y22{bottom:741.570000px;}
.y78{bottom:764.670000px;}
.y55{bottom:765.285000px;}
.y21{bottom:784.800000px;}
.y54{bottom:797.685000px;}
.y77{bottom:807.870000px;}
.y53{bottom:830.085000px;}
.y20{bottom:835.380000px;}
.y76{bottom:851.070000px;}
.y1f{bottom:878.580000px;}
.y75{bottom:894.270000px;}
.y1e{bottom:935.355000px;}
.y74{bottom:937.470000px;}
.y73{bottom:980.670000px;}
.y72{bottom:1023.870000px;}
.y9a{bottom:1089.390000px;}
.y2b{bottom:1098.900000px;}
.y52{bottom:1117.185000px;}
.y99{bottom:1132.590000px;}
.y2a{bottom:1142.100000px;}
.y51{bottom:1160.385000px;}
.y98{bottom:1175.790000px;}
.y29{bottom:1185.300000px;}
.y50{bottom:1203.585000px;}
.y97{bottom:1218.990000px;}
.y28{bottom:1230.660000px;}
.y4f{bottom:1246.785000px;}
.y96{bottom:1262.190000px;}
.y27{bottom:1284.660000px;}
.y4e{bottom:1289.985000px;}
.y95{bottom:1305.390000px;}
.y4d{bottom:1333.185000px;}
.y94{bottom:1348.590000px;}
.y93{bottom:1391.835000px;}
.y3f{bottom:1412.640000px;}
.y92{bottom:1435.035000px;}
.y4c{bottom:1453.935000px;}
.y3e{bottom:1455.840000px;}
.y91{bottom:1478.235000px;}
.y4b{bottom:1497.135000px;}
.y3d{bottom:1499.070000px;}
.y90{bottom:1521.435000px;}
.y4a{bottom:1540.335000px;}
.y3c{bottom:1542.270000px;}
.y8f{bottom:1564.635000px;}
.y49{bottom:1583.535000px;}
.y3b{bottom:1585.470000px;}
.y8e{bottom:1607.835000px;}
.y8d{bottom:1651.035000px;}
.y8c{bottom:1694.235000px;}
.y8b{bottom:1737.435000px;}
.y8a{bottom:1780.635000px;}
.y89{bottom:1823.835000px;}
.y88{bottom:1867.035000px;}
.y5d{bottom:1919.520000px;}
.y87{bottom:1926.105000px;}
.y9b{bottom:1932.945000px;}
.y5c{bottom:1962.750000px;}
.y5b{bottom:2005.950000px;}
.y5a{bottom:2049.150000px;}
.y59{bottom:2092.350000px;}
.y71{bottom:2143.470000px;}
.y70{bottom:2186.670000px;}
.y9c{bottom:2205.075000px;}
.y6f{bottom:2229.870000px;}
.y6e{bottom:2273.070000px;}
.y6d{bottom:2316.270000px;}
.y6c{bottom:2359.470000px;}
.y6b{bottom:2402.670000px;}
.y3a{bottom:2422.365000px;}
.y48{bottom:2435.865000px;}
.y6a{bottom:2445.870000px;}
.y39{bottom:2465.565000px;}
.y47{bottom:2479.065000px;}
.y69{bottom:2489.070000px;}
.y38{bottom:2508.765000px;}
.y46{bottom:2522.265000px;}
.y68{bottom:2532.270000px;}
.y37{bottom:2559.345000px;}
.y45{bottom:2573.025000px;}
.y67{bottom:2575.470000px;}
.y36{bottom:2602.545000px;}
.y44{bottom:2616.225000px;}
.y66{bottom:2618.670000px;}
.y35{bottom:2653.305000px;}
.y43{bottom:2659.425000px;}
.y65{bottom:2661.915000px;}
.y34{bottom:2704.065000px;}
.y42{bottom:2710.005000px;}
.y41{bottom:2753.205000px;}
.y33{bottom:2754.645000px;}
.y64{bottom:2798.130000px;}
.y40{bottom:2798.565000px;}
.y32{bottom:2800.005000px;}
.ye{bottom:2896.200000px;}
.y7{bottom:2902.830000px;}
.y63{bottom:2939.295000px;}
.y6{bottom:2946.030000px;}
.yd{bottom:2946.780000px;}
.y62{bottom:2989.905000px;}
.y5{bottom:2996.790000px;}
.yc{bottom:2997.540000px;}
.y61{bottom:3040.665000px;}
.y4{bottom:3047.550000px;}
.yb{bottom:3048.300000px;}
.y60{bottom:3091.425000px;}
.ya{bottom:3091.500000px;}
.y3{bottom:3098.130000px;}
.y2{bottom:3141.330000px;}
.y5f{bottom:3142.005000px;}
.y9{bottom:3142.080000px;}
.y1{bottom:3186.690000px;}
.y5e{bottom:3187.365000px;}
.y8{bottom:3187.440000px;}
.y14{bottom:3281.910000px;}
.y13{bottom:3328.890000px;}
.y12{bottom:3409.890000px;}
.y11{bottom:3458.490000px;}
.y10{bottom:3538.770000px;}
.yf{bottom:3665.310000px;}
.he{height:75.093750px;}
.hb{height:112.640625px;}
.h9{height:124.804688px;}
.hc{height:124.929492px;}
.h8{height:125.015625px;}
.hd{height:125.140641px;}
.h2{height:150.187500px;}
.ha{height:150.337688px;}
.h6{height:160.481250px;}
.h1{height:187.734375px;}
.h5{height:225.281250px;}
.h7{height:255.040313px;}
.h3{height:324.843750px;}
.h4{height:450.562500px;}
.h0{height:3888.000000px;}
.w1{width:5183.999923px;}
.w0{width:5184.000000px;}
.x0{left:0.000000px;}
.x14{left:115.631923px;}
.x15{left:117.683923px;}
.x5{left:155.549923px;}
.x16{left:157.109923px;}
.x6{left:196.049923px;}
.x17{left:197.609923px;}
.x11{left:209.669923px;}
.x2c{left:295.844923px;}
.x13{left:489.809923px;}
.x4{left:521.129923px;}
.x7{left:602.789923px;}
.x8{left:608.729923px;}
.x9{left:616.289923px;}
.x1d{left:667.769923px;}
.xa{left:688.829923px;}
.x1f{left:697.649923px;}
.x1e{left:700.529923px;}
.x12{left:756.359923px;}
.x1b{left:884.729923px;}
.x19{left:926.789923px;}
.x1a{left:967.289923px;}
.x18{left:975.749923px;}
.x21{left:989.384923px;}
.x20{left:1009.724923px;}
.x22{left:1024.664923px;}
.xc{left:1227.209923px;}
.x2b{left:1353.344923px;}
.x2a{left:1831.859923px;}
.x2{left:1835.279923px;}
.x3{left:1875.779923px;}
.xb{left:2258.999923px;}
.x29{left:2310.809923px;}
.x26{left:2428.094923px;}
.x1{left:2454.149923px;}
.x27{left:2612.309923px;}
.x28{left:3063.314923px;}
.x1c{left:3577.289923px;}
.xf{left:3595.289923px;}
.xd{left:3603.059923px;}
.x24{left:3617.849923px;}
.x10{left:3635.789923px;}
.x25{left:3712.349923px;}
.xe{left:3983.939923px;}
.x23{left:4073.609923px;}
@media print{
.v2{vertical-align:-57.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:57.600000pt;}
.v3{vertical-align:106.080000pt;}
.ls5{letter-spacing:-0.289067pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.056960pt;}
.ls3{letter-spacing:0.256000pt;}
.ls2{letter-spacing:99.155200pt;}
.ls0{letter-spacing:99.200000pt;}
.ws2{word-spacing:-47.215573pt;}
.ws3{word-spacing:-44.480000pt;}
.ws0{word-spacing:-35.584000pt;}
.ws4{word-spacing:-26.688000pt;}
.wsa{word-spacing:-26.240000pt;}
.ws8{word-spacing:-26.009984pt;}
.ws5{word-spacing:-25.984000pt;}
.ws9{word-spacing:-25.856000pt;}
.ws6{word-spacing:-1.045333pt;}
.wsb{word-spacing:0.000000pt;}
.ws7{word-spacing:0.256000pt;}
.ws1{word-spacing:0.768000pt;}
._5{margin-left:-2.176000pt;}
._1{margin-left:-1.280000pt;}
._0{width:0.896000pt;}
._2{width:1.920000pt;}
._4{width:26.986667pt;}
._3{width:2251.125333pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:96.000000pt;}
.fs1{font-size:128.000000pt;}
.fs5{font-size:128.128000pt;}
.fs0{font-size:160.000000pt;}
.fs4{font-size:170.880000pt;}
.fs3{font-size:192.000000pt;}
.fs2{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:111.936000pt;}
.y1d{bottom:139.546667pt;}
.y86{bottom:142.080000pt;}
.y30{bottom:150.333333pt;}
.y1c{bottom:177.946667pt;}
.y85{bottom:180.480000pt;}
.y2f{bottom:188.733333pt;}
.y1b{bottom:216.346667pt;}
.y84{bottom:218.880000pt;}
.y2e{bottom:227.133333pt;}
.y1a{bottom:254.746667pt;}
.y83{bottom:257.280000pt;}
.y19{bottom:293.146667pt;}
.y82{bottom:295.680000pt;}
.y58{bottom:304.226667pt;}
.y2d{bottom:312.986667pt;}
.y18{bottom:331.546667pt;}
.y57{bottom:333.026667pt;}
.y81{bottom:334.080000pt;}
.y2c{bottom:341.786667pt;}
.y56{bottom:361.826667pt;}
.y17{bottom:369.946667pt;}
.y80{bottom:372.480000pt;}
.y16{bottom:408.346667pt;}
.y7f{bottom:410.880000pt;}
.y15{bottom:446.746667pt;}
.y7e{bottom:449.280000pt;}
.y7d{bottom:487.680000pt;}
.y26{bottom:498.853333pt;}
.y7c{bottom:526.080000pt;}
.y25{bottom:537.253333pt;}
.y7b{bottom:564.480000pt;}
.y24{bottom:582.373333pt;}
.y7a{bottom:602.880000pt;}
.y23{bottom:620.773333pt;}
.y79{bottom:641.306667pt;}
.y22{bottom:659.173333pt;}
.y78{bottom:679.706667pt;}
.y55{bottom:680.253333pt;}
.y21{bottom:697.600000pt;}
.y54{bottom:709.053333pt;}
.y77{bottom:718.106667pt;}
.y53{bottom:737.853333pt;}
.y20{bottom:742.560000pt;}
.y76{bottom:756.506667pt;}
.y1f{bottom:780.960000pt;}
.y75{bottom:794.906667pt;}
.y1e{bottom:831.426667pt;}
.y74{bottom:833.306667pt;}
.y73{bottom:871.706667pt;}
.y72{bottom:910.106667pt;}
.y9a{bottom:968.346667pt;}
.y2b{bottom:976.800000pt;}
.y52{bottom:993.053333pt;}
.y99{bottom:1006.746667pt;}
.y2a{bottom:1015.200000pt;}
.y51{bottom:1031.453333pt;}
.y98{bottom:1045.146667pt;}
.y29{bottom:1053.600000pt;}
.y50{bottom:1069.853333pt;}
.y97{bottom:1083.546667pt;}
.y28{bottom:1093.920000pt;}
.y4f{bottom:1108.253333pt;}
.y96{bottom:1121.946667pt;}
.y27{bottom:1141.920000pt;}
.y4e{bottom:1146.653333pt;}
.y95{bottom:1160.346667pt;}
.y4d{bottom:1185.053333pt;}
.y94{bottom:1198.746667pt;}
.y93{bottom:1237.186667pt;}
.y3f{bottom:1255.680000pt;}
.y92{bottom:1275.586667pt;}
.y4c{bottom:1292.386667pt;}
.y3e{bottom:1294.080000pt;}
.y91{bottom:1313.986667pt;}
.y4b{bottom:1330.786667pt;}
.y3d{bottom:1332.506667pt;}
.y90{bottom:1352.386667pt;}
.y4a{bottom:1369.186667pt;}
.y3c{bottom:1370.906667pt;}
.y8f{bottom:1390.786667pt;}
.y49{bottom:1407.586667pt;}
.y3b{bottom:1409.306667pt;}
.y8e{bottom:1429.186667pt;}
.y8d{bottom:1467.586667pt;}
.y8c{bottom:1505.986667pt;}
.y8b{bottom:1544.386667pt;}
.y8a{bottom:1582.786667pt;}
.y89{bottom:1621.186667pt;}
.y88{bottom:1659.586667pt;}
.y5d{bottom:1706.240000pt;}
.y87{bottom:1712.093333pt;}
.y9b{bottom:1718.173333pt;}
.y5c{bottom:1744.666667pt;}
.y5b{bottom:1783.066667pt;}
.y5a{bottom:1821.466667pt;}
.y59{bottom:1859.866667pt;}
.y71{bottom:1905.306667pt;}
.y70{bottom:1943.706667pt;}
.y9c{bottom:1960.066667pt;}
.y6f{bottom:1982.106667pt;}
.y6e{bottom:2020.506667pt;}
.y6d{bottom:2058.906667pt;}
.y6c{bottom:2097.306667pt;}
.y6b{bottom:2135.706667pt;}
.y3a{bottom:2153.213333pt;}
.y48{bottom:2165.213333pt;}
.y6a{bottom:2174.106667pt;}
.y39{bottom:2191.613333pt;}
.y47{bottom:2203.613333pt;}
.y69{bottom:2212.506667pt;}
.y38{bottom:2230.013333pt;}
.y46{bottom:2242.013333pt;}
.y68{bottom:2250.906667pt;}
.y37{bottom:2274.973333pt;}
.y45{bottom:2287.133333pt;}
.y67{bottom:2289.306667pt;}
.y36{bottom:2313.373333pt;}
.y44{bottom:2325.533333pt;}
.y66{bottom:2327.706667pt;}
.y35{bottom:2358.493333pt;}
.y43{bottom:2363.933333pt;}
.y65{bottom:2366.146667pt;}
.y34{bottom:2403.613333pt;}
.y42{bottom:2408.893333pt;}
.y41{bottom:2447.293333pt;}
.y33{bottom:2448.573333pt;}
.y64{bottom:2487.226667pt;}
.y40{bottom:2487.613333pt;}
.y32{bottom:2488.893333pt;}
.ye{bottom:2574.400000pt;}
.y7{bottom:2580.293333pt;}
.y63{bottom:2612.706667pt;}
.y6{bottom:2618.693333pt;}
.yd{bottom:2619.360000pt;}
.y62{bottom:2657.693333pt;}
.y5{bottom:2663.813333pt;}
.yc{bottom:2664.480000pt;}
.y61{bottom:2702.813333pt;}
.y4{bottom:2708.933333pt;}
.yb{bottom:2709.600000pt;}
.y60{bottom:2747.933333pt;}
.ya{bottom:2748.000000pt;}
.y3{bottom:2753.893333pt;}
.y2{bottom:2792.293333pt;}
.y5f{bottom:2792.893333pt;}
.y9{bottom:2792.960000pt;}
.y1{bottom:2832.613333pt;}
.y5e{bottom:2833.213333pt;}
.y8{bottom:2833.280000pt;}
.y14{bottom:2917.253333pt;}
.y13{bottom:2959.013333pt;}
.y12{bottom:3031.013333pt;}
.y11{bottom:3074.213333pt;}
.y10{bottom:3145.573333pt;}
.yf{bottom:3258.053333pt;}
.he{height:66.750000pt;}
.hb{height:100.125000pt;}
.h9{height:110.937500pt;}
.hc{height:111.048437pt;}
.h8{height:111.125000pt;}
.hd{height:111.236125pt;}
.h2{height:133.500000pt;}
.ha{height:133.633500pt;}
.h6{height:142.650000pt;}
.h1{height:166.875000pt;}
.h5{height:200.250000pt;}
.h7{height:226.702500pt;}
.h3{height:288.750000pt;}
.h4{height:400.500000pt;}
.h0{height:3456.000000pt;}
.w1{width:4607.999931pt;}
.w0{width:4608.000000pt;}
.x0{left:0.000000pt;}
.x14{left:102.783931pt;}
.x15{left:104.607931pt;}
.x5{left:138.266598pt;}
.x16{left:139.653265pt;}
.x6{left:174.266598pt;}
.x17{left:175.653265pt;}
.x11{left:186.373265pt;}
.x2c{left:262.973265pt;}
.x13{left:435.386598pt;}
.x4{left:463.226598pt;}
.x7{left:535.813265pt;}
.x8{left:541.093265pt;}
.x9{left:547.813265pt;}
.x1d{left:593.573265pt;}
.xa{left:612.293265pt;}
.x1f{left:620.133265pt;}
.x1e{left:622.693265pt;}
.x12{left:672.319931pt;}
.x1b{left:786.426598pt;}
.x19{left:823.813265pt;}
.x1a{left:859.813265pt;}
.x18{left:867.333265pt;}
.x21{left:879.453265pt;}
.x20{left:897.533265pt;}
.x22{left:910.813265pt;}
.xc{left:1090.853265pt;}
.x2b{left:1202.973265pt;}
.x2a{left:1628.319931pt;}
.x2{left:1631.359931pt;}
.x3{left:1667.359931pt;}
.xb{left:2007.999931pt;}
.x29{left:2054.053265pt;}
.x26{left:2158.306598pt;}
.x1{left:2181.466598pt;}
.x27{left:2322.053265pt;}
.x28{left:2722.946598pt;}
.x1c{left:3179.813265pt;}
.xf{left:3195.813265pt;}
.xd{left:3202.719931pt;}
.x24{left:3215.866598pt;}
.x10{left:3231.813265pt;}
.x25{left:3299.866598pt;}
.xe{left:3541.279931pt;}
.x23{left:3620.986598pt;}
}




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