
    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_67d1b58a08704c0b94ebdd4d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940000;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_8b7823b33caedc07c149f0f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.712000;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_1a350110e13911f99536d3fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926000;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_358a91dcf25094550d7bf745.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_571e0ffefcd9bd928e8bb6df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.934000;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_54f3b49990e07d6ed5180a87.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.728000;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_8d72e0c6163853e358c4f9e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.744500;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_bd2e1190c89e34ead4c370ea.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;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_fb92049f8daa0de1cbf4426b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_50f87037ee8a62d2d4758a9d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002000;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_9c4fa7a6635470715f05d28e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.945000;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_9ae17ee12d55ccb3366d05a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.945000;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:ffd;src:url('chunks/assets/font_31a9da4d07702c9580ca54e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.929000;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:ffe;src:url('chunks/assets/font_256b5b85ef5300f2afcfb5e8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.969500;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:fff;src:url('chunks/assets/font_2d68a4bfba79151599260521.woff2')format("woff");}.fff{font-family:fff;line-height:0.934000;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:ff10;src:url('chunks/assets/font_c95356e76d50f9cebf869dcb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666000;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);}
.v5{vertical-align:-34.272000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.924331px;}
.v2{vertical-align:25.220815px;}
.v4{vertical-align:34.272000px;}
.v1{vertical-align:43.260000px;}
.ls1{letter-spacing:-0.032459px;}
.ls0{letter-spacing:0.000000px;}
.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:-71.924160px;}
.ws1{word-spacing:-33.360000px;}
.ws9{word-spacing:-26.688000px;}
.ws7{word-spacing:-8.331200px;}
.ws5{word-spacing:-8.309561px;}
.ws4{word-spacing:-7.498080px;}
.ws8{word-spacing:-4.872490px;}
.ws6{word-spacing:-4.844474px;}
.ws3{word-spacing:-4.371381px;}
.ws2{word-spacing:-0.075738px;}
.wsa{word-spacing:0.000000px;}
._2{margin-left:-28.717920px;}
._1{margin-left:-23.802240px;}
._5{margin-left:-16.560000px;}
._9{margin-left:-12.600000px;}
._6{margin-left:-9.900000px;}
._3{margin-left:-7.560000px;}
._7{margin-left:-6.107040px;}
._0{margin-left:-4.656960px;}
._4{margin-left:-3.240000px;}
._8{margin-left:-1.136073px;}
._a{width:2.592000px;}
.fc3{color:rgb(77,77,79);}
.fc2{color:rgb(225,213,201);}
.fc1{color:rgb(11,104,168);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:18.923726px;}
.fse{font-size:25.246061px;}
.fsa{font-size:32.459222px;}
.fsc{font-size:36.065802px;}
.fs9{font-size:39.672382px;}
.fsd{font-size:43.278962px;}
.fs8{font-size:44.155361px;}
.fs7{font-size:75.738184px;}
.fsf{font-size:96.000000px;}
.fs3{font-size:120.000000px;}
.fs6{font-size:144.000000px;}
.fs2{font-size:180.000000px;}
.fs5{font-size:234.000000px;}
.fs0{font-size:258.720000px;}
.fs4{font-size:264.000000px;}
.fs1{font-size:420.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:37.112973px;}
.y35{bottom:49.739610px;}
.y34{bottom:62.366247px;}
.y4d{bottom:63.133277px;}
.y4c{bottom:72.871043px;}
.y33{bottom:74.992884px;}
.y4b{bottom:82.608810px;}
.y32{bottom:87.615915px;}
.y5f{bottom:97.633950px;}
.y31{bottom:100.242552px;}
.y4a{bottom:107.927003px;}
.y30{bottom:116.922986px;}
.y49{bottom:117.662335px;}
.y26{bottom:132.190271px;}
.y2f{bottom:141.689372px;}
.y5e{bottom:151.633950px;}
.y2e{bottom:154.316009px;}
.y21{bottom:154.702500px;}
.y2d{bottom:166.942647px;}
.y2c{bottom:179.569284px;}
.y2b{bottom:192.195921px;}
.y48{bottom:199.865314px;}
.y2a{bottom:204.822558px;}
.y5d{bottom:205.633950px;}
.y29{bottom:217.449196px;}
.y47{bottom:217.717886px;}
.y20{bottom:223.702500px;}
.y46{bottom:227.455652px;}
.y28{bottom:230.075833px;}
.y45{bottom:241.250822px;}
.y27{bottom:242.702470px;}
.y5c{bottom:259.633950px;}
.y25{bottom:279.791549px;}
.y4e{bottom:308.367205px;}
.y5b{bottom:313.633950px;}
.y42{bottom:317.331000px;}
.y41{bottom:327.068766px;}
.y40{bottom:346.003313px;}
.y44{bottom:347.085287px;}
.y3f{bottom:356.821610px;}
.y43{bottom:356.823053px;}
.y5a{bottom:367.633950px;}
.y3e{bottom:390.254609px;}
.y3d{bottom:406.931436px;}
.y3c{bottom:419.558073px;}
.y59{bottom:421.633950px;}
.yf{bottom:423.886950px;}
.y3b{bottom:432.181104px;}
.y3a{bottom:444.804134px;}
.y39{bottom:457.427165px;}
.y38{bottom:470.050196px;}
.y58{bottom:475.633950px;}
.y37{bottom:482.673227px;}
.ye{bottom:500.386950px;}
.y57{bottom:529.633950px;}
.yd{bottom:576.886950px;}
.y56{bottom:614.933400px;}
.yc{bottom:653.386950px;}
.yb{bottom:729.886950px;}
.y24{bottom:744.371550px;}
.ya{bottom:806.386950px;}
.y18{bottom:901.430550px;}
.y9{bottom:950.624550px;}
.y17{bottom:955.430550px;}
.y16{bottom:1009.430550px;}
.y8{bottom:1027.124550px;}
.y15{bottom:1063.430550px;}
.y7{bottom:1103.624550px;}
.y14{bottom:1117.430550px;}
.y13{bottom:1171.430550px;}
.y12{bottom:1225.430550px;}
.y6{bottom:1247.862150px;}
.y5{bottom:1324.362150px;}
.y1e{bottom:1352.491500px;}
.y4{bottom:1400.862150px;}
.y1d{bottom:1406.491500px;}
.y1c{bottom:1460.491500px;}
.y3{bottom:1477.362150px;}
.y1b{bottom:1514.491500px;}
.y2{bottom:1553.862000px;}
.y1a{bottom:1568.491500px;}
.y19{bottom:1622.491500px;}
.y1{bottom:1630.362000px;}
.y1f{bottom:1728.693000px;}
.y11{bottom:1887.345000px;}
.y10{bottom:2014.845000px;}
.y55{bottom:2124.649500px;}
.y54{bottom:2176.717500px;}
.y53{bottom:2211.649500px;}
.y52{bottom:2307.760500px;}
.y51{bottom:2351.260500px;}
.y50{bottom:2394.760500px;}
.y23{bottom:2396.479500px;}
.y4f{bottom:2438.260500px;}
.y22{bottom:2439.979500px;}
.h14{height:19.262745px;}
.hb{height:23.906217px;}
.h13{height:24.755983px;}
.hc{height:26.600332px;}
.he{height:26.614759px;}
.ha{height:27.022302px;}
.hd{height:27.137713px;}
.hf{height:27.518207px;}
.h9{height:29.218709px;}
.h12{height:30.024780px;}
.h10{height:32.524140px;}
.h11{height:34.233659px;}
.h8{height:56.747743px;}
.h15{height:70.992000px;}
.h6{height:105.264000px;}
.h3{height:131.220000px;}
.h5{height:171.054000px;}
.h1{height:189.124320px;}
.h4{height:192.984000px;}
.h2{height:307.020000px;}
.h7{height:551.806800px;}
.h0{height:2592.000000px;}
.w1{width:714.102750px;}
.w0{width:3870.000000px;}
.x0{left:0.000000px;}
.xb{left:52.619996px;}
.x12{left:113.000880px;}
.x11{left:152.823401px;}
.x1{left:240.007650px;}
.x16{left:243.451350px;}
.x2{left:323.465700px;}
.x14{left:348.328200px;}
.xd{left:429.398105px;}
.xc{left:433.330539px;}
.x10{left:464.726716px;}
.x8{left:497.052900px;}
.xf{left:542.781213px;}
.xe{left:570.099341px;}
.x4{left:760.575000px;}
.x3{left:818.010000px;}
.x13{left:918.280200px;}
.x7{left:1334.451300px;}
.x15{left:1411.804200px;}
.xa{left:1455.682050px;}
.x6{left:2102.007000px;}
.x5{left:2207.457000px;}
.x9{left:3238.042500px;}
@media print{
.v5{vertical-align:-30.464000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.710517pt;}
.v2{vertical-align:22.418503pt;}
.v4{vertical-align:30.464000pt;}
.v1{vertical-align:38.453333pt;}
.ls1{letter-spacing:-0.028853pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-63.932587pt;}
.ws1{word-spacing:-29.653333pt;}
.ws9{word-spacing:-23.722667pt;}
.ws7{word-spacing:-7.405511pt;}
.ws5{word-spacing:-7.386276pt;}
.ws4{word-spacing:-6.664960pt;}
.ws8{word-spacing:-4.331102pt;}
.ws6{word-spacing:-4.306199pt;}
.ws3{word-spacing:-3.885672pt;}
.ws2{word-spacing:-0.067323pt;}
.wsa{word-spacing:0.000000pt;}
._2{margin-left:-25.527040pt;}
._1{margin-left:-21.157547pt;}
._5{margin-left:-14.720000pt;}
._9{margin-left:-11.200000pt;}
._6{margin-left:-8.800000pt;}
._3{margin-left:-6.720000pt;}
._7{margin-left:-5.428480pt;}
._0{margin-left:-4.139520pt;}
._4{margin-left:-2.880000pt;}
._8{margin-left:-1.009842pt;}
._a{width:2.304000pt;}
.fsb{font-size:16.821090pt;}
.fse{font-size:22.440943pt;}
.fsa{font-size:28.852642pt;}
.fsc{font-size:32.058491pt;}
.fs9{font-size:35.264340pt;}
.fsd{font-size:38.470189pt;}
.fs8{font-size:39.249210pt;}
.fs7{font-size:67.322830pt;}
.fsf{font-size:85.333333pt;}
.fs3{font-size:106.666667pt;}
.fs6{font-size:128.000000pt;}
.fs2{font-size:160.000000pt;}
.fs5{font-size:208.000000pt;}
.fs0{font-size:229.973333pt;}
.fs4{font-size:234.666667pt;}
.fs1{font-size:373.333333pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:32.989309pt;}
.y35{bottom:44.212987pt;}
.y34{bottom:55.436664pt;}
.y4d{bottom:56.118468pt;}
.y4c{bottom:64.774261pt;}
.y33{bottom:66.660342pt;}
.y4b{bottom:73.430053pt;}
.y32{bottom:77.880813pt;}
.y5f{bottom:86.785733pt;}
.y31{bottom:89.104491pt;}
.y4a{bottom:95.935113pt;}
.y30{bottom:103.931543pt;}
.y49{bottom:104.588742pt;}
.y26{bottom:117.502463pt;}
.y2f{bottom:125.946108pt;}
.y5e{bottom:134.785733pt;}
.y2e{bottom:137.169786pt;}
.y21{bottom:137.513333pt;}
.y2d{bottom:148.393464pt;}
.y2c{bottom:159.617141pt;}
.y2b{bottom:170.840819pt;}
.y48{bottom:177.658057pt;}
.y2a{bottom:182.064496pt;}
.y5d{bottom:182.785733pt;}
.y29{bottom:193.288174pt;}
.y47{bottom:193.527010pt;}
.y20{bottom:198.846667pt;}
.y46{bottom:202.182802pt;}
.y28{bottom:204.511852pt;}
.y45{bottom:214.445175pt;}
.y27{bottom:215.735529pt;}
.y5c{bottom:230.785733pt;}
.y25{bottom:248.703599pt;}
.y4e{bottom:274.104183pt;}
.y5b{bottom:278.785733pt;}
.y42{bottom:282.072000pt;}
.y41{bottom:290.727792pt;}
.y40{bottom:307.558500pt;}
.y44{bottom:308.520255pt;}
.y3f{bottom:317.174765pt;}
.y43{bottom:317.176047pt;}
.y5a{bottom:326.785733pt;}
.y3e{bottom:346.892986pt;}
.y3d{bottom:361.716832pt;}
.y3c{bottom:372.940509pt;}
.y59{bottom:374.785733pt;}
.yf{bottom:376.788400pt;}
.y3b{bottom:384.160981pt;}
.y3a{bottom:395.381453pt;}
.y39{bottom:406.601925pt;}
.y38{bottom:417.822396pt;}
.y58{bottom:422.785733pt;}
.y37{bottom:429.042868pt;}
.ye{bottom:444.788400pt;}
.y57{bottom:470.785733pt;}
.yd{bottom:512.788400pt;}
.y56{bottom:546.607467pt;}
.yc{bottom:580.788400pt;}
.yb{bottom:648.788400pt;}
.y24{bottom:661.663600pt;}
.ya{bottom:716.788400pt;}
.y18{bottom:801.271600pt;}
.y9{bottom:844.999600pt;}
.y17{bottom:849.271600pt;}
.y16{bottom:897.271600pt;}
.y8{bottom:912.999600pt;}
.y15{bottom:945.271600pt;}
.y7{bottom:980.999600pt;}
.y14{bottom:993.271600pt;}
.y13{bottom:1041.271600pt;}
.y12{bottom:1089.271600pt;}
.y6{bottom:1109.210800pt;}
.y5{bottom:1177.210800pt;}
.y1e{bottom:1202.214667pt;}
.y4{bottom:1245.210800pt;}
.y1d{bottom:1250.214667pt;}
.y1c{bottom:1298.214667pt;}
.y3{bottom:1313.210800pt;}
.y1b{bottom:1346.214667pt;}
.y2{bottom:1381.210667pt;}
.y1a{bottom:1394.214667pt;}
.y19{bottom:1442.214667pt;}
.y1{bottom:1449.210667pt;}
.y1f{bottom:1536.616000pt;}
.y11{bottom:1677.640000pt;}
.y10{bottom:1790.973333pt;}
.y55{bottom:1888.577333pt;}
.y54{bottom:1934.860000pt;}
.y53{bottom:1965.910667pt;}
.y52{bottom:2051.342667pt;}
.y51{bottom:2090.009333pt;}
.y50{bottom:2128.676000pt;}
.y23{bottom:2130.204000pt;}
.y4f{bottom:2167.342667pt;}
.y22{bottom:2168.870667pt;}
.h14{height:17.122440pt;}
.hb{height:21.249971pt;}
.h13{height:22.005318pt;}
.hc{height:23.644740pt;}
.he{height:23.657563pt;}
.ha{height:24.019824pt;}
.hd{height:24.122411pt;}
.hf{height:24.460628pt;}
.h9{height:25.972186pt;}
.h12{height:26.688693pt;}
.h10{height:28.910347pt;}
.h11{height:30.429919pt;}
.h8{height:50.442439pt;}
.h15{height:63.104000pt;}
.h6{height:93.568000pt;}
.h3{height:116.640000pt;}
.h5{height:152.048000pt;}
.h1{height:168.110507pt;}
.h4{height:171.541333pt;}
.h2{height:272.906667pt;}
.h7{height:490.494933pt;}
.h0{height:2304.000000pt;}
.w1{width:634.758000pt;}
.w0{width:3440.000000pt;}
.x0{left:0.000000pt;}
.xb{left:46.773330pt;}
.x12{left:100.445227pt;}
.x11{left:135.843023pt;}
.x1{left:213.340133pt;}
.x16{left:216.401200pt;}
.x2{left:287.525067pt;}
.x14{left:309.625067pt;}
.xd{left:381.687204pt;}
.xc{left:385.182701pt;}
.x10{left:413.090414pt;}
.x8{left:441.824800pt;}
.xf{left:482.472190pt;}
.xe{left:506.754970pt;}
.x4{left:676.066667pt;}
.x3{left:727.120000pt;}
.x13{left:816.249067pt;}
.x7{left:1186.178933pt;}
.x15{left:1254.937067pt;}
.xa{left:1293.939600pt;}
.x6{left:1868.450667pt;}
.x5{left:1962.184000pt;}
.x9{left:2878.260000pt;}
}




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