
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_c1d3308778ada7fb68105122.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_a9d5bf977db263dcadbfcd60.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_c5dfb4e6932659eca4df1ca1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6498304514c980393bbc5737.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.570000px;}
.ls9{letter-spacing:-0.463800px;}
.lsb{letter-spacing:-0.310200px;}
.lsd{letter-spacing:-0.115800px;}
.ls11{letter-spacing:-0.058320px;}
.ls8{letter-spacing:0.000000px;}
.lse{letter-spacing:0.023760px;}
.ls10{letter-spacing:0.150000px;}
.lsc{letter-spacing:0.210000px;}
.ls3{letter-spacing:0.479520px;}
.ls7{letter-spacing:0.617760px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls6{letter-spacing:5.706720px;}
.ls5{letter-spacing:21.546720px;}
.ls4{letter-spacing:38.106720px;}
.lsf{letter-spacing:42.426720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-21.641760px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws6{word-spacing:-13.529520px;}
.ws4{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.447440px;}
.ws5{word-spacing:-13.389960px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1451.376240px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-581.644560px;}
._6{margin-left:-3.312000px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._a{width:2.653680px;}
._8{width:3.692160px;}
._7{width:5.263200px;}
._b{width:7.230960px;}
._10{width:8.310000px;}
._9{width:10.995840px;}
._12{width:12.169440px;}
._13{width:14.601360px;}
._e{width:15.637200px;}
._f{width:16.991760px;}
._c{width:18.226800px;}
._d{width:19.383840px;}
._11{width:23.485680px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y45{bottom:6.480000px;}
.y32{bottom:6.660000px;}
.y30{bottom:6.690000px;}
.y40{bottom:6.705000px;}
.y70{bottom:7.020000px;}
.y6f{bottom:28.110000px;}
.y6c{bottom:35.490000px;}
.y6e{bottom:49.530000px;}
.y6{bottom:61.380000px;}
.y6d{bottom:70.590000px;}
.y33{bottom:92.340000px;}
.y31{bottom:119.340000px;}
.y62{bottom:128.160000px;}
.y6b{bottom:131.760000px;}
.y2f{bottom:146.520000px;}
.y61{bottom:149.220000px;}
.y60{bottom:170.310000px;}
.y2e{bottom:179.130000px;}
.y5f{bottom:191.190000px;}
.y2d{bottom:200.190000px;}
.y5e{bottom:212.250000px;}
.y2c{bottom:221.250000px;}
.y5d{bottom:233.310000px;}
.y2b{bottom:242.310000px;}
.y5c{bottom:254.370000px;}
.y2a{bottom:263.370000px;}
.y5b{bottom:275.430000px;}
.y29{bottom:284.430000px;}
.y5a{bottom:296.490000px;}
.y28{bottom:305.490000px;}
.y59{bottom:317.550000px;}
.y27{bottom:326.550000px;}
.y58{bottom:338.610000px;}
.y26{bottom:347.610000px;}
.y57{bottom:359.670000px;}
.y25{bottom:368.670000px;}
.y56{bottom:380.730000px;}
.y24{bottom:389.730000px;}
.y55{bottom:401.835000px;}
.y23{bottom:410.835000px;}
.y54{bottom:422.895000px;}
.y22{bottom:431.895000px;}
.y53{bottom:443.955000px;}
.y21{bottom:452.955000px;}
.y52{bottom:465.015000px;}
.y20{bottom:474.015000px;}
.y51{bottom:484.275000px;}
.y1f{bottom:495.075000px;}
.y50{bottom:511.455000px;}
.y1e{bottom:516.135000px;}
.y1d{bottom:537.195000px;}
.y4f{bottom:538.455000px;}
.y1c{bottom:558.255000px;}
.y4e{bottom:571.035000px;}
.y1b{bottom:579.315000px;}
.y4d{bottom:592.095000px;}
.y1a{bottom:600.375000px;}
.y4c{bottom:611.355000px;}
.y19{bottom:621.435000px;}
.y4b{bottom:638.355000px;}
.y18{bottom:644.835000px;}
.y4a{bottom:665.565000px;}
.y17{bottom:665.745000px;}
.y16{bottom:695.805000px;}
.y49{bottom:698.145000px;}
.y15{bottom:716.865000px;}
.y48{bottom:719.205000px;}
.y14{bottom:737.925000px;}
.y47{bottom:738.465000px;}
.y13{bottom:758.985000px;}
.y46{bottom:765.465000px;}
.y12{bottom:780.045000px;}
.y44{bottom:792.645000px;}
.y11{bottom:801.105000px;}
.y43{bottom:819.645000px;}
.y10{bottom:822.165000px;}
.yf{bottom:843.225000px;}
.y42{bottom:852.225000px;}
.ye{bottom:864.285000px;}
.y41{bottom:873.285000px;}
.yd{bottom:885.345000px;}
.y3f{bottom:892.545000px;}
.yc{bottom:906.450000px;}
.y3e{bottom:919.590000px;}
.yb{bottom:929.670000px;}
.y3d{bottom:946.770000px;}
.ya{bottom:955.950000px;}
.y9{bottom:972.690000px;}
.y3c{bottom:973.770000px;}
.y8{bottom:995.010000px;}
.y3b{bottom:1000.770000px;}
.y6a{bottom:1017.870000px;}
.y7{bottom:1020.210000px;}
.y3a{bottom:1027.950000px;}
.y69{bottom:1038.930000px;}
.y68{bottom:1059.990000px;}
.y5{bottom:1060.350000px;}
.y39{bottom:1060.530000px;}
.y67{bottom:1081.050000px;}
.y38{bottom:1081.590000px;}
.y4{bottom:1092.570000px;}
.y37{bottom:1100.850000px;}
.y66{bottom:1102.110000px;}
.y65{bottom:1123.170000px;}
.y3{bottom:1124.610000px;}
.y36{bottom:1127.850000px;}
.y64{bottom:1144.230000px;}
.y35{bottom:1154.880000px;}
.y2{bottom:1156.860000px;}
.y63{bottom:1165.320000px;}
.y1{bottom:1191.420000px;}
.y34{bottom:1193.220000px;}
.hd{height:2.864531px;}
.hb{height:20.880000px;}
.ha{height:21.060000px;}
.h9{height:21.096000px;}
.h7{height:38.671172px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.hc{height:84.996000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:70.056000px;}
.w11{width:94.860000px;}
.wa{width:115.200000px;}
.w12{width:154.110000px;}
.we{width:166.860000px;}
.wf{width:178.410000px;}
.w4{width:187.770000px;}
.w7{width:188.670000px;}
.w8{width:202.890000px;}
.w13{width:207.750000px;}
.w14{width:210.810000px;}
.w5{width:224.175000px;}
.wb{width:229.890000px;}
.w10{width:243.390000px;}
.wc{width:288.930000px;}
.w3{width:309.135000px;}
.w6{width:322.770000px;}
.w9{width:367.635000px;}
.w15{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:1.260000px;}
.x19{left:7.785000px;}
.x1{left:53.999987px;}
.x3{left:70.199987px;}
.x2{left:75.599987px;}
.x15{left:80.999987px;}
.x4{left:82.260000px;}
.x8{left:85.716000px;}
.xd{left:88.956000px;}
.x11{left:90.936000px;}
.x16{left:108.035987px;}
.x17{left:190.110000px;}
.x18{left:264.810000px;}
.x12{left:338.115000px;}
.xe{left:381.495000px;}
.x6{left:395.175000px;}
.x9{left:412.275000px;}
.x13{left:436.575000px;}
.xf{left:455.325000px;}
.xb{left:457.845000px;}
.xc{left:576.825000px;}
.x7{left:586.725000px;}
.x14{left:594.465000px;}
.xa{left:604.725000px;}
.x10{left:625.785000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.506667pt;}
.ls9{letter-spacing:-0.412267pt;}
.lsb{letter-spacing:-0.275733pt;}
.lsd{letter-spacing:-0.102933pt;}
.ls11{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.021120pt;}
.ls10{letter-spacing:0.133333pt;}
.lsc{letter-spacing:0.186667pt;}
.ls3{letter-spacing:0.426240pt;}
.ls7{letter-spacing:0.549120pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls6{letter-spacing:5.072640pt;}
.ls5{letter-spacing:19.152640pt;}
.ls4{letter-spacing:33.872640pt;}
.lsf{letter-spacing:37.712640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-19.237120pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws6{word-spacing:-12.026240pt;}
.ws4{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.953280pt;}
.ws5{word-spacing:-11.902187pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1290.112213pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.017387pt;}
._6{margin-left:-2.944000pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._a{width:2.358827pt;}
._8{width:3.281920pt;}
._7{width:4.678400pt;}
._b{width:6.427520pt;}
._10{width:7.386667pt;}
._9{width:9.774080pt;}
._12{width:10.817280pt;}
._13{width:12.978987pt;}
._e{width:13.899733pt;}
._f{width:15.103787pt;}
._c{width:16.201600pt;}
._d{width:17.230080pt;}
._11{width:20.876160pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:5.760000pt;}
.y32{bottom:5.920000pt;}
.y30{bottom:5.946667pt;}
.y40{bottom:5.960000pt;}
.y70{bottom:6.240000pt;}
.y6f{bottom:24.986667pt;}
.y6c{bottom:31.546667pt;}
.y6e{bottom:44.026667pt;}
.y6{bottom:54.560000pt;}
.y6d{bottom:62.746667pt;}
.y33{bottom:82.080000pt;}
.y31{bottom:106.080000pt;}
.y62{bottom:113.920000pt;}
.y6b{bottom:117.120000pt;}
.y2f{bottom:130.240000pt;}
.y61{bottom:132.640000pt;}
.y60{bottom:151.386667pt;}
.y2e{bottom:159.226667pt;}
.y5f{bottom:169.946667pt;}
.y2d{bottom:177.946667pt;}
.y5e{bottom:188.666667pt;}
.y2c{bottom:196.666667pt;}
.y5d{bottom:207.386667pt;}
.y2b{bottom:215.386667pt;}
.y5c{bottom:226.106667pt;}
.y2a{bottom:234.106667pt;}
.y5b{bottom:244.826667pt;}
.y29{bottom:252.826667pt;}
.y5a{bottom:263.546667pt;}
.y28{bottom:271.546667pt;}
.y59{bottom:282.266667pt;}
.y27{bottom:290.266667pt;}
.y58{bottom:300.986667pt;}
.y26{bottom:308.986667pt;}
.y57{bottom:319.706667pt;}
.y25{bottom:327.706667pt;}
.y56{bottom:338.426667pt;}
.y24{bottom:346.426667pt;}
.y55{bottom:357.186667pt;}
.y23{bottom:365.186667pt;}
.y54{bottom:375.906667pt;}
.y22{bottom:383.906667pt;}
.y53{bottom:394.626667pt;}
.y21{bottom:402.626667pt;}
.y52{bottom:413.346667pt;}
.y20{bottom:421.346667pt;}
.y51{bottom:430.466667pt;}
.y1f{bottom:440.066667pt;}
.y50{bottom:454.626667pt;}
.y1e{bottom:458.786667pt;}
.y1d{bottom:477.506667pt;}
.y4f{bottom:478.626667pt;}
.y1c{bottom:496.226667pt;}
.y4e{bottom:507.586667pt;}
.y1b{bottom:514.946667pt;}
.y4d{bottom:526.306667pt;}
.y1a{bottom:533.666667pt;}
.y4c{bottom:543.426667pt;}
.y19{bottom:552.386667pt;}
.y4b{bottom:567.426667pt;}
.y18{bottom:573.186667pt;}
.y4a{bottom:591.613333pt;}
.y17{bottom:591.773333pt;}
.y16{bottom:618.493333pt;}
.y49{bottom:620.573333pt;}
.y15{bottom:637.213333pt;}
.y48{bottom:639.293333pt;}
.y14{bottom:655.933333pt;}
.y47{bottom:656.413333pt;}
.y13{bottom:674.653333pt;}
.y46{bottom:680.413333pt;}
.y12{bottom:693.373333pt;}
.y44{bottom:704.573333pt;}
.y11{bottom:712.093333pt;}
.y43{bottom:728.573333pt;}
.y10{bottom:730.813333pt;}
.yf{bottom:749.533333pt;}
.y42{bottom:757.533333pt;}
.ye{bottom:768.253333pt;}
.y41{bottom:776.253333pt;}
.yd{bottom:786.973333pt;}
.y3f{bottom:793.373333pt;}
.yc{bottom:805.733333pt;}
.y3e{bottom:817.413333pt;}
.yb{bottom:826.373333pt;}
.y3d{bottom:841.573333pt;}
.ya{bottom:849.733333pt;}
.y9{bottom:864.613333pt;}
.y3c{bottom:865.573333pt;}
.y8{bottom:884.453333pt;}
.y3b{bottom:889.573333pt;}
.y6a{bottom:904.773333pt;}
.y7{bottom:906.853333pt;}
.y3a{bottom:913.733333pt;}
.y69{bottom:923.493333pt;}
.y68{bottom:942.213333pt;}
.y5{bottom:942.533333pt;}
.y39{bottom:942.693333pt;}
.y67{bottom:960.933333pt;}
.y38{bottom:961.413333pt;}
.y4{bottom:971.173333pt;}
.y37{bottom:978.533333pt;}
.y66{bottom:979.653333pt;}
.y65{bottom:998.373333pt;}
.y3{bottom:999.653333pt;}
.y36{bottom:1002.533333pt;}
.y64{bottom:1017.093333pt;}
.y35{bottom:1026.560000pt;}
.y2{bottom:1028.320000pt;}
.y63{bottom:1035.840000pt;}
.y1{bottom:1059.040000pt;}
.y34{bottom:1060.640000pt;}
.hd{height:2.546250pt;}
.hb{height:18.560000pt;}
.ha{height:18.720000pt;}
.h9{height:18.752000pt;}
.h7{height:34.374375pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.hc{height:75.552000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:62.272000pt;}
.w11{width:84.320000pt;}
.wa{width:102.400000pt;}
.w12{width:136.986667pt;}
.we{width:148.320000pt;}
.wf{width:158.586667pt;}
.w4{width:166.906667pt;}
.w7{width:167.706667pt;}
.w8{width:180.346667pt;}
.w13{width:184.666667pt;}
.w14{width:187.386667pt;}
.w5{width:199.266667pt;}
.wb{width:204.346667pt;}
.w10{width:216.346667pt;}
.wc{width:256.826667pt;}
.w3{width:274.786667pt;}
.w6{width:286.906667pt;}
.w9{width:326.786667pt;}
.w15{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:1.120000pt;}
.x19{left:6.920000pt;}
.x1{left:47.999988pt;}
.x3{left:62.399988pt;}
.x2{left:67.199988pt;}
.x15{left:71.999988pt;}
.x4{left:73.120000pt;}
.x8{left:76.192000pt;}
.xd{left:79.072000pt;}
.x11{left:80.832000pt;}
.x16{left:96.031988pt;}
.x17{left:168.986667pt;}
.x18{left:235.386667pt;}
.x12{left:300.546667pt;}
.xe{left:339.106667pt;}
.x6{left:351.266667pt;}
.x9{left:366.466667pt;}
.x13{left:388.066667pt;}
.xf{left:404.733333pt;}
.xb{left:406.973333pt;}
.xc{left:512.733333pt;}
.x7{left:521.533333pt;}
.x14{left:528.413333pt;}
.xa{left:537.533333pt;}
.x10{left:556.253333pt;}
}




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