
    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_d59f6a9fdc5ff98d01eeecc9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.183000;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_70bf7c29c723b9148f766bf2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.720000;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_d59f6a9fdc5ff98d01eeecc9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.183000;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_62149f7774f896b7d5660181.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.113281;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_971b690a824e38a1ee70a955.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940918;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_58d882f421fc7a413ad40fd0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_b36965af89137923fdd09838.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104492;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_12ec97634189e0cd086688e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_fa66010e98d49ca1a3f06de5.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m3{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,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(0.257086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257086,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v2{vertical-align:-24.975000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.975000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.006400px;}
.ls1{letter-spacing:0.007025px;}
.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:-20.016000px;}
.ws14{word-spacing:-6.000000px;}
.ws19{word-spacing:-3.750000px;}
.ws16{word-spacing:-3.300000px;}
.wsd{word-spacing:-3.096000px;}
.ws10{word-spacing:-3.060000px;}
.ws13{word-spacing:-3.000000px;}
.ws1b{word-spacing:-2.175000px;}
.wsf{word-spacing:-2.016000px;}
.wsc{word-spacing:-1.224000px;}
.ws5{word-spacing:-0.648000px;}
.ws1{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:1.125000px;}
.ws1a{word-spacing:1.575000px;}
.wse{word-spacing:1.584000px;}
.ws11{word-spacing:1.620000px;}
.ws17{word-spacing:2.175000px;}
.ws3{word-spacing:2.976000px;}
.wsa{word-spacing:3.744000px;}
.ws7{word-spacing:3.960000px;}
.ws4{word-spacing:4.512000px;}
.ws6{word-spacing:5.832000px;}
.ws9{word-spacing:6.552000px;}
.ws18{word-spacing:7.125000px;}
.ws8{word-spacing:9.360000px;}
.wsb{word-spacing:9.504000px;}
.ws12{word-spacing:12.900026px;}
._0{margin-left:-6726.456000px;}
._a{margin-left:-8.247600px;}
._2{margin-left:-7.123200px;}
._9{margin-left:-4.680000px;}
._3{margin-left:-3.513600px;}
._1{margin-left:-1.747200px;}
._6{width:1.008000px;}
._8{width:2.721600px;}
._5{width:4.608000px;}
._4{width:6.573600px;}
._b{width:7.657500px;}
._7{width:9.532800px;}
.fc6{color:transparent;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(74,74,73);}
.fc3{color:rgb(233,65,144);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(233,118,172);}
.fs9{font-size:43.725000px;}
.fsa{font-size:56.250000px;}
.fs5{font-size:60.000000px;}
.fsb{font-size:62.500200px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:75.000000px;}
.fs4{font-size:96.000000px;}
.fs7{font-size:100.000200px;}
.fs3{font-size:108.000000px;}
.fs6{font-size:112.500000px;}
.fs2{font-size:115.629000px;}
.fs0{font-size:222.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:22.197900px;}
.y3{bottom:35.589750px;}
.y4f{bottom:74.907690px;}
.y4e{bottom:93.657750px;}
.y4d{bottom:112.407750px;}
.y2b{bottom:115.575600px;}
.y2a{bottom:133.575600px;}
.y4c{bottom:135.586800px;}
.y29{bottom:151.575600px;}
.y4b{bottom:158.016000px;}
.y28{bottom:173.820600px;}
.y4a{bottom:183.749250px;}
.y27{bottom:226.170600px;}
.y26{bottom:244.170600px;}
.y25{bottom:262.170600px;}
.y24{bottom:284.415600px;}
.y23{bottom:341.037150px;}
.y49{bottom:346.669950px;}
.y22{bottom:362.637150px;}
.y48{bottom:369.169950px;}
.y21{bottom:384.237150px;}
.y47{bottom:391.669950px;}
.y20{bottom:405.837150px;}
.y46{bottom:414.169950px;}
.y1f{bottom:427.437150px;}
.y45{bottom:436.669950px;}
.y1e{bottom:449.037150px;}
.y44{bottom:459.169950px;}
.y1d{bottom:470.637150px;}
.y43{bottom:481.669950px;}
.y1c{bottom:492.237150px;}
.y42{bottom:504.169950px;}
.y1b{bottom:513.837150px;}
.y41{bottom:526.669950px;}
.y1a{bottom:535.437150px;}
.y40{bottom:549.169950px;}
.y19{bottom:557.037150px;}
.y2{bottom:563.112150px;}
.y3f{bottom:571.669950px;}
.y18{bottom:578.637150px;}
.y3e{bottom:594.169950px;}
.y17{bottom:600.237150px;}
.y3d{bottom:616.669950px;}
.y1{bottom:619.389150px;}
.y16{bottom:621.837150px;}
.y3c{bottom:639.169950px;}
.y15{bottom:643.437150px;}
.y3b{bottom:661.669950px;}
.y14{bottom:665.037150px;}
.y3a{bottom:684.169950px;}
.y13{bottom:686.637150px;}
.y39{bottom:706.669950px;}
.y12{bottom:708.237150px;}
.y38{bottom:729.169950px;}
.y11{bottom:729.837150px;}
.y10{bottom:751.437150px;}
.y37{bottom:751.669950px;}
.yf{bottom:773.037150px;}
.y36{bottom:774.169950px;}
.ye{bottom:794.637150px;}
.y35{bottom:836.894700px;}
.yd{bottom:854.847150px;}
.y34{bottom:868.244700px;}
.yc{bottom:884.943150px;}
.y33{bottom:896.988450px;}
.y32{bottom:913.244700px;}
.yb{bottom:915.039150px;}
.y31{bottom:919.484944px;}
.y30{bottom:944.602950px;}
.ya{bottom:962.151150px;}
.y2f{bottom:967.102950px;}
.y9{bottom:990.951150px;}
.y2e{bottom:1016.177640px;}
.y8{bottom:1019.751150px;}
.y2d{bottom:1046.177700px;}
.y7{bottom:1048.551150px;}
.y2c{bottom:1085.036100px;}
.y6{bottom:1085.855100px;}
.y4{bottom:1151.650500px;}
.h11{height:39.092029px;}
.h13{height:42.078223px;}
.h15{height:50.427246px;}
.h5{height:50.760000px;}
.hd{height:53.789062px;}
.hc{height:54.169922px;}
.h14{height:54.675293px;}
.h16{height:56.030453px;}
.hb{height:64.371094px;}
.ha{height:64.546875px;}
.h12{height:67.053223px;}
.h10{height:67.236328px;}
.h6{height:75.097500px;}
.h9{height:86.671875px;}
.hf{height:90.283384px;}
.h8{height:97.505859px;}
.he{height:101.568604px;}
.h7{height:112.160130px;}
.h2{height:215.340000px;}
.h4{height:1228.500000px;}
.h3{height:1228.725000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:882.785400px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:903.555000px;}
.w3{width:903.750000px;}
.x0{left:0.000000px;}
.x4{left:20.769600px;}
.x5{left:30.787800px;}
.x9{left:39.519600px;}
.xa{left:45.355950px;}
.x8{left:48.023550px;}
.xc{left:204.338250px;}
.x2{left:284.048400px;}
.x1{left:324.840900px;}
.xb{left:666.621900px;}
.x7{left:974.952750px;}
.x6{left:983.456700px;}
.x3{left:1708.222350px;}
@media print{
.v2{vertical-align:-22.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.200000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.005689pt;}
.ls1{letter-spacing:0.006244pt;}
.ws2{word-spacing:-17.792000pt;}
.ws14{word-spacing:-5.333333pt;}
.ws19{word-spacing:-3.333333pt;}
.ws16{word-spacing:-2.933333pt;}
.wsd{word-spacing:-2.752000pt;}
.ws10{word-spacing:-2.720000pt;}
.ws13{word-spacing:-2.666667pt;}
.ws1b{word-spacing:-1.933333pt;}
.wsf{word-spacing:-1.792000pt;}
.wsc{word-spacing:-1.088000pt;}
.ws5{word-spacing:-0.576000pt;}
.ws1{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:1.000000pt;}
.ws1a{word-spacing:1.400000pt;}
.wse{word-spacing:1.408000pt;}
.ws11{word-spacing:1.440000pt;}
.ws17{word-spacing:1.933333pt;}
.ws3{word-spacing:2.645333pt;}
.wsa{word-spacing:3.328000pt;}
.ws7{word-spacing:3.520000pt;}
.ws4{word-spacing:4.010667pt;}
.ws6{word-spacing:5.184000pt;}
.ws9{word-spacing:5.824000pt;}
.ws18{word-spacing:6.333333pt;}
.ws8{word-spacing:8.320000pt;}
.wsb{word-spacing:8.448000pt;}
.ws12{word-spacing:11.466690pt;}
._0{margin-left:-5979.072000pt;}
._a{margin-left:-7.331200pt;}
._2{margin-left:-6.331733pt;}
._9{margin-left:-4.160000pt;}
._3{margin-left:-3.123200pt;}
._1{margin-left:-1.553067pt;}
._6{width:0.896000pt;}
._8{width:2.419200pt;}
._5{width:4.096000pt;}
._4{width:5.843200pt;}
._b{width:6.806667pt;}
._7{width:8.473600pt;}
.fs9{font-size:38.866667pt;}
.fsa{font-size:50.000000pt;}
.fs5{font-size:53.333333pt;}
.fsb{font-size:55.555733pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:66.666667pt;}
.fs4{font-size:85.333333pt;}
.fs7{font-size:88.889067pt;}
.fs3{font-size:96.000000pt;}
.fs6{font-size:100.000000pt;}
.fs2{font-size:102.781333pt;}
.fs0{font-size:197.333333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:19.731467pt;}
.y3{bottom:31.635333pt;}
.y4f{bottom:66.584613pt;}
.y4e{bottom:83.251333pt;}
.y4d{bottom:99.918000pt;}
.y2b{bottom:102.733867pt;}
.y2a{bottom:118.733867pt;}
.y4c{bottom:120.521600pt;}
.y29{bottom:134.733867pt;}
.y4b{bottom:140.458667pt;}
.y28{bottom:154.507200pt;}
.y4a{bottom:163.332667pt;}
.y27{bottom:201.040533pt;}
.y26{bottom:217.040533pt;}
.y25{bottom:233.040533pt;}
.y24{bottom:252.813867pt;}
.y23{bottom:303.144133pt;}
.y49{bottom:308.151067pt;}
.y22{bottom:322.344133pt;}
.y48{bottom:328.151067pt;}
.y21{bottom:341.544133pt;}
.y47{bottom:348.151067pt;}
.y20{bottom:360.744133pt;}
.y46{bottom:368.151067pt;}
.y1f{bottom:379.944133pt;}
.y45{bottom:388.151067pt;}
.y1e{bottom:399.144133pt;}
.y44{bottom:408.151067pt;}
.y1d{bottom:418.344133pt;}
.y43{bottom:428.151067pt;}
.y1c{bottom:437.544133pt;}
.y42{bottom:448.151067pt;}
.y1b{bottom:456.744133pt;}
.y41{bottom:468.151067pt;}
.y1a{bottom:475.944133pt;}
.y40{bottom:488.151067pt;}
.y19{bottom:495.144133pt;}
.y2{bottom:500.544133pt;}
.y3f{bottom:508.151067pt;}
.y18{bottom:514.344133pt;}
.y3e{bottom:528.151067pt;}
.y17{bottom:533.544133pt;}
.y3d{bottom:548.151067pt;}
.y1{bottom:550.568133pt;}
.y16{bottom:552.744133pt;}
.y3c{bottom:568.151067pt;}
.y15{bottom:571.944133pt;}
.y3b{bottom:588.151067pt;}
.y14{bottom:591.144133pt;}
.y3a{bottom:608.151067pt;}
.y13{bottom:610.344133pt;}
.y39{bottom:628.151067pt;}
.y12{bottom:629.544133pt;}
.y38{bottom:648.151067pt;}
.y11{bottom:648.744133pt;}
.y10{bottom:667.944133pt;}
.y37{bottom:668.151067pt;}
.yf{bottom:687.144133pt;}
.y36{bottom:688.151067pt;}
.ye{bottom:706.344133pt;}
.y35{bottom:743.906400pt;}
.yd{bottom:759.864133pt;}
.y34{bottom:771.773067pt;}
.yc{bottom:786.616133pt;}
.y33{bottom:797.323067pt;}
.y32{bottom:811.773067pt;}
.yb{bottom:813.368133pt;}
.y31{bottom:817.319950pt;}
.y30{bottom:839.647067pt;}
.ya{bottom:855.245467pt;}
.y2f{bottom:859.647067pt;}
.y9{bottom:880.845467pt;}
.y2e{bottom:903.269013pt;}
.y8{bottom:906.445467pt;}
.y2d{bottom:929.935733pt;}
.y7{bottom:932.045467pt;}
.y2c{bottom:964.476533pt;}
.y6{bottom:965.204533pt;}
.y4{bottom:1023.689333pt;}
.h11{height:34.748470pt;}
.h13{height:37.402865pt;}
.h15{height:44.824219pt;}
.h5{height:45.120000pt;}
.hd{height:47.812500pt;}
.hc{height:48.151042pt;}
.h14{height:48.600260pt;}
.h16{height:49.804847pt;}
.hb{height:57.218750pt;}
.ha{height:57.375000pt;}
.h12{height:59.602865pt;}
.h10{height:59.765625pt;}
.h6{height:66.753333pt;}
.h9{height:77.041667pt;}
.hf{height:80.251897pt;}
.h8{height:86.671875pt;}
.he{height:90.283203pt;}
.h7{height:99.697893pt;}
.h2{height:191.413333pt;}
.h4{height:1092.000000pt;}
.h3{height:1092.200000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:784.698133pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:803.160000pt;}
.w3{width:803.333333pt;}
.x0{left:0.000000pt;}
.x4{left:18.461867pt;}
.x5{left:27.366933pt;}
.x9{left:35.128533pt;}
.xa{left:40.316400pt;}
.x8{left:42.687600pt;}
.xc{left:181.634000pt;}
.x2{left:252.487467pt;}
.x1{left:288.747467pt;}
.xb{left:592.552800pt;}
.x7{left:866.624667pt;}
.x6{left:874.183733pt;}
.x3{left:1518.419867pt;}
}




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