
    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_5cf616bbac0b81e60c0756d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.474750;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_b0015342620fad7863360cdd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.200000;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_4646304be32e656b85522d3c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.487000;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_78cee1746fd3f0b61844951a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.212000;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;}
.v1{vertical-align:3.403110px;}
.v3{vertical-align:48.750012px;}
.v4{vertical-align:50.167974px;}
.v2{vertical-align:56.249988px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:132.279858px;}
.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;}
}
.ws9{word-spacing:-18.000000px;}
.ws8{word-spacing:0.000000px;}
.ws4{word-spacing:1.059710px;}
.ws0{word-spacing:4.259666px;}
.ws6{word-spacing:4.585404px;}
.ws5{word-spacing:4.789512px;}
.ws3{word-spacing:8.803404px;}
.ws7{word-spacing:9.193404px;}
.ws1{word-spacing:18.274110px;}
.wse{word-spacing:41.819364px;}
.ws2{word-spacing:72.448281px;}
.wsc{word-spacing:73.029864px;}
.wsb{word-spacing:77.957364px;}
.wsd{word-spacing:99.084864px;}
.wsa{word-spacing:99.369303px;}
.wsf{word-spacing:110.377570px;}
._2{width:95.478240px;}
._0{width:132.198240px;}
._1{width:136.734240px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:6.000000px;}
.fs6{font-size:26.625000px;}
.fs7{font-size:33.843750px;}
.fs8{font-size:36.375000px;}
.fs5{font-size:39.000000px;}
.fs3{font-size:45.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yff{bottom:1.800000px;}
.y14{bottom:57.537436px;}
.y63{bottom:80.852969px;}
.y13{bottom:83.787436px;}
.y3f{bottom:86.876587px;}
.y9a{bottom:103.175802px;}
.y70{bottom:103.352970px;}
.y12{bottom:110.037436px;}
.yf5{bottom:110.262414px;}
.y51{bottom:112.388399px;}
.y62{bottom:119.120685px;}
.y3e{bottom:125.144304px;}
.yb0{bottom:128.333280px;}
.y6f{bottom:141.620687px;}
.y99{bottom:147.821472px;}
.yf4{bottom:148.530130px;}
.y50{bottom:150.656115px;}
.y61{bottom:157.388401px;}
.yaf{bottom:158.232873px;}
.yab{bottom:158.587368px;}
.y11{bottom:162.537435px;}
.y3d{bottom:163.412021px;}
.yae{bottom:168.809045px;}
.yaa{bottom:170.774867px;}
.yad{bottom:179.385218px;}
.y6e{bottom:179.888403px;}
.yba{bottom:183.608879px;}
.yf3{bottom:186.797847px;}
.y4f{bottom:188.923832px;}
.ye4{bottom:189.859855px;}
.yac{bottom:189.961389px;}
.y98{bottom:192.467141px;}
.y60{bottom:195.656118px;}
.y3c{bottom:201.679737px;}
.ya9{bottom:203.375800px;}
.ye3{bottom:209.753753px;}
.y10{bottom:215.037435px;}
.y6d{bottom:218.156120px;}
.y4e{bottom:218.257691px;}
.y90{bottom:221.870448px;}
.yb9{bottom:221.876595px;}
.y97{bottom:222.366733px;}
.y8b{bottom:222.721226px;}
.y93{bottom:222.721229px;}
.y5f{bottom:224.989977px;}
.yf2{bottom:225.065563px;}
.ya8{bottom:225.875802px;}
.y8f{bottom:230.190759px;}
.y96{bottom:232.942906px;}
.y92{bottom:234.908727px;}
.y8e{bottom:238.511072px;}
.y3b{bottom:239.947453px;}
.y4d{bottom:240.757692px;}
.y95{bottom:243.519078px;}
.y8d{bottom:246.831382px;}
.y91{bottom:247.096226px;}
.ycf{bottom:249.514391px;}
.ye2{bottom:253.943517px;}
.y94{bottom:254.095250px;}
.y24{bottom:254.348050px;}
.y8c{bottom:255.151694px;}
.y6c{bottom:256.423836px;}
.yb8{bottom:260.144312px;}
.y5e{bottom:260.675803px;}
.yf1{bottom:263.333280px;}
.y8a{bottom:267.509661px;}
.yf{bottom:267.537434px;}
.ya7{bottom:270.875805px;}
.y23{bottom:274.241948px;}
.y3a{bottom:278.215170px;}
.yb6{bottom:283.369953px;}
.y5c{bottom:283.901445px;}
.y4c{bottom:285.757695px;}
.yce{bottom:287.782107px;}
.y89{bottom:290.009662px;}
.ye1{bottom:292.211234px;}
.yf0{bottom:292.667139px;}
.y6b{bottom:294.691553px;}
.yfb{bottom:295.627576px;}
.yb7{bottom:298.412028px;}
.y5d{bottom:298.943520px;}
.yef{bottom:315.167141px;}
.yfa{bottom:315.521474px;}
.y39{bottom:316.482887px;}
.y7d{bottom:317.418910px;}
.y22{bottom:318.431712px;}
.ye{bottom:320.037432px;}
.y4b{bottom:321.443521px;}
.y6a{bottom:324.025412px;}
.ycd{bottom:326.049824px;}
.yb5{bottom:327.745887px;}
.y5b{bottom:328.277379px;}
.ye0{bottom:330.478950px;}
.y88{bottom:335.009665px;}
.y7c{bottom:337.312809px;}
.ya6{bottom:338.636238px;}
.yd{bottom:346.287432px;}
.y5a{bottom:350.777381px;}
.y38{bottom:354.750603px;}
.y21{bottom:356.699428px;}
.y4a{bottom:359.711238px;}
.yee{bottom:360.167144px;}
.yb4{bottom:363.431715px;}
.ycc{bottom:364.317540px;}
.ydf{bottom:368.746667px;}
.yc{bottom:372.537432px;}
.ya5{bottom:372.783809px;}
.y7b{bottom:381.502574px;}
.y69{bottom:382.936879px;}
.yed{bottom:385.539714px;}
.ya4{bottom:386.919112px;}
.y31{bottom:393.018319px;}
.y20{bottom:394.967145px;}
.y59{bottom:395.777383px;}
.y49{bottom:397.978954px;}
.yde{bottom:398.080525px;}
.yb{bottom:398.787431px;}
.yec{bottom:399.675018px;}
.yb3{bottom:401.699432px;}
.ycb{bottom:402.585256px;}
.y7a{bottom:419.770290px;}
.y47{bottom:421.204596px;}
.y37{bottom:422.352178px;}
.ya{bottom:425.037431px;}
.ya3{bottom:425.793917px;}
.y68{bottom:427.312813px;}
.y30{bottom:431.286036px;}
.y1f{bottom:433.234861px;}
.y48{bottom:436.246671px;}
.yeb{bottom:438.549822px;}
.yb2{bottom:439.967148px;}
.yca{bottom:440.852973px;}
.ydd{bottom:443.080528px;}
.y36{bottom:444.852180px;}
.y9{bottom:451.287431px;}
.y87{bottom:452.418920px;}
.y79{bottom:458.038007px;}
.y46{bottom:465.580530px;}
.y2f{bottom:469.553752px;}
.ya2{bottom:470.439586px;}
.y1e{bottom:471.502578px;}
.y67{bottom:472.312816px;}
.yf9{bottom:474.514388px;}
.yb1{bottom:478.234864px;}
.yc9{bottom:479.120689px;}
.yea{bottom:483.195492px;}
.y35{bottom:489.852183px;}
.y78{bottom:496.305723px;}
.y2e{bottom:498.887611px;}
.y8{bottom:503.787429px;}
.y1d{bottom:509.770295px;}
.y45{bottom:510.580533px;}
.yf8{bottom:512.782104px;}
.y58{bottom:513.186638px;}
.ya1{bottom:515.085255px;}
.y86{bottom:516.502581px;}
.yc8{bottom:517.388406px;}
.y2d{bottom:521.387613px;}
.y34{bottom:525.538010px;}
.ye9{bottom:527.841160px;}
.y57{bottom:533.080534px;}
.y77{bottom:534.573439px;}
.y66{bottom:540.073251px;}
.yf7{bottom:542.115963px;}
.yfe{bottom:544.446875px;}
.y1c{bottom:548.038011px;}
.y85{bottom:554.770298px;}
.yc7{bottom:555.656122px;}
.y7{bottom:556.287429px;}
.yd7{bottom:558.845100px;}
.ya0{bottom:559.730925px;}
.ydc{bottom:560.489783px;}
.y33{bottom:563.805726px;}
.y2c{bottom:566.387616px;}
.ye8{bottom:572.486831px;}
.y76{bottom:572.841156px;}
.y56{bottom:577.270299px;}
.y44{bottom:578.340968px;}
.ydb{bottom:580.383679px;}
.y6{bottom:582.537428px;}
.y1b{bottom:586.305728px;}
.yf6{bottom:587.115966px;}
.yd6{bottom:588.744691px;}
.yd2{bottom:589.099188px;}
.y84{bottom:593.038014px;}
.yc6{bottom:593.923839px;}
.yfd{bottom:596.946873px;}
.yd5{bottom:599.320865px;}
.yd1{bottom:601.286685px;}
.y2b{bottom:602.073443px;}
.y9f{bottom:604.376593px;}
.y5{bottom:608.787428px;}
.yd4{bottom:609.897036px;}
.y75{bottom:611.108872px;}
.y55{bottom:615.538016px;}
.ye7{bottom:617.132499px;}
.yd3{bottom:620.473209px;}
.y1a{bottom:624.573444px;}
.y83{bottom:631.305730px;}
.yc5{bottom:632.191555px;}
.yd0{bottom:633.887620px;}
.y73{bottom:634.334513px;}
.y4{bottom:635.037428px;}
.y2a{bottom:640.341159px;}
.ye6{bottom:647.799081px;}
.y18{bottom:647.799085px;}
.y9e{bottom:649.022263px;}
.y74{bottom:649.376589px;}
.y54{bottom:653.805732px;}
.yc3{bottom:655.417197px;}
.ye5{bottom:661.861582px;}
.y19{bottom:662.841160px;}
.y65{bottom:666.257503px;}
.y82{bottom:669.573447px;}
.yc4{bottom:670.459273px;}
.y29{bottom:678.608875px;}
.y72{bottom:678.710448px;}
.y64{bottom:686.151400px;}
.y3{bottom:687.537426px;}
.y53{bottom:692.073449px;}
.y17{bottom:692.175019px;}
.y9d{bottom:693.667934px;}
.yc2{bottom:699.793131px;}
.yda{bottom:701.108877px;}
.y32{bottom:701.834517px;}
.y43{bottom:704.525220px;}
.y81{bottom:707.841163px;}
.y28{bottom:716.876593px;}
.y71{bottom:723.710451px;}
.y9c{bottom:724.334514px;}
.yd8{bottom:724.334519px;}
.y42{bottom:724.419117px;}
.y52{bottom:730.341165px;}
.y16{bottom:737.175022px;}
.y9b{bottom:738.397015px;}
.yc1{bottom:738.667935px;}
.yd9{bottom:739.376593px;}
.y2{bottom:740.037425px;}
.y80{bottom:746.108880px;}
.y27{bottom:746.210451px;}
.yc0{bottom:768.567528px;}
.y41{bottom:768.608881px;}
.y26{bottom:768.710453px;}
.ybc{bottom:768.922023px;}
.y7e{bottom:769.334521px;}
.ybf{bottom:779.143701px;}
.ybb{bottom:781.109522px;}
.y7f{bottom:784.376597px;}
.ybe{bottom:789.719873px;}
.y1{bottom:792.537424px;}
.yfc{bottom:793.816559px;}
.ybd{bottom:800.296044px;}
.y15{bottom:804.935457px;}
.y40{bottom:806.876598px;}
.y25{bottom:813.710456px;}
.h12{height:5.796000px;}
.ha{height:24.921000px;}
.hc{height:31.677750px;}
.he{height:34.047000px;}
.h9{height:36.504000px;}
.hb{height:39.907110px;}
.h6{height:42.120000px;}
.h7{height:56.160000px;}
.h5{height:66.240000px;}
.h8{height:67.392000px;}
.h3{height:75.600000px;}
.h2{height:77.280000px;}
.h11{height:85.253988px;}
.hf{height:85.253994px;}
.h10{height:86.671974px;}
.hd{height:98.370006px;}
.h4{height:99.360000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x7e{left:4.252500px;}
.x4{left:65.906043px;}
.x6{left:74.256000px;}
.x9{left:82.656000px;}
.x7d{left:91.213500px;}
.x8{left:100.474500px;}
.xb{left:125.433603px;}
.x7{left:332.472000px;}
.xa{left:351.991500px;}
.x1{left:438.427500px;}
.x21{left:454.153996px;}
.x7c{left:469.959000px;}
.x20{left:478.948996px;}
.x73{left:481.813996px;}
.x3{left:488.313000px;}
.x2{left:494.991000px;}
.x72{left:541.048996px;}
.x5{left:543.816000px;}
.x1f{left:545.323997px;}
.x71{left:592.438996px;}
.x7b{left:652.063996px;}
.x78{left:653.562225px;}
.x1e{left:656.908996px;}
.x55{left:660.250454px;}
.x6b{left:672.986634px;}
.x6d{left:688.166634px;}
.x79{left:689.562225px;}
.x6c{left:691.286634px;}
.x7a{left:696.312225px;}
.x2f{left:711.748996px;}
.x1d{left:719.488996px;}
.x1c{left:725.428997px;}
.x59{left:728.262225px;}
.x4a{left:734.523248px;}
.x3f{left:739.168996px;}
.x5b{left:743.442225px;}
.x5a{left:746.562225px;}
.x6f{left:758.636634px;}
.x17{left:764.698996px;}
.x58{left:767.442225px;}
.x6e{left:769.406634px;}
.x70{left:773.951634px;}
.x32{left:776.533997px;}
.x31{left:778.798997px;}
.x1b{left:780.718997px;}
.x18{left:781.948997px;}
.x4c{left:794.776822px;}
.x4b{left:796.610621px;}
.x4d{left:802.564635px;}
.x3b{left:805.483997px;}
.x3e{left:810.988997px;}
.x5d{left:813.912225px;}
.x14{left:815.368997px;}
.x5c{left:824.682225px;}
.x5e{left:829.227225px;}
.x5f{left:845.093929px;}
.x3c{left:847.273997px;}
.x3d{left:848.398997px;}
.x30{left:853.663997px;}
.x60{left:864.974179px;}
.x76{left:866.413997px;}
.x75{left:869.308997px;}
.x77{left:871.228996px;}
.x2e{left:887.353996px;}
.x19{left:891.673997px;}
.x34{left:895.768997px;}
.x33{left:898.708997px;}
.x4e{left:900.330519px;}
.x40{left:903.328997px;}
.x56{left:906.190644px;}
.x16{left:907.558997px;}
.x2d{left:909.598997px;}
.x74{left:913.063997px;}
.x28{left:914.608997px;}
.x13{left:915.868997px;}
.x48{left:917.653997px;}
.x27{left:919.483997px;}
.x4f{left:920.513019px;}
.x37{left:921.763997px;}
.x2b{left:923.233997px;}
.x49{left:933.778997px;}
.x47{left:935.233997px;}
.x46{left:937.993997px;}
.x1a{left:939.028997px;}
.x2c{left:944.488997px;}
.x12{left:946.543997px;}
.x45{left:947.653997px;}
.x29{left:949.018997px;}
.x11{left:950.368997px;}
.x50{left:955.688985px;}
.x10{left:957.268997px;}
.x41{left:958.993997px;}
.xf{left:960.433997px;}
.x3a{left:962.458997px;}
.x35{left:970.093997px;}
.x61{left:972.005610px;}
.x42{left:978.223997px;}
.x15{left:979.753997px;}
.xd{left:982.933997px;}
.xe{left:989.353996px;}
.x43{left:990.508996px;}
.x66{left:992.593997px;}
.x68{left:993.673997px;}
.x44{left:995.053997px;}
.x26{left:997.378997px;}
.x2a{left:1000.888997px;}
.x69{left:1003.768997px;}
.x6a{left:1006.108997px;}
.x67{left:1007.113997px;}
.x51{left:1010.637951px;}
.x62{left:1013.573943px;}
.x25{left:1014.958997px;}
.x23{left:1017.718997px;}
.x22{left:1018.948997px;}
.x36{left:1021.153997px;}
.x24{left:1022.503997px;}
.x63{left:1025.443997px;}
.x39{left:1027.573997px;}
.x64{left:1032.703996px;}
.x65{left:1035.448997px;}
.x38{left:1044.313997px;}
.x53{left:1067.512706px;}
.x52{left:1069.966377px;}
.x57{left:1072.017417px;}
.x54{left:1073.308448px;}
.xc{left:1087.098042px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.024987pt;}
.v3{vertical-align:43.333344pt;}
.v4{vertical-align:44.593755pt;}
.v2{vertical-align:49.999989pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:117.582096pt;}
.ws9{word-spacing:-16.000000pt;}
.ws8{word-spacing:0.000000pt;}
.ws4{word-spacing:0.941965pt;}
.ws0{word-spacing:3.786369pt;}
.ws6{word-spacing:4.075915pt;}
.ws5{word-spacing:4.257344pt;}
.ws3{word-spacing:7.825248pt;}
.ws7{word-spacing:8.171915pt;}
.ws1{word-spacing:16.243654pt;}
.wse{word-spacing:37.172768pt;}
.ws2{word-spacing:64.398472pt;}
.wsc{word-spacing:64.915435pt;}
.wsb{word-spacing:69.295435pt;}
.wsd{word-spacing:88.075435pt;}
.wsa{word-spacing:88.328269pt;}
.wsf{word-spacing:98.113395pt;}
._2{width:84.869547pt;}
._0{width:117.509547pt;}
._1{width:121.541547pt;}
.fs9{font-size:5.333333pt;}
.fs6{font-size:23.666667pt;}
.fs7{font-size:30.083333pt;}
.fs8{font-size:32.333333pt;}
.fs5{font-size:34.666667pt;}
.fs3{font-size:40.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yff{bottom:1.600000pt;}
.y14{bottom:51.144388pt;}
.y63{bottom:71.869305pt;}
.y13{bottom:74.477721pt;}
.y3f{bottom:77.223633pt;}
.y9a{bottom:91.711824pt;}
.y70{bottom:91.869307pt;}
.y12{bottom:97.811055pt;}
.yf5{bottom:98.011035pt;}
.y51{bottom:99.900799pt;}
.y62{bottom:105.885053pt;}
.y3e{bottom:111.239381pt;}
.yb0{bottom:114.074027pt;}
.y6f{bottom:125.885055pt;}
.y99{bottom:131.396864pt;}
.yf4{bottom:132.026783pt;}
.y50{bottom:133.916547pt;}
.y61{bottom:139.900801pt;}
.yaf{bottom:140.651443pt;}
.yab{bottom:140.966549pt;}
.y11{bottom:144.477720pt;}
.y3d{bottom:145.255129pt;}
.yae{bottom:150.052484pt;}
.yaa{bottom:151.799881pt;}
.yad{bottom:159.453527pt;}
.y6e{bottom:159.900803pt;}
.yba{bottom:163.207892pt;}
.yf3{bottom:166.042531pt;}
.y4f{bottom:167.932295pt;}
.ye4{bottom:168.764316pt;}
.yac{bottom:168.854568pt;}
.y98{bottom:171.081903pt;}
.y60{bottom:173.916549pt;}
.y3c{bottom:179.270877pt;}
.ya9{bottom:180.778489pt;}
.ye3{bottom:186.447780pt;}
.y10{bottom:191.144387pt;}
.y6d{bottom:193.916551pt;}
.y4e{bottom:194.006836pt;}
.y90{bottom:197.218176pt;}
.yb9{bottom:197.223640pt;}
.y97{bottom:197.659319pt;}
.y8b{bottom:197.974423pt;}
.y93{bottom:197.974425pt;}
.y5f{bottom:199.991091pt;}
.yf2{bottom:200.058279pt;}
.ya8{bottom:200.778491pt;}
.y8f{bottom:204.614008pt;}
.y96{bottom:207.060361pt;}
.y92{bottom:208.807757pt;}
.y8e{bottom:212.009841pt;}
.y3b{bottom:213.286625pt;}
.y4d{bottom:214.006837pt;}
.y95{bottom:216.461403pt;}
.y8d{bottom:219.405673pt;}
.y91{bottom:219.641089pt;}
.ycf{bottom:221.790569pt;}
.ye2{bottom:225.727571pt;}
.y94{bottom:225.862444pt;}
.y24{bottom:226.087156pt;}
.y8c{bottom:226.801505pt;}
.y6c{bottom:227.932299pt;}
.yb8{bottom:231.239388pt;}
.y5e{bottom:231.711825pt;}
.yf1{bottom:234.074027pt;}
.y8a{bottom:237.786365pt;}
.yf{bottom:237.811052pt;}
.ya7{bottom:240.778493pt;}
.y23{bottom:243.770620pt;}
.y3a{bottom:247.302373pt;}
.yb6{bottom:251.884403pt;}
.y5c{bottom:252.356840pt;}
.y4c{bottom:254.006840pt;}
.yce{bottom:255.806317pt;}
.y89{bottom:257.786367pt;}
.ye1{bottom:259.743319pt;}
.yf0{bottom:260.148568pt;}
.y6b{bottom:261.948047pt;}
.yfb{bottom:262.780068pt;}
.yb7{bottom:265.255136pt;}
.y5d{bottom:265.727573pt;}
.yef{bottom:280.148569pt;}
.yfa{bottom:280.463532pt;}
.y39{bottom:281.318121pt;}
.y7d{bottom:282.150143pt;}
.y22{bottom:283.050411pt;}
.ye{bottom:284.477717pt;}
.y4b{bottom:285.727575pt;}
.y6a{bottom:288.022588pt;}
.ycd{bottom:289.822065pt;}
.yb5{bottom:291.329677pt;}
.y5b{bottom:291.802115pt;}
.ye0{bottom:293.759067pt;}
.y88{bottom:297.786369pt;}
.y7c{bottom:299.833608pt;}
.ya6{bottom:301.009989pt;}
.yd{bottom:307.811051pt;}
.y5a{bottom:311.802116pt;}
.y38{bottom:315.333869pt;}
.y21{bottom:317.066159pt;}
.y4a{bottom:319.743323pt;}
.yee{bottom:320.148572pt;}
.yb4{bottom:323.050413pt;}
.ycc{bottom:323.837813pt;}
.ydf{bottom:327.774815pt;}
.yc{bottom:331.144384pt;}
.ya5{bottom:331.363385pt;}
.y7b{bottom:339.113399pt;}
.y69{bottom:340.388337pt;}
.yed{bottom:342.701968pt;}
.ya4{bottom:343.928100pt;}
.y31{bottom:349.349617pt;}
.y20{bottom:351.081907pt;}
.y59{bottom:351.802119pt;}
.y49{bottom:353.759071pt;}
.yde{bottom:353.849356pt;}
.yb{bottom:354.477716pt;}
.yec{bottom:355.266683pt;}
.yb3{bottom:357.066161pt;}
.ycb{bottom:357.853561pt;}
.y7a{bottom:373.129147pt;}
.y47{bottom:374.404085pt;}
.y37{bottom:375.424159pt;}
.ya{bottom:377.811049pt;}
.ya3{bottom:378.483481pt;}
.y68{bottom:379.833612pt;}
.y30{bottom:383.365365pt;}
.y1f{bottom:385.097655pt;}
.y48{bottom:387.774819pt;}
.yeb{bottom:389.822064pt;}
.yb2{bottom:391.081909pt;}
.yca{bottom:391.869309pt;}
.ydd{bottom:393.849359pt;}
.y36{bottom:395.424160pt;}
.y9{bottom:401.144383pt;}
.y87{bottom:402.150151pt;}
.y79{bottom:407.144895pt;}
.y46{bottom:413.849360pt;}
.y2f{bottom:417.381113pt;}
.ya2{bottom:418.168521pt;}
.y1e{bottom:419.113403pt;}
.y67{bottom:419.833615pt;}
.yf9{bottom:421.790567pt;}
.yb1{bottom:425.097657pt;}
.yc9{bottom:425.885057pt;}
.yea{bottom:429.507104pt;}
.y35{bottom:435.424163pt;}
.y78{bottom:441.160643pt;}
.y2e{bottom:443.455655pt;}
.y8{bottom:447.811048pt;}
.y1d{bottom:453.129151pt;}
.y45{bottom:453.849363pt;}
.yf8{bottom:455.806315pt;}
.y58{bottom:456.165900pt;}
.ya1{bottom:457.853560pt;}
.y86{bottom:459.113405pt;}
.yc8{bottom:459.900805pt;}
.y2d{bottom:463.455656pt;}
.y34{bottom:467.144897pt;}
.ye9{bottom:469.192143pt;}
.y57{bottom:473.849364pt;}
.y77{bottom:475.176391pt;}
.y66{bottom:480.065112pt;}
.yf7{bottom:481.880856pt;}
.yfe{bottom:483.952777pt;}
.y1c{bottom:487.144899pt;}
.y85{bottom:493.129153pt;}
.yc7{bottom:493.916553pt;}
.y7{bottom:494.477715pt;}
.yd7{bottom:496.751200pt;}
.ya0{bottom:497.538600pt;}
.ydc{bottom:498.213140pt;}
.y33{bottom:501.160645pt;}
.y2c{bottom:503.455659pt;}
.ye8{bottom:508.877183pt;}
.y76{bottom:509.192139pt;}
.y56{bottom:513.129155pt;}
.y44{bottom:514.080860pt;}
.ydb{bottom:515.896604pt;}
.y6{bottom:517.811047pt;}
.y1b{bottom:521.160647pt;}
.yf6{bottom:521.880859pt;}
.yd6{bottom:523.328615pt;}
.yd2{bottom:523.643723pt;}
.y84{bottom:527.144901pt;}
.yc6{bottom:527.932301pt;}
.yfd{bottom:530.619443pt;}
.yd5{bottom:532.729657pt;}
.yd1{bottom:534.477053pt;}
.y2b{bottom:535.176393pt;}
.y9f{bottom:537.223639pt;}
.y5{bottom:541.144380pt;}
.yd4{bottom:542.130699pt;}
.y75{bottom:543.207887pt;}
.y55{bottom:547.144903pt;}
.ye7{bottom:548.562221pt;}
.yd3{bottom:551.531741pt;}
.y1a{bottom:555.176395pt;}
.y83{bottom:561.160649pt;}
.yc5{bottom:561.948049pt;}
.yd0{bottom:563.455663pt;}
.y73{bottom:563.852900pt;}
.y4{bottom:564.477713pt;}
.y2a{bottom:569.192141pt;}
.ye6{bottom:575.821405pt;}
.y18{bottom:575.821409pt;}
.y9e{bottom:576.908679pt;}
.y74{bottom:577.223635pt;}
.y54{bottom:581.160651pt;}
.yc3{bottom:582.593064pt;}
.ye5{bottom:588.321407pt;}
.y19{bottom:589.192143pt;}
.y65{bottom:592.228892pt;}
.y82{bottom:595.176397pt;}
.yc4{bottom:595.963799pt;}
.y29{bottom:603.207889pt;}
.y72{bottom:603.298176pt;}
.y64{bottom:609.912356pt;}
.y3{bottom:611.144379pt;}
.y53{bottom:615.176399pt;}
.y17{bottom:615.266684pt;}
.y9d{bottom:616.593719pt;}
.yc2{bottom:622.038339pt;}
.yda{bottom:623.207891pt;}
.y32{bottom:623.852904pt;}
.y43{bottom:626.244640pt;}
.y81{bottom:629.192145pt;}
.y28{bottom:637.223639pt;}
.y71{bottom:643.298179pt;}
.y9c{bottom:643.852901pt;}
.yd8{bottom:643.852905pt;}
.y42{bottom:643.928104pt;}
.y52{bottom:649.192147pt;}
.y16{bottom:655.266687pt;}
.y9b{bottom:656.352903pt;}
.yc1{bottom:656.593720pt;}
.yd9{bottom:657.223639pt;}
.y2{bottom:657.811044pt;}
.y80{bottom:663.207893pt;}
.y27{bottom:663.298179pt;}
.yc0{bottom:683.171136pt;}
.y41{bottom:683.207895pt;}
.y26{bottom:683.298180pt;}
.ybc{bottom:683.486243pt;}
.y7e{bottom:683.852908pt;}
.ybf{bottom:692.572179pt;}
.ybb{bottom:694.319575pt;}
.y7f{bottom:697.223641pt;}
.ybe{bottom:701.973220pt;}
.y1{bottom:704.477711pt;}
.yfc{bottom:705.614719pt;}
.ybd{bottom:711.374261pt;}
.y15{bottom:715.498184pt;}
.y40{bottom:717.223643pt;}
.y25{bottom:723.298183pt;}
.h12{height:5.152000pt;}
.ha{height:22.152000pt;}
.hc{height:28.158000pt;}
.he{height:30.264000pt;}
.h9{height:32.448000pt;}
.hb{height:35.472987pt;}
.h6{height:37.440000pt;}
.h7{height:49.920000pt;}
.h5{height:58.880000pt;}
.h8{height:59.904000pt;}
.h3{height:67.200000pt;}
.h2{height:68.693333pt;}
.h11{height:75.781323pt;}
.hf{height:75.781328pt;}
.h10{height:77.041755pt;}
.hd{height:87.440005pt;}
.h4{height:88.320000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x7e{left:3.780000pt;}
.x4{left:58.583149pt;}
.x6{left:66.005333pt;}
.x9{left:73.472000pt;}
.x7d{left:81.078667pt;}
.x8{left:89.310667pt;}
.xb{left:111.496536pt;}
.x7{left:295.530667pt;}
.xa{left:312.881333pt;}
.x1{left:389.713333pt;}
.x21{left:403.692441pt;}
.x7c{left:417.741333pt;}
.x20{left:425.732441pt;}
.x73{left:428.279108pt;}
.x3{left:434.056000pt;}
.x2{left:439.992000pt;}
.x72{left:480.932441pt;}
.x5{left:483.392000pt;}
.x1f{left:484.732441pt;}
.x71{left:526.612441pt;}
.x7b{left:579.612441pt;}
.x78{left:580.944200pt;}
.x1e{left:583.919108pt;}
.x55{left:586.889292pt;}
.x6b{left:598.210341pt;}
.x6d{left:611.703675pt;}
.x79{left:612.944200pt;}
.x6c{left:614.477008pt;}
.x7a{left:618.944200pt;}
.x2f{left:632.665775pt;}
.x1d{left:639.545775pt;}
.x1c{left:644.825775pt;}
.x59{left:647.344200pt;}
.x4a{left:652.909553pt;}
.x3f{left:657.039108pt;}
.x5b{left:660.837533pt;}
.x5a{left:663.610867pt;}
.x6f{left:674.343675pt;}
.x17{left:679.732441pt;}
.x58{left:682.170867pt;}
.x6e{left:683.917008pt;}
.x70{left:687.957008pt;}
.x32{left:690.252441pt;}
.x31{left:692.265775pt;}
.x1b{left:693.972441pt;}
.x18{left:695.065775pt;}
.x4c{left:706.468287pt;}
.x4b{left:708.098329pt;}
.x4d{left:713.390787pt;}
.x3b{left:715.985775pt;}
.x3e{left:720.879108pt;}
.x5d{left:723.477533pt;}
.x14{left:724.772441pt;}
.x5c{left:733.050867pt;}
.x5e{left:737.090867pt;}
.x5f{left:751.194604pt;}
.x3c{left:753.132441pt;}
.x3d{left:754.132441pt;}
.x30{left:758.812441pt;}
.x60{left:768.865937pt;}
.x76{left:770.145775pt;}
.x75{left:772.719108pt;}
.x77{left:774.425775pt;}
.x2e{left:788.759108pt;}
.x19{left:792.599108pt;}
.x34{left:796.239108pt;}
.x33{left:798.852441pt;}
.x4e{left:800.293795pt;}
.x40{left:802.959108pt;}
.x56{left:805.502795pt;}
.x16{left:806.719108pt;}
.x2d{left:808.532441pt;}
.x74{left:811.612441pt;}
.x28{left:812.985775pt;}
.x13{left:814.105775pt;}
.x48{left:815.692441pt;}
.x27{left:817.319108pt;}
.x4f{left:818.233795pt;}
.x37{left:819.345775pt;}
.x2b{left:820.652441pt;}
.x49{left:830.025775pt;}
.x47{left:831.319108pt;}
.x46{left:833.772441pt;}
.x1a{left:834.692441pt;}
.x2c{left:839.545775pt;}
.x12{left:841.372441pt;}
.x45{left:842.359108pt;}
.x29{left:843.572441pt;}
.x11{left:844.772441pt;}
.x50{left:849.501320pt;}
.x10{left:850.905775pt;}
.x41{left:852.439108pt;}
.xf{left:853.719108pt;}
.x3a{left:855.519108pt;}
.x35{left:862.305775pt;}
.x61{left:864.004987pt;}
.x42{left:869.532441pt;}
.x15{left:870.892441pt;}
.xd{left:873.719108pt;}
.xe{left:879.425775pt;}
.x43{left:880.452441pt;}
.x66{left:882.305775pt;}
.x68{left:883.265775pt;}
.x44{left:884.492441pt;}
.x26{left:886.559108pt;}
.x2a{left:889.679108pt;}
.x69{left:892.239108pt;}
.x6a{left:894.319108pt;}
.x67{left:895.212441pt;}
.x51{left:898.344845pt;}
.x62{left:900.954616pt;}
.x25{left:902.185775pt;}
.x23{left:904.639108pt;}
.x22{left:905.732441pt;}
.x36{left:907.692441pt;}
.x24{left:908.892441pt;}
.x63{left:911.505775pt;}
.x39{left:913.399108pt;}
.x64{left:917.959108pt;}
.x65{left:920.399108pt;}
.x38{left:928.279108pt;}
.x53{left:948.900183pt;}
.x52{left:951.081224pt;}
.x57{left:952.904371pt;}
.x54{left:954.051953pt;}
.xc{left:966.309371pt;}
}




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