
    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_c1b523c7cc8c7effdec95910.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_b7454acdbb41f516b68ae1bc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a24e69f0ce3e4fc23d79494c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005859;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_6cd7a83968efe4181f514693.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_75d36db9607c4770a7d59012.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1ced576e11b6a71792bc9961.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d5da6ffecc217257af2622fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_645cb2273bb211cd1ba06948.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.lse{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.684000px;}
.lsc{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.350400px;}
.ls3{letter-spacing:-0.180000px;}
.ls1{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.037440px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.ls2{letter-spacing:0.341400px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:1.980000px;}
.lsa{letter-spacing:2.082720px;}
.ls8{letter-spacing:5.580000px;}
.ls9{letter-spacing:7.740000px;}
.lsf{letter-spacing:175.301280px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws9{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.401400px;}
.ws4{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws5{word-spacing:-21.022560px;}
.ws6{word-spacing:-20.709600px;}
.ws7{word-spacing:-20.376000px;}
.ws0{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-5.385360px;}
._1b{margin-left:-4.163520px;}
._1{margin-left:-2.733120px;}
._0{margin-left:-1.312080px;}
._4{width:1.216800px;}
._c{width:3.031920px;}
._23{width:4.063920px;}
._b{width:5.187120px;}
._15{width:6.323520px;}
._9{width:7.665840px;}
._a{width:8.977920px;}
._1e{width:10.410000px;}
._18{width:11.505120px;}
._10{width:13.478400px;}
._11{width:14.622000px;}
._7{width:16.342560px;}
._8{width:17.521920px;}
._f{width:19.227600px;}
._14{width:23.021280px;}
._1f{width:24.239040px;}
._5{width:25.278960px;}
._6{width:26.862240px;}
._12{width:28.652160px;}
._13{width:29.781600px;}
._21{width:35.212320px;}
._22{width:36.284400px;}
._19{width:39.340080px;}
._1a{width:40.989120px;}
._20{width:41.998320px;}
._16{width:44.141760px;}
._17{width:45.285360px;}
._1d{width:48.149520px;}
._d{width:56.946240px;}
._e{width:58.174080px;}
._2{width:641.856000px;}
._3{width:1830.720000px;}
.fc2{color:transparent;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:216.000000px;}
.y6{bottom:-25.020000px;}
.y2a{bottom:-4.350000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:5.940000px;}
.y5{bottom:10.830000px;}
.ya{bottom:12.240000px;}
.y61{bottom:16.725000px;}
.y5c{bottom:16.950000px;}
.y2{bottom:20.340000px;}
.y7{bottom:31.500000px;}
.y63{bottom:34.905000px;}
.y5e{bottom:34.950000px;}
.y62{bottom:35.265000px;}
.y4{bottom:47.010000px;}
.y60{bottom:52.905000px;}
.y65{bottom:53.085000px;}
.y5a{bottom:53.130000px;}
.yc{bottom:59.400000px;}
.y5d{bottom:71.310000px;}
.y28{bottom:82.410000px;}
.y5b{bottom:89.310000px;}
.y26{bottom:131.400000px;}
.y69{bottom:135.180000px;}
.y46{bottom:138.240000px;}
.y57{bottom:148.680000px;}
.y25{bottom:167.580000px;}
.y68{bottom:171.570000px;}
.y45{bottom:174.450000px;}
.y56{bottom:184.890000px;}
.y24{bottom:203.790000px;}
.y67{bottom:207.750000px;}
.y44{bottom:210.630000px;}
.y55{bottom:221.070000px;}
.y23{bottom:239.970000px;}
.y66{bottom:243.570000px;}
.y43{bottom:246.990000px;}
.y54{bottom:257.250000px;}
.y64{bottom:263.745000px;}
.y22{bottom:276.330000px;}
.y42{bottom:283.170000px;}
.y53{bottom:293.610000px;}
.y21{bottom:312.510000px;}
.y41{bottom:319.350000px;}
.y52{bottom:329.790000px;}
.y5f{bottom:337.005000px;}
.y20{bottom:348.690000px;}
.y40{bottom:355.530000px;}
.y51{bottom:365.970000px;}
.y1f{bottom:384.870000px;}
.y3f{bottom:391.890000px;}
.y50{bottom:402.150000px;}
.y59{bottom:410.085000px;}
.y1e{bottom:421.095000px;}
.y3e{bottom:428.115000px;}
.y4f{bottom:438.555000px;}
.y1d{bottom:457.455000px;}
.y3d{bottom:464.295000px;}
.y4e{bottom:474.735000px;}
.y1c{bottom:493.635000px;}
.y3c{bottom:500.475000px;}
.y4d{bottom:510.915000px;}
.y1b{bottom:529.815000px;}
.y3b{bottom:536.835000px;}
.y4c{bottom:547.095000px;}
.y1a{bottom:565.995000px;}
.y3a{bottom:573.015000px;}
.y4b{bottom:583.275000px;}
.y19{bottom:602.355000px;}
.y39{bottom:609.195000px;}
.y4a{bottom:619.635000px;}
.y18{bottom:638.535000px;}
.y38{bottom:645.375000px;}
.y49{bottom:655.815000px;}
.y17{bottom:674.745000px;}
.y37{bottom:681.585000px;}
.y48{bottom:692.025000px;}
.y16{bottom:710.925000px;}
.y36{bottom:717.945000px;}
.y47{bottom:723.345000px;}
.y15{bottom:747.285000px;}
.y35{bottom:754.125000px;}
.y14{bottom:783.465000px;}
.y6a{bottom:789.945000px;}
.y34{bottom:790.305000px;}
.y13{bottom:819.645000px;}
.y33{bottom:826.485000px;}
.y12{bottom:855.465000px;}
.y58{bottom:862.485000px;}
.y32{bottom:862.845000px;}
.y11{bottom:891.645000px;}
.y31{bottom:899.025000px;}
.y10{bottom:928.050000px;}
.y30{bottom:935.250000px;}
.yf{bottom:964.230000px;}
.y2f{bottom:971.430000px;}
.ye{bottom:1000.410000px;}
.y2e{bottom:1007.790000px;}
.yd{bottom:1031.910000px;}
.y27{bottom:1033.560000px;}
.y2d{bottom:1043.970000px;}
.y29{bottom:1079.790000px;}
.y2c{bottom:1080.150000px;}
.y2b{bottom:1116.330000px;}
.y3{bottom:1148.190000px;}
.y1{bottom:1171.260000px;}
.y9{bottom:1195.920000px;}
.h6{height:25.380000px;}
.h2{height:40.320000px;}
.h7{height:58.651172px;}
.ha{height:58.819922px;}
.hc{height:59.436914px;}
.h4{height:66.450000px;}
.h10{height:72.345000px;}
.h11{height:72.525000px;}
.he{height:82.635820px;}
.h5{height:82.676953px;}
.h3{height:84.898125px;}
.h12{height:86.585445px;}
.hb{height:101.880000px;}
.hf{height:108.741000px;}
.h8{height:110.700000px;}
.hd{height:145.125000px;}
.h9{height:182.039062px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w8{width:120.600000px;}
.wa{width:120.621000px;}
.w9{width:120.816000px;}
.w5{width:122.400000px;}
.wb{width:163.425000px;}
.w7{width:163.641000px;}
.w3{width:163.830000px;}
.w4{width:169.230000px;}
.w2{width:188.481000px;}
.w6{width:693.720000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x1b{left:9.165000px;}
.x19{left:12.780000px;}
.x7{left:14.940000px;}
.x17{left:21.240000px;}
.x4{left:22.680000px;}
.x1f{left:37.611000px;}
.x16{left:39.600000px;}
.x1d{left:50.940000px;}
.x1e{left:52.200000px;}
.x15{left:53.640000px;}
.x21{left:63.210000px;}
.x23{left:67.665000px;}
.x20{left:71.100000px;}
.x13{left:73.065000px;}
.x22{left:78.480000px;}
.x6{left:100.476000px;}
.x1{left:106.425000px;}
.x5{left:108.036000px;}
.xe{left:142.956000px;}
.x12{left:202.710000px;}
.xc{left:260.850000px;}
.x14{left:265.755000px;}
.xa{left:306.435000px;}
.x9{left:312.555000px;}
.xb{left:337.395000px;}
.x10{left:346.965000px;}
.xf{left:376.455000px;}
.x18{left:387.075000px;}
.x24{left:398.055000px;}
.x1a{left:508.620000px;}
.x1c{left:630.150000px;}
.x3{left:643.830000px;}
.x2{left:648.150000px;}
.xd{left:794.310000px;}
.x8{left:838.260000px;}
.x11{left:851.760000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.608000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.311467pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.033280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.ls2{letter-spacing:0.303467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:1.760000pt;}
.lsa{letter-spacing:1.851307pt;}
.ls8{letter-spacing:4.960000pt;}
.ls9{letter-spacing:6.880000pt;}
.lsf{letter-spacing:155.823360pt;}
.ws8{word-spacing:-53.120000pt;}
.ws9{word-spacing:-19.040000pt;}
.ws1{word-spacing:-19.023467pt;}
.ws4{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.686720pt;}
.ws6{word-spacing:-18.408533pt;}
.ws7{word-spacing:-18.112000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-4.786987pt;}
._1b{margin-left:-3.700907pt;}
._1{margin-left:-2.429440pt;}
._0{margin-left:-1.166293pt;}
._4{width:1.081600pt;}
._c{width:2.695040pt;}
._23{width:3.612373pt;}
._b{width:4.610773pt;}
._15{width:5.620907pt;}
._9{width:6.814080pt;}
._a{width:7.980373pt;}
._1e{width:9.253333pt;}
._18{width:10.226773pt;}
._10{width:11.980800pt;}
._11{width:12.997333pt;}
._7{width:14.526720pt;}
._8{width:15.575040pt;}
._f{width:17.091200pt;}
._14{width:20.463360pt;}
._1f{width:21.545813pt;}
._5{width:22.470187pt;}
._6{width:23.877547pt;}
._12{width:25.468587pt;}
._13{width:26.472533pt;}
._21{width:31.299840pt;}
._22{width:32.252800pt;}
._19{width:34.968960pt;}
._1a{width:36.434773pt;}
._20{width:37.331840pt;}
._16{width:39.237120pt;}
._17{width:40.253653pt;}
._1d{width:42.799573pt;}
._d{width:50.618880pt;}
._e{width:51.710293pt;}
._2{width:570.538667pt;}
._3{width:1627.306667pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:192.000000pt;}
.y6{bottom:-22.240000pt;}
.y2a{bottom:-3.866667pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:5.280000pt;}
.y5{bottom:9.626667pt;}
.ya{bottom:10.880000pt;}
.y61{bottom:14.866667pt;}
.y5c{bottom:15.066667pt;}
.y2{bottom:18.080000pt;}
.y7{bottom:28.000000pt;}
.y63{bottom:31.026667pt;}
.y5e{bottom:31.066667pt;}
.y62{bottom:31.346667pt;}
.y4{bottom:41.786667pt;}
.y60{bottom:47.026667pt;}
.y65{bottom:47.186667pt;}
.y5a{bottom:47.226667pt;}
.yc{bottom:52.800000pt;}
.y5d{bottom:63.386667pt;}
.y28{bottom:73.253333pt;}
.y5b{bottom:79.386667pt;}
.y26{bottom:116.800000pt;}
.y69{bottom:120.160000pt;}
.y46{bottom:122.880000pt;}
.y57{bottom:132.160000pt;}
.y25{bottom:148.960000pt;}
.y68{bottom:152.506667pt;}
.y45{bottom:155.066667pt;}
.y56{bottom:164.346667pt;}
.y24{bottom:181.146667pt;}
.y67{bottom:184.666667pt;}
.y44{bottom:187.226667pt;}
.y55{bottom:196.506667pt;}
.y23{bottom:213.306667pt;}
.y66{bottom:216.506667pt;}
.y43{bottom:219.546667pt;}
.y54{bottom:228.666667pt;}
.y64{bottom:234.440000pt;}
.y22{bottom:245.626667pt;}
.y42{bottom:251.706667pt;}
.y53{bottom:260.986667pt;}
.y21{bottom:277.786667pt;}
.y41{bottom:283.866667pt;}
.y52{bottom:293.146667pt;}
.y5f{bottom:299.560000pt;}
.y20{bottom:309.946667pt;}
.y40{bottom:316.026667pt;}
.y51{bottom:325.306667pt;}
.y1f{bottom:342.106667pt;}
.y3f{bottom:348.346667pt;}
.y50{bottom:357.466667pt;}
.y59{bottom:364.520000pt;}
.y1e{bottom:374.306667pt;}
.y3e{bottom:380.546667pt;}
.y4f{bottom:389.826667pt;}
.y1d{bottom:406.626667pt;}
.y3d{bottom:412.706667pt;}
.y4e{bottom:421.986667pt;}
.y1c{bottom:438.786667pt;}
.y3c{bottom:444.866667pt;}
.y4d{bottom:454.146667pt;}
.y1b{bottom:470.946667pt;}
.y3b{bottom:477.186667pt;}
.y4c{bottom:486.306667pt;}
.y1a{bottom:503.106667pt;}
.y3a{bottom:509.346667pt;}
.y4b{bottom:518.466667pt;}
.y19{bottom:535.426667pt;}
.y39{bottom:541.506667pt;}
.y4a{bottom:550.786667pt;}
.y18{bottom:567.586667pt;}
.y38{bottom:573.666667pt;}
.y49{bottom:582.946667pt;}
.y17{bottom:599.773333pt;}
.y37{bottom:605.853333pt;}
.y48{bottom:615.133333pt;}
.y16{bottom:631.933333pt;}
.y36{bottom:638.173333pt;}
.y47{bottom:642.973333pt;}
.y15{bottom:664.253333pt;}
.y35{bottom:670.333333pt;}
.y14{bottom:696.413333pt;}
.y6a{bottom:702.173333pt;}
.y34{bottom:702.493333pt;}
.y13{bottom:728.573333pt;}
.y33{bottom:734.653333pt;}
.y12{bottom:760.413333pt;}
.y58{bottom:766.653333pt;}
.y32{bottom:766.973333pt;}
.y11{bottom:792.573333pt;}
.y31{bottom:799.133333pt;}
.y10{bottom:824.933333pt;}
.y30{bottom:831.333333pt;}
.yf{bottom:857.093333pt;}
.y2f{bottom:863.493333pt;}
.ye{bottom:889.253333pt;}
.y2e{bottom:895.813333pt;}
.yd{bottom:917.253333pt;}
.y27{bottom:918.720000pt;}
.y2d{bottom:927.973333pt;}
.y29{bottom:959.813333pt;}
.y2c{bottom:960.133333pt;}
.y2b{bottom:992.293333pt;}
.y3{bottom:1020.613333pt;}
.y1{bottom:1041.120000pt;}
.y9{bottom:1063.040000pt;}
.h6{height:22.560000pt;}
.h2{height:35.840000pt;}
.h7{height:52.134375pt;}
.ha{height:52.284375pt;}
.hc{height:52.832812pt;}
.h4{height:59.066667pt;}
.h10{height:64.306667pt;}
.h11{height:64.466667pt;}
.he{height:73.454062pt;}
.h5{height:73.490625pt;}
.h3{height:75.465000pt;}
.h12{height:76.964840pt;}
.hb{height:90.560000pt;}
.hf{height:96.658667pt;}
.h8{height:98.400000pt;}
.hd{height:129.000000pt;}
.h9{height:161.812500pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w8{width:107.200000pt;}
.wa{width:107.218667pt;}
.w9{width:107.392000pt;}
.w5{width:108.800000pt;}
.wb{width:145.266667pt;}
.w7{width:145.458667pt;}
.w3{width:145.626667pt;}
.w4{width:150.426667pt;}
.w2{width:167.538667pt;}
.w6{width:616.640000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x1b{left:8.146667pt;}
.x19{left:11.360000pt;}
.x7{left:13.280000pt;}
.x17{left:18.880000pt;}
.x4{left:20.160000pt;}
.x1f{left:33.432000pt;}
.x16{left:35.200000pt;}
.x1d{left:45.280000pt;}
.x1e{left:46.400000pt;}
.x15{left:47.680000pt;}
.x21{left:56.186667pt;}
.x23{left:60.146667pt;}
.x20{left:63.200000pt;}
.x13{left:64.946667pt;}
.x22{left:69.760000pt;}
.x6{left:89.312000pt;}
.x1{left:94.600000pt;}
.x5{left:96.032000pt;}
.xe{left:127.072000pt;}
.x12{left:180.186667pt;}
.xc{left:231.866667pt;}
.x14{left:236.226667pt;}
.xa{left:272.386667pt;}
.x9{left:277.826667pt;}
.xb{left:299.906667pt;}
.x10{left:308.413333pt;}
.xf{left:334.626667pt;}
.x18{left:344.066667pt;}
.x24{left:353.826667pt;}
.x1a{left:452.106667pt;}
.x1c{left:560.133333pt;}
.x3{left:572.293333pt;}
.x2{left:576.133333pt;}
.xd{left:706.053333pt;}
.x8{left:745.120000pt;}
.x11{left:757.120000pt;}
}




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