
    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_4943adc35af7eb1833729b8b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_7ed5e0a8536982748a04be08.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_ae7b9d04129b7c9be9b4f567.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_41c3e913b08a5e656d6f9025.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.678711;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_801d022b6a896653fd21cc50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.885254;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_dca15bb699a1af2855ebf096.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.935059;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_52ad3db484147fdc2165d70b.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_4f305f96095b83af04f4e7d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893094;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_f94c339a87a08d35462cf354.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.951172;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_22a9e8bf379096af1fa41936.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_549222367d42720939e7c192.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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:ffc;src:url('chunks/assets/font_9147888e78c80f62e4e5b048.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.lsd{letter-spacing:-0.302400px;}
.lsb{letter-spacing:-0.260064px;}
.ls18{letter-spacing:-0.198720px;}
.ls10{letter-spacing:-0.158976px;}
.ls11{letter-spacing:-0.014400px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.007200px;}
.ls6{letter-spacing:0.010368px;}
.ls0{letter-spacing:0.042768px;}
.ls1{letter-spacing:0.072576px;}
.lsa{letter-spacing:0.073872px;}
.ls9{letter-spacing:0.097200px;}
.ls14{letter-spacing:0.123552px;}
.ls15{letter-spacing:0.125280px;}
.ls3{letter-spacing:0.125424px;}
.ls19{letter-spacing:0.159840px;}
.ls13{letter-spacing:0.160128px;}
.ls1a{letter-spacing:0.161568px;}
.lsf{letter-spacing:0.237600px;}
.ls17{letter-spacing:0.275616px;}
.lse{letter-spacing:0.285120px;}
.ls4{letter-spacing:0.296784px;}
.ls12{letter-spacing:0.318384px;}
.ls5{letter-spacing:0.355104px;}
.ls16{letter-spacing:0.356400px;}
.lsc{letter-spacing:0.389664px;}
.ls2{letter-spacing:1.814400px;}
.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;}
}
.ws7{word-spacing:-18.255744px;}
.ws2{word-spacing:-18.007200px;}
.ws5{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.985600px;}
.ws1{word-spacing:-13.448160px;}
.ws6{word-spacing:-13.372128px;}
.ws0{word-spacing:-1.886400px;}
.ws8{word-spacing:-0.171072px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.033200px;}
._0{width:1.010880px;}
._5{width:2.085120px;}
._7{width:3.628800px;}
._c{width:4.654080px;}
._d{width:5.832000px;}
._e{width:7.327872px;}
._b{width:8.684928px;}
._4{width:10.247760px;}
._3{width:11.328336px;}
._f{width:12.410064px;}
._9{width:14.391216px;}
._14{width:15.515424px;}
._6{width:16.855200px;}
._10{width:19.353600px;}
._12{width:22.874400px;}
._13{width:23.876928px;}
._8{width:25.214400px;}
._2{width:31.455648px;}
._a{width:36.734400px;}
._11{width:110.747808px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs2{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:111.960000px;}
.y4{bottom:113.040000px;}
.y3{bottom:127.440000px;}
.y50{bottom:131.040000px;}
.y25{bottom:132.840000px;}
.y2{bottom:142.200000px;}
.y24{bottom:151.920000px;}
.y21{bottom:190.800000px;}
.y20{bottom:211.320000px;}
.y4f{bottom:219.240000px;}
.y1f{bottom:232.200000px;}
.y4e{bottom:240.120000px;}
.y1e{bottom:252.720000px;}
.y4d{bottom:260.640000px;}
.y1d{bottom:273.600000px;}
.y4c{bottom:281.520000px;}
.y1c{bottom:294.120000px;}
.y4b{bottom:302.040000px;}
.y1b{bottom:315.000000px;}
.y4a{bottom:322.560000px;}
.y1a{bottom:335.520000px;}
.y49{bottom:343.440000px;}
.y19{bottom:356.400000px;}
.y48{bottom:363.960000px;}
.y18{bottom:376.920000px;}
.y47{bottom:388.800000px;}
.y17{bottom:397.800000px;}
.y16{bottom:418.320000px;}
.y46{bottom:426.240000px;}
.y15{bottom:439.200000px;}
.y45{bottom:450.720000px;}
.y14{bottom:459.720000px;}
.y13{bottom:484.200000px;}
.y44{bottom:488.520000px;}
.y43{bottom:509.040000px;}
.y12{bottom:520.200000px;}
.y42{bottom:529.920000px;}
.y11{bottom:534.600000px;}
.y10{bottom:546.840000px;}
.y41{bottom:550.440000px;}
.y40{bottom:571.320000px;}
.y3f{bottom:591.840000px;}
.y3e{bottom:612.720000px;}
.y3d{bottom:633.240000px;}
.y3c{bottom:654.120000px;}
.y3b{bottom:674.640000px;}
.y3a{bottom:695.520000px;}
.y39{bottom:716.040000px;}
.y38{bottom:736.920000px;}
.y37{bottom:757.440000px;}
.y36{bottom:778.320000px;}
.y35{bottom:798.840000px;}
.y34{bottom:819.720000px;}
.y33{bottom:840.240000px;}
.y32{bottom:861.120000px;}
.yf{bottom:883.800000px;}
.y31{bottom:885.600000px;}
.ye{bottom:899.640000px;}
.yd{bottom:920.520000px;}
.y30{bottom:923.040000px;}
.yc{bottom:941.040000px;}
.y2f{bottom:943.920000px;}
.yb{bottom:961.920000px;}
.y2e{bottom:964.440000px;}
.ya{bottom:982.440000px;}
.y2d{bottom:985.320000px;}
.y56{bottom:1003.320000px;}
.y2c{bottom:1005.840000px;}
.y9{bottom:1006.920000px;}
.y55{bottom:1023.840000px;}
.y2b{bottom:1026.720000px;}
.y8{bottom:1044.000000px;}
.y54{bottom:1044.720000px;}
.y2a{bottom:1047.240000px;}
.y7{bottom:1062.000000px;}
.y53{bottom:1065.240000px;}
.y29{bottom:1068.120000px;}
.y6{bottom:1080.000000px;}
.y52{bottom:1086.120000px;}
.y28{bottom:1088.640000px;}
.y27{bottom:1109.520000px;}
.y51{bottom:1110.600000px;}
.y5{bottom:1116.720000px;}
.y23{bottom:1128.960000px;}
.y1{bottom:1138.320000px;}
.y22{bottom:1143.360000px;}
.h3{height:28.704375px;}
.h9{height:31.672266px;}
.h8{height:35.013516px;}
.h7{height:35.175938px;}
.h5{height:44.562656px;}
.h6{height:48.224531px;}
.h2{height:50.027344px;}
.h4{height:52.664063px;}
.ha{height:57.474844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:80.640000px;}
.x6{left:133.814952px;}
.x4{left:381.219480px;}
.x2{left:446.114880px;}
.x3{left:743.114880px;}
.x5{left:811.590120px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.lsd{letter-spacing:-0.268800pt;}
.lsb{letter-spacing:-0.231168pt;}
.ls18{letter-spacing:-0.176640pt;}
.ls10{letter-spacing:-0.141312pt;}
.ls11{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.006400pt;}
.ls6{letter-spacing:0.009216pt;}
.ls0{letter-spacing:0.038016pt;}
.ls1{letter-spacing:0.064512pt;}
.lsa{letter-spacing:0.065664pt;}
.ls9{letter-spacing:0.086400pt;}
.ls14{letter-spacing:0.109824pt;}
.ls15{letter-spacing:0.111360pt;}
.ls3{letter-spacing:0.111488pt;}
.ls19{letter-spacing:0.142080pt;}
.ls13{letter-spacing:0.142336pt;}
.ls1a{letter-spacing:0.143616pt;}
.lsf{letter-spacing:0.211200pt;}
.ls17{letter-spacing:0.244992pt;}
.lse{letter-spacing:0.253440pt;}
.ls4{letter-spacing:0.263808pt;}
.ls12{letter-spacing:0.283008pt;}
.ls5{letter-spacing:0.315648pt;}
.ls16{letter-spacing:0.316800pt;}
.lsc{letter-spacing:0.346368pt;}
.ls2{letter-spacing:1.612800pt;}
.ws7{word-spacing:-16.227328pt;}
.ws2{word-spacing:-16.006400pt;}
.ws5{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.987200pt;}
.ws1{word-spacing:-11.953920pt;}
.ws6{word-spacing:-11.886336pt;}
.ws0{word-spacing:-1.676800pt;}
.ws8{word-spacing:-0.152064pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-0.918400pt;}
._0{width:0.898560pt;}
._5{width:1.853440pt;}
._7{width:3.225600pt;}
._c{width:4.136960pt;}
._d{width:5.184000pt;}
._e{width:6.513664pt;}
._b{width:7.719936pt;}
._4{width:9.109120pt;}
._3{width:10.069632pt;}
._f{width:11.031168pt;}
._9{width:12.792192pt;}
._14{width:13.791488pt;}
._6{width:14.982400pt;}
._10{width:17.203200pt;}
._12{width:20.332800pt;}
._13{width:21.223936pt;}
._8{width:22.412800pt;}
._2{width:27.960576pt;}
._a{width:32.652800pt;}
._11{width:98.442496pt;}
.fs1{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs2{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:99.520000pt;}
.y4{bottom:100.480000pt;}
.y3{bottom:113.280000pt;}
.y50{bottom:116.480000pt;}
.y25{bottom:118.080000pt;}
.y2{bottom:126.400000pt;}
.y24{bottom:135.040000pt;}
.y21{bottom:169.600000pt;}
.y20{bottom:187.840000pt;}
.y4f{bottom:194.880000pt;}
.y1f{bottom:206.400000pt;}
.y4e{bottom:213.440000pt;}
.y1e{bottom:224.640000pt;}
.y4d{bottom:231.680000pt;}
.y1d{bottom:243.200000pt;}
.y4c{bottom:250.240000pt;}
.y1c{bottom:261.440000pt;}
.y4b{bottom:268.480000pt;}
.y1b{bottom:280.000000pt;}
.y4a{bottom:286.720000pt;}
.y1a{bottom:298.240000pt;}
.y49{bottom:305.280000pt;}
.y19{bottom:316.800000pt;}
.y48{bottom:323.520000pt;}
.y18{bottom:335.040000pt;}
.y47{bottom:345.600000pt;}
.y17{bottom:353.600000pt;}
.y16{bottom:371.840000pt;}
.y46{bottom:378.880000pt;}
.y15{bottom:390.400000pt;}
.y45{bottom:400.640000pt;}
.y14{bottom:408.640000pt;}
.y13{bottom:430.400000pt;}
.y44{bottom:434.240000pt;}
.y43{bottom:452.480000pt;}
.y12{bottom:462.400000pt;}
.y42{bottom:471.040000pt;}
.y11{bottom:475.200000pt;}
.y10{bottom:486.080000pt;}
.y41{bottom:489.280000pt;}
.y40{bottom:507.840000pt;}
.y3f{bottom:526.080000pt;}
.y3e{bottom:544.640000pt;}
.y3d{bottom:562.880000pt;}
.y3c{bottom:581.440000pt;}
.y3b{bottom:599.680000pt;}
.y3a{bottom:618.240000pt;}
.y39{bottom:636.480000pt;}
.y38{bottom:655.040000pt;}
.y37{bottom:673.280000pt;}
.y36{bottom:691.840000pt;}
.y35{bottom:710.080000pt;}
.y34{bottom:728.640000pt;}
.y33{bottom:746.880000pt;}
.y32{bottom:765.440000pt;}
.yf{bottom:785.600000pt;}
.y31{bottom:787.200000pt;}
.ye{bottom:799.680000pt;}
.yd{bottom:818.240000pt;}
.y30{bottom:820.480000pt;}
.yc{bottom:836.480000pt;}
.y2f{bottom:839.040000pt;}
.yb{bottom:855.040000pt;}
.y2e{bottom:857.280000pt;}
.ya{bottom:873.280000pt;}
.y2d{bottom:875.840000pt;}
.y56{bottom:891.840000pt;}
.y2c{bottom:894.080000pt;}
.y9{bottom:895.040000pt;}
.y55{bottom:910.080000pt;}
.y2b{bottom:912.640000pt;}
.y8{bottom:928.000000pt;}
.y54{bottom:928.640000pt;}
.y2a{bottom:930.880000pt;}
.y7{bottom:944.000000pt;}
.y53{bottom:946.880000pt;}
.y29{bottom:949.440000pt;}
.y6{bottom:960.000000pt;}
.y52{bottom:965.440000pt;}
.y28{bottom:967.680000pt;}
.y27{bottom:986.240000pt;}
.y51{bottom:987.200000pt;}
.y5{bottom:992.640000pt;}
.y23{bottom:1003.520000pt;}
.y1{bottom:1011.840000pt;}
.y22{bottom:1016.320000pt;}
.h3{height:25.515000pt;}
.h9{height:28.153125pt;}
.h8{height:31.123125pt;}
.h7{height:31.267500pt;}
.h5{height:39.611250pt;}
.h6{height:42.866250pt;}
.h2{height:44.468750pt;}
.h4{height:46.812500pt;}
.ha{height:51.088750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:71.680000pt;}
.x6{left:118.946624pt;}
.x4{left:338.861760pt;}
.x2{left:396.546560pt;}
.x3{left:660.546560pt;}
.x5{left:721.413440pt;}
}




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