
    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_30e3604ceda6d988f1ce4073.woff')format("woff");}.ff1{font-family:ff1;line-height:0.804199;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_1ff0fa2786bcfd4df9f56e98.woff')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_9f05fdb1923bbf21a802a487.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_10886e0a658acd4cc077f933.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_02aa9c10b081bf9110f3b4a6.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bab3ccbeeb6cd137f548bd56.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7a96792fa6b6fba0b00bfd0f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5664f1be58783db4d51dac67.woff')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_20b3d7ba5c3647b3f851d9a3.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ce5c5dfa4b7b7486c45ac363.woff')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls3{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.720000px;}
.lsa{letter-spacing:2.880000px;}
.lsc{letter-spacing:6.480000px;}
.lsd{letter-spacing:13.680000px;}
.ls7{letter-spacing:13.824000px;}
.ls6{letter-spacing:21.600000px;}
.ls9{letter-spacing:31.680000px;}
.ls8{letter-spacing:48.240000px;}
.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:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-2.514720px;}
._0{margin-left:-1.442880px;}
._1{width:1.434240px;}
._3{width:2.459520px;}
._14{width:3.596160px;}
._7{width:4.610880px;}
._8{width:6.042240px;}
._9{width:7.056000px;}
._a{width:8.084160px;}
._e{width:9.144000px;}
._12{width:11.066880px;}
._13{width:12.162720px;}
._c{width:13.248000px;}
._d{width:14.547360px;}
._2{width:15.624000px;}
._15{width:16.703040px;}
._6{width:19.052640px;}
._4{width:20.744640px;}
._5{width:21.816000px;}
._f{width:23.544000px;}
._16{width:24.633600px;}
._10{width:25.776000px;}
._11{width:27.440640px;}
._19{width:28.633920px;}
._1b{width:30.242880px;}
._1a{width:31.275840px;}
._1c{width:33.308160px;}
._17{width:37.368000px;}
._18{width:39.035040px;}
._1e{width:48.204000px;}
._1d{width:50.016000px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc4{color:rgb(71,71,71);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.ya{bottom:10.800000px;}
.yb{bottom:11.520000px;}
.y6{bottom:12.600000px;}
.y3{bottom:25.020000px;}
.y5{bottom:32.580000px;}
.y7{bottom:42.120000px;}
.y2{bottom:52.740000px;}
.y4{bottom:56.340000px;}
.yc{bottom:57.636000px;}
.y9{bottom:73.836000px;}
.y37{bottom:137.736000px;}
.y36{bottom:161.490000px;}
.y35{bottom:185.250000px;}
.y34{bottom:209.190000px;}
.y5e{bottom:225.390000px;}
.y33{bottom:232.950000px;}
.y5d{bottom:249.330000px;}
.y32{bottom:256.710000px;}
.y5c{bottom:273.090000px;}
.y31{bottom:280.515000px;}
.y5b{bottom:296.895000px;}
.y30{bottom:304.455000px;}
.y5a{bottom:320.655000px;}
.y2f{bottom:328.215000px;}
.y59{bottom:344.415000px;}
.y2e{bottom:351.975000px;}
.y58{bottom:368.355000px;}
.y2d{bottom:375.735000px;}
.y57{bottom:392.115000px;}
.y2c{bottom:399.675000px;}
.y56{bottom:415.875000px;}
.y2b{bottom:423.435000px;}
.y55{bottom:439.635000px;}
.y2a{bottom:447.195000px;}
.y54{bottom:463.575000px;}
.y29{bottom:470.955000px;}
.y53{bottom:486.975000px;}
.y28{bottom:494.895000px;}
.y52{bottom:511.095000px;}
.y27{bottom:518.655000px;}
.y51{bottom:534.855000px;}
.y26{bottom:542.415000px;}
.y50{bottom:558.795000px;}
.y25{bottom:566.205000px;}
.y4f{bottom:582.585000px;}
.y24{bottom:590.145000px;}
.y4e{bottom:606.345000px;}
.y23{bottom:613.905000px;}
.y4d{bottom:630.105000px;}
.y22{bottom:637.665000px;}
.y4c{bottom:654.045000px;}
.y21{bottom:661.425000px;}
.y4b{bottom:677.805000px;}
.y20{bottom:685.185000px;}
.y4a{bottom:701.565000px;}
.y1f{bottom:709.125000px;}
.y49{bottom:725.325000px;}
.y1e{bottom:732.885000px;}
.y48{bottom:749.265000px;}
.y1d{bottom:756.645000px;}
.y47{bottom:773.025000px;}
.y1c{bottom:780.405000px;}
.y46{bottom:796.785000px;}
.y1b{bottom:804.345000px;}
.y45{bottom:820.545000px;}
.y1a{bottom:828.105000px;}
.y44{bottom:844.305000px;}
.y19{bottom:851.910000px;}
.y43{bottom:868.290000px;}
.y18{bottom:875.670000px;}
.y42{bottom:892.050000px;}
.y17{bottom:899.610000px;}
.y41{bottom:915.810000px;}
.y16{bottom:923.370000px;}
.y40{bottom:939.570000px;}
.y15{bottom:947.130000px;}
.y3f{bottom:963.510000px;}
.y14{bottom:970.890000px;}
.y3e{bottom:987.270000px;}
.y13{bottom:994.470000px;}
.y3d{bottom:1011.030000px;}
.y12{bottom:1015.710000px;}
.y3c{bottom:1034.790000px;}
.y11{bottom:1037.850000px;}
.y3b{bottom:1058.730000px;}
.y10{bottom:1059.810000px;}
.yf{bottom:1082.130000px;}
.y3a{bottom:1082.490000px;}
.ye{bottom:1105.890000px;}
.y39{bottom:1106.250000px;}
.yd{bottom:1129.680000px;}
.y38{bottom:1130.040000px;}
.y8{bottom:1150.560000px;}
.y1{bottom:1167.120000px;}
.h8{height:27.000000px;}
.hc{height:50.273438px;}
.ha{height:50.800781px;}
.h5{height:60.226875px;}
.h3{height:61.781484px;}
.h9{height:65.884219px;}
.hb{height:70.628906px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.hd{height:74.004654px;}
.h2{height:95.760000px;}
.h4{height:102.861562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:73.110000px;}
.w7{width:106.416000px;}
.w2{width:117.936000px;}
.w8{width:305.670000px;}
.w6{width:305.850000px;}
.w3{width:701.925000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x2{left:-23.220028px;}
.x1{left:-9.900031px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.xc{left:44.100000px;}
.x9{left:108.936000px;}
.x3{left:117.936000px;}
.x5{left:122.214000px;}
.x16{left:149.075987px;}
.xe{left:167.789987px;}
.x15{left:170.129987px;}
.x4{left:172.254000px;}
.x6{left:295.779000px;}
.xa{left:297.759000px;}
.x13{left:311.834987px;}
.x14{left:317.054987px;}
.x10{left:347.834987px;}
.x11{left:359.714987px;}
.xf{left:413.354987px;}
.xb{left:414.795000px;}
.x12{left:439.634987px;}
.xd{left:521.205000px;}
.x7{left:819.870000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.640000pt;}
.lsa{letter-spacing:2.560000pt;}
.lsc{letter-spacing:5.760000pt;}
.lsd{letter-spacing:12.160000pt;}
.ls7{letter-spacing:12.288000pt;}
.ls6{letter-spacing:19.200000pt;}
.ls9{letter-spacing:28.160000pt;}
.ls8{letter-spacing:42.880000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-2.235307pt;}
._0{margin-left:-1.282560pt;}
._1{width:1.274880pt;}
._3{width:2.186240pt;}
._14{width:3.196587pt;}
._7{width:4.098560pt;}
._8{width:5.370880pt;}
._9{width:6.272000pt;}
._a{width:7.185920pt;}
._e{width:8.128000pt;}
._12{width:9.837227pt;}
._13{width:10.811307pt;}
._c{width:11.776000pt;}
._d{width:12.930987pt;}
._2{width:13.888000pt;}
._15{width:14.847147pt;}
._6{width:16.935680pt;}
._4{width:18.439680pt;}
._5{width:19.392000pt;}
._f{width:20.928000pt;}
._16{width:21.896533pt;}
._10{width:22.912000pt;}
._11{width:24.391680pt;}
._19{width:25.452373pt;}
._1b{width:26.882560pt;}
._1a{width:27.800747pt;}
._1c{width:29.607253pt;}
._17{width:33.216000pt;}
._18{width:34.697813pt;}
._1e{width:42.848000pt;}
._1d{width:44.458667pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:9.600000pt;}
.yb{bottom:10.240000pt;}
.y6{bottom:11.200000pt;}
.y3{bottom:22.240000pt;}
.y5{bottom:28.960000pt;}
.y7{bottom:37.440000pt;}
.y2{bottom:46.880000pt;}
.y4{bottom:50.080000pt;}
.yc{bottom:51.232000pt;}
.y9{bottom:65.632000pt;}
.y37{bottom:122.432000pt;}
.y36{bottom:143.546667pt;}
.y35{bottom:164.666667pt;}
.y34{bottom:185.946667pt;}
.y5e{bottom:200.346667pt;}
.y33{bottom:207.066667pt;}
.y5d{bottom:221.626667pt;}
.y32{bottom:228.186667pt;}
.y5c{bottom:242.746667pt;}
.y31{bottom:249.346667pt;}
.y5b{bottom:263.906667pt;}
.y30{bottom:270.626667pt;}
.y5a{bottom:285.026667pt;}
.y2f{bottom:291.746667pt;}
.y59{bottom:306.146667pt;}
.y2e{bottom:312.866667pt;}
.y58{bottom:327.426667pt;}
.y2d{bottom:333.986667pt;}
.y57{bottom:348.546667pt;}
.y2c{bottom:355.266667pt;}
.y56{bottom:369.666667pt;}
.y2b{bottom:376.386667pt;}
.y55{bottom:390.786667pt;}
.y2a{bottom:397.506667pt;}
.y54{bottom:412.066667pt;}
.y29{bottom:418.626667pt;}
.y53{bottom:432.866667pt;}
.y28{bottom:439.906667pt;}
.y52{bottom:454.306667pt;}
.y27{bottom:461.026667pt;}
.y51{bottom:475.426667pt;}
.y26{bottom:482.146667pt;}
.y50{bottom:496.706667pt;}
.y25{bottom:503.293333pt;}
.y4f{bottom:517.853333pt;}
.y24{bottom:524.573333pt;}
.y4e{bottom:538.973333pt;}
.y23{bottom:545.693333pt;}
.y4d{bottom:560.093333pt;}
.y22{bottom:566.813333pt;}
.y4c{bottom:581.373333pt;}
.y21{bottom:587.933333pt;}
.y4b{bottom:602.493333pt;}
.y20{bottom:609.053333pt;}
.y4a{bottom:623.613333pt;}
.y1f{bottom:630.333333pt;}
.y49{bottom:644.733333pt;}
.y1e{bottom:651.453333pt;}
.y48{bottom:666.013333pt;}
.y1d{bottom:672.573333pt;}
.y47{bottom:687.133333pt;}
.y1c{bottom:693.693333pt;}
.y46{bottom:708.253333pt;}
.y1b{bottom:714.973333pt;}
.y45{bottom:729.373333pt;}
.y1a{bottom:736.093333pt;}
.y44{bottom:750.493333pt;}
.y19{bottom:757.253333pt;}
.y43{bottom:771.813333pt;}
.y18{bottom:778.373333pt;}
.y42{bottom:792.933333pt;}
.y17{bottom:799.653333pt;}
.y41{bottom:814.053333pt;}
.y16{bottom:820.773333pt;}
.y40{bottom:835.173333pt;}
.y15{bottom:841.893333pt;}
.y3f{bottom:856.453333pt;}
.y14{bottom:863.013333pt;}
.y3e{bottom:877.573333pt;}
.y13{bottom:883.973333pt;}
.y3d{bottom:898.693333pt;}
.y12{bottom:902.853333pt;}
.y3c{bottom:919.813333pt;}
.y11{bottom:922.533333pt;}
.y3b{bottom:941.093333pt;}
.y10{bottom:942.053333pt;}
.yf{bottom:961.893333pt;}
.y3a{bottom:962.213333pt;}
.ye{bottom:983.013333pt;}
.y39{bottom:983.333333pt;}
.yd{bottom:1004.160000pt;}
.y38{bottom:1004.480000pt;}
.y8{bottom:1022.720000pt;}
.y1{bottom:1037.440000pt;}
.h8{height:24.000000pt;}
.hc{height:44.687500pt;}
.ha{height:45.156250pt;}
.h5{height:53.535000pt;}
.h3{height:54.916875pt;}
.h9{height:58.563750pt;}
.hb{height:62.781250pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.hd{height:65.781915pt;}
.h2{height:85.120000pt;}
.h4{height:91.432500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:64.986667pt;}
.w7{width:94.592000pt;}
.w2{width:104.832000pt;}
.w8{width:271.706667pt;}
.w6{width:271.866667pt;}
.w3{width:623.933333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x2{left:-20.640025pt;}
.x1{left:-8.800027pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.xc{left:39.200000pt;}
.x9{left:96.832000pt;}
.x3{left:104.832000pt;}
.x5{left:108.634667pt;}
.x16{left:132.511988pt;}
.xe{left:149.146655pt;}
.x15{left:151.226655pt;}
.x4{left:153.114667pt;}
.x6{left:262.914667pt;}
.xa{left:264.674667pt;}
.x13{left:277.186655pt;}
.x14{left:281.826655pt;}
.x10{left:309.186655pt;}
.x11{left:319.746655pt;}
.xf{left:367.426655pt;}
.xb{left:368.706667pt;}
.x12{left:390.786655pt;}
.xd{left:463.293333pt;}
.x7{left:728.773333pt;}
}




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