
    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_280eefcbbe0e3b8b55f71b08.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.903000;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_132c91a92e20aadaa228ba5a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_61e2d59bc964edd847b0fdf7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_bc1f89c865516abb74268720.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_416c4c5268046e6d3b2c36f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_ecd5f57ea3a2e9a3e49d5315.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.683000;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_faaa9d54af32bc44a6ac31ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.389000;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_55e4b5e0e7131051a33aea37.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:25.920022px;}
.ls1{letter-spacing:30.109116px;}
.ls3{letter-spacing:32.727300px;}
.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;}
}
.ws41{word-spacing:-18.183288px;}
.ws54{word-spacing:-16.730196px;}
.ws46{word-spacing:-2.801457px;}
.ws51{word-spacing:-2.408729px;}
.ws1b{word-spacing:-2.343275px;}
.wsb{word-spacing:-1.661762px;}
.ws3e{word-spacing:-1.492365px;}
.ws2{word-spacing:-1.064006px;}
.ws1c{word-spacing:0.000000px;}
.ws3a{word-spacing:0.340364px;}
.ws4a{word-spacing:0.405819px;}
.ws10{word-spacing:0.929455px;}
.ws11{word-spacing:0.994910px;}
.ws43{word-spacing:1.060365px;}
.ws52{word-spacing:1.138910px;}
.ws4e{word-spacing:1.256728px;}
.ws3f{word-spacing:1.453092px;}
.ws20{word-spacing:1.649456px;}
.wse{word-spacing:2.163877px;}
.ws47{word-spacing:2.304002px;}
.ws4c{word-spacing:2.369457px;}
.ws33{word-spacing:2.434911px;}
.ws13{word-spacing:2.500366px;}
.ws36{word-spacing:2.893093px;}
.ws15{word-spacing:3.089457px;}
.ws3c{word-spacing:3.154912px;}
.ws5{word-spacing:3.299613px;}
.ws31{word-spacing:3.482185px;}
.ws14{word-spacing:3.613094px;}
.ws7{word-spacing:3.897369px;}
.ws17{word-spacing:3.940367px;}
.ws24{word-spacing:4.267640px;}
.ws55{word-spacing:4.529458px;}
.ws1a{word-spacing:4.725822px;}
.ws56{word-spacing:4.791277px;}
.ws48{word-spacing:4.869822px;}
.ws39{word-spacing:5.053095px;}
.ws4{word-spacing:5.391759px;}
.wsc{word-spacing:5.511310px;}
.ws12{word-spacing:5.773096px;}
.ws3{word-spacing:5.810188px;}
.ws27{word-spacing:6.165823px;}
.ws2e{word-spacing:6.231278px;}
.ws19{word-spacing:6.558551px;}
.ws2d{word-spacing:6.624006px;}
.ws49{word-spacing:6.702551px;}
.ws29{word-spacing:6.820369px;}
.ws34{word-spacing:6.951279px;}
.ws50{word-spacing:7.409461px;}
.ws2c{word-spacing:7.671279px;}
.ws40{word-spacing:8.064007px;}
.ws32{word-spacing:8.129461px;}
.ws25{word-spacing:8.325825px;}
.ws2b{word-spacing:8.587644px;}
.ws30{word-spacing:8.784007px;}
.ws45{word-spacing:9.045826px;}
.ws42{word-spacing:9.242190px;}
.ws3d{word-spacing:9.438553px;}
.ws18{word-spacing:9.634917px;}
.ws4b{word-spacing:10.224009px;}
.ws38{word-spacing:10.289463px;}
.ws26{word-spacing:10.682191px;}
.ws4d{word-spacing:10.813100px;}
.ws22{word-spacing:10.878555px;}
.wsd{word-spacing:10.891114px;}
.ws3b{word-spacing:11.598555px;}
.ws16{word-spacing:11.729464px;}
.ws35{word-spacing:11.794919px;}
.ws9{word-spacing:12.026851px;}
.ws2f{word-spacing:12.122192px;}
.wsa{word-spacing:12.206178px;}
.ws6{word-spacing:12.385504px;}
.ws53{word-spacing:12.724374px;}
.ws8{word-spacing:12.863709px;}
.ws28{word-spacing:13.234920px;}
.ws4f{word-spacing:13.300375px;}
.ws44{word-spacing:13.562193px;}
.ws37{word-spacing:13.758557px;}
.ws1e{word-spacing:14.544012px;}
.ws1{word-spacing:23.312640px;}
.ws23{word-spacing:25.789112px;}
.ws2a{word-spacing:26.827469px;}
.ws1f{word-spacing:28.080023px;}
.ws0{word-spacing:31.091012px;}
.ws1d{word-spacing:32.192873px;}
.ws21{word-spacing:33.381846px;}
.wsf{word-spacing:96.750773px;}
._22{margin-left:-30.885589px;}
._1{margin-left:-8.160100px;}
._a{margin-left:-4.961375px;}
._e{margin-left:-3.726985px;}
._0{margin-left:-2.685602px;}
._3{margin-left:-1.187882px;}
._5{width:1.673717px;}
._2{width:2.757334px;}
._18{width:3.824470px;}
._21{width:15.645613px;}
._14{width:17.018196px;}
._c{width:18.067433px;}
._f{width:20.554708px;}
._17{width:22.516382px;}
._13{width:23.958347px;}
._11{width:25.332894px;}
._d{width:27.268880px;}
._7{width:28.493402px;}
._1e{width:29.782202px;}
._6{width:30.896356px;}
._8{width:32.490712px;}
._4{width:34.598143px;}
._10{width:35.663508px;}
._12{width:37.438520px;}
._1c{width:39.803682px;}
._1a{width:41.371235px;}
._16{width:43.211699px;}
._1f{width:44.967310px;}
._20{width:46.540635px;}
._b{width:49.180033px;}
._9{width:53.319835px;}
._1b{width:55.426484px;}
._23{width:58.239455px;}
._1d{width:60.458386px;}
._19{width:80.697600px;}
._15{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y26{bottom:63.168000px;}
.y5b{bottom:108.000000px;}
.y5a{bottom:128.323500px;}
.y59{bottom:148.647000px;}
.y25{bottom:150.742500px;}
.y24{bottom:171.066000px;}
.y58{bottom:185.176500px;}
.y23{bottom:191.389500px;}
.y22{bottom:211.713000px;}
.y21{bottom:232.038000px;}
.y57{bottom:236.274000px;}
.y44{bottom:243.930000px;}
.y20{bottom:252.361500px;}
.y56{bottom:256.597500px;}
.y43{bottom:264.253500px;}
.y1f{bottom:272.685000px;}
.y55{bottom:291.928500px;}
.y1e{bottom:293.008500px;}
.y42{bottom:295.144500px;}
.y1d{bottom:313.332000px;}
.y54{bottom:324.727500px;}
.y41{bottom:332.271000px;}
.y1c{bottom:333.657000px;}
.y1b{bottom:353.980500px;}
.y53{bottom:357.525000px;}
.y1a{bottom:374.304000px;}
.y40{bottom:383.829000px;}
.y52{bottom:390.322500px;}
.y19{bottom:394.627500px;}
.y3f{bottom:404.152500px;}
.y18{bottom:414.951000px;}
.y4e{bottom:421.827000px;}
.y3e{bottom:424.477500px;}
.y51{bottom:425.653500px;}
.y4a{bottom:435.202500px;}
.y17{bottom:435.276000px;}
.y4d{bottom:442.152000px;}
.y3d{bottom:444.801000px;}
.y49{bottom:455.526000px;}
.y50{bottom:462.181500px;}
.y4c{bottom:462.475500px;}
.y3c{bottom:465.124500px;}
.y16{bottom:471.804000px;}
.y48{bottom:486.418500px;}
.y3b{bottom:496.017000px;}
.y4b{bottom:499.003500px;}
.y4f{bottom:513.280500px;}
.y15{bottom:523.362000px;}
.y47{bottom:536.335500px;}
.y3a{bottom:539.835000px;}
.y14{bottom:541.294500px;}
.y70{bottom:541.884000px;}
.y46{bottom:556.659000px;}
.y13{bottom:559.227000px;}
.y39{bottom:560.160000px;}
.y6f{bottom:562.207500px;}
.y45{bottom:576.982500px;}
.y12{bottom:577.159500px;}
.y38{bottom:580.483500px;}
.y6e{bottom:582.532500px;}
.y11{bottom:595.093500px;}
.y81{bottom:600.831000px;}
.y6d{bottom:602.856000px;}
.y37{bottom:611.374500px;}
.y10{bottom:613.026000px;}
.y80{bottom:621.156000px;}
.y6c{bottom:623.179500px;}
.yf{bottom:630.958500px;}
.y6b{bottom:643.503000px;}
.y36{bottom:648.501000px;}
.ye{bottom:648.891000px;}
.y7f{bottom:654.928500px;}
.y6a{bottom:663.826500px;}
.yd{bottom:666.823500px;}
.y7e{bottom:675.252000px;}
.yc{bottom:684.756000px;}
.y35{bottom:700.059000px;}
.y69{bottom:700.356000px;}
.yb{bottom:702.690000px;}
.y7d{bottom:709.026000px;}
.y34{bottom:720.382500px;}
.ya{bottom:720.622500px;}
.y7c{bottom:729.349500px;}
.y9{bottom:738.555000px;}
.y33{bottom:740.707500px;}
.y7b{bottom:749.673000px;}
.y68{bottom:751.914000px;}
.y8{bottom:756.487500px;}
.y32{bottom:761.031000px;}
.y67{bottom:772.237500px;}
.y7{bottom:774.420000px;}
.y31{bottom:781.354500px;}
.y7a{bottom:783.447000px;}
.y66{bottom:792.561000px;}
.y30{bottom:801.678000px;}
.y6{bottom:801.693000px;}
.y79{bottom:803.770500px;}
.y65{bottom:812.884500px;}
.y2f{bottom:822.001500px;}
.y78{bottom:824.094000px;}
.y64{bottom:833.208000px;}
.y77{bottom:857.868000px;}
.y2e{bottom:860.259000px;}
.y5{bottom:862.104000px;}
.y63{bottom:869.737500px;}
.y76{bottom:878.191500px;}
.y2d{bottom:880.582500px;}
.y75{bottom:898.515000px;}
.y4{bottom:898.692000px;}
.y2c{bottom:914.356500px;}
.y74{bottom:918.838500px;}
.y3{bottom:919.614000px;}
.y62{bottom:921.295500px;}
.y2b{bottom:934.680000px;}
.y61{bottom:941.619000px;}
.y73{bottom:952.612500px;}
.y60{bottom:961.942500px;}
.y2{bottom:965.080500px;}
.y2a{bottom:968.452500px;}
.y72{bottom:972.936000px;}
.y5f{bottom:982.266000px;}
.y29{bottom:988.777500px;}
.y1{bottom:997.957500px;}
.y5e{bottom:1002.591000px;}
.y71{bottom:1006.710000px;}
.y5d{bottom:1022.914500px;}
.y28{bottom:1027.033500px;}
.y5c{bottom:1043.238000px;}
.y27{bottom:1063.561500px;}
.h3{height:44.831700px;}
.h5{height:49.090950px;}
.h6{height:50.211840px;}
.h2{height:53.798400px;}
.h4{height:60.254040px;}
.h1{height:72.201388px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.xc{left:127.999500px;}
.xa{left:133.405500px;}
.x8{left:148.909500px;}
.x7{left:171.325500px;}
.x1{left:190.209000px;}
.x2{left:202.257000px;}
.x4{left:272.748000px;}
.x5{left:386.449500px;}
.x3{left:405.426000px;}
.x6{left:426.123000px;}
.xd{left:450.817500px;}
.xb{left:454.909500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:23.040019pt;}
.ls1{letter-spacing:26.763659pt;}
.ls3{letter-spacing:29.090933pt;}
.ws41{word-spacing:-16.162923pt;}
.ws54{word-spacing:-14.871285pt;}
.ws46{word-spacing:-2.490184pt;}
.ws51{word-spacing:-2.141093pt;}
.ws1b{word-spacing:-2.082911pt;}
.wsb{word-spacing:-1.477121pt;}
.ws3e{word-spacing:-1.326547pt;}
.ws2{word-spacing:-0.945783pt;}
.ws1c{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.302546pt;}
.ws4a{word-spacing:0.360728pt;}
.ws10{word-spacing:0.826183pt;}
.ws11{word-spacing:0.884364pt;}
.ws43{word-spacing:0.942546pt;}
.ws52{word-spacing:1.012364pt;}
.ws4e{word-spacing:1.117092pt;}
.ws3f{word-spacing:1.291637pt;}
.ws20{word-spacing:1.466183pt;}
.wse{word-spacing:1.923446pt;}
.ws47{word-spacing:2.048002pt;}
.ws4c{word-spacing:2.106184pt;}
.ws33{word-spacing:2.164365pt;}
.ws13{word-spacing:2.222547pt;}
.ws36{word-spacing:2.571639pt;}
.ws15{word-spacing:2.746184pt;}
.ws3c{word-spacing:2.804366pt;}
.ws5{word-spacing:2.932989pt;}
.ws31{word-spacing:3.095275pt;}
.ws14{word-spacing:3.211639pt;}
.ws7{word-spacing:3.464328pt;}
.ws17{word-spacing:3.502548pt;}
.ws24{word-spacing:3.793458pt;}
.ws55{word-spacing:4.026185pt;}
.ws1a{word-spacing:4.200731pt;}
.ws56{word-spacing:4.258913pt;}
.ws48{word-spacing:4.328731pt;}
.ws39{word-spacing:4.491640pt;}
.ws4{word-spacing:4.792675pt;}
.wsc{word-spacing:4.898943pt;}
.ws12{word-spacing:5.131641pt;}
.ws3{word-spacing:5.164612pt;}
.ws27{word-spacing:5.480732pt;}
.ws2e{word-spacing:5.538914pt;}
.ws19{word-spacing:5.829823pt;}
.ws2d{word-spacing:5.888005pt;}
.ws49{word-spacing:5.957823pt;}
.ws29{word-spacing:6.062551pt;}
.ws34{word-spacing:6.178914pt;}
.ws50{word-spacing:6.586187pt;}
.ws2c{word-spacing:6.818915pt;}
.ws40{word-spacing:7.168006pt;}
.ws32{word-spacing:7.226188pt;}
.ws25{word-spacing:7.400733pt;}
.ws2b{word-spacing:7.633461pt;}
.ws30{word-spacing:7.808007pt;}
.ws45{word-spacing:8.040734pt;}
.ws42{word-spacing:8.215280pt;}
.ws3d{word-spacing:8.389825pt;}
.ws18{word-spacing:8.564371pt;}
.ws4b{word-spacing:9.088008pt;}
.ws38{word-spacing:9.146189pt;}
.ws26{word-spacing:9.495281pt;}
.ws4d{word-spacing:9.611644pt;}
.ws22{word-spacing:9.669826pt;}
.wsd{word-spacing:9.680991pt;}
.ws3b{word-spacing:10.309827pt;}
.ws16{word-spacing:10.426191pt;}
.ws35{word-spacing:10.484372pt;}
.ws9{word-spacing:10.690534pt;}
.ws2f{word-spacing:10.775282pt;}
.wsa{word-spacing:10.849936pt;}
.ws6{word-spacing:11.009337pt;}
.ws53{word-spacing:11.310555pt;}
.ws8{word-spacing:11.434408pt;}
.ws28{word-spacing:11.764373pt;}
.ws4f{word-spacing:11.822555pt;}
.ws44{word-spacing:12.055283pt;}
.ws37{word-spacing:12.229828pt;}
.ws1e{word-spacing:12.928011pt;}
.ws1{word-spacing:20.722347pt;}
.ws23{word-spacing:22.923655pt;}
.ws2a{word-spacing:23.846639pt;}
.ws1f{word-spacing:24.960021pt;}
.ws0{word-spacing:27.636455pt;}
.ws1d{word-spacing:28.615887pt;}
.ws21{word-spacing:29.672752pt;}
.wsf{word-spacing:86.000687pt;}
._22{margin-left:-27.453857pt;}
._1{margin-left:-7.253422pt;}
._a{margin-left:-4.410111pt;}
._e{margin-left:-3.312875pt;}
._0{margin-left:-2.387202pt;}
._3{margin-left:-1.055895pt;}
._5{width:1.487748pt;}
._2{width:2.450963pt;}
._18{width:3.399529pt;}
._21{width:13.907212pt;}
._14{width:15.127285pt;}
._c{width:16.059941pt;}
._f{width:18.270852pt;}
._17{width:20.014562pt;}
._13{width:21.296309pt;}
._11{width:22.518128pt;}
._d{width:24.239004pt;}
._7{width:25.327469pt;}
._1e{width:26.473068pt;}
._6{width:27.463427pt;}
._8{width:28.880633pt;}
._4{width:30.753905pt;}
._10{width:31.700896pt;}
._12{width:33.278684pt;}
._1c{width:35.381051pt;}
._1a{width:36.774431pt;}
._16{width:38.410399pt;}
._1f{width:39.970942pt;}
._20{width:41.369453pt;}
._b{width:43.715585pt;}
._9{width:47.395409pt;}
._1b{width:49.267986pt;}
._23{width:51.768405pt;}
._1d{width:53.740787pt;}
._19{width:71.731200pt;}
._15{width:86.077200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:56.149333pt;}
.y5b{bottom:96.000000pt;}
.y5a{bottom:114.065333pt;}
.y59{bottom:132.130667pt;}
.y25{bottom:133.993333pt;}
.y24{bottom:152.058667pt;}
.y58{bottom:164.601333pt;}
.y23{bottom:170.124000pt;}
.y22{bottom:188.189333pt;}
.y21{bottom:206.256000pt;}
.y57{bottom:210.021333pt;}
.y44{bottom:216.826667pt;}
.y20{bottom:224.321333pt;}
.y56{bottom:228.086667pt;}
.y43{bottom:234.892000pt;}
.y1f{bottom:242.386667pt;}
.y55{bottom:259.492000pt;}
.y1e{bottom:260.452000pt;}
.y42{bottom:262.350667pt;}
.y1d{bottom:278.517333pt;}
.y54{bottom:288.646667pt;}
.y41{bottom:295.352000pt;}
.y1c{bottom:296.584000pt;}
.y1b{bottom:314.649333pt;}
.y53{bottom:317.800000pt;}
.y1a{bottom:332.714667pt;}
.y40{bottom:341.181333pt;}
.y52{bottom:346.953333pt;}
.y19{bottom:350.780000pt;}
.y3f{bottom:359.246667pt;}
.y18{bottom:368.845333pt;}
.y4e{bottom:374.957333pt;}
.y3e{bottom:377.313333pt;}
.y51{bottom:378.358667pt;}
.y4a{bottom:386.846667pt;}
.y17{bottom:386.912000pt;}
.y4d{bottom:393.024000pt;}
.y3d{bottom:395.378667pt;}
.y49{bottom:404.912000pt;}
.y50{bottom:410.828000pt;}
.y4c{bottom:411.089333pt;}
.y3c{bottom:413.444000pt;}
.y16{bottom:419.381333pt;}
.y48{bottom:432.372000pt;}
.y3b{bottom:440.904000pt;}
.y4b{bottom:443.558667pt;}
.y4f{bottom:456.249333pt;}
.y15{bottom:465.210667pt;}
.y47{bottom:476.742667pt;}
.y3a{bottom:479.853333pt;}
.y14{bottom:481.150667pt;}
.y70{bottom:481.674667pt;}
.y46{bottom:494.808000pt;}
.y13{bottom:497.090667pt;}
.y39{bottom:497.920000pt;}
.y6f{bottom:499.740000pt;}
.y45{bottom:512.873333pt;}
.y12{bottom:513.030667pt;}
.y38{bottom:515.985333pt;}
.y6e{bottom:517.806667pt;}
.y11{bottom:528.972000pt;}
.y81{bottom:534.072000pt;}
.y6d{bottom:535.872000pt;}
.y37{bottom:543.444000pt;}
.y10{bottom:544.912000pt;}
.y80{bottom:552.138667pt;}
.y6c{bottom:553.937333pt;}
.yf{bottom:560.852000pt;}
.y6b{bottom:572.002667pt;}
.y36{bottom:576.445333pt;}
.ye{bottom:576.792000pt;}
.y7f{bottom:582.158667pt;}
.y6a{bottom:590.068000pt;}
.yd{bottom:592.732000pt;}
.y7e{bottom:600.224000pt;}
.yc{bottom:608.672000pt;}
.y35{bottom:622.274667pt;}
.y69{bottom:622.538667pt;}
.yb{bottom:624.613333pt;}
.y7d{bottom:630.245333pt;}
.y34{bottom:640.340000pt;}
.ya{bottom:640.553333pt;}
.y7c{bottom:648.310667pt;}
.y9{bottom:656.493333pt;}
.y33{bottom:658.406667pt;}
.y7b{bottom:666.376000pt;}
.y68{bottom:668.368000pt;}
.y8{bottom:672.433333pt;}
.y32{bottom:676.472000pt;}
.y67{bottom:686.433333pt;}
.y7{bottom:688.373333pt;}
.y31{bottom:694.537333pt;}
.y7a{bottom:696.397333pt;}
.y66{bottom:704.498667pt;}
.y30{bottom:712.602667pt;}
.y6{bottom:712.616000pt;}
.y79{bottom:714.462667pt;}
.y65{bottom:722.564000pt;}
.y2f{bottom:730.668000pt;}
.y78{bottom:732.528000pt;}
.y64{bottom:740.629333pt;}
.y77{bottom:762.549333pt;}
.y2e{bottom:764.674667pt;}
.y5{bottom:766.314667pt;}
.y63{bottom:773.100000pt;}
.y76{bottom:780.614667pt;}
.y2d{bottom:782.740000pt;}
.y75{bottom:798.680000pt;}
.y4{bottom:798.837333pt;}
.y2c{bottom:812.761333pt;}
.y74{bottom:816.745333pt;}
.y3{bottom:817.434667pt;}
.y62{bottom:818.929333pt;}
.y2b{bottom:830.826667pt;}
.y61{bottom:836.994667pt;}
.y73{bottom:846.766667pt;}
.y60{bottom:855.060000pt;}
.y2{bottom:857.849333pt;}
.y2a{bottom:860.846667pt;}
.y72{bottom:864.832000pt;}
.y5f{bottom:873.125333pt;}
.y29{bottom:878.913333pt;}
.y1{bottom:887.073333pt;}
.y5e{bottom:891.192000pt;}
.y71{bottom:894.853333pt;}
.y5d{bottom:909.257333pt;}
.y28{bottom:912.918667pt;}
.y5c{bottom:927.322667pt;}
.y27{bottom:945.388000pt;}
.h3{height:39.850400pt;}
.h5{height:43.636400pt;}
.h6{height:44.632747pt;}
.h2{height:47.820800pt;}
.h4{height:53.559147pt;}
.h1{height:64.179011pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.xc{left:113.777333pt;}
.xa{left:118.582667pt;}
.x8{left:132.364000pt;}
.x7{left:152.289333pt;}
.x1{left:169.074667pt;}
.x2{left:179.784000pt;}
.x4{left:242.442667pt;}
.x5{left:343.510667pt;}
.x3{left:360.378667pt;}
.x6{left:378.776000pt;}
.xd{left:400.726667pt;}
.xb{left:404.364000pt;}
}




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