
    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_82541cb3a746575f910073d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.760000;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_92098e99e94281282400644e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_5647cb7fde17fb1c18c88484.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_00a2a984213a387d0f6bb9dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_d3d7b2294cf60a5b109f7f05.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.763000;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_c521037ee870f84c3e87e71a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.903000;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_a55a1b2d2e71384ed6d78992.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937000;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_d585e8418a184f85af068e4e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.990234;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_0ceb74caecad271bc2fe0e70.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.949707;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_ed86e4daddf2fb6ccc26dbfb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4b07bec0363f149ec4d33e4d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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;}
.ffc{font-family:sans-serif;visibility:hidden;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.228244,-0.102003,0.102003,0.228244,0,0);-ms-transform:matrix(0.228244,-0.102003,0.102003,0.228244,0,0);-webkit-transform:matrix(0.228244,-0.102003,0.102003,0.228244,0,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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.073219px;}
.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:-204.191611px;}
.ws0{word-spacing:-129.517950px;}
.ws3{word-spacing:-74.508336px;}
.ws4{word-spacing:-68.044212px;}
.ws1{word-spacing:-54.370547px;}
.ws5{word-spacing:0.000000px;}
._8{margin-left:-27.971967px;}
._7{margin-left:-11.481258px;}
._4{margin-left:-6.829106px;}
._3{margin-left:-3.986434px;}
._1{margin-left:-2.614749px;}
._0{margin-left:-1.038867px;}
._a{width:3.126128px;}
._6{width:7.135282px;}
._2{width:8.401477px;}
._5{width:9.858103px;}
._c{width:52.607407px;}
._9{width:79.865256px;}
._b{width:119.483872px;}
.fc3{color:rgb(25,48,60);}
.fc2{color:rgb(63,156,100);}
.fc4{color:transparent;}
.fc1{color:rgb(6,5,4);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:191.982000px;}
.fs0{font-size:216.013200px;}
.fs8{font-size:252.015600px;}
.fs7{font-size:275.956800px;}
.fs5{font-size:302.058597px;}
.fs6{font-size:335.991000px;}
.fs3{font-size:495.930600px;}
.fs4{font-size:518.071800px;}
.fs2{font-size:543.903600px;}
.y0{bottom:0.000000px;}
.y2b{bottom:1.830000px;}
.y5{bottom:13.770000px;}
.y32{bottom:15.909450px;}
.y45{bottom:16.005000px;}
.y3e{bottom:16.024500px;}
.y28{bottom:16.035000px;}
.y43{bottom:16.095750px;}
.y23{bottom:18.000000px;}
.y1f{bottom:20.265000px;}
.y1b{bottom:20.674500px;}
.y10{bottom:31.800000px;}
.y3{bottom:33.750000px;}
.y8{bottom:33.751500px;}
.yb{bottom:33.753000px;}
.y16{bottom:33.870000px;}
.y14{bottom:33.900000px;}
.y12{bottom:34.005000px;}
.y18{bottom:34.083000px;}
.y31{bottom:83.413500px;}
.y2{bottom:92.250000px;}
.y7{bottom:92.256000px;}
.ya{bottom:92.257500px;}
.yd{bottom:92.265000px;}
.y2a{bottom:100.425000px;}
.y3d{bottom:103.780500px;}
.y27{bottom:103.800000px;}
.y42{bottom:103.851000px;}
.y1a{bottom:121.170000px;}
.y22{bottom:153.015000px;}
.yf{bottom:160.050000px;}
.y1e{bottom:184.515000px;}
.y3c{bottom:191.536500px;}
.y26{bottom:191.550000px;}
.y41{bottom:191.607000px;}
.y30{bottom:218.422500px;}
.y2e{bottom:218.970000px;}
.y3b{bottom:279.285000px;}
.y25{bottom:279.315000px;}
.y40{bottom:279.361500px;}
.y2f{bottom:285.925500px;}
.y21{bottom:288.030000px;}
.y1d{bottom:301.530000px;}
.y3a{bottom:367.050000px;}
.y39{bottom:454.800000px;}
.y2d{bottom:526.950000px;}
.y38{bottom:542.565000px;}
.y17{bottom:609.210000px;}
.y37{bottom:630.315000px;}
.y19{bottom:695.250000px;}
.y36{bottom:718.065000px;}
.y35{bottom:805.830000px;}
.y3f{bottom:843.210000px;}
.y34{bottom:893.580000px;}
.y6{bottom:1185.253500px;}
.y33{bottom:1239.210000px;}
.y9{bottom:1425.337500px;}
.y2c{bottom:1482.930000px;}
.y29{bottom:1532.970000px;}
.yc{bottom:1665.420000px;}
.y4{bottom:1897.650000px;}
.y1{bottom:1994.115000px;}
.y44{bottom:2204.370000px;}
.y15{bottom:2242.170000px;}
.y24{bottom:2595.330000px;}
.y13{bottom:2963.250000px;}
.y20{bottom:3304.890000px;}
.y11{bottom:3734.730000px;}
.y1c{bottom:3965.850000px;}
.ye{bottom:4413.330000px;}
.h3{height:56.520000px;}
.h1d{height:77.040000px;}
.h4{height:145.906320px;}
.h8{height:155.520000px;}
.ha{height:155.880000px;}
.h2{height:162.009900px;}
.h1{height:165.385500px;}
.h16{height:189.011700px;}
.h17{height:191.531856px;}
.h13{height:206.967600px;}
.h11{height:208.315045px;}
.h14{height:209.727168px;}
.hc{height:226.846006px;}
.hd{height:237.115998px;}
.h1b{height:239.414820px;}
.h10{height:253.633831px;}
.hf{height:255.930645px;}
.h5{height:286.200000px;}
.h15{height:340.200000px;}
.h1a{height:346.680000px;}
.h12{height:353.520000px;}
.hb{height:357.840000px;}
.h7{height:371.947950px;}
.h9{height:388.553850px;}
.he{height:391.680000px;}
.h6{height:407.927700px;}
.h19{height:529.200000px;}
.h18{height:637.200000px;}
.h1c{height:954.360000px;}
.h0{height:5060.250000px;}
.w10{width:56.879850px;}
.wf{width:108.360000px;}
.w14{width:209.880000px;}
.w8{width:441.360000px;}
.wa{width:451.440000px;}
.w5{width:463.680000px;}
.w6{width:650.520000px;}
.w2{width:709.918500px;}
.w9{width:1064.880000px;}
.w3{width:1271.520000px;}
.w7{width:1359.720000px;}
.wd{width:1575.359700px;}
.we{width:1609.200000px;}
.w12{width:1647.720000px;}
.w13{width:1946.880000px;}
.wb{width:1969.200000px;}
.w11{width:2306.880000px;}
.w4{width:3215.880000px;}
.wc{width:3254.040000px;}
.w0{width:3571.875000px;}
.w1{width:3572.250000px;}
.x0{left:0.000000px;}
.xc{left:2.098500px;}
.x1c{left:10.368150px;}
.x26{left:13.785000px;}
.x17{left:30.261000px;}
.x24{left:43.035000px;}
.x13{left:49.710000px;}
.x3{left:52.485000px;}
.x28{left:60.027000px;}
.x14{left:78.525000px;}
.x20{left:86.700000px;}
.x1b{left:91.440300px;}
.x1a{left:95.235000px;}
.x22{left:100.875000px;}
.x1d{left:119.992200px;}
.x1e{left:131.558700px;}
.x18{left:154.080000px;}
.x21{left:167.085000px;}
.x2d{left:207.360000px;}
.x2b{left:208.800000px;}
.xb{left:215.280000px;}
.xa{left:221.580000px;}
.x6{left:247.335000px;}
.x8{left:249.645000px;}
.x2{left:255.915000px;}
.x16{left:260.689500px;}
.x27{left:270.720000px;}
.x2c{left:274.411500px;}
.x7{left:283.200000px;}
.x9{left:319.725000px;}
.x19{left:371.509500px;}
.xd{left:535.030500px;}
.xf{left:565.560000px;}
.x15{left:839.520000px;}
.x11{left:868.680000px;}
.xe{left:1554.120000px;}
.x29{left:1726.797000px;}
.x2a{left:1789.800000px;}
.x1f{left:1877.760000px;}
.x23{left:1924.560000px;}
.x10{left:1999.080000px;}
.x4{left:2153.880000px;}
.x1{left:2423.190000px;}
.x5{left:2426.610000px;}
.x12{left:2454.480000px;}
.x25{left:3454.920000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.065084pt;}
.ws2{word-spacing:-181.503655pt;}
.ws0{word-spacing:-115.127067pt;}
.ws3{word-spacing:-66.229632pt;}
.ws4{word-spacing:-60.483744pt;}
.ws1{word-spacing:-48.329375pt;}
.ws5{word-spacing:0.000000pt;}
._8{margin-left:-24.863971pt;}
._7{margin-left:-10.205562pt;}
._4{margin-left:-6.070317pt;}
._3{margin-left:-3.543496pt;}
._1{margin-left:-2.324221pt;}
._0{margin-left:-0.923437pt;}
._a{width:2.778780pt;}
._6{width:6.342473pt;}
._2{width:7.467980pt;}
._5{width:8.762758pt;}
._c{width:46.762140pt;}
._9{width:70.991338pt;}
._b{width:106.207886pt;}
.fs1{font-size:170.650667pt;}
.fs0{font-size:192.011733pt;}
.fs8{font-size:224.013867pt;}
.fs7{font-size:245.294933pt;}
.fs5{font-size:268.496530pt;}
.fs6{font-size:298.658667pt;}
.fs3{font-size:440.827200pt;}
.fs4{font-size:460.508267pt;}
.fs2{font-size:483.469867pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:1.626667pt;}
.y5{bottom:12.240000pt;}
.y32{bottom:14.141733pt;}
.y45{bottom:14.226667pt;}
.y3e{bottom:14.244000pt;}
.y28{bottom:14.253333pt;}
.y43{bottom:14.307333pt;}
.y23{bottom:16.000000pt;}
.y1f{bottom:18.013333pt;}
.y1b{bottom:18.377333pt;}
.y10{bottom:28.266667pt;}
.y3{bottom:30.000000pt;}
.y8{bottom:30.001333pt;}
.yb{bottom:30.002667pt;}
.y16{bottom:30.106667pt;}
.y14{bottom:30.133333pt;}
.y12{bottom:30.226667pt;}
.y18{bottom:30.296000pt;}
.y31{bottom:74.145333pt;}
.y2{bottom:82.000000pt;}
.y7{bottom:82.005333pt;}
.ya{bottom:82.006667pt;}
.yd{bottom:82.013333pt;}
.y2a{bottom:89.266667pt;}
.y3d{bottom:92.249333pt;}
.y27{bottom:92.266667pt;}
.y42{bottom:92.312000pt;}
.y1a{bottom:107.706667pt;}
.y22{bottom:136.013333pt;}
.yf{bottom:142.266667pt;}
.y1e{bottom:164.013333pt;}
.y3c{bottom:170.254667pt;}
.y26{bottom:170.266667pt;}
.y41{bottom:170.317333pt;}
.y30{bottom:194.153333pt;}
.y2e{bottom:194.640000pt;}
.y3b{bottom:248.253333pt;}
.y25{bottom:248.280000pt;}
.y40{bottom:248.321333pt;}
.y2f{bottom:254.156000pt;}
.y21{bottom:256.026667pt;}
.y1d{bottom:268.026667pt;}
.y3a{bottom:326.266667pt;}
.y39{bottom:404.266667pt;}
.y2d{bottom:468.400000pt;}
.y38{bottom:482.280000pt;}
.y17{bottom:541.520000pt;}
.y37{bottom:560.280000pt;}
.y19{bottom:618.000000pt;}
.y36{bottom:638.280000pt;}
.y35{bottom:716.293333pt;}
.y3f{bottom:749.520000pt;}
.y34{bottom:794.293333pt;}
.y6{bottom:1053.558667pt;}
.y33{bottom:1101.520000pt;}
.y9{bottom:1266.966667pt;}
.y2c{bottom:1318.160000pt;}
.y29{bottom:1362.640000pt;}
.yc{bottom:1480.373333pt;}
.y4{bottom:1686.800000pt;}
.y1{bottom:1772.546667pt;}
.y44{bottom:1959.440000pt;}
.y15{bottom:1993.040000pt;}
.y24{bottom:2306.960000pt;}
.y13{bottom:2634.000000pt;}
.y20{bottom:2937.680000pt;}
.y11{bottom:3319.760000pt;}
.y1c{bottom:3525.200000pt;}
.ye{bottom:3922.960000pt;}
.h3{height:50.240000pt;}
.h1d{height:68.480000pt;}
.h4{height:129.694507pt;}
.h8{height:138.240000pt;}
.ha{height:138.560000pt;}
.h2{height:144.008800pt;}
.h1{height:147.009333pt;}
.h16{height:168.010400pt;}
.h17{height:170.250539pt;}
.h13{height:183.971200pt;}
.h11{height:185.168929pt;}
.h14{height:186.424149pt;}
.hc{height:201.640894pt;}
.hd{height:210.769776pt;}
.h1b{height:212.813173pt;}
.h10{height:225.452294pt;}
.hf{height:227.493906pt;}
.h5{height:254.400000pt;}
.h15{height:302.400000pt;}
.h1a{height:308.160000pt;}
.h12{height:314.240000pt;}
.hb{height:318.080000pt;}
.h7{height:330.620400pt;}
.h9{height:345.381200pt;}
.he{height:348.160000pt;}
.h6{height:362.602400pt;}
.h19{height:470.400000pt;}
.h18{height:566.400000pt;}
.h1c{height:848.320000pt;}
.h0{height:4498.000000pt;}
.w10{width:50.559867pt;}
.wf{width:96.320000pt;}
.w14{width:186.560000pt;}
.w8{width:392.320000pt;}
.wa{width:401.280000pt;}
.w5{width:412.160000pt;}
.w6{width:578.240000pt;}
.w2{width:631.038667pt;}
.w9{width:946.560000pt;}
.w3{width:1130.240000pt;}
.w7{width:1208.640000pt;}
.wd{width:1400.319733pt;}
.we{width:1430.400000pt;}
.w12{width:1464.640000pt;}
.w13{width:1730.560000pt;}
.wb{width:1750.400000pt;}
.w11{width:2050.560000pt;}
.w4{width:2858.560000pt;}
.wc{width:2892.480000pt;}
.w0{width:3175.000000pt;}
.w1{width:3175.333333pt;}
.x0{left:0.000000pt;}
.xc{left:1.865333pt;}
.x1c{left:9.216133pt;}
.x26{left:12.253333pt;}
.x17{left:26.898667pt;}
.x24{left:38.253333pt;}
.x13{left:44.186667pt;}
.x3{left:46.653333pt;}
.x28{left:53.357333pt;}
.x14{left:69.800000pt;}
.x20{left:77.066667pt;}
.x1b{left:81.280267pt;}
.x1a{left:84.653333pt;}
.x22{left:89.666667pt;}
.x1d{left:106.659733pt;}
.x1e{left:116.941067pt;}
.x18{left:136.960000pt;}
.x21{left:148.520000pt;}
.x2d{left:184.320000pt;}
.x2b{left:185.600000pt;}
.xb{left:191.360000pt;}
.xa{left:196.960000pt;}
.x6{left:219.853333pt;}
.x8{left:221.906667pt;}
.x2{left:227.480000pt;}
.x16{left:231.724000pt;}
.x27{left:240.640000pt;}
.x2c{left:243.921333pt;}
.x7{left:251.733333pt;}
.x9{left:284.200000pt;}
.x19{left:330.230667pt;}
.xd{left:475.582667pt;}
.xf{left:502.720000pt;}
.x15{left:746.240000pt;}
.x11{left:772.160000pt;}
.xe{left:1381.440000pt;}
.x29{left:1534.930667pt;}
.x2a{left:1590.933333pt;}
.x1f{left:1669.120000pt;}
.x23{left:1710.720000pt;}
.x10{left:1776.960000pt;}
.x4{left:1914.560000pt;}
.x1{left:2153.946667pt;}
.x5{left:2156.986667pt;}
.x12{left:2181.760000pt;}
.x25{left:3071.040000pt;}
}




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