
    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_ab65cf5c7c794bd238f38b5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_1e59caa8c08d2bdba46a51a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_65843e135baf4c0e50bf2a53.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_920a7ab29750eec02b2f51cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_12e29b8cb67a8c888101a3a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_113687aab7266044e00dfe95.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_09caab353db041174e3967b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls5{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-0.660000px;}
.ls7{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.420000px;}
.lsc{letter-spacing:-0.240000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.120000px;}
.lse{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.444000px;}
.ls0{letter-spacing:0.600000px;}
.lsb{letter-spacing:1.200000px;}
.lsa{letter-spacing:1.320000px;}
.lsd{letter-spacing:21.720000px;}
.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;}
}
.ws4{word-spacing:-60.000000px;}
.ws8{word-spacing:-16.320000px;}
.ws9{word-spacing:-16.200000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.760000px;}
.ws3{word-spacing:-14.460000px;}
.ws2{word-spacing:-13.800000px;}
.ws6{word-spacing:-12.900000px;}
.ws5{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._37{margin-left:-8.640000px;}
._22{margin-left:-2.910000px;}
._0{margin-left:-1.740000px;}
._1{width:1.020000px;}
._2{width:2.370000px;}
._7{width:3.450000px;}
._12{width:4.560000px;}
._3{width:5.640000px;}
._13{width:6.900000px;}
._a{width:8.100000px;}
._26{width:9.120000px;}
._e{width:10.140000px;}
._f{width:11.550000px;}
._17{width:12.960000px;}
._32{width:13.980000px;}
._14{width:16.680000px;}
._16{width:17.760000px;}
._d{width:19.020000px;}
._c{width:20.100000px;}
._b{width:21.240000px;}
._25{width:22.680000px;}
._23{width:23.880000px;}
._24{width:24.900000px;}
._5{width:26.640000px;}
._4{width:27.660000px;}
._6{width:28.680000px;}
._15{width:29.820000px;}
._8{width:31.320000px;}
._9{width:32.340000px;}
._18{width:34.080000px;}
._19{width:35.160000px;}
._11{width:36.240000px;}
._10{width:37.260000px;}
._1e{width:38.460000px;}
._1f{width:39.540000px;}
._2b{width:41.580000px;}
._2a{width:43.440000px;}
._20{width:45.330000px;}
._21{width:46.680000px;}
._34{width:47.850000px;}
._33{width:49.410000px;}
._2f{width:52.020000px;}
._2e{width:53.040000px;}
._28{width:54.780000px;}
._29{width:55.800000px;}
._1b{width:57.600000px;}
._1c{width:58.860000px;}
._27{width:59.880000px;}
._1a{width:60.900000px;}
._36{width:61.920000px;}
._2d{width:66.930000px;}
._2c{width:68.760000px;}
._38{width:72.810000px;}
._35{width:89.370000px;}
._30{width:94.380000px;}
._31{width:95.490000px;}
._1d{width:201.000000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:39.600000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:35.737500px;}
.y3{bottom:53.137500px;}
.y4f{bottom:86.737500px;}
.y35{bottom:87.037500px;}
.y4e{bottom:106.537500px;}
.y34{bottom:106.837500px;}
.y56{bottom:126.337500px;}
.y33{bottom:126.637500px;}
.y32{bottom:146.437500px;}
.y31{bottom:166.245000px;}
.y30{bottom:186.375000px;}
.y2f{bottom:206.175000px;}
.y5f{bottom:225.675000px;}
.y2e{bottom:225.975000px;}
.y5e{bottom:245.475000px;}
.y2d{bottom:245.775000px;}
.y2c{bottom:265.575000px;}
.y49{bottom:285.075000px;}
.y2b{bottom:285.375000px;}
.y5b{bottom:304.875000px;}
.y2a{bottom:305.175000px;}
.y29{bottom:324.975000px;}
.y46{bottom:344.505000px;}
.y28{bottom:344.820000px;}
.y45{bottom:364.620000px;}
.y27{bottom:364.920000px;}
.y26{bottom:384.705000px;}
.y5c{bottom:404.205000px;}
.y25{bottom:404.505000px;}
.y51{bottom:424.005000px;}
.y24{bottom:424.320000px;}
.y23{bottom:444.105000px;}
.y22{bottom:463.905000px;}
.y21{bottom:483.720000px;}
.y20{bottom:503.550000px;}
.y1f{bottom:523.650000px;}
.y1e{bottom:543.450000px;}
.y4d{bottom:562.950000px;}
.y1d{bottom:563.250000px;}
.y4c{bottom:582.750000px;}
.y1c{bottom:583.050000px;}
.y1b{bottom:602.850000px;}
.y57{bottom:622.350000px;}
.y1a{bottom:622.650000px;}
.y37{bottom:642.195000px;}
.y19{bottom:642.495000px;}
.y36{bottom:661.980000px;}
.y18{bottom:662.295000px;}
.y17{bottom:682.095000px;}
.y16{bottom:702.195000px;}
.y50{bottom:721.695000px;}
.y15{bottom:721.995000px;}
.y14{bottom:741.795000px;}
.y13{bottom:761.595000px;}
.y5a{bottom:781.080000px;}
.y12{bottom:781.395000px;}
.y59{bottom:800.925000px;}
.y11{bottom:801.225000px;}
.y58{bottom:820.725000px;}
.y10{bottom:821.025000px;}
.y5d{bottom:840.525000px;}
.y44{bottom:840.825000px;}
.yf{bottom:845.025000px;}
.y43{bottom:860.925000px;}
.ye{bottom:862.725000px;}
.yd{bottom:880.725000px;}
.yc{bottom:898.425000px;}
.y54{bottom:900.225000px;}
.y42{bottom:900.525000px;}
.yb{bottom:916.425000px;}
.y53{bottom:920.025000px;}
.y41{bottom:920.325000px;}
.ya{bottom:934.125000px;}
.y4b{bottom:939.825000px;}
.y40{bottom:940.125000px;}
.y9{bottom:947.625000px;}
.y4a{bottom:959.670000px;}
.y3f{bottom:959.955000px;}
.y8{bottom:967.755000px;}
.y55{bottom:979.455000px;}
.y3e{bottom:979.755000px;}
.y7{bottom:994.455000px;}
.y52{bottom:999.255000px;}
.y3d{bottom:999.570000px;}
.y48{bottom:1019.370000px;}
.y3c{bottom:1019.670000px;}
.y6{bottom:1038.255000px;}
.y47{bottom:1039.170000px;}
.y3b{bottom:1039.455000px;}
.y3a{bottom:1059.255000px;}
.y39{bottom:1079.070000px;}
.y5{bottom:1081.755000px;}
.y38{bottom:1098.870000px;}
.y2{bottom:1125.000000px;}
.y1{bottom:1141.800000px;}
.h5{height:35.332031px;}
.h6{height:58.857422px;}
.h2{height:58.886719px;}
.h1{height:60.468750px;}
.h4{height:61.509375px;}
.h7{height:61.670545px;}
.h3{height:133.031250px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:70.237500px;}
.x2{left:84.037500px;}
.x13{left:97.237500px;}
.xf{left:124.237500px;}
.x5{left:246.375000px;}
.x9{left:259.575000px;}
.xb{left:291.675000px;}
.xa{left:310.620000px;}
.x6{left:312.720000px;}
.x8{left:367.620000px;}
.x3{left:372.405000px;}
.x7{left:400.605000px;}
.x4{left:459.150000px;}
.xc{left:469.950000px;}
.x12{left:496.950000px;}
.xe{left:523.950000px;}
.x10{left:594.195000px;}
.xd{left:599.880000px;}
.x11{left:608.595000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls5{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.373333pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.394667pt;}
.ls0{letter-spacing:0.533333pt;}
.lsb{letter-spacing:1.066667pt;}
.lsa{letter-spacing:1.173333pt;}
.lsd{letter-spacing:19.306667pt;}
.ws4{word-spacing:-53.333333pt;}
.ws8{word-spacing:-14.506667pt;}
.ws9{word-spacing:-14.400000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.wsa{word-spacing:-13.120000pt;}
.ws3{word-spacing:-12.853333pt;}
.ws2{word-spacing:-12.266667pt;}
.ws6{word-spacing:-11.466667pt;}
.ws5{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._37{margin-left:-7.680000pt;}
._22{margin-left:-2.586667pt;}
._0{margin-left:-1.546667pt;}
._1{width:0.906667pt;}
._2{width:2.106667pt;}
._7{width:3.066667pt;}
._12{width:4.053333pt;}
._3{width:5.013333pt;}
._13{width:6.133333pt;}
._a{width:7.200000pt;}
._26{width:8.106667pt;}
._e{width:9.013333pt;}
._f{width:10.266667pt;}
._17{width:11.520000pt;}
._32{width:12.426667pt;}
._14{width:14.826667pt;}
._16{width:15.786667pt;}
._d{width:16.906667pt;}
._c{width:17.866667pt;}
._b{width:18.880000pt;}
._25{width:20.160000pt;}
._23{width:21.226667pt;}
._24{width:22.133333pt;}
._5{width:23.680000pt;}
._4{width:24.586667pt;}
._6{width:25.493333pt;}
._15{width:26.506667pt;}
._8{width:27.840000pt;}
._9{width:28.746667pt;}
._18{width:30.293333pt;}
._19{width:31.253333pt;}
._11{width:32.213333pt;}
._10{width:33.120000pt;}
._1e{width:34.186667pt;}
._1f{width:35.146667pt;}
._2b{width:36.960000pt;}
._2a{width:38.613333pt;}
._20{width:40.293333pt;}
._21{width:41.493333pt;}
._34{width:42.533333pt;}
._33{width:43.920000pt;}
._2f{width:46.240000pt;}
._2e{width:47.146667pt;}
._28{width:48.693333pt;}
._29{width:49.600000pt;}
._1b{width:51.200000pt;}
._1c{width:52.320000pt;}
._27{width:53.226667pt;}
._1a{width:54.133333pt;}
._36{width:55.040000pt;}
._2d{width:59.493333pt;}
._2c{width:61.120000pt;}
._38{width:64.720000pt;}
._35{width:79.440000pt;}
._30{width:83.893333pt;}
._31{width:84.880000pt;}
._1d{width:178.666667pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:35.200000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:31.766667pt;}
.y3{bottom:47.233333pt;}
.y4f{bottom:77.100000pt;}
.y35{bottom:77.366667pt;}
.y4e{bottom:94.700000pt;}
.y34{bottom:94.966667pt;}
.y56{bottom:112.300000pt;}
.y33{bottom:112.566667pt;}
.y32{bottom:130.166667pt;}
.y31{bottom:147.773333pt;}
.y30{bottom:165.666667pt;}
.y2f{bottom:183.266667pt;}
.y5f{bottom:200.600000pt;}
.y2e{bottom:200.866667pt;}
.y5e{bottom:218.200000pt;}
.y2d{bottom:218.466667pt;}
.y2c{bottom:236.066667pt;}
.y49{bottom:253.400000pt;}
.y2b{bottom:253.666667pt;}
.y5b{bottom:271.000000pt;}
.y2a{bottom:271.266667pt;}
.y29{bottom:288.866667pt;}
.y46{bottom:306.226667pt;}
.y28{bottom:306.506667pt;}
.y45{bottom:324.106667pt;}
.y27{bottom:324.373333pt;}
.y26{bottom:341.960000pt;}
.y5c{bottom:359.293333pt;}
.y25{bottom:359.560000pt;}
.y51{bottom:376.893333pt;}
.y24{bottom:377.173333pt;}
.y23{bottom:394.760000pt;}
.y22{bottom:412.360000pt;}
.y21{bottom:429.973333pt;}
.y20{bottom:447.600000pt;}
.y1f{bottom:465.466667pt;}
.y1e{bottom:483.066667pt;}
.y4d{bottom:500.400000pt;}
.y1d{bottom:500.666667pt;}
.y4c{bottom:518.000000pt;}
.y1c{bottom:518.266667pt;}
.y1b{bottom:535.866667pt;}
.y57{bottom:553.200000pt;}
.y1a{bottom:553.466667pt;}
.y37{bottom:570.840000pt;}
.y19{bottom:571.106667pt;}
.y36{bottom:588.426667pt;}
.y18{bottom:588.706667pt;}
.y17{bottom:606.306667pt;}
.y16{bottom:624.173333pt;}
.y50{bottom:641.506667pt;}
.y15{bottom:641.773333pt;}
.y14{bottom:659.373333pt;}
.y13{bottom:676.973333pt;}
.y5a{bottom:694.293333pt;}
.y12{bottom:694.573333pt;}
.y59{bottom:711.933333pt;}
.y11{bottom:712.200000pt;}
.y58{bottom:729.533333pt;}
.y10{bottom:729.800000pt;}
.y5d{bottom:747.133333pt;}
.y44{bottom:747.400000pt;}
.yf{bottom:751.133333pt;}
.y43{bottom:765.266667pt;}
.ye{bottom:766.866667pt;}
.yd{bottom:782.866667pt;}
.yc{bottom:798.600000pt;}
.y54{bottom:800.200000pt;}
.y42{bottom:800.466667pt;}
.yb{bottom:814.600000pt;}
.y53{bottom:817.800000pt;}
.y41{bottom:818.066667pt;}
.ya{bottom:830.333333pt;}
.y4b{bottom:835.400000pt;}
.y40{bottom:835.666667pt;}
.y9{bottom:842.333333pt;}
.y4a{bottom:853.040000pt;}
.y3f{bottom:853.293333pt;}
.y8{bottom:860.226667pt;}
.y55{bottom:870.626667pt;}
.y3e{bottom:870.893333pt;}
.y7{bottom:883.960000pt;}
.y52{bottom:888.226667pt;}
.y3d{bottom:888.506667pt;}
.y48{bottom:906.106667pt;}
.y3c{bottom:906.373333pt;}
.y6{bottom:922.893333pt;}
.y47{bottom:923.706667pt;}
.y3b{bottom:923.960000pt;}
.y3a{bottom:941.560000pt;}
.y39{bottom:959.173333pt;}
.y5{bottom:961.560000pt;}
.y38{bottom:976.773333pt;}
.y2{bottom:1000.000000pt;}
.y1{bottom:1014.933333pt;}
.h5{height:31.406250pt;}
.h6{height:52.317708pt;}
.h2{height:52.343750pt;}
.h1{height:53.750000pt;}
.h4{height:54.675000pt;}
.h7{height:54.818262pt;}
.h3{height:118.250000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:62.433333pt;}
.x2{left:74.700000pt;}
.x13{left:86.433333pt;}
.xf{left:110.433333pt;}
.x5{left:219.000000pt;}
.x9{left:230.733333pt;}
.xb{left:259.266667pt;}
.xa{left:276.106667pt;}
.x6{left:277.973333pt;}
.x8{left:326.773333pt;}
.x3{left:331.026667pt;}
.x7{left:356.093333pt;}
.x4{left:408.133333pt;}
.xc{left:417.733333pt;}
.x12{left:441.733333pt;}
.xe{left:465.733333pt;}
.x10{left:528.173333pt;}
.xd{left:533.226667pt;}
.x11{left:540.973333pt;}
}




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