
    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_19c921164baa1a25783a14e1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_52f7d707f57150112b86eed9.woff2')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_aa249f9b0d5237eb01f733fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.063500;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_60f26933880065318197db4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.063500;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_4d253fa23e6db55d9cb08fb4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.043500;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_0a90258b80c9ee71f3c55078.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.051000;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_6aa6fe6882e986a992d4fcb2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.051000;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_5fdbd451819ad2548def31dc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.868164;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.978000px;}
.ls5{letter-spacing:-0.259200px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.020160px;}
.ls1{letter-spacing:0.070560px;}
.ls0{letter-spacing:0.720000px;}
.ls9{letter-spacing:11.122560px;}
.ls2{letter-spacing:34.865280px;}
.ls6{letter-spacing:40.986720px;}
.ls7{letter-spacing:85.961280px;}
.lsb{letter-spacing:845.705280px;}
.ls3{letter-spacing:845.765280px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws0{word-spacing:-53.521920px;}
.ws2{word-spacing:-16.957440px;}
.ws3{word-spacing:-16.096320px;}
.ws1{word-spacing:-15.837120px;}
.ws4{word-spacing:0.000000px;}
._9{margin-left:-4.543680px;}
._8{margin-left:-3.305280px;}
._1b{margin-left:-2.185920px;}
._1{margin-left:-1.066560px;}
._0{width:1.361280px;}
._18{width:2.483520px;}
._1a{width:4.438080px;}
._2{width:5.696640px;}
._e{width:6.763200px;}
._6{width:8.677440px;}
._4{width:10.214400px;}
._3{width:11.797440px;}
._5{width:13.082880px;}
._7{width:14.175360px;}
._a{width:15.367680px;}
._14{width:18.296160px;}
._b{width:19.415040px;}
._17{width:20.427840px;}
._c{width:22.124160px;}
._d{width:23.190720px;}
._16{width:24.575040px;}
._15{width:26.190720px;}
._13{width:29.748480px;}
._1f{width:31.400640px;}
._11{width:33.656640px;}
._19{width:34.974720px;}
._21{width:39.287520px;}
._20{width:40.340160px;}
._1e{width:42.976320px;}
._1d{width:44.069760px;}
._1c{width:45.109440px;}
._23{width:54.111360px;}
._24{width:55.250880px;}
._22{width:56.304000px;}
._12{width:65.584320px;}
._10{width:68.028480px;}
._f{width:106.778880px;}
._25{width:845.705280px;}
.fc4{color:transparent;}
.fc1{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y20{bottom:6.480000px;}
.y1d{bottom:6.660000px;}
.y1f{bottom:29.340000px;}
.y24{bottom:52.020000px;}
.y22{bottom:52.245000px;}
.y1{bottom:58.860000px;}
.y6c{bottom:120.816000px;}
.y6b{bottom:143.496000px;}
.y4d{bottom:143.676000px;}
.y6f{bottom:151.230000px;}
.y4c{bottom:166.350000px;}
.y26{bottom:176.070000px;}
.y6a{bottom:189.030000px;}
.y4b{bottom:189.210000px;}
.y77{bottom:195.510000px;}
.y25{bottom:198.750000px;}
.y73{bottom:202.350000px;}
.y4a{bottom:211.890000px;}
.y23{bottom:233.850000px;}
.y69{bottom:234.570000px;}
.y49{bottom:234.750000px;}
.y48{bottom:257.430000px;}
.y68{bottom:280.110000px;}
.y47{bottom:280.290000px;}
.y21{bottom:302.790000px;}
.y67{bottom:302.970000px;}
.y46{bottom:320.970000px;}
.y66{bottom:325.650000px;}
.y45{bottom:343.875000px;}
.y65{bottom:348.555000px;}
.y44{bottom:366.555000px;}
.y1e{bottom:371.955000px;}
.y64{bottom:389.235000px;}
.y43{bottom:389.415000px;}
.y42{bottom:412.095000px;}
.y1c{bottom:418.215000px;}
.y76{bottom:430.275000px;}
.y63{bottom:434.775000px;}
.y41{bottom:434.955000px;}
.y72{bottom:439.095000px;}
.y62{bottom:457.635000px;}
.y1b{bottom:466.275000px;}
.y40{bottom:475.635000px;}
.y61{bottom:480.315000px;}
.y6e{bottom:487.155000px;}
.y3f{bottom:498.495000px;}
.y1a{bottom:507.135000px;}
.y60{bottom:512.175000px;}
.y3e{bottom:521.175000px;}
.y19{bottom:529.815000px;}
.y5f{bottom:534.855000px;}
.y3d{bottom:544.035000px;}
.y18{bottom:552.675000px;}
.y5e{bottom:557.715000px;}
.y3c{bottom:566.715000px;}
.y5d{bottom:580.395000px;}
.y3b{bottom:589.575000px;}
.y17{bottom:593.355000px;}
.y5c{bottom:612.285000px;}
.y16{bottom:616.245000px;}
.y3a{bottom:630.285000px;}
.y5b{bottom:634.965000px;}
.y15{bottom:638.925000px;}
.y39{bottom:653.145000px;}
.y5a{bottom:657.825000px;}
.y75{bottom:667.185000px;}
.y38{bottom:675.825000px;}
.y71{bottom:678.345000px;}
.y14{bottom:679.785000px;}
.y59{bottom:689.505000px;}
.y37{bottom:698.685000px;}
.y13{bottom:702.465000px;}
.y58{bottom:712.365000px;}
.y36{bottom:721.365000px;}
.y12{bottom:725.325000px;}
.y57{bottom:735.045000px;}
.y35{bottom:744.225000px;}
.y11{bottom:757.005000px;}
.y56{bottom:757.905000px;}
.y10{bottom:779.865000px;}
.y55{bottom:780.585000px;}
.y34{bottom:784.905000px;}
.yf{bottom:802.545000px;}
.y54{bottom:803.445000px;}
.y33{bottom:807.765000px;}
.y6d{bottom:822.885000px;}
.y32{bottom:830.445000px;}
.ye{bottom:834.405000px;}
.y53{bottom:844.125000px;}
.y31{bottom:853.305000px;}
.yd{bottom:857.085000px;}
.y52{bottom:866.985000px;}
.y30{bottom:876.030000px;}
.yc{bottom:879.990000px;}
.y51{bottom:898.710000px;}
.y2f{bottom:898.890000px;}
.yb{bottom:902.670000px;}
.y74{bottom:903.930000px;}
.y70{bottom:917.430000px;}
.y2e{bottom:921.570000px;}
.ya{bottom:925.530000px;}
.y50{bottom:953.250000px;}
.y9{bottom:957.210000px;}
.y2d{bottom:962.430000px;}
.y4f{bottom:975.930000px;}
.y8{bottom:980.070000px;}
.y2c{bottom:985.110000px;}
.y4e{bottom:998.970000px;}
.y7{bottom:1002.750000px;}
.y2b{bottom:1007.970000px;}
.y6{bottom:1025.610000px;}
.y2a{bottom:1030.650000px;}
.y5{bottom:1048.290000px;}
.y29{bottom:1053.510000px;}
.y28{bottom:1076.190000px;}
.y4{bottom:1085.550000px;}
.y27{bottom:1099.050000px;}
.y3{bottom:1121.730000px;}
.y2{bottom:1144.620000px;}
.h6{height:22.860000px;}
.h2{height:43.681992px;}
.h7{height:45.540000px;}
.ha{height:48.418594px;}
.h5{height:51.752160px;}
.h4{height:57.363840px;}
.h3{height:57.893760px;}
.h9{height:68.220000px;}
.h8{height:68.436000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:112.140000px;}
.w4{width:155.190000px;}
.w5{width:418.785000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x4{left:14.220000px;}
.x2{left:41.940000px;}
.x6{left:75.270000px;}
.x1{left:102.095987px;}
.x8{left:123.335987px;}
.x3{left:215.670000px;}
.x5{left:371.595000px;}
.x9{left:795.239987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.869333pt;}
.ls5{letter-spacing:-0.230400pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.017920pt;}
.ls1{letter-spacing:0.062720pt;}
.ls0{letter-spacing:0.640000pt;}
.ls9{letter-spacing:9.886720pt;}
.ls2{letter-spacing:30.991360pt;}
.ls6{letter-spacing:36.432640pt;}
.ls7{letter-spacing:76.410027pt;}
.lsb{letter-spacing:751.738027pt;}
.ls3{letter-spacing:751.791360pt;}
.ws5{word-spacing:-53.120000pt;}
.ws0{word-spacing:-47.575040pt;}
.ws2{word-spacing:-15.073280pt;}
.ws3{word-spacing:-14.307840pt;}
.ws1{word-spacing:-14.077440pt;}
.ws4{word-spacing:0.000000pt;}
._9{margin-left:-4.038827pt;}
._8{margin-left:-2.938027pt;}
._1b{margin-left:-1.943040pt;}
._1{margin-left:-0.948053pt;}
._0{width:1.210027pt;}
._18{width:2.207573pt;}
._1a{width:3.944960pt;}
._2{width:5.063680pt;}
._e{width:6.011733pt;}
._6{width:7.713280pt;}
._4{width:9.079467pt;}
._3{width:10.486613pt;}
._5{width:11.629227pt;}
._7{width:12.600320pt;}
._a{width:13.660160pt;}
._14{width:16.263253pt;}
._b{width:17.257813pt;}
._17{width:18.158080pt;}
._c{width:19.665920pt;}
._d{width:20.613973pt;}
._16{width:21.844480pt;}
._15{width:23.280640pt;}
._13{width:26.443093pt;}
._1f{width:27.911680pt;}
._11{width:29.917013pt;}
._19{width:31.088640pt;}
._21{width:34.922240pt;}
._20{width:35.857920pt;}
._1e{width:38.201173pt;}
._1d{width:39.173120pt;}
._1c{width:40.097280pt;}
._23{width:48.098987pt;}
._24{width:49.111893pt;}
._22{width:50.048000pt;}
._12{width:58.297173pt;}
._10{width:60.469760pt;}
._f{width:94.914560pt;}
._25{width:751.738027pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:5.760000pt;}
.y1d{bottom:5.920000pt;}
.y1f{bottom:26.080000pt;}
.y24{bottom:46.240000pt;}
.y22{bottom:46.440000pt;}
.y1{bottom:52.320000pt;}
.y6c{bottom:107.392000pt;}
.y6b{bottom:127.552000pt;}
.y4d{bottom:127.712000pt;}
.y6f{bottom:134.426667pt;}
.y4c{bottom:147.866667pt;}
.y26{bottom:156.506667pt;}
.y6a{bottom:168.026667pt;}
.y4b{bottom:168.186667pt;}
.y77{bottom:173.786667pt;}
.y25{bottom:176.666667pt;}
.y73{bottom:179.866667pt;}
.y4a{bottom:188.346667pt;}
.y23{bottom:207.866667pt;}
.y69{bottom:208.506667pt;}
.y49{bottom:208.666667pt;}
.y48{bottom:228.826667pt;}
.y68{bottom:248.986667pt;}
.y47{bottom:249.146667pt;}
.y21{bottom:269.146667pt;}
.y67{bottom:269.306667pt;}
.y46{bottom:285.306667pt;}
.y66{bottom:289.466667pt;}
.y45{bottom:305.666667pt;}
.y65{bottom:309.826667pt;}
.y44{bottom:325.826667pt;}
.y1e{bottom:330.626667pt;}
.y64{bottom:345.986667pt;}
.y43{bottom:346.146667pt;}
.y42{bottom:366.306667pt;}
.y1c{bottom:371.746667pt;}
.y76{bottom:382.466667pt;}
.y63{bottom:386.466667pt;}
.y41{bottom:386.626667pt;}
.y72{bottom:390.306667pt;}
.y62{bottom:406.786667pt;}
.y1b{bottom:414.466667pt;}
.y40{bottom:422.786667pt;}
.y61{bottom:426.946667pt;}
.y6e{bottom:433.026667pt;}
.y3f{bottom:443.106667pt;}
.y1a{bottom:450.786667pt;}
.y60{bottom:455.266667pt;}
.y3e{bottom:463.266667pt;}
.y19{bottom:470.946667pt;}
.y5f{bottom:475.426667pt;}
.y3d{bottom:483.586667pt;}
.y18{bottom:491.266667pt;}
.y5e{bottom:495.746667pt;}
.y3c{bottom:503.746667pt;}
.y5d{bottom:515.906667pt;}
.y3b{bottom:524.066667pt;}
.y17{bottom:527.426667pt;}
.y5c{bottom:544.253333pt;}
.y16{bottom:547.773333pt;}
.y3a{bottom:560.253333pt;}
.y5b{bottom:564.413333pt;}
.y15{bottom:567.933333pt;}
.y39{bottom:580.573333pt;}
.y5a{bottom:584.733333pt;}
.y75{bottom:593.053333pt;}
.y38{bottom:600.733333pt;}
.y71{bottom:602.973333pt;}
.y14{bottom:604.253333pt;}
.y59{bottom:612.893333pt;}
.y37{bottom:621.053333pt;}
.y13{bottom:624.413333pt;}
.y58{bottom:633.213333pt;}
.y36{bottom:641.213333pt;}
.y12{bottom:644.733333pt;}
.y57{bottom:653.373333pt;}
.y35{bottom:661.533333pt;}
.y11{bottom:672.893333pt;}
.y56{bottom:673.693333pt;}
.y10{bottom:693.213333pt;}
.y55{bottom:693.853333pt;}
.y34{bottom:697.693333pt;}
.yf{bottom:713.373333pt;}
.y54{bottom:714.173333pt;}
.y33{bottom:718.013333pt;}
.y6d{bottom:731.453333pt;}
.y32{bottom:738.173333pt;}
.ye{bottom:741.693333pt;}
.y53{bottom:750.333333pt;}
.y31{bottom:758.493333pt;}
.yd{bottom:761.853333pt;}
.y52{bottom:770.653333pt;}
.y30{bottom:778.693333pt;}
.yc{bottom:782.213333pt;}
.y51{bottom:798.853333pt;}
.y2f{bottom:799.013333pt;}
.yb{bottom:802.373333pt;}
.y74{bottom:803.493333pt;}
.y70{bottom:815.493333pt;}
.y2e{bottom:819.173333pt;}
.ya{bottom:822.693333pt;}
.y50{bottom:847.333333pt;}
.y9{bottom:850.853333pt;}
.y2d{bottom:855.493333pt;}
.y4f{bottom:867.493333pt;}
.y8{bottom:871.173333pt;}
.y2c{bottom:875.653333pt;}
.y4e{bottom:887.973333pt;}
.y7{bottom:891.333333pt;}
.y2b{bottom:895.973333pt;}
.y6{bottom:911.653333pt;}
.y2a{bottom:916.133333pt;}
.y5{bottom:931.813333pt;}
.y29{bottom:936.453333pt;}
.y28{bottom:956.613333pt;}
.y4{bottom:964.933333pt;}
.y27{bottom:976.933333pt;}
.y3{bottom:997.093333pt;}
.y2{bottom:1017.440000pt;}
.h6{height:20.320000pt;}
.h2{height:38.828437pt;}
.h7{height:40.480000pt;}
.ha{height:43.038750pt;}
.h5{height:46.001920pt;}
.h4{height:50.990080pt;}
.h3{height:51.461120pt;}
.h9{height:60.640000pt;}
.h8{height:60.832000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:99.680000pt;}
.w4{width:137.946667pt;}
.w5{width:372.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x4{left:12.640000pt;}
.x2{left:37.280000pt;}
.x6{left:66.906667pt;}
.x1{left:90.751988pt;}
.x8{left:109.631988pt;}
.x3{left:191.706667pt;}
.x5{left:330.306667pt;}
.x9{left:706.879988pt;}
}




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