
    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_6cff716f11a044689c922abb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_eb7c5a3e4d0fd88fb306c7da.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_334d9deb8dce75e5ca882e6b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_cb9e667039aa8223b9e4baf7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_7b887a908ae24f8d265ca1c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_36034ad84a0317ad50fd51b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_faf4df8906a44b3805ce1cc7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_e3b27977219e3ad166cc78c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_e309e0bc792902cbd5f1b9e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.459648px;}
.ls4{letter-spacing:-0.399168px;}
.ls14{letter-spacing:-0.381024px;}
.ls7{letter-spacing:-0.338688px;}
.ls8{letter-spacing:-0.320544px;}
.lsb{letter-spacing:-0.302400px;}
.ls10{letter-spacing:-0.260064px;}
.ls12{letter-spacing:-0.241920px;}
.ls6{letter-spacing:-0.175392px;}
.ls9{letter-spacing:-0.157248px;}
.lse{letter-spacing:-0.145728px;}
.lsa{letter-spacing:-0.145152px;}
.ls16{letter-spacing:-0.139104px;}
.ls5{letter-spacing:-0.132480px;}
.lsc{letter-spacing:-0.099360px;}
.ls11{letter-spacing:-0.096768px;}
.lsd{letter-spacing:-0.086112px;}
.lsf{letter-spacing:-0.079488px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.158688px;}
.ls0{letter-spacing:0.283968px;}
.ls2{letter-spacing:0.359136px;}
.ls15{letter-spacing:41.147424px;}
.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:-23.577696px;}
.ws2{word-spacing:-16.813440px;}
.wsb{word-spacing:-16.716672px;}
.wsa{word-spacing:-16.668288px;}
.ws8{word-spacing:-16.656192px;}
.ws7{word-spacing:-16.571520px;}
.ws6{word-spacing:-16.553376px;}
.wsc{word-spacing:-16.492896px;}
.ws3{word-spacing:-16.474752px;}
.ws1{word-spacing:-16.414272px;}
.wsd{word-spacing:-16.353792px;}
.ws4{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.890752px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.048464px;}
._1{width:1.082448px;}
._2{width:41.266368px;}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:73.440000px;}
.y3{bottom:108.360000px;}
.y8f{bottom:137.520000px;}
.y5b{bottom:150.120000px;}
.y8e{bottom:154.440000px;}
.y5a{bottom:167.400000px;}
.y8d{bottom:171.720000px;}
.y26{bottom:177.480000px;}
.y59{bottom:184.680000px;}
.y8c{bottom:189.000000px;}
.y25{bottom:194.400000px;}
.y58{bottom:201.960000px;}
.y8b{bottom:206.280000px;}
.y24{bottom:211.680000px;}
.y57{bottom:219.240000px;}
.y8a{bottom:223.560000px;}
.y23{bottom:228.960000px;}
.y56{bottom:236.520000px;}
.y89{bottom:240.840000px;}
.y22{bottom:246.240000px;}
.y55{bottom:253.440000px;}
.y88{bottom:258.120000px;}
.y21{bottom:263.520000px;}
.y54{bottom:270.720000px;}
.y87{bottom:275.400000px;}
.y20{bottom:280.800000px;}
.y53{bottom:288.000000px;}
.y86{bottom:292.680000px;}
.y1f{bottom:298.080000px;}
.y52{bottom:305.280000px;}
.yb4{bottom:309.240000px;}
.y85{bottom:309.960000px;}
.y1e{bottom:315.360000px;}
.y51{bottom:322.560000px;}
.yb3{bottom:326.520000px;}
.y84{bottom:327.240000px;}
.y1d{bottom:332.640000px;}
.y50{bottom:339.840000px;}
.yb2{bottom:343.800000px;}
.y83{bottom:344.520000px;}
.y1c{bottom:349.920000px;}
.y4f{bottom:357.120000px;}
.yb1{bottom:361.080000px;}
.y82{bottom:361.440000px;}
.y1b{bottom:367.200000px;}
.y4e{bottom:374.400000px;}
.yb0{bottom:378.360000px;}
.y81{bottom:378.720000px;}
.y1a{bottom:384.120000px;}
.y4d{bottom:391.680000px;}
.yaf{bottom:395.280000px;}
.y80{bottom:396.000000px;}
.y19{bottom:401.400000px;}
.y4c{bottom:408.960000px;}
.yae{bottom:412.560000px;}
.y7f{bottom:413.280000px;}
.y18{bottom:419.040000px;}
.y4b{bottom:426.240000px;}
.yad{bottom:429.840000px;}
.y7e{bottom:430.560000px;}
.y4a{bottom:443.520000px;}
.yac{bottom:447.120000px;}
.y7d{bottom:447.840000px;}
.y17{bottom:453.960000px;}
.y49{bottom:460.440000px;}
.yab{bottom:464.400000px;}
.y7c{bottom:465.120000px;}
.y48{bottom:477.720000px;}
.yaa{bottom:481.680000px;}
.y7b{bottom:482.400000px;}
.y16{bottom:484.920000px;}
.y47{bottom:495.000000px;}
.ya9{bottom:498.960000px;}
.y7a{bottom:499.680000px;}
.y46{bottom:512.280000px;}
.ya8{bottom:516.240000px;}
.y79{bottom:516.960000px;}
.y15{bottom:518.040000px;}
.y45{bottom:529.560000px;}
.ya7{bottom:533.520000px;}
.y78{bottom:534.240000px;}
.y44{bottom:546.840000px;}
.ya6{bottom:550.800000px;}
.y77{bottom:551.160000px;}
.y14{bottom:552.240000px;}
.y43{bottom:564.120000px;}
.ya5{bottom:568.080000px;}
.y76{bottom:568.440000px;}
.y42{bottom:581.400000px;}
.y13{bottom:584.280000px;}
.ya4{bottom:585.360000px;}
.y75{bottom:585.720000px;}
.y41{bottom:598.680000px;}
.y12{bottom:601.560000px;}
.ya3{bottom:602.280000px;}
.y74{bottom:603.000000px;}
.y40{bottom:615.960000px;}
.ya2{bottom:619.560000px;}
.y73{bottom:620.280000px;}
.y3f{bottom:633.240000px;}
.y11{bottom:633.960000px;}
.ya1{bottom:636.840000px;}
.y72{bottom:637.560000px;}
.y3e{bottom:650.160000px;}
.ya0{bottom:654.120000px;}
.y71{bottom:654.840000px;}
.y10{bottom:666.000000px;}
.y3d{bottom:667.440000px;}
.y9f{bottom:671.400000px;}
.y70{bottom:672.120000px;}
.y3c{bottom:684.720000px;}
.y9e{bottom:688.680000px;}
.y6f{bottom:689.400000px;}
.yf{bottom:698.400000px;}
.y3b{bottom:702.000000px;}
.y6e{bottom:706.680000px;}
.y3a{bottom:719.280000px;}
.y9d{bottom:720.720000px;}
.y6d{bottom:723.960000px;}
.ye{bottom:730.800000px;}
.y39{bottom:736.560000px;}
.y9c{bottom:738.000000px;}
.y6c{bottom:741.240000px;}
.y38{bottom:753.840000px;}
.y9b{bottom:755.280000px;}
.y6b{bottom:758.160000px;}
.yd{bottom:763.920000px;}
.y37{bottom:771.120000px;}
.y9a{bottom:772.560000px;}
.y6a{bottom:775.440000px;}
.y36{bottom:788.400000px;}
.y99{bottom:789.840000px;}
.y69{bottom:792.720000px;}
.yc{bottom:799.200000px;}
.y35{bottom:805.680000px;}
.y98{bottom:807.120000px;}
.y68{bottom:810.000000px;}
.y34{bottom:822.960000px;}
.y97{bottom:824.400000px;}
.y67{bottom:827.280000px;}
.yb{bottom:833.040000px;}
.y33{bottom:839.880000px;}
.y96{bottom:841.680000px;}
.y66{bottom:844.560000px;}
.y32{bottom:857.160000px;}
.y95{bottom:858.960000px;}
.y65{bottom:861.840000px;}
.ya{bottom:865.440000px;}
.y31{bottom:874.440000px;}
.y94{bottom:876.240000px;}
.y64{bottom:879.120000px;}
.y30{bottom:891.720000px;}
.y93{bottom:893.520000px;}
.y63{bottom:896.400000px;}
.y9{bottom:898.920000px;}
.y2f{bottom:909.000000px;}
.y92{bottom:910.800000px;}
.y62{bottom:913.680000px;}
.y8{bottom:923.040000px;}
.y2e{bottom:926.280000px;}
.y91{bottom:928.080000px;}
.y61{bottom:930.960000px;}
.y2d{bottom:943.560000px;}
.y90{bottom:946.080000px;}
.y60{bottom:947.880000px;}
.y2c{bottom:960.840000px;}
.y7{bottom:961.920000px;}
.y5f{bottom:965.160000px;}
.y2b{bottom:978.120000px;}
.y5e{bottom:982.440000px;}
.y2a{bottom:995.400000px;}
.y5d{bottom:999.720000px;}
.y6{bottom:1000.800000px;}
.y29{bottom:1012.680000px;}
.y5c{bottom:1017.000000px;}
.y28{bottom:1034.280000px;}
.y5{bottom:1040.040000px;}
.y27{bottom:1051.560000px;}
.y2{bottom:1084.680000px;}
.y1{bottom:1119.600000px;}
.h1{height:40.310156px;}
.h7{height:44.031094px;}
.h6{height:44.090156px;}
.h2{height:45.281250px;}
.h4{height:51.539063px;}
.h5{height:60.804844px;}
.h3{height:71.982422px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:135.000000px;}
.x5{left:162.000000px;}
.x6{left:189.000000px;}
.x4{left:459.000000px;}
.x3{left:774.637200px;}
.x1{left:783.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.408576pt;}
.ls4{letter-spacing:-0.354816pt;}
.ls14{letter-spacing:-0.338688pt;}
.ls7{letter-spacing:-0.301056pt;}
.ls8{letter-spacing:-0.284928pt;}
.lsb{letter-spacing:-0.268800pt;}
.ls10{letter-spacing:-0.231168pt;}
.ls12{letter-spacing:-0.215040pt;}
.ls6{letter-spacing:-0.155904pt;}
.ls9{letter-spacing:-0.139776pt;}
.lse{letter-spacing:-0.129536pt;}
.lsa{letter-spacing:-0.129024pt;}
.ls16{letter-spacing:-0.123648pt;}
.ls5{letter-spacing:-0.117760pt;}
.lsc{letter-spacing:-0.088320pt;}
.ls11{letter-spacing:-0.086016pt;}
.lsd{letter-spacing:-0.076544pt;}
.lsf{letter-spacing:-0.070656pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.141056pt;}
.ls0{letter-spacing:0.252416pt;}
.ls2{letter-spacing:0.319232pt;}
.ls15{letter-spacing:36.575488pt;}
.ws0{word-spacing:-20.957952pt;}
.ws2{word-spacing:-14.945280pt;}
.wsb{word-spacing:-14.859264pt;}
.wsa{word-spacing:-14.816256pt;}
.ws8{word-spacing:-14.805504pt;}
.ws7{word-spacing:-14.730240pt;}
.ws6{word-spacing:-14.714112pt;}
.wsc{word-spacing:-14.660352pt;}
.ws3{word-spacing:-14.644224pt;}
.ws1{word-spacing:-14.590464pt;}
.wsd{word-spacing:-14.536704pt;}
.ws4{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.236224pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-0.931968pt;}
._1{width:0.962176pt;}
._2{width:36.681216pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:65.280000pt;}
.y3{bottom:96.320000pt;}
.y8f{bottom:122.240000pt;}
.y5b{bottom:133.440000pt;}
.y8e{bottom:137.280000pt;}
.y5a{bottom:148.800000pt;}
.y8d{bottom:152.640000pt;}
.y26{bottom:157.760000pt;}
.y59{bottom:164.160000pt;}
.y8c{bottom:168.000000pt;}
.y25{bottom:172.800000pt;}
.y58{bottom:179.520000pt;}
.y8b{bottom:183.360000pt;}
.y24{bottom:188.160000pt;}
.y57{bottom:194.880000pt;}
.y8a{bottom:198.720000pt;}
.y23{bottom:203.520000pt;}
.y56{bottom:210.240000pt;}
.y89{bottom:214.080000pt;}
.y22{bottom:218.880000pt;}
.y55{bottom:225.280000pt;}
.y88{bottom:229.440000pt;}
.y21{bottom:234.240000pt;}
.y54{bottom:240.640000pt;}
.y87{bottom:244.800000pt;}
.y20{bottom:249.600000pt;}
.y53{bottom:256.000000pt;}
.y86{bottom:260.160000pt;}
.y1f{bottom:264.960000pt;}
.y52{bottom:271.360000pt;}
.yb4{bottom:274.880000pt;}
.y85{bottom:275.520000pt;}
.y1e{bottom:280.320000pt;}
.y51{bottom:286.720000pt;}
.yb3{bottom:290.240000pt;}
.y84{bottom:290.880000pt;}
.y1d{bottom:295.680000pt;}
.y50{bottom:302.080000pt;}
.yb2{bottom:305.600000pt;}
.y83{bottom:306.240000pt;}
.y1c{bottom:311.040000pt;}
.y4f{bottom:317.440000pt;}
.yb1{bottom:320.960000pt;}
.y82{bottom:321.280000pt;}
.y1b{bottom:326.400000pt;}
.y4e{bottom:332.800000pt;}
.yb0{bottom:336.320000pt;}
.y81{bottom:336.640000pt;}
.y1a{bottom:341.440000pt;}
.y4d{bottom:348.160000pt;}
.yaf{bottom:351.360000pt;}
.y80{bottom:352.000000pt;}
.y19{bottom:356.800000pt;}
.y4c{bottom:363.520000pt;}
.yae{bottom:366.720000pt;}
.y7f{bottom:367.360000pt;}
.y18{bottom:372.480000pt;}
.y4b{bottom:378.880000pt;}
.yad{bottom:382.080000pt;}
.y7e{bottom:382.720000pt;}
.y4a{bottom:394.240000pt;}
.yac{bottom:397.440000pt;}
.y7d{bottom:398.080000pt;}
.y17{bottom:403.520000pt;}
.y49{bottom:409.280000pt;}
.yab{bottom:412.800000pt;}
.y7c{bottom:413.440000pt;}
.y48{bottom:424.640000pt;}
.yaa{bottom:428.160000pt;}
.y7b{bottom:428.800000pt;}
.y16{bottom:431.040000pt;}
.y47{bottom:440.000000pt;}
.ya9{bottom:443.520000pt;}
.y7a{bottom:444.160000pt;}
.y46{bottom:455.360000pt;}
.ya8{bottom:458.880000pt;}
.y79{bottom:459.520000pt;}
.y15{bottom:460.480000pt;}
.y45{bottom:470.720000pt;}
.ya7{bottom:474.240000pt;}
.y78{bottom:474.880000pt;}
.y44{bottom:486.080000pt;}
.ya6{bottom:489.600000pt;}
.y77{bottom:489.920000pt;}
.y14{bottom:490.880000pt;}
.y43{bottom:501.440000pt;}
.ya5{bottom:504.960000pt;}
.y76{bottom:505.280000pt;}
.y42{bottom:516.800000pt;}
.y13{bottom:519.360000pt;}
.ya4{bottom:520.320000pt;}
.y75{bottom:520.640000pt;}
.y41{bottom:532.160000pt;}
.y12{bottom:534.720000pt;}
.ya3{bottom:535.360000pt;}
.y74{bottom:536.000000pt;}
.y40{bottom:547.520000pt;}
.ya2{bottom:550.720000pt;}
.y73{bottom:551.360000pt;}
.y3f{bottom:562.880000pt;}
.y11{bottom:563.520000pt;}
.ya1{bottom:566.080000pt;}
.y72{bottom:566.720000pt;}
.y3e{bottom:577.920000pt;}
.ya0{bottom:581.440000pt;}
.y71{bottom:582.080000pt;}
.y10{bottom:592.000000pt;}
.y3d{bottom:593.280000pt;}
.y9f{bottom:596.800000pt;}
.y70{bottom:597.440000pt;}
.y3c{bottom:608.640000pt;}
.y9e{bottom:612.160000pt;}
.y6f{bottom:612.800000pt;}
.yf{bottom:620.800000pt;}
.y3b{bottom:624.000000pt;}
.y6e{bottom:628.160000pt;}
.y3a{bottom:639.360000pt;}
.y9d{bottom:640.640000pt;}
.y6d{bottom:643.520000pt;}
.ye{bottom:649.600000pt;}
.y39{bottom:654.720000pt;}
.y9c{bottom:656.000000pt;}
.y6c{bottom:658.880000pt;}
.y38{bottom:670.080000pt;}
.y9b{bottom:671.360000pt;}
.y6b{bottom:673.920000pt;}
.yd{bottom:679.040000pt;}
.y37{bottom:685.440000pt;}
.y9a{bottom:686.720000pt;}
.y6a{bottom:689.280000pt;}
.y36{bottom:700.800000pt;}
.y99{bottom:702.080000pt;}
.y69{bottom:704.640000pt;}
.yc{bottom:710.400000pt;}
.y35{bottom:716.160000pt;}
.y98{bottom:717.440000pt;}
.y68{bottom:720.000000pt;}
.y34{bottom:731.520000pt;}
.y97{bottom:732.800000pt;}
.y67{bottom:735.360000pt;}
.yb{bottom:740.480000pt;}
.y33{bottom:746.560000pt;}
.y96{bottom:748.160000pt;}
.y66{bottom:750.720000pt;}
.y32{bottom:761.920000pt;}
.y95{bottom:763.520000pt;}
.y65{bottom:766.080000pt;}
.ya{bottom:769.280000pt;}
.y31{bottom:777.280000pt;}
.y94{bottom:778.880000pt;}
.y64{bottom:781.440000pt;}
.y30{bottom:792.640000pt;}
.y93{bottom:794.240000pt;}
.y63{bottom:796.800000pt;}
.y9{bottom:799.040000pt;}
.y2f{bottom:808.000000pt;}
.y92{bottom:809.600000pt;}
.y62{bottom:812.160000pt;}
.y8{bottom:820.480000pt;}
.y2e{bottom:823.360000pt;}
.y91{bottom:824.960000pt;}
.y61{bottom:827.520000pt;}
.y2d{bottom:838.720000pt;}
.y90{bottom:840.960000pt;}
.y60{bottom:842.560000pt;}
.y2c{bottom:854.080000pt;}
.y7{bottom:855.040000pt;}
.y5f{bottom:857.920000pt;}
.y2b{bottom:869.440000pt;}
.y5e{bottom:873.280000pt;}
.y2a{bottom:884.800000pt;}
.y5d{bottom:888.640000pt;}
.y6{bottom:889.600000pt;}
.y29{bottom:900.160000pt;}
.y5c{bottom:904.000000pt;}
.y28{bottom:919.360000pt;}
.y5{bottom:924.480000pt;}
.y27{bottom:934.720000pt;}
.y2{bottom:964.160000pt;}
.y1{bottom:995.200000pt;}
.h1{height:35.831250pt;}
.h7{height:39.138750pt;}
.h6{height:39.191250pt;}
.h2{height:40.250000pt;}
.h4{height:45.812500pt;}
.h5{height:54.048750pt;}
.h3{height:63.984375pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:120.000000pt;}
.x5{left:144.000000pt;}
.x6{left:168.000000pt;}
.x4{left:408.000000pt;}
.x3{left:688.566400pt;}
.x1{left:696.000000pt;}
}




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