
    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_b636e707833f7dcedc9cbc7e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_ddc08b12e66afe7637937206.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.180000;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_b857c2d2faff7ddb8b85612a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_26abfd53568583cfcfd02ba8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_7ec3aac09cfe39ed73aadbf9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912500;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_d402b14db8ffdd3b193c3f35.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.913000;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_da21d6249296c72b0a8f4b37.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.820801;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_004db0effdef68bfa072311f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.051758;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_97d2f8d0cf132e26fe0c12dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900391;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_c5641654185b2d052d25d24c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.896484;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_f7d3986ac4934032f39953f8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900391;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:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls1{letter-spacing:-0.972000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014400px;}
.ls2{letter-spacing:1.320000px;}
.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;}
}
.ws2{word-spacing:-121.320000px;}
.ws0{word-spacing:-120.000000px;}
.ws1{word-spacing:-119.028000px;}
.ws3{word-spacing:-72.000000px;}
.wsa{word-spacing:-59.040000px;}
.ws9{word-spacing:-18.000000px;}
.ws4{word-spacing:-12.738000px;}
.ws6{word-spacing:-10.494000px;}
.ws7{word-spacing:-7.870500px;}
.ws8{word-spacing:-0.158400px;}
.ws5{word-spacing:0.000000px;}
._13{margin-left:-12.528000px;}
._3{margin-left:-8.640000px;}
._1{margin-left:-7.404000px;}
._c{margin-left:-5.616000px;}
._a{margin-left:-4.132800px;}
._2{margin-left:-3.000000px;}
._0{margin-left:-1.224000px;}
._b{width:1.785600px;}
._7{width:3.067200px;}
._6{width:4.464000px;}
._e{width:5.472000px;}
._12{width:6.656400px;}
._8{width:7.660800px;}
._d{width:8.712000px;}
._9{width:9.720000px;}
._4{width:11.148000px;}
._5{width:12.180000px;}
._15{width:13.264800px;}
._16{width:14.383200px;}
._17{width:15.703200px;}
._14{width:19.728000px;}
._10{width:21.986400px;}
._f{width:23.467200px;}
._11{width:40.500000px;}
.fc2{color:rgb(128,130,133);}
.fc3{color:rgb(121,121,121);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.482000px;}
.fs4{font-size:41.976000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:127.559100px;}
.y6c{bottom:134.035200px;}
.ye{bottom:138.102600px;}
.y3c{bottom:143.759100px;}
.y94{bottom:148.254600px;}
.y6b{bottom:156.535200px;}
.y3b{bottom:159.959100px;}
.yd{bottom:160.602600px;}
.y65{bottom:164.454600px;}
.y6a{bottom:179.035200px;}
.y3a{bottom:180.654600px;}
.yc{bottom:183.102600px;}
.y69{bottom:201.535200px;}
.yb{bottom:205.602600px;}
.y93{bottom:216.781350px;}
.y68{bottom:224.035200px;}
.ya{bottom:228.102600px;}
.y64{bottom:238.321500px;}
.y92{bottom:239.281350px;}
.y67{bottom:246.535200px;}
.y9{bottom:250.602600px;}
.y63{bottom:260.821500px;}
.y91{bottom:261.781350px;}
.y66{bottom:269.035200px;}
.y8{bottom:273.102600px;}
.y62{bottom:283.321500px;}
.y90{bottom:284.281350px;}
.y39{bottom:291.535200px;}
.y7{bottom:295.602600px;}
.y61{bottom:305.821500px;}
.y8f{bottom:306.781350px;}
.y38{bottom:314.035200px;}
.y6{bottom:318.102600px;}
.y60{bottom:328.321500px;}
.y8e{bottom:329.281350px;}
.y37{bottom:336.535200px;}
.y5{bottom:340.602600px;}
.y5f{bottom:350.821500px;}
.y8d{bottom:351.781350px;}
.y36{bottom:359.035200px;}
.y5e{bottom:373.321500px;}
.y8c{bottom:374.281350px;}
.y35{bottom:381.535200px;}
.y5d{bottom:395.821500px;}
.y8b{bottom:396.781350px;}
.y34{bottom:404.035200px;}
.y5c{bottom:418.321500px;}
.y8a{bottom:419.281350px;}
.y33{bottom:426.535200px;}
.y5b{bottom:440.821500px;}
.y89{bottom:441.781350px;}
.y32{bottom:449.035200px;}
.y5a{bottom:463.321500px;}
.y88{bottom:464.281350px;}
.y31{bottom:471.535200px;}
.y59{bottom:485.821500px;}
.y87{bottom:486.781350px;}
.y30{bottom:494.035200px;}
.y58{bottom:508.321500px;}
.y86{bottom:509.281350px;}
.y2f{bottom:516.535200px;}
.y57{bottom:530.821500px;}
.y85{bottom:531.781350px;}
.y2e{bottom:539.035200px;}
.y56{bottom:553.321500px;}
.y84{bottom:554.281350px;}
.y2d{bottom:561.535200px;}
.y55{bottom:575.821500px;}
.y2c{bottom:584.035200px;}
.y83{bottom:585.277350px;}
.y54{bottom:598.329300px;}
.y2b{bottom:606.535200px;}
.y53{bottom:620.829300px;}
.y2a{bottom:629.035200px;}
.y82{bottom:629.035350px;}
.y52{bottom:643.329300px;}
.y29{bottom:651.535200px;}
.y81{bottom:651.535350px;}
.y51{bottom:665.829300px;}
.y28{bottom:674.035200px;}
.y80{bottom:674.035350px;}
.y50{bottom:688.329300px;}
.y27{bottom:696.535200px;}
.y7f{bottom:696.535350px;}
.y4f{bottom:710.829300px;}
.y26{bottom:719.035200px;}
.y7e{bottom:719.035350px;}
.y4e{bottom:733.329300px;}
.y25{bottom:741.535200px;}
.y7d{bottom:741.535350px;}
.y4d{bottom:755.829300px;}
.y24{bottom:764.035200px;}
.y7c{bottom:764.035350px;}
.y4c{bottom:778.329300px;}
.y23{bottom:786.535200px;}
.y7b{bottom:786.535350px;}
.y4b{bottom:800.829300px;}
.y22{bottom:809.035200px;}
.y7a{bottom:809.035350px;}
.y4a{bottom:823.329300px;}
.y21{bottom:831.535200px;}
.y79{bottom:831.535350px;}
.y49{bottom:845.829300px;}
.y20{bottom:854.035200px;}
.y78{bottom:854.035350px;}
.y48{bottom:868.329300px;}
.y1f{bottom:876.535200px;}
.y77{bottom:876.535350px;}
.y47{bottom:890.829300px;}
.y4{bottom:893.358600px;}
.y1e{bottom:899.035200px;}
.y76{bottom:899.035350px;}
.y46{bottom:913.329300px;}
.y1d{bottom:921.535200px;}
.y75{bottom:921.535350px;}
.y3{bottom:923.358600px;}
.y45{bottom:935.829300px;}
.y1c{bottom:944.035200px;}
.y74{bottom:944.035350px;}
.y2{bottom:953.358600px;}
.y44{bottom:958.329300px;}
.y1b{bottom:966.535200px;}
.y73{bottom:966.535350px;}
.y43{bottom:980.829300px;}
.y1a{bottom:989.035200px;}
.y72{bottom:989.035350px;}
.y42{bottom:1003.329300px;}
.y19{bottom:1011.535200px;}
.y71{bottom:1011.535350px;}
.y1{bottom:1018.614600px;}
.y41{bottom:1025.829300px;}
.y18{bottom:1034.035200px;}
.y70{bottom:1034.035350px;}
.y40{bottom:1048.329300px;}
.y17{bottom:1056.535200px;}
.y6f{bottom:1056.535350px;}
.y3f{bottom:1070.829300px;}
.y16{bottom:1079.035200px;}
.y6e{bottom:1079.035350px;}
.y15{bottom:1101.535200px;}
.y6d{bottom:1101.535350px;}
.y3e{bottom:1101.825300px;}
.y13{bottom:1116.352350px;}
.y12{bottom:1136.152350px;}
.y11{bottom:1155.952350px;}
.y14{bottom:1166.275950px;}
.y10{bottom:1175.752350px;}
.yf{bottom:1195.552350px;}
.h7{height:29.399836px;}
.h8{height:47.381836px;}
.h5{height:48.015000px;}
.h9{height:49.289062px;}
.h4{height:63.175781px;}
.h2{height:69.984000px;}
.h6{height:111.164062px;}
.h3{height:116.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:127.559100px;}
.x2{left:157.726200px;}
.x3{left:162.106200px;}
.x4{left:206.926200px;}
.xb{left:217.098450px;}
.x1{left:371.631900px;}
.x6{left:485.675850px;}
.x7{left:611.455350px;}
.xa{left:641.551350px;}
.x8{left:649.916850px;}
.x9{left:719.662350px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls1{letter-spacing:-0.864000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.012800pt;}
.ls2{letter-spacing:1.173333pt;}
.ws2{word-spacing:-107.840000pt;}
.ws0{word-spacing:-106.666667pt;}
.ws1{word-spacing:-105.802667pt;}
.ws3{word-spacing:-64.000000pt;}
.wsa{word-spacing:-52.480000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws4{word-spacing:-11.322667pt;}
.ws6{word-spacing:-9.328000pt;}
.ws7{word-spacing:-6.996000pt;}
.ws8{word-spacing:-0.140800pt;}
.ws5{word-spacing:0.000000pt;}
._13{margin-left:-11.136000pt;}
._3{margin-left:-7.680000pt;}
._1{margin-left:-6.581333pt;}
._c{margin-left:-4.992000pt;}
._a{margin-left:-3.673600pt;}
._2{margin-left:-2.666667pt;}
._0{margin-left:-1.088000pt;}
._b{width:1.587200pt;}
._7{width:2.726400pt;}
._6{width:3.968000pt;}
._e{width:4.864000pt;}
._12{width:5.916800pt;}
._8{width:6.809600pt;}
._d{width:7.744000pt;}
._9{width:8.640000pt;}
._4{width:9.909333pt;}
._5{width:10.826667pt;}
._15{width:11.790933pt;}
._16{width:12.785067pt;}
._17{width:13.958400pt;}
._14{width:17.536000pt;}
._10{width:19.543467pt;}
._f{width:20.859733pt;}
._11{width:36.000000pt;}
.fs5{font-size:27.984000pt;}
.fs4{font-size:37.312000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:113.385867pt;}
.y6c{bottom:119.142400pt;}
.ye{bottom:122.757867pt;}
.y3c{bottom:127.785867pt;}
.y94{bottom:131.781867pt;}
.y6b{bottom:139.142400pt;}
.y3b{bottom:142.185867pt;}
.yd{bottom:142.757867pt;}
.y65{bottom:146.181867pt;}
.y6a{bottom:159.142400pt;}
.y3a{bottom:160.581867pt;}
.yc{bottom:162.757867pt;}
.y69{bottom:179.142400pt;}
.yb{bottom:182.757867pt;}
.y93{bottom:192.694533pt;}
.y68{bottom:199.142400pt;}
.ya{bottom:202.757867pt;}
.y64{bottom:211.841333pt;}
.y92{bottom:212.694533pt;}
.y67{bottom:219.142400pt;}
.y9{bottom:222.757867pt;}
.y63{bottom:231.841333pt;}
.y91{bottom:232.694533pt;}
.y66{bottom:239.142400pt;}
.y8{bottom:242.757867pt;}
.y62{bottom:251.841333pt;}
.y90{bottom:252.694533pt;}
.y39{bottom:259.142400pt;}
.y7{bottom:262.757867pt;}
.y61{bottom:271.841333pt;}
.y8f{bottom:272.694533pt;}
.y38{bottom:279.142400pt;}
.y6{bottom:282.757867pt;}
.y60{bottom:291.841333pt;}
.y8e{bottom:292.694533pt;}
.y37{bottom:299.142400pt;}
.y5{bottom:302.757867pt;}
.y5f{bottom:311.841333pt;}
.y8d{bottom:312.694533pt;}
.y36{bottom:319.142400pt;}
.y5e{bottom:331.841333pt;}
.y8c{bottom:332.694533pt;}
.y35{bottom:339.142400pt;}
.y5d{bottom:351.841333pt;}
.y8b{bottom:352.694533pt;}
.y34{bottom:359.142400pt;}
.y5c{bottom:371.841333pt;}
.y8a{bottom:372.694533pt;}
.y33{bottom:379.142400pt;}
.y5b{bottom:391.841333pt;}
.y89{bottom:392.694533pt;}
.y32{bottom:399.142400pt;}
.y5a{bottom:411.841333pt;}
.y88{bottom:412.694533pt;}
.y31{bottom:419.142400pt;}
.y59{bottom:431.841333pt;}
.y87{bottom:432.694533pt;}
.y30{bottom:439.142400pt;}
.y58{bottom:451.841333pt;}
.y86{bottom:452.694533pt;}
.y2f{bottom:459.142400pt;}
.y57{bottom:471.841333pt;}
.y85{bottom:472.694533pt;}
.y2e{bottom:479.142400pt;}
.y56{bottom:491.841333pt;}
.y84{bottom:492.694533pt;}
.y2d{bottom:499.142400pt;}
.y55{bottom:511.841333pt;}
.y2c{bottom:519.142400pt;}
.y83{bottom:520.246533pt;}
.y54{bottom:531.848267pt;}
.y2b{bottom:539.142400pt;}
.y53{bottom:551.848267pt;}
.y2a{bottom:559.142400pt;}
.y82{bottom:559.142533pt;}
.y52{bottom:571.848267pt;}
.y29{bottom:579.142400pt;}
.y81{bottom:579.142533pt;}
.y51{bottom:591.848267pt;}
.y28{bottom:599.142400pt;}
.y80{bottom:599.142533pt;}
.y50{bottom:611.848267pt;}
.y27{bottom:619.142400pt;}
.y7f{bottom:619.142533pt;}
.y4f{bottom:631.848267pt;}
.y26{bottom:639.142400pt;}
.y7e{bottom:639.142533pt;}
.y4e{bottom:651.848267pt;}
.y25{bottom:659.142400pt;}
.y7d{bottom:659.142533pt;}
.y4d{bottom:671.848267pt;}
.y24{bottom:679.142400pt;}
.y7c{bottom:679.142533pt;}
.y4c{bottom:691.848267pt;}
.y23{bottom:699.142400pt;}
.y7b{bottom:699.142533pt;}
.y4b{bottom:711.848267pt;}
.y22{bottom:719.142400pt;}
.y7a{bottom:719.142533pt;}
.y4a{bottom:731.848267pt;}
.y21{bottom:739.142400pt;}
.y79{bottom:739.142533pt;}
.y49{bottom:751.848267pt;}
.y20{bottom:759.142400pt;}
.y78{bottom:759.142533pt;}
.y48{bottom:771.848267pt;}
.y1f{bottom:779.142400pt;}
.y77{bottom:779.142533pt;}
.y47{bottom:791.848267pt;}
.y4{bottom:794.096533pt;}
.y1e{bottom:799.142400pt;}
.y76{bottom:799.142533pt;}
.y46{bottom:811.848267pt;}
.y1d{bottom:819.142400pt;}
.y75{bottom:819.142533pt;}
.y3{bottom:820.763200pt;}
.y45{bottom:831.848267pt;}
.y1c{bottom:839.142400pt;}
.y74{bottom:839.142533pt;}
.y2{bottom:847.429867pt;}
.y44{bottom:851.848267pt;}
.y1b{bottom:859.142400pt;}
.y73{bottom:859.142533pt;}
.y43{bottom:871.848267pt;}
.y1a{bottom:879.142400pt;}
.y72{bottom:879.142533pt;}
.y42{bottom:891.848267pt;}
.y19{bottom:899.142400pt;}
.y71{bottom:899.142533pt;}
.y1{bottom:905.435200pt;}
.y41{bottom:911.848267pt;}
.y18{bottom:919.142400pt;}
.y70{bottom:919.142533pt;}
.y40{bottom:931.848267pt;}
.y17{bottom:939.142400pt;}
.y6f{bottom:939.142533pt;}
.y3f{bottom:951.848267pt;}
.y16{bottom:959.142400pt;}
.y6e{bottom:959.142533pt;}
.y15{bottom:979.142400pt;}
.y6d{bottom:979.142533pt;}
.y3e{bottom:979.400267pt;}
.y13{bottom:992.313200pt;}
.y12{bottom:1009.913200pt;}
.y11{bottom:1027.513200pt;}
.y14{bottom:1036.689733pt;}
.y10{bottom:1045.113200pt;}
.yf{bottom:1062.713200pt;}
.h7{height:26.133188pt;}
.h8{height:42.117188pt;}
.h5{height:42.680000pt;}
.h9{height:43.812500pt;}
.h4{height:56.156250pt;}
.h2{height:62.208000pt;}
.h6{height:98.812500pt;}
.h3{height:103.680000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.385867pt;}
.x2{left:140.201067pt;}
.x3{left:144.094400pt;}
.x4{left:183.934400pt;}
.xb{left:192.976400pt;}
.x1{left:330.339467pt;}
.x6{left:431.711867pt;}
.x7{left:543.515867pt;}
.xa{left:570.267867pt;}
.x8{left:577.703867pt;}
.x9{left:639.699867pt;}
}




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