
    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_52596617dd79bca45e5c2bd7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_c3536e221cf0550327a54644.woff')format("woff");}.ff2{font-family:ff2;line-height:1.024414;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_b7d04111fd5f42e6fb5837ed.woff')format("woff");}.ff3{font-family:ff3;line-height:1.095215;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_8e3b88436b27a9ff47fd7a54.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_1071a728b7cba98100e9427b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.904785;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;}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.lsb{letter-spacing:-6.000000px;}
.ls3{letter-spacing:-2.640000px;}
.ls8{letter-spacing:-2.400000px;}
.lsc{letter-spacing:-0.600000px;}
.ls16{letter-spacing:-0.300000px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:3.150000px;}
.ls2{letter-spacing:3.300000px;}
.lsa{letter-spacing:4.200000px;}
.ls5{letter-spacing:5.400000px;}
.ls0{letter-spacing:6.000000px;}
.lsf{letter-spacing:6.600000px;}
.ls4{letter-spacing:7.200000px;}
.ls1{letter-spacing:9.750000px;}
.lsd{letter-spacing:10.200000px;}
.ls6{letter-spacing:15.600000px;}
.ls10{letter-spacing:16.860000px;}
.lse{letter-spacing:18.900000px;}
.ls11{letter-spacing:66.462000px;}
.ls12{letter-spacing:66.493200px;}
.ls13{letter-spacing:68.160000px;}
.ls14{letter-spacing:70.200000px;}
.ls15{letter-spacing:71.160000px;}
.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:-107.250000px;}
.ws5{word-spacing:-93.600000px;}
.ws18{word-spacing:-71.160000px;}
.ws10{word-spacing:-38.862000px;}
.ws1a{word-spacing:-36.603000px;}
.ws15{word-spacing:-18.900000px;}
.ws13{word-spacing:-16.920000px;}
.ws17{word-spacing:-16.860000px;}
.ws12{word-spacing:-16.302000px;}
.ws7{word-spacing:-15.600000px;}
.ws11{word-spacing:-14.820000px;}
.ws14{word-spacing:-14.520000px;}
.wsf{word-spacing:-13.488000px;}
.ws2{word-spacing:-9.750000px;}
.ws16{word-spacing:-6.600000px;}
.ws1{word-spacing:-6.000000px;}
.ws6{word-spacing:-5.400000px;}
.wsb{word-spacing:-4.200000px;}
.ws4{word-spacing:0.000000px;}
.ws19{word-spacing:0.300000px;}
.wse{word-spacing:0.600000px;}
.wsa{word-spacing:2.340000px;}
.ws9{word-spacing:2.400000px;}
.ws3{word-spacing:2.640000px;}
.wsc{word-spacing:3.720000px;}
.wsd{word-spacing:6.000000px;}
.ws8{word-spacing:7.938000px;}
._18{margin-left:-18.900000px;}
._5{margin-left:-15.568800px;}
._2{margin-left:-13.962000px;}
._6{margin-left:-11.200800px;}
._14{margin-left:-8.275200px;}
._10{margin-left:-6.304800px;}
._1{margin-left:-4.500000px;}
._3{margin-left:-2.522400px;}
._a{margin-left:-1.200000px;}
._f{width:1.689600px;}
._7{width:3.050400px;}
._4{width:4.800000px;}
._0{width:6.000000px;}
._16{width:7.308000px;}
._17{width:8.455200px;}
._9{width:10.322400px;}
._15{width:12.648000px;}
._1e{width:13.978200px;}
._1f{width:16.052400px;}
._19{width:18.900000px;}
._1d{width:40.488600px;}
._1a{width:66.462000px;}
._1c{width:68.178000px;}
._1b{width:71.299200px;}
._b{width:221.277600px;}
._d{width:223.329600px;}
._13{width:252.852000px;}
._11{width:278.520000px;}
._c{width:281.712000px;}
._12{width:476.169600px;}
._8{width:603.792000px;}
._e{width:618.369600px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fsb{font-size:63.000000px;}
.fsc{font-size:66.000000px;}
.fsa{font-size:102.000000px;}
.fs7{font-size:126.000000px;}
.fs3{font-size:132.000000px;}
.fs4{font-size:144.000000px;}
.fs8{font-size:240.000000px;}
.fs2{font-size:264.000000px;}
.fs6{font-size:312.000000px;}
.fs1{font-size:390.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:74.638500px;}
.y32{bottom:76.339350px;}
.y51{bottom:142.437150px;}
.y31{bottom:145.504950px;}
.y7{bottom:146.218800px;}
.y50{bottom:162.687150px;}
.y30{bottom:170.506950px;}
.y4f{bottom:182.946150px;}
.y4e{bottom:203.191650px;}
.y4d{bottom:223.437150px;}
.y2f{bottom:224.469450px;}
.y2e{bottom:242.469450px;}
.y4c{bottom:252.191100px;}
.y2d{bottom:260.469450px;}
.y4b{bottom:272.450100px;}
.y2c{bottom:278.469450px;}
.y4a{bottom:292.695600px;}
.y2b{bottom:296.469450px;}
.y49{bottom:312.941100px;}
.y2a{bottom:314.469450px;}
.y29{bottom:332.469450px;}
.y48{bottom:341.695050px;}
.y28{bottom:350.469450px;}
.y47{bottom:361.945050px;}
.y27{bottom:368.469450px;}
.y5{bottom:370.715100px;}
.y46{bottom:382.199550px;}
.y26{bottom:386.469450px;}
.y45{bottom:402.445050px;}
.y25{bottom:404.469450px;}
.y24{bottom:422.469450px;}
.y44{bottom:431.199000px;}
.y23{bottom:440.469450px;}
.y43{bottom:451.449000px;}
.y22{bottom:458.469450px;}
.y64{bottom:461.184300px;}
.y42{bottom:471.708000px;}
.y21{bottom:476.469450px;}
.y63{bottom:481.443300px;}
.y41{bottom:491.953500px;}
.y20{bottom:494.469450px;}
.y62{bottom:501.688800px;}
.y40{bottom:512.199000px;}
.y1f{bottom:512.469450px;}
.y61{bottom:521.934300px;}
.y4{bottom:523.611300px;}
.y1e{bottom:530.469450px;}
.y3f{bottom:540.952950px;}
.y1d{bottom:548.469450px;}
.y60{bottom:559.192200px;}
.y3e{bottom:561.207450px;}
.y1c{bottom:566.469450px;}
.ya{bottom:571.697250px;}
.y3d{bottom:581.452950px;}
.y1b{bottom:584.469450px;}
.y1a{bottom:602.469450px;}
.y5f{bottom:609.696150px;}
.y3c{bottom:610.206900px;}
.y19{bottom:620.469450px;}
.y5e{bottom:629.946150px;}
.y3b{bottom:630.461400px;}
.y18{bottom:646.974450px;}
.y5d{bottom:650.205150px;}
.y3a{bottom:650.706900px;}
.yb{bottom:653.473050px;}
.y5c{bottom:670.450650px;}
.y39{bottom:679.460700px;}
.y17{bottom:682.974450px;}
.y3{bottom:690.386250px;}
.y5b{bottom:690.696150px;}
.y38{bottom:699.710700px;}
.y16{bottom:700.974450px;}
.y15{bottom:718.974450px;}
.y37{bottom:719.969700px;}
.y5a{bottom:727.954050px;}
.y36{bottom:740.215200px;}
.y14{bottom:741.219450px;}
.y9{bottom:750.064650px;}
.y35{bottom:760.460700px;}
.y13{bottom:777.219450px;}
.y59{bottom:778.457850px;}
.y2{bottom:791.493750px;}
.y12{bottom:795.219450px;}
.y34{bottom:797.718600px;}
.y58{bottom:798.707850px;}
.y11{bottom:813.219450px;}
.y57{bottom:818.966850px;}
.y8{bottom:832.588650px;}
.y10{bottom:835.464450px;}
.y6{bottom:838.998750px;}
.y56{bottom:839.212350px;}
.y55{bottom:859.457850px;}
.yf{bottom:871.464450px;}
.y54{bottom:888.211800px;}
.ye{bottom:889.464450px;}
.yd{bottom:907.464450px;}
.y53{bottom:908.466300px;}
.y33{bottom:922.726500px;}
.y52{bottom:928.711800px;}
.yc{bottom:929.709450px;}
.h10{height:40.523438px;}
.hc{height:46.312500px;}
.hb{height:50.947266px;}
.h7{height:52.101562px;}
.h2{height:57.890625px;}
.he{height:60.785156px;}
.hf{height:63.679688px;}
.hd{height:98.414062px;}
.h9{height:106.804688px;}
.h5{height:111.890625px;}
.h6{height:122.062500px;}
.ha{height:203.437500px;}
.h4{height:223.781250px;}
.h8{height:264.468750px;}
.h3{height:330.585938px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835015px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x10{left:76.535400px;}
.xc{left:97.795350px;}
.x2{left:107.514150px;}
.xd{left:119.065350px;}
.x12{left:135.670350px;}
.x8{left:150.916200px;}
.x5{left:176.545500px;}
.xa{left:184.288050px;}
.x3{left:202.182750px;}
.x6{left:215.573850px;}
.x9{left:225.250200px;}
.x1{left:232.172700px;}
.x7{left:233.697300px;}
.xb{left:321.087450px;}
.x4{left:332.779950px;}
.x11{left:352.917450px;}
.xe{left:557.427600px;}
.xf{left:590.539350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.lsb{letter-spacing:-5.333333pt;}
.ls3{letter-spacing:-2.346667pt;}
.ls8{letter-spacing:-2.133333pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls16{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:2.800000pt;}
.ls2{letter-spacing:2.933333pt;}
.lsa{letter-spacing:3.733333pt;}
.ls5{letter-spacing:4.800000pt;}
.ls0{letter-spacing:5.333333pt;}
.lsf{letter-spacing:5.866667pt;}
.ls4{letter-spacing:6.400000pt;}
.ls1{letter-spacing:8.666667pt;}
.lsd{letter-spacing:9.066667pt;}
.ls6{letter-spacing:13.866667pt;}
.ls10{letter-spacing:14.986667pt;}
.lse{letter-spacing:16.800000pt;}
.ls11{letter-spacing:59.077333pt;}
.ls12{letter-spacing:59.105067pt;}
.ls13{letter-spacing:60.586667pt;}
.ls14{letter-spacing:62.400000pt;}
.ls15{letter-spacing:63.253333pt;}
.ws0{word-spacing:-95.333333pt;}
.ws5{word-spacing:-83.200000pt;}
.ws18{word-spacing:-63.253333pt;}
.ws10{word-spacing:-34.544000pt;}
.ws1a{word-spacing:-32.536000pt;}
.ws15{word-spacing:-16.800000pt;}
.ws13{word-spacing:-15.040000pt;}
.ws17{word-spacing:-14.986667pt;}
.ws12{word-spacing:-14.490667pt;}
.ws7{word-spacing:-13.866667pt;}
.ws11{word-spacing:-13.173333pt;}
.ws14{word-spacing:-12.906667pt;}
.wsf{word-spacing:-11.989333pt;}
.ws2{word-spacing:-8.666667pt;}
.ws16{word-spacing:-5.866667pt;}
.ws1{word-spacing:-5.333333pt;}
.ws6{word-spacing:-4.800000pt;}
.wsb{word-spacing:-3.733333pt;}
.ws4{word-spacing:0.000000pt;}
.ws19{word-spacing:0.266667pt;}
.wse{word-spacing:0.533333pt;}
.wsa{word-spacing:2.080000pt;}
.ws9{word-spacing:2.133333pt;}
.ws3{word-spacing:2.346667pt;}
.wsc{word-spacing:3.306667pt;}
.wsd{word-spacing:5.333333pt;}
.ws8{word-spacing:7.056000pt;}
._18{margin-left:-16.800000pt;}
._5{margin-left:-13.838933pt;}
._2{margin-left:-12.410667pt;}
._6{margin-left:-9.956267pt;}
._14{margin-left:-7.355733pt;}
._10{margin-left:-5.604267pt;}
._1{margin-left:-4.000000pt;}
._3{margin-left:-2.242133pt;}
._a{margin-left:-1.066667pt;}
._f{width:1.501867pt;}
._7{width:2.711467pt;}
._4{width:4.266667pt;}
._0{width:5.333333pt;}
._16{width:6.496000pt;}
._17{width:7.515733pt;}
._9{width:9.175467pt;}
._15{width:11.242667pt;}
._1e{width:12.425067pt;}
._1f{width:14.268800pt;}
._19{width:16.800000pt;}
._1d{width:35.989867pt;}
._1a{width:59.077333pt;}
._1c{width:60.602667pt;}
._1b{width:63.377067pt;}
._b{width:196.691200pt;}
._d{width:198.515200pt;}
._13{width:224.757333pt;}
._11{width:247.573333pt;}
._c{width:250.410667pt;}
._12{width:423.261867pt;}
._8{width:536.704000pt;}
._e{width:549.661867pt;}
.fsd{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fsb{font-size:56.000000pt;}
.fsc{font-size:58.666667pt;}
.fsa{font-size:90.666667pt;}
.fs7{font-size:112.000000pt;}
.fs3{font-size:117.333333pt;}
.fs4{font-size:128.000000pt;}
.fs8{font-size:213.333333pt;}
.fs2{font-size:234.666667pt;}
.fs6{font-size:277.333333pt;}
.fs1{font-size:346.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:66.345333pt;}
.y32{bottom:67.857200pt;}
.y51{bottom:126.610800pt;}
.y31{bottom:129.337733pt;}
.y7{bottom:129.972267pt;}
.y50{bottom:144.610800pt;}
.y30{bottom:151.561733pt;}
.y4f{bottom:162.618800pt;}
.y4e{bottom:180.614800pt;}
.y4d{bottom:198.610800pt;}
.y2f{bottom:199.528400pt;}
.y2e{bottom:215.528400pt;}
.y4c{bottom:224.169867pt;}
.y2d{bottom:231.528400pt;}
.y4b{bottom:242.177867pt;}
.y2c{bottom:247.528400pt;}
.y4a{bottom:260.173867pt;}
.y2b{bottom:263.528400pt;}
.y49{bottom:278.169867pt;}
.y2a{bottom:279.528400pt;}
.y29{bottom:295.528400pt;}
.y48{bottom:303.728933pt;}
.y28{bottom:311.528400pt;}
.y47{bottom:321.728933pt;}
.y27{bottom:327.528400pt;}
.y5{bottom:329.524533pt;}
.y46{bottom:339.732933pt;}
.y26{bottom:343.528400pt;}
.y45{bottom:357.728933pt;}
.y25{bottom:359.528400pt;}
.y24{bottom:375.528400pt;}
.y44{bottom:383.288000pt;}
.y23{bottom:391.528400pt;}
.y43{bottom:401.288000pt;}
.y22{bottom:407.528400pt;}
.y64{bottom:409.941600pt;}
.y42{bottom:419.296000pt;}
.y21{bottom:423.528400pt;}
.y63{bottom:427.949600pt;}
.y41{bottom:437.292000pt;}
.y20{bottom:439.528400pt;}
.y62{bottom:445.945600pt;}
.y40{bottom:455.288000pt;}
.y1f{bottom:455.528400pt;}
.y61{bottom:463.941600pt;}
.y4{bottom:465.432267pt;}
.y1e{bottom:471.528400pt;}
.y3f{bottom:480.847067pt;}
.y1d{bottom:487.528400pt;}
.y60{bottom:497.059733pt;}
.y3e{bottom:498.851067pt;}
.y1c{bottom:503.528400pt;}
.ya{bottom:508.175333pt;}
.y3d{bottom:516.847067pt;}
.y1b{bottom:519.528400pt;}
.y1a{bottom:535.528400pt;}
.y5f{bottom:541.952133pt;}
.y3c{bottom:542.406133pt;}
.y19{bottom:551.528400pt;}
.y5e{bottom:559.952133pt;}
.y3b{bottom:560.410133pt;}
.y18{bottom:575.088400pt;}
.y5d{bottom:577.960133pt;}
.y3a{bottom:578.406133pt;}
.yb{bottom:580.864933pt;}
.y5c{bottom:595.956133pt;}
.y39{bottom:603.965067pt;}
.y17{bottom:607.088400pt;}
.y3{bottom:613.676667pt;}
.y5b{bottom:613.952133pt;}
.y38{bottom:621.965067pt;}
.y16{bottom:623.088400pt;}
.y15{bottom:639.088400pt;}
.y37{bottom:639.973067pt;}
.y5a{bottom:647.070267pt;}
.y36{bottom:657.969067pt;}
.y14{bottom:658.861733pt;}
.y9{bottom:666.724133pt;}
.y35{bottom:675.965067pt;}
.y13{bottom:690.861733pt;}
.y59{bottom:691.962533pt;}
.y2{bottom:703.550000pt;}
.y12{bottom:706.861733pt;}
.y34{bottom:709.083200pt;}
.y58{bottom:709.962533pt;}
.y11{bottom:722.861733pt;}
.y57{bottom:727.970533pt;}
.y8{bottom:740.078800pt;}
.y10{bottom:742.635067pt;}
.y6{bottom:745.776667pt;}
.y56{bottom:745.966533pt;}
.y55{bottom:763.962533pt;}
.yf{bottom:774.635067pt;}
.y54{bottom:789.521600pt;}
.ye{bottom:790.635067pt;}
.yd{bottom:806.635067pt;}
.y53{bottom:807.525600pt;}
.y33{bottom:820.201333pt;}
.y52{bottom:825.521600pt;}
.yc{bottom:826.408400pt;}
.h10{height:36.020833pt;}
.hc{height:41.166667pt;}
.hb{height:45.286458pt;}
.h7{height:46.312500pt;}
.h2{height:51.458333pt;}
.he{height:54.031250pt;}
.hf{height:56.604167pt;}
.hd{height:87.479167pt;}
.h9{height:94.937500pt;}
.h5{height:99.458333pt;}
.h6{height:108.500000pt;}
.ha{height:180.833333pt;}
.h4{height:198.916667pt;}
.h8{height:235.083333pt;}
.h3{height:293.854167pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520013pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x10{left:68.031467pt;}
.xc{left:86.929200pt;}
.x2{left:95.568133pt;}
.xd{left:105.835867pt;}
.x12{left:120.595867pt;}
.x8{left:134.147733pt;}
.x5{left:156.929333pt;}
.xa{left:163.811600pt;}
.x3{left:179.718000pt;}
.x6{left:191.621200pt;}
.x9{left:200.222400pt;}
.x1{left:206.375733pt;}
.x7{left:207.730933pt;}
.xb{left:285.411067pt;}
.x4{left:295.804400pt;}
.x11{left:313.704400pt;}
.xe{left:495.491200pt;}
.xf{left:524.923867pt;}
}




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