
    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_5e8de86e87a6d94378dc16f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_43c9bfbdde373baa2d363984.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_906e6730e91e61d5af793ffd.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_be47b51039f6e24a5b1c1f47.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_31ff3e26142e6cad23bb9186.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_80cd70a331d2636b67fdede5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9f6b77f71cb477b5caed882c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933105;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:-16.560000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.320000px;}
.v1{vertical-align:16.560000px;}
.lsd{letter-spacing:-0.587400px;}
.ls7{letter-spacing:-0.240600px;}
.lsc{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.067200px;}
.ls6{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.060600px;}
.lse{letter-spacing:0.132600px;}
.ls1{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.175200px;}
.lsa{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.339840px;}
.ls2{letter-spacing:54.864000px;}
.ls5{letter-spacing:59.345280px;}
.ls3{letter-spacing:64.026720px;}
.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:-72.000000px;}
.ws7{word-spacing:-66.240000px;}
.ws5{word-spacing:-59.760000px;}
.ws6{word-spacing:-16.272000px;}
.ws9{word-spacing:-15.102840px;}
.ws8{word-spacing:-14.382840px;}
.ws3{word-spacing:-13.680960px;}
.ws1{word-spacing:-13.505760px;}
.ws2{word-spacing:-13.438560px;}
.ws0{word-spacing:-13.265160px;}
.wsa{word-spacing:0.000000px;}
._6{margin-left:-2.592000px;}
._0{margin-left:-1.082160px;}
._1{width:1.135440px;}
._3{width:2.645280px;}
._2{width:3.727440px;}
._4{width:5.050080px;}
._5{width:6.078000px;}
._9{width:11.016000px;}
._8{width:12.024000px;}
._7{width:46.080000px;}
.fc3{color:rgb(64,64,69);}
.fc2{color:rgb(39,33,40);}
.fc1{color:rgb(5,21,21);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:120.240000px;}
.fs6{font-size:167.760000px;}
.fs5{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y96{bottom:9.540000px;}
.y99{bottom:24.120000px;}
.y98{bottom:48.960000px;}
.y97{bottom:72.360000px;}
.y33{bottom:134.445000px;}
.y6f{bottom:140.436000px;}
.y32{bottom:155.145000px;}
.y6e{bottom:162.390000px;}
.y31{bottom:179.805000px;}
.y6d{bottom:184.350000px;}
.y3{bottom:191.385000px;}
.y30{bottom:201.765000px;}
.y6c{bottom:206.310000px;}
.y2f{bottom:223.905000px;}
.y6b{bottom:228.270000px;}
.y2e{bottom:245.865000px;}
.y6a{bottom:250.230000px;}
.y2d{bottom:269.445000px;}
.y69{bottom:272.190000px;}
.y95{bottom:291.990000px;}
.y68{bottom:294.150000px;}
.y2c{bottom:295.950000px;}
.y67{bottom:316.290000px;}
.y94{bottom:319.350000px;}
.y2b{bottom:322.230000px;}
.y66{bottom:340.950000px;}
.y93{bottom:344.730000px;}
.y2a{bottom:346.890000px;}
.y65{bottom:362.730000px;}
.y29{bottom:368.850000px;}
.y92{bottom:371.190000px;}
.y64{bottom:384.870000px;}
.y28{bottom:390.810000px;}
.y91{bottom:397.650000px;}
.y63{bottom:406.830000px;}
.y27{bottom:412.770000px;}
.y90{bottom:424.830000px;}
.y62{bottom:428.790000px;}
.y26{bottom:434.730000px;}
.y8f{bottom:450.390000px;}
.y61{bottom:450.750000px;}
.y25{bottom:458.490000px;}
.y60{bottom:472.755000px;}
.y8e{bottom:477.615000px;}
.y24{bottom:484.770000px;}
.y5f{bottom:494.715000px;}
.y8d{bottom:503.175000px;}
.y23{bottom:509.430000px;}
.y5e{bottom:516.675000px;}
.y8c{bottom:530.535000px;}
.y22{bottom:531.570000px;}
.y5d{bottom:541.515000px;}
.y21{bottom:553.530000px;}
.y8b{bottom:555.915000px;}
.y5c{bottom:563.295000px;}
.y20{bottom:575.490000px;}
.y8a{bottom:582.375000px;}
.y5b{bottom:585.255000px;}
.y1f{bottom:597.450000px;}
.y5a{bottom:607.215000px;}
.y89{bottom:608.835000px;}
.y1e{bottom:619.410000px;}
.y59{bottom:629.175000px;}
.y88{bottom:635.115000px;}
.y1d{bottom:641.370000px;}
.y58{bottom:651.135000px;}
.y87{bottom:662.475000px;}
.y1c{bottom:663.360000px;}
.y57{bottom:673.095000px;}
.y1b{bottom:685.320000px;}
.y86{bottom:687.855000px;}
.y56{bottom:695.235000px;}
.y1a{bottom:708.900000px;}
.y85{bottom:714.315000px;}
.y55{bottom:720.075000px;}
.y19{bottom:733.740000px;}
.y84{bottom:740.775000px;}
.y54{bottom:741.855000px;}
.y18{bottom:755.700000px;}
.y53{bottom:763.815000px;}
.y83{bottom:767.235000px;}
.y17{bottom:777.660000px;}
.y52{bottom:785.775000px;}
.y82{bottom:793.515000px;}
.y16{bottom:799.620000px;}
.y51{bottom:807.735000px;}
.y81{bottom:819.975000px;}
.y15{bottom:821.580000px;}
.y50{bottom:829.695000px;}
.y14{bottom:843.540000px;}
.y80{bottom:847.185000px;}
.y4f{bottom:851.685000px;}
.y13{bottom:865.500000px;}
.y7f{bottom:872.745000px;}
.y4e{bottom:873.645000px;}
.y12{bottom:887.460000px;}
.y4d{bottom:897.225000px;}
.y7e{bottom:899.205000px;}
.y11{bottom:909.420000px;}
.y4c{bottom:916.305000px;}
.y7d{bottom:925.485000px;}
.y10{bottom:931.380000px;}
.y4b{bottom:938.265000px;}
.y7c{bottom:951.945000px;}
.yf{bottom:955.140000px;}
.y4a{bottom:960.225000px;}
.y7b{bottom:978.405000px;}
.ye{bottom:979.800000px;}
.y49{bottom:982.185000px;}
.yd{bottom:1001.760000px;}
.y48{bottom:1004.325000px;}
.y7a{bottom:1004.685000px;}
.yc{bottom:1023.720000px;}
.y47{bottom:1026.285000px;}
.y79{bottom:1031.145000px;}
.yb{bottom:1045.725000px;}
.y46{bottom:1048.245000px;}
.y78{bottom:1057.605000px;}
.ya{bottom:1067.685000px;}
.y45{bottom:1070.205000px;}
.y77{bottom:1084.785000px;}
.y9{bottom:1089.645000px;}
.y44{bottom:1092.165000px;}
.y76{bottom:1111.245000px;}
.y8{bottom:1111.605000px;}
.y43{bottom:1114.125000px;}
.y7{bottom:1133.565000px;}
.y42{bottom:1136.085000px;}
.y75{bottom:1136.625000px;}
.y6{bottom:1155.525000px;}
.y41{bottom:1158.045000px;}
.y74{bottom:1163.085000px;}
.y5{bottom:1177.485000px;}
.y40{bottom:1180.005000px;}
.y73{bottom:1189.545000px;}
.y4{bottom:1201.245000px;}
.y3f{bottom:1201.965000px;}
.y72{bottom:1216.725000px;}
.y3e{bottom:1224.150000px;}
.y71{bottom:1255.650000px;}
.y3d{bottom:1263.750000px;}
.y70{bottom:1300.110000px;}
.y3c{bottom:1321.890000px;}
.y3b{bottom:1342.230000px;}
.y3a{bottom:1364.190000px;}
.y39{bottom:1386.150000px;}
.y38{bottom:1408.110000px;}
.y37{bottom:1430.070000px;}
.y36{bottom:1452.030000px;}
.y35{bottom:1495.950000px;}
.y34{bottom:1555.350000px;}
.y2{bottom:1673.280000px;}
.y1{bottom:1704.240000px;}
.h7{height:45.637031px;}
.h10{height:49.394180px;}
.h5{height:54.984375px;}
.h6{height:59.439023px;}
.h3{height:65.884219px;}
.h8{height:71.613281px;}
.hb{height:73.722656px;}
.hd{height:75.093750px;}
.he{height:78.693750px;}
.hf{height:83.745000px;}
.h9{height:123.116836px;}
.h2{height:125.406562px;}
.hc{height:171.773789px;}
.ha{height:221.167969px;}
.h4{height:1334.790000px;}
.h1{height:1785.750000px;}
.h0{height:1785.780000px;}
.w2{width:304.410000px;}
.w3{width:1261.080000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x12{left:1.800000px;}
.x5{left:10.785000px;}
.x7{left:23.565000px;}
.x4{left:32.025000px;}
.x6{left:57.585000px;}
.x2{left:63.900000px;}
.x8{left:69.480000px;}
.x13{left:74.520000px;}
.xa{left:90.900000px;}
.xb{left:117.900000px;}
.x1{left:345.630000px;}
.xc{left:465.555000px;}
.xf{left:471.315000px;}
.xd{left:492.555000px;}
.x10{left:498.315000px;}
.xe{left:525.315000px;}
.x9{left:627.375000px;}
.x3{left:872.040000px;}
.x11{left:878.865000px;}
@media print{
.v2{vertical-align:-14.720000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.840000pt;}
.v1{vertical-align:14.720000pt;}
.lsd{letter-spacing:-0.522133pt;}
.ls7{letter-spacing:-0.213867pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.059733pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.117867pt;}
.ls1{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.155733pt;}
.lsa{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.302080pt;}
.ls2{letter-spacing:48.768000pt;}
.ls5{letter-spacing:52.751360pt;}
.ls3{letter-spacing:56.912640pt;}
.ws4{word-spacing:-64.000000pt;}
.ws7{word-spacing:-58.880000pt;}
.ws5{word-spacing:-53.120000pt;}
.ws6{word-spacing:-14.464000pt;}
.ws9{word-spacing:-13.424747pt;}
.ws8{word-spacing:-12.784747pt;}
.ws3{word-spacing:-12.160853pt;}
.ws1{word-spacing:-12.005120pt;}
.ws2{word-spacing:-11.945387pt;}
.ws0{word-spacing:-11.791253pt;}
.wsa{word-spacing:0.000000pt;}
._6{margin-left:-2.304000pt;}
._0{margin-left:-0.961920pt;}
._1{width:1.009280pt;}
._3{width:2.351360pt;}
._2{width:3.313280pt;}
._4{width:4.488960pt;}
._5{width:5.402667pt;}
._9{width:9.792000pt;}
._8{width:10.688000pt;}
._7{width:40.960000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:106.880000pt;}
.fs6{font-size:149.120000pt;}
.fs5{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:8.480000pt;}
.y99{bottom:21.440000pt;}
.y98{bottom:43.520000pt;}
.y97{bottom:64.320000pt;}
.y33{bottom:119.506667pt;}
.y6f{bottom:124.832000pt;}
.y32{bottom:137.906667pt;}
.y6e{bottom:144.346667pt;}
.y31{bottom:159.826667pt;}
.y6d{bottom:163.866667pt;}
.y3{bottom:170.120000pt;}
.y30{bottom:179.346667pt;}
.y6c{bottom:183.386667pt;}
.y2f{bottom:199.026667pt;}
.y6b{bottom:202.906667pt;}
.y2e{bottom:218.546667pt;}
.y6a{bottom:222.426667pt;}
.y2d{bottom:239.506667pt;}
.y69{bottom:241.946667pt;}
.y95{bottom:259.546667pt;}
.y68{bottom:261.466667pt;}
.y2c{bottom:263.066667pt;}
.y67{bottom:281.146667pt;}
.y94{bottom:283.866667pt;}
.y2b{bottom:286.426667pt;}
.y66{bottom:303.066667pt;}
.y93{bottom:306.426667pt;}
.y2a{bottom:308.346667pt;}
.y65{bottom:322.426667pt;}
.y29{bottom:327.866667pt;}
.y92{bottom:329.946667pt;}
.y64{bottom:342.106667pt;}
.y28{bottom:347.386667pt;}
.y91{bottom:353.466667pt;}
.y63{bottom:361.626667pt;}
.y27{bottom:366.906667pt;}
.y90{bottom:377.626667pt;}
.y62{bottom:381.146667pt;}
.y26{bottom:386.426667pt;}
.y8f{bottom:400.346667pt;}
.y61{bottom:400.666667pt;}
.y25{bottom:407.546667pt;}
.y60{bottom:420.226667pt;}
.y8e{bottom:424.546667pt;}
.y24{bottom:430.906667pt;}
.y5f{bottom:439.746667pt;}
.y8d{bottom:447.266667pt;}
.y23{bottom:452.826667pt;}
.y5e{bottom:459.266667pt;}
.y8c{bottom:471.586667pt;}
.y22{bottom:472.506667pt;}
.y5d{bottom:481.346667pt;}
.y21{bottom:492.026667pt;}
.y8b{bottom:494.146667pt;}
.y5c{bottom:500.706667pt;}
.y20{bottom:511.546667pt;}
.y8a{bottom:517.666667pt;}
.y5b{bottom:520.226667pt;}
.y1f{bottom:531.066667pt;}
.y5a{bottom:539.746667pt;}
.y89{bottom:541.186667pt;}
.y1e{bottom:550.586667pt;}
.y59{bottom:559.266667pt;}
.y88{bottom:564.546667pt;}
.y1d{bottom:570.106667pt;}
.y58{bottom:578.786667pt;}
.y87{bottom:588.866667pt;}
.y1c{bottom:589.653333pt;}
.y57{bottom:598.306667pt;}
.y1b{bottom:609.173333pt;}
.y86{bottom:611.426667pt;}
.y56{bottom:617.986667pt;}
.y1a{bottom:630.133333pt;}
.y85{bottom:634.946667pt;}
.y55{bottom:640.066667pt;}
.y19{bottom:652.213333pt;}
.y84{bottom:658.466667pt;}
.y54{bottom:659.426667pt;}
.y18{bottom:671.733333pt;}
.y53{bottom:678.946667pt;}
.y83{bottom:681.986667pt;}
.y17{bottom:691.253333pt;}
.y52{bottom:698.466667pt;}
.y82{bottom:705.346667pt;}
.y16{bottom:710.773333pt;}
.y51{bottom:717.986667pt;}
.y81{bottom:728.866667pt;}
.y15{bottom:730.293333pt;}
.y50{bottom:737.506667pt;}
.y14{bottom:749.813333pt;}
.y80{bottom:753.053333pt;}
.y4f{bottom:757.053333pt;}
.y13{bottom:769.333333pt;}
.y7f{bottom:775.773333pt;}
.y4e{bottom:776.573333pt;}
.y12{bottom:788.853333pt;}
.y4d{bottom:797.533333pt;}
.y7e{bottom:799.293333pt;}
.y11{bottom:808.373333pt;}
.y4c{bottom:814.493333pt;}
.y7d{bottom:822.653333pt;}
.y10{bottom:827.893333pt;}
.y4b{bottom:834.013333pt;}
.y7c{bottom:846.173333pt;}
.yf{bottom:849.013333pt;}
.y4a{bottom:853.533333pt;}
.y7b{bottom:869.693333pt;}
.ye{bottom:870.933333pt;}
.y49{bottom:873.053333pt;}
.yd{bottom:890.453333pt;}
.y48{bottom:892.733333pt;}
.y7a{bottom:893.053333pt;}
.yc{bottom:909.973333pt;}
.y47{bottom:912.253333pt;}
.y79{bottom:916.573333pt;}
.yb{bottom:929.533333pt;}
.y46{bottom:931.773333pt;}
.y78{bottom:940.093333pt;}
.ya{bottom:949.053333pt;}
.y45{bottom:951.293333pt;}
.y77{bottom:964.253333pt;}
.y9{bottom:968.573333pt;}
.y44{bottom:970.813333pt;}
.y76{bottom:987.773333pt;}
.y8{bottom:988.093333pt;}
.y43{bottom:990.333333pt;}
.y7{bottom:1007.613333pt;}
.y42{bottom:1009.853333pt;}
.y75{bottom:1010.333333pt;}
.y6{bottom:1027.133333pt;}
.y41{bottom:1029.373333pt;}
.y74{bottom:1033.853333pt;}
.y5{bottom:1046.653333pt;}
.y40{bottom:1048.893333pt;}
.y73{bottom:1057.373333pt;}
.y4{bottom:1067.773333pt;}
.y3f{bottom:1068.413333pt;}
.y72{bottom:1081.533333pt;}
.y3e{bottom:1088.133333pt;}
.y71{bottom:1116.133333pt;}
.y3d{bottom:1123.333333pt;}
.y70{bottom:1155.653333pt;}
.y3c{bottom:1175.013333pt;}
.y3b{bottom:1193.093333pt;}
.y3a{bottom:1212.613333pt;}
.y39{bottom:1232.133333pt;}
.y38{bottom:1251.653333pt;}
.y37{bottom:1271.173333pt;}
.y36{bottom:1290.693333pt;}
.y35{bottom:1329.733333pt;}
.y34{bottom:1382.533333pt;}
.y2{bottom:1487.360000pt;}
.y1{bottom:1514.880000pt;}
.h7{height:40.566250pt;}
.h10{height:43.905937pt;}
.h5{height:48.875000pt;}
.h6{height:52.834688pt;}
.h3{height:58.563750pt;}
.h8{height:63.656250pt;}
.hb{height:65.531250pt;}
.hd{height:66.750000pt;}
.he{height:69.950000pt;}
.hf{height:74.440000pt;}
.h9{height:109.437187pt;}
.h2{height:111.472500pt;}
.hc{height:152.687812pt;}
.ha{height:196.593750pt;}
.h4{height:1186.480000pt;}
.h1{height:1587.333333pt;}
.h0{height:1587.360000pt;}
.w2{width:270.586667pt;}
.w3{width:1120.960000pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x12{left:1.600000pt;}
.x5{left:9.586667pt;}
.x7{left:20.946667pt;}
.x4{left:28.466667pt;}
.x6{left:51.186667pt;}
.x2{left:56.800000pt;}
.x8{left:61.760000pt;}
.x13{left:66.240000pt;}
.xa{left:80.800000pt;}
.xb{left:104.800000pt;}
.x1{left:307.226667pt;}
.xc{left:413.826667pt;}
.xf{left:418.946667pt;}
.xd{left:437.826667pt;}
.x10{left:442.946667pt;}
.xe{left:466.946667pt;}
.x9{left:557.666667pt;}
.x3{left:775.146667pt;}
.x11{left:781.213333pt;}
}




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