
    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_ac23aa833c35973334e654bf.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bea356c5b109bf9912f0152b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a6fbf180fb4fe330043536fd.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_63f04a747c92fd88d147af54.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0a6c476e4d766cf4523de205.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_19a028a699908db4a774ccdd.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_486600c31051e7e7547d6cc4.woff')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6b4907606e5e35146778f1a5.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_8e3b6d59c43f039715c1780b.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5be6b1a9426d9d2bf7a020eb.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;}
.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:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.852000px;}
.ls8{letter-spacing:-0.684000px;}
.ls12{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.028080px;}
.ls10{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.540000px;}
.lsf{letter-spacing:5.040000px;}
.lsd{letter-spacing:9.900000px;}
.ls5{letter-spacing:10.620000px;}
.lsc{letter-spacing:11.340000px;}
.lsb{letter-spacing:17.100000px;}
.ls6{letter-spacing:19.980000px;}
.ls9{letter-spacing:22.140000px;}
.ls3{letter-spacing:23.580000px;}
.lse{letter-spacing:33.984000px;}
.ls0{letter-spacing:43.200000px;}
.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.420000px;}
.ws1{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.179360px;}
._1{width:1.299360px;}
._2{width:2.928000px;}
._1f{width:3.959280px;}
._1e{width:5.050800px;}
._1d{width:6.237360px;}
._8{width:8.016000px;}
._7{width:9.192000px;}
._5{width:11.016000px;}
._6{width:12.596640px;}
._15{width:13.680480px;}
._12{width:14.910480px;}
._e{width:16.089840px;}
._f{width:17.164560px;}
._9{width:19.001280px;}
._20{width:22.239360px;}
._11{width:23.489040px;}
._10{width:24.682320px;}
._4{width:26.424000px;}
._3{width:27.432000px;}
._16{width:28.503360px;}
._23{width:29.862960px;}
._18{width:31.674240px;}
._1a{width:33.443280px;}
._24{width:34.492800px;}
._19{width:35.549280px;}
._21{width:37.149840px;}
._22{width:38.244960px;}
._1b{width:44.815680px;}
._1c{width:46.990560px;}
._17{width:49.533120px;}
._a{width:55.514160px;}
._b{width:56.693520px;}
._d{width:60.705360px;}
._c{width:61.747920px;}
._14{width:69.329520px;}
._13{width:70.593120px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y52{bottom:83.916000px;}
.y2e{bottom:90.216000px;}
.y51{bottom:111.636000px;}
.y2d{bottom:117.936000px;}
.y50{bottom:139.356000px;}
.y2c{bottom:145.836000px;}
.y4f{bottom:167.250000px;}
.y2b{bottom:173.550000px;}
.y4e{bottom:194.970000px;}
.y2a{bottom:201.270000px;}
.y4d{bottom:222.690000px;}
.y29{bottom:229.170000px;}
.y4c{bottom:250.410000px;}
.y28{bottom:256.890000px;}
.y4b{bottom:278.310000px;}
.y27{bottom:284.655000px;}
.y4a{bottom:306.075000px;}
.y26{bottom:312.375000px;}
.y49{bottom:333.795000px;}
.y25{bottom:340.275000px;}
.y5d{bottom:356.655000px;}
.y48{bottom:361.695000px;}
.y24{bottom:367.995000px;}
.y5c{bottom:377.355000px;}
.y47{bottom:389.415000px;}
.y23{bottom:395.715000px;}
.y5b{bottom:398.055000px;}
.y46{bottom:417.135000px;}
.y5a{bottom:418.755000px;}
.y22{bottom:423.615000px;}
.y59{bottom:439.455000px;}
.y45{bottom:444.855000px;}
.y21{bottom:451.335000px;}
.y58{bottom:460.155000px;}
.y44{bottom:472.755000px;}
.y20{bottom:479.055000px;}
.y57{bottom:480.855000px;}
.y43{bottom:500.475000px;}
.y56{bottom:501.555000px;}
.y1f{bottom:506.775000px;}
.y55{bottom:522.255000px;}
.y42{bottom:528.195000px;}
.y1e{bottom:534.675000px;}
.y54{bottom:542.955000px;}
.y41{bottom:555.915000px;}
.y1d{bottom:562.395000px;}
.y53{bottom:564.195000px;}
.y40{bottom:583.845000px;}
.y1c{bottom:590.145000px;}
.y3f{bottom:611.565000px;}
.y1b{bottom:617.865000px;}
.y3e{bottom:639.285000px;}
.y1a{bottom:640.005000px;}
.y19{bottom:655.305000px;}
.y3d{bottom:667.185000px;}
.y18{bottom:676.005000px;}
.y3c{bottom:694.905000px;}
.y17{bottom:696.705000px;}
.y16{bottom:717.405000px;}
.y3b{bottom:722.625000px;}
.y15{bottom:738.105000px;}
.y3a{bottom:750.345000px;}
.y14{bottom:758.805000px;}
.y39{bottom:778.245000px;}
.y13{bottom:779.505000px;}
.y12{bottom:800.205000px;}
.y38{bottom:805.965000px;}
.y11{bottom:820.905000px;}
.y37{bottom:833.685000px;}
.y10{bottom:841.605000px;}
.y36{bottom:861.630000px;}
.yf{bottom:862.350000px;}
.ye{bottom:883.050000px;}
.y35{bottom:889.350000px;}
.yd{bottom:903.750000px;}
.y34{bottom:917.070000px;}
.yc{bottom:923.370000px;}
.y33{bottom:944.790000px;}
.yb{bottom:960.630000px;}
.y32{bottom:972.690000px;}
.ya{bottom:981.330000px;}
.y31{bottom:1000.410000px;}
.y9{bottom:1002.030000px;}
.y8{bottom:1022.730000px;}
.y30{bottom:1028.130000px;}
.y7{bottom:1042.350000px;}
.y2f{bottom:1055.850000px;}
.y6{bottom:1059.630000px;}
.y5{bottom:1083.750000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.hb{height:47.321367px;}
.hd{height:47.344922px;}
.ha{height:52.628906px;}
.h9{height:52.971680px;}
.h6{height:54.421875px;}
.hc{height:58.819922px;}
.h5{height:59.436914px;}
.h8{height:70.628906px;}
.hf{height:70.664062px;}
.h7{height:72.562500px;}
.he{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:27.360000px;}
.x1{left:84.959987px;}
.xb{left:90.035987px;}
.x4{left:106.055987px;}
.xc{left:117.035987px;}
.xa{left:127.475987px;}
.x8{left:132.695987px;}
.x9{left:311.654987px;}
.x7{left:329.654987px;}
.x2{left:409.035000px;}
.x5{left:415.514987px;}
.x6{left:446.474987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.757333pt;}
.ls8{letter-spacing:-0.608000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.024960pt;}
.ls10{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.480000pt;}
.lsf{letter-spacing:4.480000pt;}
.lsd{letter-spacing:8.800000pt;}
.ls5{letter-spacing:9.440000pt;}
.lsc{letter-spacing:10.080000pt;}
.lsb{letter-spacing:15.200000pt;}
.ls6{letter-spacing:17.760000pt;}
.ls9{letter-spacing:19.680000pt;}
.ls3{letter-spacing:20.960000pt;}
.lse{letter-spacing:30.208000pt;}
.ls0{letter-spacing:38.400000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.048320pt;}
._1{width:1.154987pt;}
._2{width:2.602667pt;}
._1f{width:3.519360pt;}
._1e{width:4.489600pt;}
._1d{width:5.544320pt;}
._8{width:7.125333pt;}
._7{width:8.170667pt;}
._5{width:9.792000pt;}
._6{width:11.197013pt;}
._15{width:12.160427pt;}
._12{width:13.253760pt;}
._e{width:14.302080pt;}
._f{width:15.257387pt;}
._9{width:16.890027pt;}
._20{width:19.768320pt;}
._11{width:20.879147pt;}
._10{width:21.939840pt;}
._4{width:23.488000pt;}
._3{width:24.384000pt;}
._16{width:25.336320pt;}
._23{width:26.544853pt;}
._18{width:28.154880pt;}
._1a{width:29.727360pt;}
._24{width:30.660267pt;}
._19{width:31.599360pt;}
._21{width:33.022080pt;}
._22{width:33.995520pt;}
._1b{width:39.836160pt;}
._1c{width:41.769387pt;}
._17{width:44.029440pt;}
._a{width:49.345920pt;}
._b{width:50.394240pt;}
._d{width:53.960320pt;}
._c{width:54.887040pt;}
._14{width:61.626240pt;}
._13{width:62.749440pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y52{bottom:74.592000pt;}
.y2e{bottom:80.192000pt;}
.y51{bottom:99.232000pt;}
.y2d{bottom:104.832000pt;}
.y50{bottom:123.872000pt;}
.y2c{bottom:129.632000pt;}
.y4f{bottom:148.666667pt;}
.y2b{bottom:154.266667pt;}
.y4e{bottom:173.306667pt;}
.y2a{bottom:178.906667pt;}
.y4d{bottom:197.946667pt;}
.y29{bottom:203.706667pt;}
.y4c{bottom:222.586667pt;}
.y28{bottom:228.346667pt;}
.y4b{bottom:247.386667pt;}
.y27{bottom:253.026667pt;}
.y4a{bottom:272.066667pt;}
.y26{bottom:277.666667pt;}
.y49{bottom:296.706667pt;}
.y25{bottom:302.466667pt;}
.y5d{bottom:317.026667pt;}
.y48{bottom:321.506667pt;}
.y24{bottom:327.106667pt;}
.y5c{bottom:335.426667pt;}
.y47{bottom:346.146667pt;}
.y23{bottom:351.746667pt;}
.y5b{bottom:353.826667pt;}
.y46{bottom:370.786667pt;}
.y5a{bottom:372.226667pt;}
.y22{bottom:376.546667pt;}
.y59{bottom:390.626667pt;}
.y45{bottom:395.426667pt;}
.y21{bottom:401.186667pt;}
.y58{bottom:409.026667pt;}
.y44{bottom:420.226667pt;}
.y20{bottom:425.826667pt;}
.y57{bottom:427.426667pt;}
.y43{bottom:444.866667pt;}
.y56{bottom:445.826667pt;}
.y1f{bottom:450.466667pt;}
.y55{bottom:464.226667pt;}
.y42{bottom:469.506667pt;}
.y1e{bottom:475.266667pt;}
.y54{bottom:482.626667pt;}
.y41{bottom:494.146667pt;}
.y1d{bottom:499.906667pt;}
.y53{bottom:501.506667pt;}
.y40{bottom:518.973333pt;}
.y1c{bottom:524.573333pt;}
.y3f{bottom:543.613333pt;}
.y1b{bottom:549.213333pt;}
.y3e{bottom:568.253333pt;}
.y1a{bottom:568.893333pt;}
.y19{bottom:582.493333pt;}
.y3d{bottom:593.053333pt;}
.y18{bottom:600.893333pt;}
.y3c{bottom:617.693333pt;}
.y17{bottom:619.293333pt;}
.y16{bottom:637.693333pt;}
.y3b{bottom:642.333333pt;}
.y15{bottom:656.093333pt;}
.y3a{bottom:666.973333pt;}
.y14{bottom:674.493333pt;}
.y39{bottom:691.773333pt;}
.y13{bottom:692.893333pt;}
.y12{bottom:711.293333pt;}
.y38{bottom:716.413333pt;}
.y11{bottom:729.693333pt;}
.y37{bottom:741.053333pt;}
.y10{bottom:748.093333pt;}
.y36{bottom:765.893333pt;}
.yf{bottom:766.533333pt;}
.ye{bottom:784.933333pt;}
.y35{bottom:790.533333pt;}
.yd{bottom:803.333333pt;}
.y34{bottom:815.173333pt;}
.yc{bottom:820.773333pt;}
.y33{bottom:839.813333pt;}
.yb{bottom:853.893333pt;}
.y32{bottom:864.613333pt;}
.ya{bottom:872.293333pt;}
.y31{bottom:889.253333pt;}
.y9{bottom:890.693333pt;}
.y8{bottom:909.093333pt;}
.y30{bottom:913.893333pt;}
.y7{bottom:926.533333pt;}
.y2f{bottom:938.533333pt;}
.y6{bottom:941.893333pt;}
.y5{bottom:963.333333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.hb{height:42.063437pt;}
.hd{height:42.084375pt;}
.ha{height:46.781250pt;}
.h9{height:47.085938pt;}
.h6{height:48.375000pt;}
.hc{height:52.284375pt;}
.h5{height:52.832812pt;}
.h8{height:62.781250pt;}
.hf{height:62.812500pt;}
.h7{height:64.500000pt;}
.he{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:24.320000pt;}
.x1{left:75.519988pt;}
.xb{left:80.031988pt;}
.x4{left:94.271988pt;}
.xc{left:104.031988pt;}
.xa{left:113.311988pt;}
.x8{left:117.951988pt;}
.x9{left:277.026655pt;}
.x7{left:293.026655pt;}
.x2{left:363.586667pt;}
.x5{left:369.346655pt;}
.x6{left:396.866655pt;}
}




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