
    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_81e52c6fe8909b72add307ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_1cc85b58b9b19805f5c79bbc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.224121;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_d2434d83c72c8f3db5b7e584.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_994481a5a307cce1cd6a1fb3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-2.848320px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.993600px;}
.ls11{letter-spacing:-0.861120px;}
.ls12{letter-spacing:-0.662400px;}
.ls8{letter-spacing:-0.529920px;}
.ls7{letter-spacing:-0.463680px;}
.ls17{letter-spacing:-0.378000px;}
.lsa{letter-spacing:-0.331200px;}
.ls18{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.264960px;}
.lsf{letter-spacing:-0.198720px;}
.lse{letter-spacing:-0.155520px;}
.lsd{letter-spacing:-0.132480px;}
.lsc{letter-spacing:-0.066240px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.066240px;}
.ls3{letter-spacing:0.083520px;}
.ls16{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.132480px;}
.lsb{letter-spacing:0.198720px;}
.ls4{letter-spacing:0.239040px;}
.ls1{letter-spacing:0.251712px;}
.ls5{letter-spacing:0.264960px;}
.ls19{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.317952px;}
.ls15{letter-spacing:0.734400px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1c{word-spacing:-21.539520px;}
.ws1b{word-spacing:-18.745920px;}
.ws1d{word-spacing:-18.679680px;}
.ws8{word-spacing:-18.613440px;}
.ws4{word-spacing:-18.547200px;}
.ws3{word-spacing:-18.480960px;}
.ws6{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.348480px;}
.ws21{word-spacing:-18.282240px;}
.ws2{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.149760px;}
.ws1{word-spacing:-17.951040px;}
.ws24{word-spacing:-15.120000px;}
.ws22{word-spacing:-14.796000px;}
.ws23{word-spacing:-14.688000px;}
.ws16{word-spacing:-0.728640px;}
.ws13{word-spacing:-0.662400px;}
.ws15{word-spacing:-0.529920px;}
.ws1a{word-spacing:-0.463680px;}
.ws1e{word-spacing:-0.331200px;}
.ws12{word-spacing:-0.264960px;}
.ws27{word-spacing:-0.216000px;}
.wsc{word-spacing:-0.198720px;}
.ws1f{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:0.066240px;}
.wsd{word-spacing:0.077760px;}
.ws9{word-spacing:0.198720px;}
.wse{word-spacing:0.264960px;}
.ws28{word-spacing:0.324000px;}
.wsb{word-spacing:0.331200px;}
.wsf{word-spacing:0.397440px;}
.ws26{word-spacing:0.432000px;}
.wsa{word-spacing:0.463680px;}
.ws17{word-spacing:0.529920px;}
.ws10{word-spacing:0.596160px;}
.ws19{word-spacing:0.728640px;}
.ws25{word-spacing:0.794880px;}
.ws18{word-spacing:0.927360px;}
.ws14{word-spacing:1.126080px;}
.ws20{word-spacing:1.258560px;}
._3{margin-left:-2.199168px;}
._0{margin-left:-1.020096px;}
._1{width:1.404288px;}
._5{width:27.373248px;}
._6{width:193.919040px;}
._4{width:334.975680px;}
._7{width:714.464640px;}
._2{width:979.358400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:57.607200px;}
.y5{bottom:66.525004px;}
.y26{bottom:77.760720px;}
.y25{bottom:97.020000px;}
.y4{bottom:97.125005px;}
.y4f{bottom:119.154960px;}
.y97{bottom:125.444160px;}
.y7a{bottom:128.334960px;}
.y22{bottom:139.264499px;}
.y4e{bottom:141.295680px;}
.yb9{bottom:145.800000px;}
.y96{bottom:147.584880px;}
.y79{bottom:150.475680px;}
.y4d{bottom:163.436400px;}
.yb8{bottom:167.939280px;}
.y95{bottom:169.725600px;}
.y78{bottom:172.616400px;}
.y4c{bottom:185.577120px;}
.yb7{bottom:190.080000px;}
.y94{bottom:191.866320px;}
.y77{bottom:194.757120px;}
.y19{bottom:196.933500px;}
.y4b{bottom:207.717840px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y93{bottom:214.007040px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y4a{bottom:229.858560px;}
.yb6{bottom:233.280000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y76{bottom:237.780000px;}
.y49{bottom:251.999280px;}
.yb5{bottom:255.420720px;}
.y92{bottom:257.029920px;}
.y1e{bottom:259.918497px;}
.y75{bottom:259.920720px;}
.y15{bottom:259.933500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y48{bottom:274.140000px;}
.yb4{bottom:277.561440px;}
.y91{bottom:279.170640px;}
.y74{bottom:282.061440px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.yb3{bottom:299.520000px;}
.y90{bottom:301.311360px;}
.y73{bottom:304.202160px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y47{bottom:317.338560px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y8f{bottom:323.452080px;}
.y72{bottom:326.342880px;}
.y46{bottom:339.479280px;}
.yb2{bottom:342.718560px;}
.y8e{bottom:345.592800px;}
.y10{bottom:348.133500px;}
.y71{bottom:348.483600px;}
.y45{bottom:361.620000px;}
.yb1{bottom:364.859280px;}
.y8d{bottom:367.733520px;}
.y70{bottom:370.624320px;}
.y44{bottom:383.758560px;}
.yf{bottom:386.785499px;}
.yb0{bottom:387.000000px;}
.y8c{bottom:389.874240px;}
.y6f{bottom:392.765040px;}
.y43{bottom:405.899280px;}
.ye{bottom:408.044999px;}
.y8b{bottom:412.014960px;}
.y6e{bottom:414.905760px;}
.y42{bottom:428.040000px;}
.yaf{bottom:430.199280px;}
.y8a{bottom:434.155680px;}
.y6d{bottom:437.046480px;}
.y41{bottom:449.997840px;}
.yae{bottom:452.340000px;}
.y89{bottom:456.296400px;}
.y40{bottom:472.138560px;}
.y88{bottom:478.437120px;}
.y6c{bottom:480.251520px;}
.yd{bottom:484.864502px;}
.y3f{bottom:494.279280px;}
.yad{bottom:496.440000px;}
.y6b{bottom:499.477680px;}
.y87{bottom:500.577840px;}
.yc{bottom:502.864502px;}
.y3e{bottom:516.420000px;}
.yb{bottom:520.864502px;}
.y6a{bottom:521.618400px;}
.y86{bottom:522.718560px;}
.ya{bottom:538.864499px;}
.yac{bottom:542.517120px;}
.y69{bottom:543.576960px;}
.y85{bottom:544.859280px;}
.y9{bottom:556.864499px;}
.y3d{bottom:559.619280px;}
.yab{bottom:564.657840px;}
.y68{bottom:565.717680px;}
.y84{bottom:567.000000px;}
.y3c{bottom:581.760000px;}
.yaa{bottom:586.798560px;}
.y67{bottom:587.858400px;}
.y3b{bottom:603.900000px;}
.ya9{bottom:608.939280px;}
.y66{bottom:609.999120px;}
.y83{bottom:610.016400px;}
.y3a{bottom:626.039280px;}
.ya8{bottom:631.080000px;}
.y65{bottom:632.139840px;}
.y82{bottom:632.157120px;}
.y8{bottom:645.510000px;}
.y39{bottom:648.180000px;}
.ya7{bottom:653.212080px;}
.y64{bottom:654.280560px;}
.y81{bottom:654.297840px;}
.y7{bottom:666.771000px;}
.y38{bottom:670.320000px;}
.ya6{bottom:675.352800px;}
.y63{bottom:676.421280px;}
.y80{bottom:676.438560px;}
.y37{bottom:692.456400px;}
.ya5{bottom:697.493520px;}
.y62{bottom:698.562000px;}
.y7f{bottom:698.579280px;}
.y36{bottom:714.597120px;}
.ya4{bottom:719.634240px;}
.y61{bottom:720.702720px;}
.y7e{bottom:720.720000px;}
.y6{bottom:726.298500px;}
.y35{bottom:736.737840px;}
.ya3{bottom:741.774960px;}
.y60{bottom:742.843440px;}
.y7d{bottom:742.860000px;}
.y3{bottom:752.599495px;}
.y34{bottom:758.878560px;}
.ya2{bottom:763.915680px;}
.y5f{bottom:764.984160px;}
.y33{bottom:780.837120px;}
.ya1{bottom:786.056400px;}
.y5e{bottom:787.124880px;}
.y32{bottom:803.160000px;}
.ya0{bottom:808.197120px;}
.y5d{bottom:830.329920px;}
.y9f{bottom:830.337840px;}
.y31{bottom:846.180000px;}
.y5c{bottom:852.470640px;}
.y9e{bottom:852.478560px;}
.y30{bottom:868.320000px;}
.y5b{bottom:874.429200px;}
.y9d{bottom:874.437120px;}
.y2{bottom:879.369000px;}
.ybf{bottom:885.960000px;}
.y2f{bottom:890.460000px;}
.y5a{bottom:896.569920px;}
.y9c{bottom:896.577840px;}
.ybe{bottom:907.375500px;}
.y2e{bottom:912.600000px;}
.y59{bottom:918.710640px;}
.y9b{bottom:918.718560px;}
.ybd{bottom:925.560000px;}
.y2d{bottom:934.740000px;}
.y58{bottom:940.851360px;}
.y9a{bottom:940.859280px;}
.y57{bottom:962.992080px;}
.y99{bottom:963.000000px;}
.ybc{bottom:965.340000px;}
.y1{bottom:966.726000px;}
.y2c{bottom:971.820000px;}
.y56{bottom:985.132800px;}
.y55{bottom:1007.273520px;}
.ybb{bottom:1008.354960px;}
.y2b{bottom:1011.960000px;}
.y7c{bottom:1028.337840px;}
.y54{bottom:1029.414240px;}
.y7b{bottom:1050.478560px;}
.y98{bottom:1051.554960px;}
.yba{bottom:1051.560000px;}
.y2a{bottom:1052.096400px;}
.y53{bottom:1072.619280px;}
.y52{bottom:1094.760000px;}
.y29{bottom:1097.100000px;}
.y51{bottom:1116.900720px;}
.y50{bottom:1139.041440px;}
.y28{bottom:1139.952240px;}
.y24{bottom:1169.999280px;}
.y23{bottom:1192.140000px;}
.h7{height:32.130000px;}
.ha{height:44.149219px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h14{height:49.306641px;}
.h15{height:49.324641px;}
.h2{height:55.080000px;}
.h9{height:60.482812px;}
.h13{height:60.485692px;}
.hf{height:60.488572px;}
.he{height:60.491453px;}
.hd{height:60.497213px;}
.h11{height:60.511613px;}
.h12{height:60.514492px;}
.h10{height:60.546173px;}
.hb{height:70.615102px;}
.hc{height:71.001563px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6{left:198.001440px;}
.x4{left:203.484001px;}
.xa{left:216.540000px;}
.x7{left:223.742880px;}
.x5{left:282.060000px;}
.x8{left:442.268640px;}
.x3{left:454.959000px;}
.x9{left:778.337280px;}
@media print{
.v1{vertical-align:-2.531840pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.883200pt;}
.ls11{letter-spacing:-0.765440pt;}
.ls12{letter-spacing:-0.588800pt;}
.ls8{letter-spacing:-0.471040pt;}
.ls7{letter-spacing:-0.412160pt;}
.ls17{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:-0.294400pt;}
.ls18{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.235520pt;}
.lsf{letter-spacing:-0.176640pt;}
.lse{letter-spacing:-0.138240pt;}
.lsd{letter-spacing:-0.117760pt;}
.lsc{letter-spacing:-0.058880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.058880pt;}
.ls3{letter-spacing:0.074240pt;}
.ls16{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.117760pt;}
.lsb{letter-spacing:0.176640pt;}
.ls4{letter-spacing:0.212480pt;}
.ls1{letter-spacing:0.223744pt;}
.ls5{letter-spacing:0.235520pt;}
.ls19{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.282624pt;}
.ls15{letter-spacing:0.652800pt;}
.ws1c{word-spacing:-19.146240pt;}
.ws1b{word-spacing:-16.663040pt;}
.ws1d{word-spacing:-16.604160pt;}
.ws8{word-spacing:-16.545280pt;}
.ws4{word-spacing:-16.486400pt;}
.ws3{word-spacing:-16.427520pt;}
.ws6{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.309760pt;}
.ws21{word-spacing:-16.250880pt;}
.ws2{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.133120pt;}
.ws1{word-spacing:-15.956480pt;}
.ws24{word-spacing:-13.440000pt;}
.ws22{word-spacing:-13.152000pt;}
.ws23{word-spacing:-13.056000pt;}
.ws16{word-spacing:-0.647680pt;}
.ws13{word-spacing:-0.588800pt;}
.ws15{word-spacing:-0.471040pt;}
.ws1a{word-spacing:-0.412160pt;}
.ws1e{word-spacing:-0.294400pt;}
.ws12{word-spacing:-0.235520pt;}
.ws27{word-spacing:-0.192000pt;}
.wsc{word-spacing:-0.176640pt;}
.ws1f{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:0.058880pt;}
.wsd{word-spacing:0.069120pt;}
.ws9{word-spacing:0.176640pt;}
.wse{word-spacing:0.235520pt;}
.ws28{word-spacing:0.288000pt;}
.wsb{word-spacing:0.294400pt;}
.wsf{word-spacing:0.353280pt;}
.ws26{word-spacing:0.384000pt;}
.wsa{word-spacing:0.412160pt;}
.ws17{word-spacing:0.471040pt;}
.ws10{word-spacing:0.529920pt;}
.ws19{word-spacing:0.647680pt;}
.ws25{word-spacing:0.706560pt;}
.ws18{word-spacing:0.824320pt;}
.ws14{word-spacing:1.000960pt;}
.ws20{word-spacing:1.118720pt;}
._3{margin-left:-1.954816pt;}
._0{margin-left:-0.906752pt;}
._1{width:1.248256pt;}
._5{width:24.331776pt;}
._6{width:172.372480pt;}
._4{width:297.756160pt;}
._7{width:635.079680pt;}
._2{width:870.540800pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:51.206400pt;}
.y5{bottom:59.133337pt;}
.y26{bottom:69.120640pt;}
.y25{bottom:86.240000pt;}
.y4{bottom:86.333337pt;}
.y4f{bottom:105.915520pt;}
.y97{bottom:111.505920pt;}
.y7a{bottom:114.075520pt;}
.y22{bottom:123.790666pt;}
.y4e{bottom:125.596160pt;}
.yb9{bottom:129.600000pt;}
.y96{bottom:131.186560pt;}
.y79{bottom:133.756160pt;}
.y4d{bottom:145.276800pt;}
.yb8{bottom:149.279360pt;}
.y95{bottom:150.867200pt;}
.y78{bottom:153.436800pt;}
.y4c{bottom:164.957440pt;}
.yb7{bottom:168.960000pt;}
.y94{bottom:170.547840pt;}
.y77{bottom:173.117440pt;}
.y19{bottom:175.052000pt;}
.y4b{bottom:184.638080pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y93{bottom:190.228480pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y4a{bottom:204.318720pt;}
.yb6{bottom:207.360000pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y76{bottom:211.360000pt;}
.y49{bottom:223.999360pt;}
.yb5{bottom:227.040640pt;}
.y92{bottom:228.471040pt;}
.y1e{bottom:231.038664pt;}
.y75{bottom:231.040640pt;}
.y15{bottom:231.052000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y48{bottom:243.680000pt;}
.yb4{bottom:246.721280pt;}
.y91{bottom:248.151680pt;}
.y74{bottom:250.721280pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.yb3{bottom:266.240000pt;}
.y90{bottom:267.832320pt;}
.y73{bottom:270.401920pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y47{bottom:282.078720pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y8f{bottom:287.512960pt;}
.y72{bottom:290.082560pt;}
.y46{bottom:301.759360pt;}
.yb2{bottom:304.638720pt;}
.y8e{bottom:307.193600pt;}
.y10{bottom:309.452000pt;}
.y71{bottom:309.763200pt;}
.y45{bottom:321.440000pt;}
.yb1{bottom:324.319360pt;}
.y8d{bottom:326.874240pt;}
.y70{bottom:329.443840pt;}
.y44{bottom:341.118720pt;}
.yf{bottom:343.809333pt;}
.yb0{bottom:344.000000pt;}
.y8c{bottom:346.554880pt;}
.y6f{bottom:349.124480pt;}
.y43{bottom:360.799360pt;}
.ye{bottom:362.706666pt;}
.y8b{bottom:366.235520pt;}
.y6e{bottom:368.805120pt;}
.y42{bottom:380.480000pt;}
.yaf{bottom:382.399360pt;}
.y8a{bottom:385.916160pt;}
.y6d{bottom:388.485760pt;}
.y41{bottom:399.998080pt;}
.yae{bottom:402.080000pt;}
.y89{bottom:405.596800pt;}
.y40{bottom:419.678720pt;}
.y88{bottom:425.277440pt;}
.y6c{bottom:426.890240pt;}
.yd{bottom:430.990669pt;}
.y3f{bottom:439.359360pt;}
.yad{bottom:441.280000pt;}
.y6b{bottom:443.980160pt;}
.y87{bottom:444.958080pt;}
.yc{bottom:446.990669pt;}
.y3e{bottom:459.040000pt;}
.yb{bottom:462.990669pt;}
.y6a{bottom:463.660800pt;}
.y86{bottom:464.638720pt;}
.ya{bottom:478.990666pt;}
.yac{bottom:482.237440pt;}
.y69{bottom:483.179520pt;}
.y85{bottom:484.319360pt;}
.y9{bottom:494.990666pt;}
.y3d{bottom:497.439360pt;}
.yab{bottom:501.918080pt;}
.y68{bottom:502.860160pt;}
.y84{bottom:504.000000pt;}
.y3c{bottom:517.120000pt;}
.yaa{bottom:521.598720pt;}
.y67{bottom:522.540800pt;}
.y3b{bottom:536.800000pt;}
.ya9{bottom:541.279360pt;}
.y66{bottom:542.221440pt;}
.y83{bottom:542.236800pt;}
.y3a{bottom:556.479360pt;}
.ya8{bottom:560.960000pt;}
.y65{bottom:561.902080pt;}
.y82{bottom:561.917440pt;}
.y8{bottom:573.786667pt;}
.y39{bottom:576.160000pt;}
.ya7{bottom:580.632960pt;}
.y64{bottom:581.582720pt;}
.y81{bottom:581.598080pt;}
.y7{bottom:592.685334pt;}
.y38{bottom:595.840000pt;}
.ya6{bottom:600.313600pt;}
.y63{bottom:601.263360pt;}
.y80{bottom:601.278720pt;}
.y37{bottom:615.516800pt;}
.ya5{bottom:619.994240pt;}
.y62{bottom:620.944000pt;}
.y7f{bottom:620.959360pt;}
.y36{bottom:635.197440pt;}
.ya4{bottom:639.674880pt;}
.y61{bottom:640.624640pt;}
.y7e{bottom:640.640000pt;}
.y6{bottom:645.598667pt;}
.y35{bottom:654.878080pt;}
.ya3{bottom:659.355520pt;}
.y60{bottom:660.305280pt;}
.y7d{bottom:660.320000pt;}
.y3{bottom:668.977329pt;}
.y34{bottom:674.558720pt;}
.ya2{bottom:679.036160pt;}
.y5f{bottom:679.985920pt;}
.y33{bottom:694.077440pt;}
.ya1{bottom:698.716800pt;}
.y5e{bottom:699.666560pt;}
.y32{bottom:713.920000pt;}
.ya0{bottom:718.397440pt;}
.y5d{bottom:738.071040pt;}
.y9f{bottom:738.078080pt;}
.y31{bottom:752.160000pt;}
.y5c{bottom:757.751680pt;}
.y9e{bottom:757.758720pt;}
.y30{bottom:771.840000pt;}
.y5b{bottom:777.270400pt;}
.y9d{bottom:777.277440pt;}
.y2{bottom:781.661334pt;}
.ybf{bottom:787.520000pt;}
.y2f{bottom:791.520000pt;}
.y5a{bottom:796.951040pt;}
.y9c{bottom:796.958080pt;}
.ybe{bottom:806.556000pt;}
.y2e{bottom:811.200000pt;}
.y59{bottom:816.631680pt;}
.y9b{bottom:816.638720pt;}
.ybd{bottom:822.720000pt;}
.y2d{bottom:830.880000pt;}
.y58{bottom:836.312320pt;}
.y9a{bottom:836.319360pt;}
.y57{bottom:855.992960pt;}
.y99{bottom:856.000000pt;}
.ybc{bottom:858.080000pt;}
.y1{bottom:859.312000pt;}
.y2c{bottom:863.840000pt;}
.y56{bottom:875.673600pt;}
.y55{bottom:895.354240pt;}
.ybb{bottom:896.315520pt;}
.y2b{bottom:899.520000pt;}
.y7c{bottom:914.078080pt;}
.y54{bottom:915.034880pt;}
.y7b{bottom:933.758720pt;}
.y98{bottom:934.715520pt;}
.yba{bottom:934.720000pt;}
.y2a{bottom:935.196800pt;}
.y53{bottom:953.439360pt;}
.y52{bottom:973.120000pt;}
.y29{bottom:975.200000pt;}
.y51{bottom:992.800640pt;}
.y50{bottom:1012.481280pt;}
.y28{bottom:1013.290880pt;}
.y24{bottom:1039.999360pt;}
.y23{bottom:1059.680000pt;}
.h7{height:28.560000pt;}
.ha{height:39.243750pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h14{height:43.828125pt;}
.h15{height:43.844125pt;}
.h2{height:48.960000pt;}
.h9{height:53.762500pt;}
.h13{height:53.765060pt;}
.hf{height:53.767620pt;}
.he{height:53.770180pt;}
.hd{height:53.775300pt;}
.h11{height:53.788100pt;}
.h12{height:53.790660pt;}
.h10{height:53.818820pt;}
.hb{height:62.768980pt;}
.hc{height:63.112500pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6{left:176.001280pt;}
.x4{left:180.874667pt;}
.xa{left:192.480000pt;}
.x7{left:198.882560pt;}
.x5{left:250.720000pt;}
.x8{left:393.127680pt;}
.x3{left:404.408000pt;}
.x9{left:691.855360pt;}
}




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