
    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_bde3c85c7653383abdfd21ac.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_d32edc3a88048018efe9291e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.237305;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_cd035311bc18fba6a9869ae7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_b5cb3709d7bd5605a91fbf9b.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_911ac28776a79cf76b77c705.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_d674a414c0de4fc32a7aa3a1.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5e3c42203aa89441b53e3c4f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.120117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-11.982000px;}
.v4{vertical-align:-10.977000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.982000px;}
.v1{vertical-align:16.824000px;}
.lsf{letter-spacing:-4.623000px;}
.ls5{letter-spacing:-2.376000px;}
.ls3{letter-spacing:-1.380000px;}
.lsd{letter-spacing:-1.173000px;}
.ls11{letter-spacing:-0.864000px;}
.ls4{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.482724px;}
.ls10{letter-spacing:-0.345000px;}
.ls12{letter-spacing:-0.270000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000300px;}
.ls9{letter-spacing:1.966500px;}
.lsa{letter-spacing:2.400000px;}
.ls0{letter-spacing:4.200000px;}
.ls14{letter-spacing:4.649400px;}
.lsc{letter-spacing:5.460000px;}
.ls16{letter-spacing:5.701500px;}
.ls7{letter-spacing:5.760000px;}
.ls6{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls1a{letter-spacing:6.120000px;}
.ls15{letter-spacing:6.300000px;}
.lsb{letter-spacing:6.825000px;}
.ls18{letter-spacing:6.867000px;}
.ls17{letter-spacing:9.059400px;}
.ls19{letter-spacing:10.836000px;}
.ls13{letter-spacing:17.356500px;}
.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;}
}
.ws16{word-spacing:-69.000000px;}
.ws0{word-spacing:-29.808000px;}
.ws1{word-spacing:-27.972000px;}
.wsa{word-spacing:-27.900000px;}
.ws1c{word-spacing:-24.570000px;}
.ws20{word-spacing:-22.860000px;}
.ws2{word-spacing:-22.740000px;}
.ws4{word-spacing:-22.620000px;}
.wsd{word-spacing:-19.389000px;}
.ws1d{word-spacing:-17.703000px;}
.wsb{word-spacing:-17.262000px;}
.ws5{word-spacing:-17.043000px;}
.ws3{word-spacing:-16.860000px;}
.ws1e{word-spacing:-15.561000px;}
.ws10{word-spacing:-15.174000px;}
.ws21{word-spacing:-14.820000px;}
.ws17{word-spacing:-13.338000px;}
.ws18{word-spacing:-13.068000px;}
.wsc{word-spacing:-11.303787px;}
.wse{word-spacing:-10.821063px;}
.ws15{word-spacing:-9.936069px;}
.wsf{word-spacing:-8.846442px;}
.ws1f{word-spacing:-6.300000px;}
.ws22{word-spacing:-6.120000px;}
.ws7{word-spacing:-6.000000px;}
.ws9{word-spacing:-4.200000px;}
.ws11{word-spacing:-2.400000px;}
.ws6{word-spacing:0.000000px;}
.ws19{word-spacing:0.345000px;}
.ws1b{word-spacing:0.864000px;}
.ws13{word-spacing:1.173000px;}
.ws8{word-spacing:1.380000px;}
.ws14{word-spacing:4.623000px;}
.ws12{word-spacing:8.487000px;}
.ws1a{word-spacing:196.581000px;}
._1f{margin-left:-197.064300px;}
._1e{margin-left:-85.008000px;}
._1c{margin-left:-19.605000px;}
._12{margin-left:-6.720600px;}
._10{margin-left:-5.627700px;}
._14{margin-left:-4.377300px;}
._1{margin-left:-3.078000px;}
._2{margin-left:-1.128000px;}
._5{width:1.518300px;}
._4{width:2.577000px;}
._9{width:3.630000px;}
._7{width:5.382000px;}
._6{width:6.551700px;}
._8{width:7.621500px;}
._15{width:8.852400px;}
._d{width:9.979200px;}
._b{width:11.639400px;}
._a{width:12.888000px;}
._25{width:13.936500px;}
._17{width:14.978700px;}
._16{width:16.001100px;}
._1a{width:18.005400px;}
._e{width:19.211700px;}
._f{width:20.490300px;}
._22{width:21.617100px;}
._21{width:23.205000px;}
._23{width:24.778500px;}
._24{width:26.239800px;}
._28{width:27.378600px;}
._20{width:28.721700px;}
._27{width:30.440400px;}
._26{width:35.733900px;}
._18{width:43.445160px;}
._11{width:85.554000px;}
._1b{width:111.573000px;}
._1d{width:196.581000px;}
._c{width:243.726000px;}
._13{width:449.328900px;}
._0{width:578.400000px;}
._19{width:1017.112200px;}
._29{width:1019.737200px;}
._3{width:1025.767200px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs8{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs6{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y62{bottom:106.287450px;}
.y44{bottom:106.293450px;}
.y1e{bottom:106.300800px;}
.y61{bottom:123.540450px;}
.y43{bottom:123.546450px;}
.y1d{bottom:126.707550px;}
.y60{bottom:140.793450px;}
.y42{bottom:143.794950px;}
.y81{bottom:148.234350px;}
.y1c{bottom:155.618550px;}
.y5f{bottom:158.046450px;}
.y41{bottom:165.297000px;}
.y80{bottom:168.488850px;}
.y5e{bottom:178.294950px;}
.y1b{bottom:184.529550px;}
.y40{bottom:186.799200px;}
.y7f{bottom:197.248350px;}
.y7e{bottom:217.502850px;}
.y1a{bottom:225.337050px;}
.y3f{bottom:230.881200px;}
.y7d{bottom:237.757350px;}
.y19{bottom:246.502050px;}
.y3e{bottom:251.339700px;}
.y7c{bottom:266.516850px;}
.y18{bottom:267.676650px;}
.y5d{bottom:269.272950px;}
.y3d{bottom:271.798200px;}
.y7b{bottom:286.771350px;}
.y17{bottom:287.326650px;}
.y3c{bottom:292.256700px;}
.y5c{bottom:292.732950px;}
.y16{bottom:306.976650px;}
.y3b{bottom:312.715200px;}
.y7a{bottom:315.530850px;}
.y5b{bottom:316.192950px;}
.y15{bottom:326.626650px;}
.y3a{bottom:333.173700px;}
.y79{bottom:335.785350px;}
.y5a{bottom:339.652950px;}
.y14{bottom:346.276650px;}
.y39{bottom:353.632200px;}
.y59{bottom:363.112950px;}
.y78{bottom:364.544850px;}
.y38{bottom:374.090700px;}
.y13{bottom:378.691650px;}
.y77{bottom:384.799350px;}
.y58{bottom:386.572950px;}
.y37{bottom:394.549200px;}
.y57{bottom:410.032950px;}
.y93{bottom:413.416350px;}
.y76{bottom:413.558850px;}
.y36{bottom:415.007700px;}
.y12{bottom:428.116650px;}
.y56{bottom:433.492950px;}
.y92{bottom:433.666350px;}
.y75{bottom:433.813350px;}
.y35{bottom:435.472500px;}
.y11{bottom:449.281650px;}
.y91{bottom:453.916350px;}
.y34{bottom:455.943750px;}
.y55{bottom:456.952950px;}
.y74{bottom:462.572850px;}
.y10{bottom:470.467350px;}
.y90{bottom:474.166350px;}
.y33{bottom:476.402250px;}
.y54{bottom:480.412950px;}
.y73{bottom:482.827350px;}
.yf{bottom:490.117350px;}
.y32{bottom:496.892100px;}
.y53{bottom:503.872950px;}
.y8f{bottom:507.166350px;}
.ye{bottom:509.767350px;}
.y72{bottom:511.586850px;}
.y31{bottom:517.350600px;}
.y52{bottom:527.332950px;}
.yd{bottom:529.417350px;}
.y71{bottom:531.841350px;}
.y30{bottom:537.809100px;}
.y8e{bottom:548.671350px;}
.yc{bottom:549.067350px;}
.y51{bottom:550.792950px;}
.y70{bottom:560.600850px;}
.y2f{bottom:566.771850px;}
.y8d{bottom:568.171350px;}
.y50{bottom:574.252950px;}
.y6f{bottom:580.855350px;}
.yb{bottom:581.482350px;}
.y2e{bottom:587.230350px;}
.y8c{bottom:587.671350px;}
.y4f{bottom:597.712950px;}
.y8b{bottom:607.171350px;}
.y6e{bottom:609.614850px;}
.y2d{bottom:616.218600px;}
.y8a{bottom:626.671350px;}
.y6d{bottom:629.869350px;}
.y2c{bottom:636.677100px;}
.ya{bottom:639.407550px;}
.y4e{bottom:644.632950px;}
.y89{bottom:646.171350px;}
.y2b{bottom:657.135600px;}
.y6c{bottom:658.628850px;}
.y88{bottom:665.671350px;}
.y4d{bottom:668.092950px;}
.y2a{bottom:677.594100px;}
.y6b{bottom:678.883350px;}
.y87{bottom:685.171350px;}
.y9{bottom:687.811350px;}
.y4c{bottom:691.552950px;}
.y29{bottom:698.052600px;}
.y86{bottom:704.671350px;}
.y6a{bottom:707.642850px;}
.y4b{bottom:715.012950px;}
.y8{bottom:719.482350px;}
.y69{bottom:727.897350px;}
.y85{bottom:736.921350px;}
.y28{bottom:738.995100px;}
.y68{bottom:756.656850px;}
.y27{bottom:759.453600px;}
.y4a{bottom:761.932950px;}
.y67{bottom:776.911350px;}
.y26{bottom:779.950350px;}
.y7{bottom:780.901500px;}
.y49{bottom:785.399700px;}
.y84{bottom:794.689050px;}
.y25{bottom:800.408850px;}
.y66{bottom:805.670850px;}
.y48{bottom:808.859700px;}
.y6{bottom:810.556500px;}
.y24{bottom:820.867350px;}
.y65{bottom:825.925350px;}
.y5{bottom:831.721500px;}
.y47{bottom:832.319700px;}
.y23{bottom:841.325850px;}
.y64{bottom:854.684850px;}
.y46{bottom:855.779700px;}
.y4{bottom:861.376500px;}
.y22{bottom:861.784350px;}
.y83{bottom:863.189850px;}
.y63{bottom:874.939350px;}
.y45{bottom:879.241350px;}
.y21{bottom:882.242850px;}
.y3{bottom:882.541500px;}
.y82{bottom:883.444350px;}
.y20{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1f{bottom:948.189000px;}
.hb{height:33.870539px;}
.ha{height:40.757812px;}
.he{height:40.936945px;}
.hc{height:45.852539px;}
.h4{height:50.947266px;}
.hf{height:52.918945px;}
.h3{height:53.494629px;}
.h9{height:58.589355px;}
.h7{height:58.798828px;}
.hd{height:59.937012px;}
.h10{height:61.738770px;}
.h2{height:63.684082px;}
.h8{height:67.618652px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:80.526300px;}
.x7{left:83.686650px;}
.x1{left:85.039350px;}
.x9{left:102.194550px;}
.x5{left:105.030600px;}
.x6{left:106.045500px;}
.x3{left:231.663150px;}
.x4{left:232.725600px;}
.x2{left:233.797500px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v4{vertical-align:-9.757333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.650667pt;}
.v1{vertical-align:14.954667pt;}
.lsf{letter-spacing:-4.109333pt;}
.ls5{letter-spacing:-2.112000pt;}
.ls3{letter-spacing:-1.226667pt;}
.lsd{letter-spacing:-1.042667pt;}
.ls11{letter-spacing:-0.768000pt;}
.ls4{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.429088pt;}
.ls10{letter-spacing:-0.306667pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000267pt;}
.ls9{letter-spacing:1.748000pt;}
.lsa{letter-spacing:2.133333pt;}
.ls0{letter-spacing:3.733333pt;}
.ls14{letter-spacing:4.132800pt;}
.lsc{letter-spacing:4.853333pt;}
.ls16{letter-spacing:5.068000pt;}
.ls7{letter-spacing:5.120000pt;}
.ls6{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls1a{letter-spacing:5.440000pt;}
.ls15{letter-spacing:5.600000pt;}
.lsb{letter-spacing:6.066667pt;}
.ls18{letter-spacing:6.104000pt;}
.ls17{letter-spacing:8.052800pt;}
.ls19{letter-spacing:9.632000pt;}
.ls13{letter-spacing:15.428000pt;}
.ws16{word-spacing:-61.333333pt;}
.ws0{word-spacing:-26.496000pt;}
.ws1{word-spacing:-24.864000pt;}
.wsa{word-spacing:-24.800000pt;}
.ws1c{word-spacing:-21.840000pt;}
.ws20{word-spacing:-20.320000pt;}
.ws2{word-spacing:-20.213333pt;}
.ws4{word-spacing:-20.106667pt;}
.wsd{word-spacing:-17.234667pt;}
.ws1d{word-spacing:-15.736000pt;}
.wsb{word-spacing:-15.344000pt;}
.ws5{word-spacing:-15.149333pt;}
.ws3{word-spacing:-14.986667pt;}
.ws1e{word-spacing:-13.832000pt;}
.ws10{word-spacing:-13.488000pt;}
.ws21{word-spacing:-13.173333pt;}
.ws17{word-spacing:-11.856000pt;}
.ws18{word-spacing:-11.616000pt;}
.wsc{word-spacing:-10.047811pt;}
.wse{word-spacing:-9.618723pt;}
.ws15{word-spacing:-8.832061pt;}
.wsf{word-spacing:-7.863504pt;}
.ws1f{word-spacing:-5.600000pt;}
.ws22{word-spacing:-5.440000pt;}
.ws7{word-spacing:-5.333333pt;}
.ws9{word-spacing:-3.733333pt;}
.ws11{word-spacing:-2.133333pt;}
.ws6{word-spacing:0.000000pt;}
.ws19{word-spacing:0.306667pt;}
.ws1b{word-spacing:0.768000pt;}
.ws13{word-spacing:1.042667pt;}
.ws8{word-spacing:1.226667pt;}
.ws14{word-spacing:4.109333pt;}
.ws12{word-spacing:7.544000pt;}
.ws1a{word-spacing:174.738667pt;}
._1f{margin-left:-175.168267pt;}
._1e{margin-left:-75.562667pt;}
._1c{margin-left:-17.426667pt;}
._12{margin-left:-5.973867pt;}
._10{margin-left:-5.002400pt;}
._14{margin-left:-3.890933pt;}
._1{margin-left:-2.736000pt;}
._2{margin-left:-1.002667pt;}
._5{width:1.349600pt;}
._4{width:2.290667pt;}
._9{width:3.226667pt;}
._7{width:4.784000pt;}
._6{width:5.823733pt;}
._8{width:6.774667pt;}
._15{width:7.868800pt;}
._d{width:8.870400pt;}
._b{width:10.346133pt;}
._a{width:11.456000pt;}
._25{width:12.388000pt;}
._17{width:13.314400pt;}
._16{width:14.223200pt;}
._1a{width:16.004800pt;}
._e{width:17.077067pt;}
._f{width:18.213600pt;}
._22{width:19.215200pt;}
._21{width:20.626667pt;}
._23{width:22.025333pt;}
._24{width:23.324267pt;}
._28{width:24.336533pt;}
._20{width:25.530400pt;}
._27{width:27.058133pt;}
._26{width:31.763467pt;}
._18{width:38.617920pt;}
._11{width:76.048000pt;}
._1b{width:99.176000pt;}
._1d{width:174.738667pt;}
._c{width:216.645333pt;}
._13{width:399.403467pt;}
._0{width:514.133333pt;}
._19{width:904.099733pt;}
._29{width:906.433067pt;}
._3{width:911.793067pt;}
.fs9{font-size:27.984000pt;}
.fs8{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs6{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y62{bottom:94.477733pt;}
.y44{bottom:94.483067pt;}
.y1e{bottom:94.489600pt;}
.y61{bottom:109.813733pt;}
.y43{bottom:109.819067pt;}
.y1d{bottom:112.628933pt;}
.y60{bottom:125.149733pt;}
.y42{bottom:127.817733pt;}
.y81{bottom:131.763867pt;}
.y1c{bottom:138.327600pt;}
.y5f{bottom:140.485733pt;}
.y41{bottom:146.930667pt;}
.y80{bottom:149.767867pt;}
.y5e{bottom:158.484400pt;}
.y1b{bottom:164.026267pt;}
.y40{bottom:166.043733pt;}
.y7f{bottom:175.331867pt;}
.y7e{bottom:193.335867pt;}
.y1a{bottom:200.299600pt;}
.y3f{bottom:205.227733pt;}
.y7d{bottom:211.339867pt;}
.y19{bottom:219.112933pt;}
.y3e{bottom:223.413067pt;}
.y7c{bottom:236.903867pt;}
.y18{bottom:237.934800pt;}
.y5d{bottom:239.353733pt;}
.y3d{bottom:241.598400pt;}
.y7b{bottom:254.907867pt;}
.y17{bottom:255.401467pt;}
.y3c{bottom:259.783733pt;}
.y5c{bottom:260.207067pt;}
.y16{bottom:272.868133pt;}
.y3b{bottom:277.969067pt;}
.y7a{bottom:280.471867pt;}
.y5b{bottom:281.060400pt;}
.y15{bottom:290.334800pt;}
.y3a{bottom:296.154400pt;}
.y79{bottom:298.475867pt;}
.y5a{bottom:301.913733pt;}
.y14{bottom:307.801467pt;}
.y39{bottom:314.339733pt;}
.y59{bottom:322.767067pt;}
.y78{bottom:324.039867pt;}
.y38{bottom:332.525067pt;}
.y13{bottom:336.614800pt;}
.y77{bottom:342.043867pt;}
.y58{bottom:343.620400pt;}
.y37{bottom:350.710400pt;}
.y57{bottom:364.473733pt;}
.y93{bottom:367.481200pt;}
.y76{bottom:367.607867pt;}
.y36{bottom:368.895733pt;}
.y12{bottom:380.548133pt;}
.y56{bottom:385.327067pt;}
.y92{bottom:385.481200pt;}
.y75{bottom:385.611867pt;}
.y35{bottom:387.086667pt;}
.y11{bottom:399.361467pt;}
.y91{bottom:403.481200pt;}
.y34{bottom:405.283333pt;}
.y55{bottom:406.180400pt;}
.y74{bottom:411.175867pt;}
.y10{bottom:418.193200pt;}
.y90{bottom:421.481200pt;}
.y33{bottom:423.468667pt;}
.y54{bottom:427.033733pt;}
.y73{bottom:429.179867pt;}
.yf{bottom:435.659867pt;}
.y32{bottom:441.681867pt;}
.y53{bottom:447.887067pt;}
.y8f{bottom:450.814533pt;}
.ye{bottom:453.126533pt;}
.y72{bottom:454.743867pt;}
.y31{bottom:459.867200pt;}
.y52{bottom:468.740400pt;}
.yd{bottom:470.593200pt;}
.y71{bottom:472.747867pt;}
.y30{bottom:478.052533pt;}
.y8e{bottom:487.707867pt;}
.yc{bottom:488.059867pt;}
.y51{bottom:489.593733pt;}
.y70{bottom:498.311867pt;}
.y2f{bottom:503.797200pt;}
.y8d{bottom:505.041200pt;}
.y50{bottom:510.447067pt;}
.y6f{bottom:516.315867pt;}
.yb{bottom:516.873200pt;}
.y2e{bottom:521.982533pt;}
.y8c{bottom:522.374533pt;}
.y4f{bottom:531.300400pt;}
.y8b{bottom:539.707867pt;}
.y6e{bottom:541.879867pt;}
.y2d{bottom:547.749867pt;}
.y8a{bottom:557.041200pt;}
.y6d{bottom:559.883867pt;}
.y2c{bottom:565.935200pt;}
.ya{bottom:568.362267pt;}
.y4e{bottom:573.007067pt;}
.y89{bottom:574.374533pt;}
.y2b{bottom:584.120533pt;}
.y6c{bottom:585.447867pt;}
.y88{bottom:591.707867pt;}
.y4d{bottom:593.860400pt;}
.y2a{bottom:602.305867pt;}
.y6b{bottom:603.451867pt;}
.y87{bottom:609.041200pt;}
.y9{bottom:611.387867pt;}
.y4c{bottom:614.713733pt;}
.y29{bottom:620.491200pt;}
.y86{bottom:626.374533pt;}
.y6a{bottom:629.015867pt;}
.y4b{bottom:635.567067pt;}
.y8{bottom:639.539867pt;}
.y69{bottom:647.019867pt;}
.y85{bottom:655.041200pt;}
.y28{bottom:656.884533pt;}
.y68{bottom:672.583867pt;}
.y27{bottom:675.069867pt;}
.y4a{bottom:677.273733pt;}
.y67{bottom:690.587867pt;}
.y26{bottom:693.289200pt;}
.y7{bottom:694.134667pt;}
.y49{bottom:698.133067pt;}
.y84{bottom:706.390267pt;}
.y25{bottom:711.474533pt;}
.y66{bottom:716.151867pt;}
.y48{bottom:718.986400pt;}
.y6{bottom:720.494667pt;}
.y24{bottom:729.659867pt;}
.y65{bottom:734.155867pt;}
.y5{bottom:739.308000pt;}
.y47{bottom:739.839733pt;}
.y23{bottom:747.845200pt;}
.y64{bottom:759.719867pt;}
.y46{bottom:760.693067pt;}
.y4{bottom:765.668000pt;}
.y22{bottom:766.030533pt;}
.y83{bottom:767.279867pt;}
.y63{bottom:777.723867pt;}
.y45{bottom:781.547867pt;}
.y21{bottom:784.215867pt;}
.y3{bottom:784.481333pt;}
.y82{bottom:785.283867pt;}
.y20{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1f{bottom:842.834667pt;}
.hb{height:30.107146pt;}
.ha{height:36.229167pt;}
.he{height:36.388396pt;}
.hc{height:40.757812pt;}
.h4{height:45.286458pt;}
.hf{height:47.039062pt;}
.h3{height:47.550781pt;}
.h9{height:52.079427pt;}
.h7{height:52.265625pt;}
.hd{height:53.277344pt;}
.h10{height:54.878906pt;}
.h2{height:56.608073pt;}
.h8{height:60.105469pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:71.578933pt;}
.x7{left:74.388133pt;}
.x1{left:75.590533pt;}
.x9{left:90.839600pt;}
.x5{left:93.360533pt;}
.x6{left:94.262667pt;}
.x3{left:205.922800pt;}
.x4{left:206.867200pt;}
.x2{left:207.820000pt;}
}




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