
    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_2e49d4c62734341889d21ea6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_30cd7cd23ecc69bd8611a457.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_b6b23f9dd6c07747ea83b486.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_5ec5371c7d7fbce4e43cdd5b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_f3763c5a44c8e6b90907140e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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);}
.v6{vertical-align:-12.060000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.780000px;}
.v2{vertical-align:15.720000px;}
.v5{vertical-align:30.660000px;}
.v1{vertical-align:49.500000px;}
.v3{vertical-align:54.000000px;}
.ls11{letter-spacing:-5.040000px;}
.lsf{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.060600px;}
.lsb{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.116400px;}
.lse{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.212400px;}
.ls6{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.287280px;}
.ls0{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.432000px;}
.ls2{letter-spacing:2.136000px;}
.ls3{letter-spacing:4.176000px;}
.ls1{letter-spacing:26.496000px;}
.lsd{letter-spacing:50.280000px;}
.ls5{letter-spacing:4102.680000px;}
.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:-47.514240px;}
.wsd{word-spacing:-32.976000px;}
.ws3{word-spacing:-32.832000px;}
.ws4{word-spacing:-32.688000px;}
.ws2{word-spacing:-32.544000px;}
.ws8{word-spacing:-32.400000px;}
.ws1{word-spacing:-32.256000px;}
.ws9{word-spacing:-32.112000px;}
.ws6{word-spacing:-31.824000px;}
.ws5{word-spacing:-31.104000px;}
.ws7{word-spacing:-27.504000px;}
.wsc{word-spacing:-27.290640px;}
.wsb{word-spacing:-27.174240px;}
.wsa{word-spacing:-24.408000px;}
.wse{word-spacing:0.000000px;}
._13{margin-left:-13.717824px;}
._27{margin-left:-12.528000px;}
._22{margin-left:-10.584720px;}
._b{margin-left:-8.854272px;}
._1{margin-left:-7.584480px;}
._21{margin-left:-6.333696px;}
._17{margin-left:-5.071104px;}
._0{margin-left:-3.957120px;}
._3{margin-left:-2.377728px;}
._4{margin-left:-1.214256px;}
._7{width:1.161840px;}
._2{width:2.202240px;}
._1c{width:3.744000px;}
._16{width:5.833728px;}
._15{width:7.344000px;}
._28{width:9.348000px;}
._1e{width:11.363376px;}
._c{width:12.816000px;}
._1b{width:15.365040px;}
._d{width:16.416000px;}
._a{width:20.448000px;}
._9{width:21.879984px;}
._1d{width:23.768016px;}
._14{width:25.447104px;}
._12{width:26.499456px;}
._26{width:27.613776px;}
._18{width:28.870272px;}
._6{width:30.231984px;}
._f{width:48.125954px;}
._e{width:49.379376px;}
._8{width:50.425728px;}
._11{width:51.456672px;}
._10{width:52.518240px;}
._19{width:75.456000px;}
._1a{width:77.076001px;}
._25{width:205.000512px;}
._24{width:213.937104px;}
._5{width:295.051296px;}
._29{width:372.166080px;}
._20{width:1226.495952px;}
._23{width:1517.011728px;}
._1f{width:1984.380672px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.fsa{font-size:113.760000px;}
.fsb{font-size:120.240000px;}
.fsd{font-size:120.384000px;}
.fs5{font-size:144.000000px;}
.fs7{font-size:149.760000px;}
.fs4{font-size:180.000000px;}
.fs3{font-size:210.240000px;}
.fs6{font-size:239.760000px;}
.fs0{font-size:329.760000px;}
.fs1{font-size:329.904000px;}
.fs8{font-size:372.240000px;}
.fs2{font-size:372.384000px;}
.y17{bottom:-21.384000px;}
.y0{bottom:0.000000px;}
.y16{bottom:75.636000px;}
.y15{bottom:120.636000px;}
.y14{bottom:167.610000px;}
.y86{bottom:189.105000px;}
.y85{bottom:240.765000px;}
.y84{bottom:283.965000px;}
.y83{bottom:327.165000px;}
.y82{bottom:370.365000px;}
.y81{bottom:413.565000px;}
.y13{bottom:449.640000px;}
.y80{bottom:456.765000px;}
.y12{bottom:521.640000px;}
.y7d{bottom:548.430000px;}
.y8c{bottom:560.595000px;}
.y7c{bottom:584.430000px;}
.y76{bottom:599.610000px;}
.y7e{bottom:782.070000px;}
.y88{bottom:823.860000px;}
.y8b{bottom:835.890000px;}
.y8a{bottom:871.890000px;}
.y89{bottom:907.890000px;}
.y79{bottom:940.680000px;}
.y78{bottom:976.680000px;}
.y87{bottom:981.750000px;}
.y7b{bottom:1000.110000px;}
.y77{bottom:1019.805000px;}
.y7f{bottom:1024.890000px;}
.y7a{bottom:1036.110000px;}
.y75{bottom:1140.945000px;}
.y74{bottom:1176.945000px;}
.y58{bottom:1225.770000px;}
.y47{bottom:1230.150000px;}
.y57{bottom:1254.570000px;}
.y46{bottom:1262.550000px;}
.y56{bottom:1283.370000px;}
.y4e{bottom:1287.870000px;}
.y45{bottom:1294.950000px;}
.y55{bottom:1312.170000px;}
.y4d{bottom:1320.270000px;}
.y44{bottom:1327.350000px;}
.y54{bottom:1340.970000px;}
.y4c{bottom:1352.670000px;}
.y43{bottom:1359.750000px;}
.y53{bottom:1369.770000px;}
.y4b{bottom:1385.070000px;}
.y42{bottom:1392.150000px;}
.y52{bottom:1398.570000px;}
.y4a{bottom:1417.470000px;}
.y41{bottom:1424.550000px;}
.y51{bottom:1427.370000px;}
.y49{bottom:1449.870000px;}
.y50{bottom:1456.170000px;}
.y40{bottom:1456.950000px;}
.y48{bottom:1482.270000px;}
.y4f{bottom:1484.970000px;}
.y25{bottom:1505.490000px;}
.y26{bottom:1520.670000px;}
.y70{bottom:1580.835000px;}
.y6f{bottom:1608.225000px;}
.y6e{bottom:1644.225000px;}
.y6d{bottom:1680.225000px;}
.y6c{bottom:1716.225000px;}
.y60{bottom:1750.530000px;}
.y5f{bottom:1786.530000px;}
.y6b{bottom:1792.725000px;}
.y6a{bottom:1828.725000px;}
.y5a{bottom:1849.830000px;}
.y69{bottom:1864.725000px;}
.y59{bottom:1882.230000px;}
.y71{bottom:1935.030000px;}
.y64{bottom:1970.100000px;}
.y5e{bottom:1992.780000px;}
.y63{bottom:2006.100000px;}
.y72{bottom:2028.420000px;}
.y5d{bottom:2028.780000px;}
.y62{bottom:2042.100000px;}
.y5c{bottom:2064.780000px;}
.y61{bottom:2078.100000px;}
.y68{bottom:2121.990000px;}
.y67{bottom:2157.990000px;}
.y5b{bottom:2170.050000px;}
.y73{bottom:2171.370000px;}
.y66{bottom:2193.990000px;}
.y65{bottom:2229.990000px;}
.y3f{bottom:2345.685000px;}
.y3e{bottom:2381.685000px;}
.y35{bottom:2397.525000px;}
.y3d{bottom:2417.685000px;}
.y34{bottom:2431.725000px;}
.y3c{bottom:2453.685000px;}
.y33{bottom:2465.925000px;}
.y3b{bottom:2489.685000px;}
.y2c{bottom:2495.010000px;}
.y32{bottom:2500.125000px;}
.y3a{bottom:2525.685000px;}
.y2b{bottom:2527.410000px;}
.y31{bottom:2534.325000px;}
.y2a{bottom:2559.810000px;}
.y39{bottom:2561.685000px;}
.y30{bottom:2568.525000px;}
.y29{bottom:2592.210000px;}
.y38{bottom:2597.685000px;}
.y2f{bottom:2602.725000px;}
.y28{bottom:2624.610000px;}
.y37{bottom:2633.685000px;}
.y2e{bottom:2636.925000px;}
.y27{bottom:2657.010000px;}
.y36{bottom:2669.685000px;}
.y2d{bottom:2671.125000px;}
.y24{bottom:2708.715000px;}
.y11{bottom:2774.670000px;}
.y23{bottom:2823.690000px;}
.y10{bottom:2826.330000px;}
.y22{bottom:2866.890000px;}
.yf{bottom:2869.530000px;}
.y21{bottom:2910.090000px;}
.ye{bottom:2912.730000px;}
.y20{bottom:2953.290000px;}
.yd{bottom:2955.930000px;}
.y1f{bottom:2996.490000px;}
.yc{bottom:2999.130000px;}
.y1e{bottom:3039.690000px;}
.yb{bottom:3042.330000px;}
.y1d{bottom:3082.890000px;}
.ya{bottom:3085.530000px;}
.y1c{bottom:3126.090000px;}
.y9{bottom:3128.730000px;}
.y1b{bottom:3169.290000px;}
.y8{bottom:3171.930000px;}
.y1a{bottom:3212.490000px;}
.y7{bottom:3215.130000px;}
.y19{bottom:3255.690000px;}
.y6{bottom:3258.330000px;}
.y18{bottom:3301.230000px;}
.y5{bottom:3303.870000px;}
.y4{bottom:3372.990000px;}
.y3{bottom:3435.990000px;}
.y2{bottom:3556.620000px;}
.y1{bottom:3665.550000px;}
.h11{height:78.973945px;}
.he{height:89.068359px;}
.hf{height:93.818672px;}
.h13{height:96.755625px;}
.h10{height:99.162773px;}
.h12{height:99.281531px;}
.h6{height:118.757812px;}
.h9{height:123.508125px;}
.h14{height:133.602773px;}
.h5{height:139.482422px;}
.hd{height:144.843750px;}
.h15{height:148.447266px;}
.h7{height:162.015469px;}
.h4{height:173.386406px;}
.h8{height:185.790586px;}
.hc{height:202.447266px;}
.hb{height:210.063750px;}
.h2{height:255.531797px;}
.ha{height:306.988945px;}
.h3{height:307.107703px;}
.h0{height:3886.920000px;}
.h1{height:3887.250000px;}
.w1{width:2594.250000px;}
.w2{width:2594.339999px;}
.w0{width:2594.340000px;}
.x0{left:0.000000px;}
.xe{left:66.851999px;}
.x1f{left:71.747999px;}
.x5{left:73.619999px;}
.x6{left:76.247999px;}
.x8{left:82.979999px;}
.x4{left:339.374999px;}
.x17{left:383.009999px;}
.x2{left:494.924999px;}
.x3{left:500.324999px;}
.x18{left:541.469999px;}
.xf{left:615.164999px;}
.x1{left:624.344999px;}
.xc{left:820.469999px;}
.x19{left:849.164999px;}
.xa{left:851.969999px;}
.x1c{left:856.469999px;}
.x10{left:864.179999px;}
.x9{left:1104.734999px;}
.x1d{left:1155.389999px;}
.x1a{left:1163.804999px;}
.x11{left:1284.944999px;}
.x13{left:1321.304999px;}
.x12{left:1329.584999px;}
.x7{left:1359.569999px;}
.x1b{left:1432.694999px;}
.xb{left:1724.834999px;}
.xd{left:1733.654999px;}
.x15{left:1766.849999px;}
.x1e{left:1791.209999px;}
.x16{left:2154.989999px;}
.x14{left:2208.629999px;}
.x20{left:2265.449999px;}
.x22{left:2304.644999px;}
.x21{left:2428.769999px;}
@media print{
.v6{vertical-align:-10.720000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.360000pt;}
.v2{vertical-align:13.973333pt;}
.v5{vertical-align:27.253333pt;}
.v1{vertical-align:44.000000pt;}
.v3{vertical-align:48.000000pt;}
.ls11{letter-spacing:-4.480000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.053867pt;}
.lsb{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.103467pt;}
.lse{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.188800pt;}
.ls6{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.255360pt;}
.ls0{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls2{letter-spacing:1.898667pt;}
.ls3{letter-spacing:3.712000pt;}
.ls1{letter-spacing:23.552000pt;}
.lsd{letter-spacing:44.693333pt;}
.ls5{letter-spacing:3646.826667pt;}
.ws0{word-spacing:-42.234880pt;}
.wsd{word-spacing:-29.312000pt;}
.ws3{word-spacing:-29.184000pt;}
.ws4{word-spacing:-29.056000pt;}
.ws2{word-spacing:-28.928000pt;}
.ws8{word-spacing:-28.800000pt;}
.ws1{word-spacing:-28.672000pt;}
.ws9{word-spacing:-28.544000pt;}
.ws6{word-spacing:-28.288000pt;}
.ws5{word-spacing:-27.648000pt;}
.ws7{word-spacing:-24.448000pt;}
.wsc{word-spacing:-24.258347pt;}
.wsb{word-spacing:-24.154880pt;}
.wsa{word-spacing:-21.696000pt;}
.wse{word-spacing:0.000000pt;}
._13{margin-left:-12.193621pt;}
._27{margin-left:-11.136000pt;}
._22{margin-left:-9.408640pt;}
._b{margin-left:-7.870464pt;}
._1{margin-left:-6.741760pt;}
._21{margin-left:-5.629952pt;}
._17{margin-left:-4.507648pt;}
._0{margin-left:-3.517440pt;}
._3{margin-left:-2.113536pt;}
._4{margin-left:-1.079339pt;}
._7{width:1.032747pt;}
._2{width:1.957547pt;}
._1c{width:3.328000pt;}
._16{width:5.185536pt;}
._15{width:6.528000pt;}
._28{width:8.309333pt;}
._1e{width:10.100779pt;}
._c{width:11.392000pt;}
._1b{width:13.657813pt;}
._d{width:14.592000pt;}
._a{width:18.176000pt;}
._9{width:19.448875pt;}
._1d{width:21.127125pt;}
._14{width:22.619648pt;}
._12{width:23.555072pt;}
._26{width:24.545579pt;}
._18{width:25.662464pt;}
._6{width:26.872875pt;}
._f{width:42.778626pt;}
._e{width:43.892779pt;}
._8{width:44.822869pt;}
._11{width:45.739264pt;}
._10{width:46.682880pt;}
._19{width:67.072000pt;}
._1a{width:68.512001pt;}
._25{width:182.222677pt;}
._24{width:190.166315pt;}
._5{width:262.267819pt;}
._29{width:330.814293pt;}
._20{width:1090.218624pt;}
._23{width:1348.454869pt;}
._1f{width:1763.893931pt;}
.fsc{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.fsa{font-size:101.120000pt;}
.fsb{font-size:106.880000pt;}
.fsd{font-size:107.008000pt;}
.fs5{font-size:128.000000pt;}
.fs7{font-size:133.120000pt;}
.fs4{font-size:160.000000pt;}
.fs3{font-size:186.880000pt;}
.fs6{font-size:213.120000pt;}
.fs0{font-size:293.120000pt;}
.fs1{font-size:293.248000pt;}
.fs8{font-size:330.880000pt;}
.fs2{font-size:331.008000pt;}
.y17{bottom:-19.008000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:67.232000pt;}
.y15{bottom:107.232000pt;}
.y14{bottom:148.986667pt;}
.y86{bottom:168.093333pt;}
.y85{bottom:214.013333pt;}
.y84{bottom:252.413333pt;}
.y83{bottom:290.813333pt;}
.y82{bottom:329.213333pt;}
.y81{bottom:367.613333pt;}
.y13{bottom:399.680000pt;}
.y80{bottom:406.013333pt;}
.y12{bottom:463.680000pt;}
.y7d{bottom:487.493333pt;}
.y8c{bottom:498.306667pt;}
.y7c{bottom:519.493333pt;}
.y76{bottom:532.986667pt;}
.y7e{bottom:695.173333pt;}
.y88{bottom:732.320000pt;}
.y8b{bottom:743.013333pt;}
.y8a{bottom:775.013333pt;}
.y89{bottom:807.013333pt;}
.y79{bottom:836.160000pt;}
.y78{bottom:868.160000pt;}
.y87{bottom:872.666667pt;}
.y7b{bottom:888.986667pt;}
.y77{bottom:906.493333pt;}
.y7f{bottom:911.013333pt;}
.y7a{bottom:920.986667pt;}
.y75{bottom:1014.173333pt;}
.y74{bottom:1046.173333pt;}
.y58{bottom:1089.573333pt;}
.y47{bottom:1093.466667pt;}
.y57{bottom:1115.173333pt;}
.y46{bottom:1122.266667pt;}
.y56{bottom:1140.773333pt;}
.y4e{bottom:1144.773333pt;}
.y45{bottom:1151.066667pt;}
.y55{bottom:1166.373333pt;}
.y4d{bottom:1173.573333pt;}
.y44{bottom:1179.866667pt;}
.y54{bottom:1191.973333pt;}
.y4c{bottom:1202.373333pt;}
.y43{bottom:1208.666667pt;}
.y53{bottom:1217.573333pt;}
.y4b{bottom:1231.173333pt;}
.y42{bottom:1237.466667pt;}
.y52{bottom:1243.173333pt;}
.y4a{bottom:1259.973333pt;}
.y41{bottom:1266.266667pt;}
.y51{bottom:1268.773333pt;}
.y49{bottom:1288.773333pt;}
.y50{bottom:1294.373333pt;}
.y40{bottom:1295.066667pt;}
.y48{bottom:1317.573333pt;}
.y4f{bottom:1319.973333pt;}
.y25{bottom:1338.213333pt;}
.y26{bottom:1351.706667pt;}
.y70{bottom:1405.186667pt;}
.y6f{bottom:1429.533333pt;}
.y6e{bottom:1461.533333pt;}
.y6d{bottom:1493.533333pt;}
.y6c{bottom:1525.533333pt;}
.y60{bottom:1556.026667pt;}
.y5f{bottom:1588.026667pt;}
.y6b{bottom:1593.533333pt;}
.y6a{bottom:1625.533333pt;}
.y5a{bottom:1644.293333pt;}
.y69{bottom:1657.533333pt;}
.y59{bottom:1673.093333pt;}
.y71{bottom:1720.026667pt;}
.y64{bottom:1751.200000pt;}
.y5e{bottom:1771.360000pt;}
.y63{bottom:1783.200000pt;}
.y72{bottom:1803.040000pt;}
.y5d{bottom:1803.360000pt;}
.y62{bottom:1815.200000pt;}
.y5c{bottom:1835.360000pt;}
.y61{bottom:1847.200000pt;}
.y68{bottom:1886.213333pt;}
.y67{bottom:1918.213333pt;}
.y5b{bottom:1928.933333pt;}
.y73{bottom:1930.106667pt;}
.y66{bottom:1950.213333pt;}
.y65{bottom:1982.213333pt;}
.y3f{bottom:2085.053333pt;}
.y3e{bottom:2117.053333pt;}
.y35{bottom:2131.133333pt;}
.y3d{bottom:2149.053333pt;}
.y34{bottom:2161.533333pt;}
.y3c{bottom:2181.053333pt;}
.y33{bottom:2191.933333pt;}
.y3b{bottom:2213.053333pt;}
.y2c{bottom:2217.786667pt;}
.y32{bottom:2222.333333pt;}
.y3a{bottom:2245.053333pt;}
.y2b{bottom:2246.586667pt;}
.y31{bottom:2252.733333pt;}
.y2a{bottom:2275.386667pt;}
.y39{bottom:2277.053333pt;}
.y30{bottom:2283.133333pt;}
.y29{bottom:2304.186667pt;}
.y38{bottom:2309.053333pt;}
.y2f{bottom:2313.533333pt;}
.y28{bottom:2332.986667pt;}
.y37{bottom:2341.053333pt;}
.y2e{bottom:2343.933333pt;}
.y27{bottom:2361.786667pt;}
.y36{bottom:2373.053333pt;}
.y2d{bottom:2374.333333pt;}
.y24{bottom:2407.746667pt;}
.y11{bottom:2466.373333pt;}
.y23{bottom:2509.946667pt;}
.y10{bottom:2512.293333pt;}
.y22{bottom:2548.346667pt;}
.yf{bottom:2550.693333pt;}
.y21{bottom:2586.746667pt;}
.ye{bottom:2589.093333pt;}
.y20{bottom:2625.146667pt;}
.yd{bottom:2627.493333pt;}
.y1f{bottom:2663.546667pt;}
.yc{bottom:2665.893333pt;}
.y1e{bottom:2701.946667pt;}
.yb{bottom:2704.293333pt;}
.y1d{bottom:2740.346667pt;}
.ya{bottom:2742.693333pt;}
.y1c{bottom:2778.746667pt;}
.y9{bottom:2781.093333pt;}
.y1b{bottom:2817.146667pt;}
.y8{bottom:2819.493333pt;}
.y1a{bottom:2855.546667pt;}
.y7{bottom:2857.893333pt;}
.y19{bottom:2893.946667pt;}
.y6{bottom:2896.293333pt;}
.y18{bottom:2934.426667pt;}
.y5{bottom:2936.773333pt;}
.y4{bottom:2998.213333pt;}
.y3{bottom:3054.213333pt;}
.y2{bottom:3161.440000pt;}
.y1{bottom:3258.266667pt;}
.h11{height:70.199062pt;}
.he{height:79.171875pt;}
.hf{height:83.394375pt;}
.h13{height:86.005000pt;}
.h10{height:88.144687pt;}
.h12{height:88.250250pt;}
.h6{height:105.562500pt;}
.h9{height:109.785000pt;}
.h14{height:118.758021pt;}
.h5{height:123.984375pt;}
.hd{height:128.750000pt;}
.h15{height:131.953125pt;}
.h7{height:144.013750pt;}
.h4{height:154.121250pt;}
.h8{height:165.147188pt;}
.hc{height:179.953125pt;}
.hb{height:186.723333pt;}
.h2{height:227.139375pt;}
.ha{height:272.879062pt;}
.h3{height:272.984625pt;}
.h0{height:3455.040000pt;}
.h1{height:3455.333333pt;}
.w1{width:2306.000000pt;}
.w2{width:2306.079999pt;}
.w0{width:2306.080000pt;}
.x0{left:0.000000pt;}
.xe{left:59.423999pt;}
.x1f{left:63.775999pt;}
.x5{left:65.439999pt;}
.x6{left:67.775999pt;}
.x8{left:73.759999pt;}
.x4{left:301.666665pt;}
.x17{left:340.453332pt;}
.x2{left:439.933332pt;}
.x3{left:444.733332pt;}
.x18{left:481.306665pt;}
.xf{left:546.813332pt;}
.x1{left:554.973332pt;}
.xc{left:729.306665pt;}
.x19{left:754.813332pt;}
.xa{left:757.306665pt;}
.x1c{left:761.306665pt;}
.x10{left:768.159999pt;}
.x9{left:981.986665pt;}
.x1d{left:1027.013332pt;}
.x1a{left:1034.493332pt;}
.x11{left:1142.173332pt;}
.x13{left:1174.493332pt;}
.x12{left:1181.853332pt;}
.x7{left:1208.506665pt;}
.x1b{left:1273.506665pt;}
.xb{left:1533.186665pt;}
.xd{left:1541.026665pt;}
.x15{left:1570.533332pt;}
.x1e{left:1592.186665pt;}
.x16{left:1915.546665pt;}
.x14{left:1963.226665pt;}
.x20{left:2013.733332pt;}
.x22{left:2048.573332pt;}
.x21{left:2158.906665pt;}
}




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