
    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_0de5c436a35e2b1afad1712f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_da3b4968d2f162e4bf9d6cea.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b214c22cb05f82a990f0b95a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_b99a64c6b9e11018ea60c497.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909180;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_c74d27093dd2355fc5986f85.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_348361d9e317e774ac699011.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.023438;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_4daf1baa980142eb679b48ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.998535;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;}
.m2{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009900px;}
.ls5{letter-spacing:0.027480px;}
.ls4{letter-spacing:0.086040px;}
.lsf{letter-spacing:0.127080px;}
.lsb{letter-spacing:0.187860px;}
.ls3{letter-spacing:0.259560px;}
.lsd{letter-spacing:0.275460px;}
.ls2{letter-spacing:0.317640px;}
.lsc{letter-spacing:0.375684px;}
.ls8{letter-spacing:0.591900px;}
.ls12{letter-spacing:2.171219px;}
.ls13{letter-spacing:3.069479px;}
.lse{letter-spacing:5.052898px;}
.ls10{letter-spacing:5.773378px;}
.ls6{letter-spacing:6.671577px;}
.ls11{letter-spacing:8.655057px;}
.ls0{letter-spacing:9.375476px;}
.lsa{letter-spacing:10.095956px;}
.ls9{letter-spacing:10.816376px;}
.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;}
}
.ws1{word-spacing:-51.468459px;}
.ws2{word-spacing:-49.679980px;}
.ws0{word-spacing:-16.559993px;}
.ws7{word-spacing:-13.875678px;}
.ws3{word-spacing:-13.499995px;}
.ws5{word-spacing:-10.439996px;}
.ws6{word-spacing:-8.999996px;}
.ws8{word-spacing:-8.279997px;}
.ws4{word-spacing:0.000000px;}
._d{margin-left:-10.129158px;}
._0{margin-left:-1.234502px;}
._2{width:1.283240px;}
._6{width:2.970893px;}
._3{width:4.223820px;}
._5{width:6.087029px;}
._4{width:7.725866px;}
._8{width:9.266842px;}
._7{width:10.283878px;}
._11{width:11.832087px;}
._e{width:13.784192px;}
._a{width:14.930683px;}
._14{width:17.588882px;}
._c{width:19.282119px;}
._b{width:20.577650px;}
._16{width:21.695260px;}
._15{width:22.739062px;}
._18{width:23.842212px;}
._19{width:24.924308px;}
._17{width:25.945403px;}
._1{width:26.951529px;}
._9{width:28.415477px;}
._13{width:29.842802px;}
._f{width:35.405720px;}
._10{width:36.451055px;}
._12{width:195.966987px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:33.119987px;}
.fs2{font-size:35.999986px;}
.fs1{font-size:41.759983px;}
.fs3{font-size:53.999978px;}
.fs0{font-size:66.239974px;}
.y0{bottom:0.000000px;}
.y62{bottom:109.740256px;}
.yed{bottom:110.459956px;}
.y36{bottom:110.460256px;}
.y85{bottom:114.240254px;}
.y61{bottom:125.220250px;}
.yec{bottom:128.639949px;}
.y35{bottom:128.640249px;}
.y60{bottom:129.720248px;}
.ye4{bottom:132.420247px;}
.y34{bottom:133.140247px;}
.y9a{bottom:136.739945px;}
.y84{bottom:136.740245px;}
.y5f{bottom:140.700244px;}
.y83{bottom:141.240244px;}
.y5e{bottom:145.200242px;}
.y33{bottom:146.099942px;}
.yeb{bottom:146.819941px;}
.ye3{bottom:146.820241px;}
.ye2{bottom:150.599940px;}
.y99{bottom:152.219939px;}
.y5d{bottom:156.359937px;}
.y98{bottom:156.719937px;}
.y32{bottom:161.579935px;}
.y82{bottom:164.459934px;}
.ye1{bottom:164.999934px;}
.y31{bottom:166.079934px;}
.yba{bottom:168.419933px;}
.y97{bottom:169.139932px;}
.y5c{bottom:171.839931px;}
.yb9{bottom:172.199931px;}
.y5b{bottom:176.339929px;}
.y30{bottom:177.059929px;}
.y2f{bottom:181.559927px;}
.y81{bottom:182.639927px;}
.ye0{bottom:183.359927px;}
.yb8{bottom:187.319925px;}
.y5a{bottom:188.759924px;}
.y80{bottom:200.819920px;}
.ydf{bottom:201.539919px;}
.y2e{bottom:204.239918px;}
.y96{bottom:206.039918px;}
.y2d{bottom:208.739917px;}
.y7f{bottom:218.999912px;}
.y2c{bottom:219.719912px;}
.y7e{bottom:222.779911px;}
.yde{bottom:223.499911px;}
.y95{bottom:227.819909px;}
.y2b{bottom:235.199906px;}
.y7d{bottom:236.639905px;}
.yea{bottom:237.899905px;}
.y2a{bottom:239.699904px;}
.yb7{bottom:244.379902px;}
.ydd{bottom:246.719901px;}
.y94{bottom:249.779900px;}
.y29{bottom:252.119899px;}
.ye9{bottom:256.079898px;}
.ydc{bottom:264.899894px;}
.yb6{bottom:266.159894px;}
.y7c{bottom:267.599893px;}
.y92{bottom:271.559891px;}
.ye8{bottom:274.259890px;}
.y93{bottom:277.499889px;}
.ye7{bottom:278.039889px;}
.y28{bottom:278.399889px;}
.y59{bottom:279.839888px;}
.y7b{bottom:283.079887px;}
.y7a{bottom:287.579885px;}
.yb5{bottom:287.939885px;}
.ye6{bottom:293.159883px;}
.y79{bottom:299.279880px;}
.y27{bottom:300.359880px;}
.ydb{bottom:301.259879px;}
.y58{bottom:301.619879px;}
.y78{bottom:303.779878px;}
.yda{bottom:305.759878px;}
.y91{bottom:308.279877px;}
.yb4{bottom:309.719876px;}
.yd9{bottom:318.719873px;}
.yd8{bottom:323.219871px;}
.y57{bottom:323.399871px;}
.y77{bottom:326.999869px;}
.y90{bottom:330.239868px;}
.y26{bottom:337.259865px;}
.y56{bottom:345.179862px;}
.yb3{bottom:346.619861px;}
.yd7{bottom:347.159861px;}
.y8f{bottom:366.959853px;}
.y55{bottom:367.139853px;}
.yd6{bottom:368.399853px;}
.y25{bottom:373.979850px;}
.yb1{bottom:383.339847px;}
.y8e{bottom:388.739845px;}
.yb2{bottom:389.279844px;}
.yd5{bottom:390.179844px;}
.y53{bottom:403.859838px;}
.yb0{bottom:405.299838px;}
.y54{bottom:409.799836px;}
.y23{bottom:410.879836px;}
.yd4{bottom:411.959835px;}
.y24{bottom:416.819833px;}
.y52{bottom:425.639830px;}
.yaf{bottom:427.079829px;}
.y22{bottom:432.659827px;}
.yd3{bottom:433.739827px;}
.y8d{bottom:447.419821px;}
.y51{bottom:447.599821px;}
.yae{bottom:448.859820px;}
.yd2{bottom:455.699818px;}
.y8c{bottom:469.199812px;}
.y50{bottom:469.379812px;}
.y20{bottom:469.559812px;}
.yad{bottom:470.639812px;}
.y21{bottom:475.499810px;}
.yd1{bottom:477.479809px;}
.y76{bottom:484.319806px;}
.y8b{bottom:491.159804px;}
.y1f{bottom:491.339803px;}
.yac{bottom:492.599803px;}
.yd0{bottom:499.259800px;}
.y4f{bottom:506.099798px;}
.y1e{bottom:513.119795px;}
.yab{bottom:514.379794px;}
.yce{bottom:521.039792px;}
.ycf{bottom:526.979789px;}
.y4e{bottom:527.879789px;}
.y1d{bottom:534.899786px;}
.yaa{bottom:536.159786px;}
.ycd{bottom:542.819783px;}
.y75{bottom:542.999783px;}
.y8a{bottom:549.659780px;}
.y4d{bottom:549.839780px;}
.ya9{bottom:557.939777px;}
.y74{bottom:564.779774px;}
.y4c{bottom:571.619771px;}
.y1c{bottom:571.799771px;}
.ya8{bottom:579.719768px;}
.y73{bottom:586.559765px;}
.y4b{bottom:593.399763px;}
.ycc{bottom:601.499759px;}
.ya7{bottom:601.679759px;}
.y71{bottom:608.339757px;}
.y1b{bottom:608.519757px;}
.y72{bottom:614.279754px;}
.y89{bottom:615.179754px;}
.yca{bottom:623.279751px;}
.ya5{bottom:623.459751px;}
.ycb{bottom:629.219748px;}
.ya6{bottom:629.399748px;}
.y4a{bottom:630.299748px;}
.y1a{bottom:630.479748px;}
.y70{bottom:645.239742px;}
.y48{bottom:652.079739px;}
.y18{bottom:652.259739px;}
.y49{bottom:658.019737px;}
.y19{bottom:658.199737px;}
.y6f{bottom:667.019733px;}
.y47{bottom:673.859730px;}
.y17{bottom:674.039730px;}
.ya4{bottom:682.139727px;}
.y6e{bottom:688.799724px;}
.y46{bottom:695.639722px;}
.y16{bottom:695.819722px;}
.ya3{bottom:703.919718px;}
.yc9{bottom:710.579716px;}
.y6d{bottom:710.759716px;}
.y15{bottom:717.599713px;}
.ya2{bottom:725.699710px;}
.y45{bottom:732.539707px;}
.y6c{bottom:738.479705px;}
.y14{bottom:739.559704px;}
.ya1{bottom:747.479701px;}
.y44{bottom:754.319698px;}
.y88{bottom:761.339695px;}
.ya0{bottom:769.259692px;}
.y43{bottom:776.099690px;}
.y13{bottom:776.279689px;}
.yc8{bottom:791.039684px;}
.y9f{bottom:791.219684px;}
.y12{bottom:798.059681px;}
.y9d{bottom:812.999675px;}
.y9e{bottom:818.939672px;}
.y11{bottom:820.019672px;}
.yc7{bottom:827.939669px;}
.y42{bottom:834.779666px;}
.y9c{bottom:834.959666px;}
.y10{bottom:841.799663px;}
.yc6{bottom:849.719660px;}
.y41{bottom:856.559657px;}
.y87{bottom:856.739657px;}
.yf{bottom:863.579655px;}
.yc4{bottom:871.679651px;}
.yc5{bottom:877.619649px;}
.y40{bottom:878.519649px;}
.ye{bottom:885.359646px;}
.y6b{bottom:893.459643px;}
.y9b{bottom:893.639643px;}
.yc3{bottom:899.399640px;}
.yc{bottom:907.139637px;}
.yd{bottom:913.079635px;}
.y3e{bottom:915.239634px;}
.y69{bottom:915.419634px;}
.y3f{bottom:921.179632px;}
.y6a{bottom:921.359631px;}
.y3d{bottom:937.199625px;}
.y68{bottom:943.139623px;}
.yb{bottom:944.039622px;}
.yc1{bottom:952.139619px;}
.yc2{bottom:958.079617px;}
.y3c{bottom:958.979616px;}
.y9{bottom:965.819614px;}
.ya{bottom:971.759611px;}
.yc0{bottom:973.919610px;}
.y66{bottom:974.099610px;}
.y67{bottom:980.039608px;}
.y3b{bottom:980.939608px;}
.y8{bottom:987.599605px;}
.ybf{bottom:995.699602px;}
.y65{bottom:995.879602px;}
.y3a{bottom:1002.719599px;}
.y86{bottom:1008.659597px;}
.y7{bottom:1009.559596px;}
.y64{bottom:1017.659593px;}
.y39{bottom:1024.499590px;}
.ybe{bottom:1032.599587px;}
.y63{bottom:1039.439584px;}
.y6{bottom:1046.279581px;}
.ybd{bottom:1054.379578px;}
.y38{bottom:1061.399575px;}
.ye5{bottom:1067.339573px;}
.ybc{bottom:1076.159570px;}
.y5{bottom:1083.179567px;}
.y37{bottom:1098.119561px;}
.y4{bottom:1119.899552px;}
.y3{bottom:1141.859543px;}
.ybb{bottom:1147.799541px;}
.y2{bottom:1174.259530px;}
.y1{bottom:1194.419522px;}
.h6{height:24.241631px;}
.h8{height:30.565535px;}
.h4{height:35.332017px;}
.h7{height:39.524398px;}
.h3{height:40.985140px;}
.h1{height:44.149201px;}
.h5{height:52.998026px;}
.h9{height:52.999226px;}
.h2{height:65.010911px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.620091px;}
.xf{left:132.119947px;}
.x1e{left:136.619945px;}
.xa{left:170.099855px;}
.x3{left:180.720097px;}
.x2b{left:184.499926px;}
.x2c{left:194.939922px;}
.x14{left:196.379921px;}
.x15{left:201.599919px;}
.x1a{left:206.459917px;}
.x37{left:213.119915px;}
.x8{left:215.639914px;}
.x1b{left:216.899913px;}
.x29{left:218.159913px;}
.x9{left:220.859912px;}
.x38{left:223.559911px;}
.x2a{left:228.599909px;}
.x1f{left:235.799906px;}
.x4{left:236.879905px;}
.x5{left:242.099903px;}
.x20{left:246.239902px;}
.x12{left:276.479889px;}
.x13{left:281.699887px;}
.xd{left:302.759879px;}
.xe{left:310.499876px;}
.x31{left:327.599869px;}
.x32{left:338.039865px;}
.x2f{left:357.119857px;}
.x30{left:367.559853px;}
.x33{left:390.959844px;}
.x34{left:401.399839px;}
.x35{left:560.159776px;}
.x36{left:563.939774px;}
.x23{left:566.099774px;}
.x24{left:576.539769px;}
.x27{left:599.939760px;}
.x28{left:610.379756px;}
.x1c{left:613.439755px;}
.x6{left:614.519754px;}
.x7{left:619.739752px;}
.x1d{left:623.879750px;}
.x10{left:626.759749px;}
.x25{left:627.839749px;}
.x11{left:631.979747px;}
.x26{left:638.279745px;}
.xb{left:664.019734px;}
.xc{left:669.239732px;}
.x2d{left:671.219732px;}
.x2e{left:681.659727px;}
.x16{left:703.799718px;}
.x21{left:705.779718px;}
.x17{left:714.239714px;}
.x22{left:716.219714px;}
.x18{left:749.879700px;}
.x1{left:757.079697px;}
.x19{left:765.359694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008800pt;}
.ls5{letter-spacing:0.024427pt;}
.ls4{letter-spacing:0.076480pt;}
.lsf{letter-spacing:0.112960pt;}
.lsb{letter-spacing:0.166987pt;}
.ls3{letter-spacing:0.230720pt;}
.lsd{letter-spacing:0.244853pt;}
.ls2{letter-spacing:0.282347pt;}
.lsc{letter-spacing:0.333941pt;}
.ls8{letter-spacing:0.526133pt;}
.ls12{letter-spacing:1.929973pt;}
.ls13{letter-spacing:2.728426pt;}
.lse{letter-spacing:4.491465pt;}
.ls10{letter-spacing:5.131891pt;}
.ls6{letter-spacing:5.930291pt;}
.ls11{letter-spacing:7.693384pt;}
.ls0{letter-spacing:8.333757pt;}
.lsa{letter-spacing:8.974183pt;}
.ls9{letter-spacing:9.614556pt;}
.ws1{word-spacing:-45.749742pt;}
.ws2{word-spacing:-44.159982pt;}
.ws0{word-spacing:-14.719994pt;}
.ws7{word-spacing:-12.333936pt;}
.ws3{word-spacing:-11.999995pt;}
.ws5{word-spacing:-9.279996pt;}
.ws6{word-spacing:-7.999997pt;}
.ws8{word-spacing:-7.359997pt;}
.ws4{word-spacing:0.000000pt;}
._d{margin-left:-9.003696pt;}
._0{margin-left:-1.097336pt;}
._2{width:1.140658pt;}
._6{width:2.640794pt;}
._3{width:3.754507pt;}
._5{width:5.410692pt;}
._4{width:6.867437pt;}
._8{width:8.237193pt;}
._7{width:9.141225pt;}
._11{width:10.517410pt;}
._e{width:12.252615pt;}
._a{width:13.271718pt;}
._14{width:15.634562pt;}
._c{width:17.139662pt;}
._b{width:18.291244pt;}
._16{width:19.284675pt;}
._15{width:20.212500pt;}
._18{width:21.193077pt;}
._19{width:22.154941pt;}
._17{width:23.062580pt;}
._1{width:23.956915pt;}
._9{width:25.258202pt;}
._13{width:26.526935pt;}
._f{width:31.471751pt;}
._10{width:32.400938pt;}
._12{width:174.192878pt;}
.fs4{font-size:29.439988pt;}
.fs2{font-size:31.999987pt;}
.fs1{font-size:37.119985pt;}
.fs3{font-size:47.999981pt;}
.fs0{font-size:58.879976pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:97.546894pt;}
.yed{bottom:98.186627pt;}
.y36{bottom:98.186894pt;}
.y85{bottom:101.546893pt;}
.y61{bottom:111.306889pt;}
.yec{bottom:114.346621pt;}
.y35{bottom:114.346888pt;}
.y60{bottom:115.306887pt;}
.ye4{bottom:117.706886pt;}
.y34{bottom:118.346886pt;}
.y9a{bottom:121.546618pt;}
.y84{bottom:121.546885pt;}
.y5f{bottom:125.066883pt;}
.y83{bottom:125.546883pt;}
.y5e{bottom:129.066882pt;}
.y33{bottom:129.866615pt;}
.yeb{bottom:130.506614pt;}
.ye3{bottom:130.506881pt;}
.ye2{bottom:133.866613pt;}
.y99{bottom:135.306613pt;}
.y5d{bottom:138.986611pt;}
.y98{bottom:139.306611pt;}
.y32{bottom:143.626609pt;}
.y82{bottom:146.186608pt;}
.ye1{bottom:146.666608pt;}
.y31{bottom:147.626608pt;}
.yba{bottom:149.706607pt;}
.y97{bottom:150.346607pt;}
.y5c{bottom:152.746606pt;}
.yb9{bottom:153.066605pt;}
.y5b{bottom:156.746604pt;}
.y30{bottom:157.386604pt;}
.y2f{bottom:161.386602pt;}
.y81{bottom:162.346602pt;}
.ye0{bottom:162.986601pt;}
.yb8{bottom:166.506600pt;}
.y5a{bottom:167.786600pt;}
.y80{bottom:178.506595pt;}
.ydf{bottom:179.146595pt;}
.y2e{bottom:181.546594pt;}
.y96{bottom:183.146593pt;}
.y2d{bottom:185.546592pt;}
.y7f{bottom:194.666589pt;}
.y2c{bottom:195.306589pt;}
.y7e{bottom:198.026587pt;}
.yde{bottom:198.666587pt;}
.y95{bottom:202.506586pt;}
.y2b{bottom:209.066583pt;}
.y7d{bottom:210.346583pt;}
.yea{bottom:211.466582pt;}
.y2a{bottom:213.066581pt;}
.yb7{bottom:217.226580pt;}
.ydd{bottom:219.306579pt;}
.y94{bottom:222.026578pt;}
.y29{bottom:224.106577pt;}
.ye9{bottom:227.626576pt;}
.ydc{bottom:235.466572pt;}
.yb6{bottom:236.586572pt;}
.y7c{bottom:237.866572pt;}
.y92{bottom:241.386570pt;}
.ye8{bottom:243.786569pt;}
.y93{bottom:246.666568pt;}
.ye7{bottom:247.146568pt;}
.y28{bottom:247.466568pt;}
.y59{bottom:248.746567pt;}
.y7b{bottom:251.626566pt;}
.y7a{bottom:255.626564pt;}
.yb5{bottom:255.946564pt;}
.ye6{bottom:260.586562pt;}
.y79{bottom:266.026560pt;}
.y27{bottom:266.986560pt;}
.ydb{bottom:267.786560pt;}
.y58{bottom:268.106559pt;}
.y78{bottom:270.026559pt;}
.yda{bottom:271.786558pt;}
.y91{bottom:274.026557pt;}
.yb4{bottom:275.306557pt;}
.yd9{bottom:283.306553pt;}
.yd8{bottom:287.306552pt;}
.y57{bottom:287.466552pt;}
.y77{bottom:290.666550pt;}
.y90{bottom:293.546549pt;}
.y26{bottom:299.786547pt;}
.y56{bottom:306.826544pt;}
.yb3{bottom:308.106543pt;}
.yd7{bottom:308.586543pt;}
.y8f{bottom:326.186536pt;}
.y55{bottom:326.346536pt;}
.yd6{bottom:327.466536pt;}
.y25{bottom:332.426534pt;}
.yb1{bottom:340.746530pt;}
.y8e{bottom:345.546528pt;}
.yb2{bottom:346.026528pt;}
.yd5{bottom:346.826528pt;}
.y53{bottom:358.986523pt;}
.yb0{bottom:360.266523pt;}
.y54{bottom:364.266521pt;}
.y23{bottom:365.226521pt;}
.yd4{bottom:366.186520pt;}
.y24{bottom:370.506518pt;}
.y52{bottom:378.346515pt;}
.yaf{bottom:379.626515pt;}
.y22{bottom:384.586513pt;}
.yd3{bottom:385.546512pt;}
.y8d{bottom:397.706508pt;}
.y51{bottom:397.866508pt;}
.yae{bottom:398.986507pt;}
.yd2{bottom:405.066505pt;}
.y8c{bottom:417.066500pt;}
.y50{bottom:417.226500pt;}
.y20{bottom:417.386500pt;}
.yad{bottom:418.346499pt;}
.y21{bottom:422.666498pt;}
.yd1{bottom:424.426497pt;}
.y76{bottom:430.506494pt;}
.y8b{bottom:436.586492pt;}
.y1f{bottom:436.746492pt;}
.yac{bottom:437.866492pt;}
.yd0{bottom:443.786489pt;}
.y4f{bottom:449.866487pt;}
.y1e{bottom:456.106484pt;}
.yab{bottom:457.226484pt;}
.yce{bottom:463.146481pt;}
.ycf{bottom:468.426479pt;}
.y4e{bottom:469.226479pt;}
.y1d{bottom:475.466476pt;}
.yaa{bottom:476.586476pt;}
.ycd{bottom:482.506474pt;}
.y75{bottom:482.666474pt;}
.y8a{bottom:488.586471pt;}
.y4d{bottom:488.746471pt;}
.ya9{bottom:495.946468pt;}
.y74{bottom:502.026466pt;}
.y4c{bottom:508.106463pt;}
.y1c{bottom:508.266463pt;}
.ya8{bottom:515.306461pt;}
.y73{bottom:521.386458pt;}
.y4b{bottom:527.466456pt;}
.ycc{bottom:534.666453pt;}
.ya7{bottom:534.826453pt;}
.y71{bottom:540.746450pt;}
.y1b{bottom:540.906450pt;}
.y72{bottom:546.026448pt;}
.y89{bottom:546.826448pt;}
.yca{bottom:554.026445pt;}
.ya5{bottom:554.186445pt;}
.ycb{bottom:559.306443pt;}
.ya6{bottom:559.466443pt;}
.y4a{bottom:560.266443pt;}
.y1a{bottom:560.426442pt;}
.y70{bottom:573.546437pt;}
.y48{bottom:579.626435pt;}
.y18{bottom:579.786435pt;}
.y49{bottom:584.906433pt;}
.y19{bottom:585.066433pt;}
.y6f{bottom:592.906430pt;}
.y47{bottom:598.986427pt;}
.y17{bottom:599.146427pt;}
.ya4{bottom:606.346424pt;}
.y6e{bottom:612.266422pt;}
.y46{bottom:618.346419pt;}
.y16{bottom:618.506419pt;}
.ya3{bottom:625.706416pt;}
.yc9{bottom:631.626414pt;}
.y6d{bottom:631.786414pt;}
.y15{bottom:637.866412pt;}
.ya2{bottom:645.066409pt;}
.y45{bottom:651.146406pt;}
.y6c{bottom:656.426404pt;}
.y14{bottom:657.386404pt;}
.ya1{bottom:664.426401pt;}
.y44{bottom:670.506398pt;}
.y88{bottom:676.746396pt;}
.ya0{bottom:683.786393pt;}
.y43{bottom:689.866391pt;}
.y13{bottom:690.026391pt;}
.yc8{bottom:703.146385pt;}
.y9f{bottom:703.306385pt;}
.y12{bottom:709.386383pt;}
.y9d{bottom:722.666378pt;}
.y9e{bottom:727.946375pt;}
.y11{bottom:728.906375pt;}
.yc7{bottom:735.946372pt;}
.y42{bottom:742.026370pt;}
.y9c{bottom:742.186370pt;}
.y10{bottom:748.266367pt;}
.yc6{bottom:755.306365pt;}
.y41{bottom:761.386362pt;}
.y87{bottom:761.546362pt;}
.yf{bottom:767.626360pt;}
.yc4{bottom:774.826357pt;}
.yc5{bottom:780.106355pt;}
.y40{bottom:780.906354pt;}
.ye{bottom:786.986352pt;}
.y6b{bottom:794.186349pt;}
.y9b{bottom:794.346349pt;}
.yc3{bottom:799.466347pt;}
.yc{bottom:806.346344pt;}
.yd{bottom:811.626342pt;}
.y3e{bottom:813.546341pt;}
.y69{bottom:813.706341pt;}
.y3f{bottom:818.826339pt;}
.y6a{bottom:818.986339pt;}
.y3d{bottom:833.066333pt;}
.y68{bottom:838.346331pt;}
.yb{bottom:839.146331pt;}
.yc1{bottom:846.346328pt;}
.yc2{bottom:851.626326pt;}
.y3c{bottom:852.426326pt;}
.y9{bottom:858.506323pt;}
.ya{bottom:863.786321pt;}
.yc0{bottom:865.706320pt;}
.y66{bottom:865.866320pt;}
.y67{bottom:871.146318pt;}
.y3b{bottom:871.946318pt;}
.y8{bottom:877.866316pt;}
.ybf{bottom:885.066313pt;}
.y65{bottom:885.226313pt;}
.y3a{bottom:891.306310pt;}
.y86{bottom:896.586308pt;}
.y7{bottom:897.386308pt;}
.y64{bottom:904.586305pt;}
.y39{bottom:910.666302pt;}
.ybe{bottom:917.866300pt;}
.y63{bottom:923.946297pt;}
.y6{bottom:930.026295pt;}
.ybd{bottom:937.226292pt;}
.y38{bottom:943.466289pt;}
.ye5{bottom:948.746287pt;}
.ybc{bottom:956.586284pt;}
.y5{bottom:962.826282pt;}
.y37{bottom:976.106276pt;}
.y4{bottom:995.466268pt;}
.y3{bottom:1014.986261pt;}
.ybb{bottom:1020.266259pt;}
.y2{bottom:1043.786249pt;}
.y1{bottom:1061.706242pt;}
.h6{height:21.548116pt;}
.h8{height:27.169364pt;}
.h4{height:31.406237pt;}
.h7{height:35.132798pt;}
.h3{height:36.431235pt;}
.h1{height:39.243734pt;}
.h5{height:47.109356pt;}
.h9{height:47.110423pt;}
.h2{height:57.787477pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.440081pt;}
.xf{left:117.439953pt;}
.x1e{left:121.439951pt;}
.xa{left:151.199871pt;}
.x3{left:160.640086pt;}
.x2b{left:163.999934pt;}
.x2c{left:173.279931pt;}
.x14{left:174.559930pt;}
.x15{left:179.199928pt;}
.x1a{left:183.519927pt;}
.x37{left:189.439924pt;}
.x8{left:191.679923pt;}
.x1b{left:192.799923pt;}
.x29{left:193.919922pt;}
.x9{left:196.319921pt;}
.x38{left:198.719921pt;}
.x2a{left:203.199919pt;}
.x1f{left:209.599916pt;}
.x4{left:210.559916pt;}
.x5{left:215.199914pt;}
.x20{left:218.879912pt;}
.x12{left:245.759902pt;}
.x13{left:250.399900pt;}
.xd{left:269.119892pt;}
.xe{left:275.999890pt;}
.x31{left:291.199884pt;}
.x32{left:300.479880pt;}
.x2f{left:317.439873pt;}
.x30{left:326.719869pt;}
.x33{left:347.519861pt;}
.x34{left:356.799857pt;}
.x35{left:497.919801pt;}
.x36{left:501.279799pt;}
.x23{left:503.199799pt;}
.x24{left:512.479795pt;}
.x27{left:533.279787pt;}
.x28{left:542.559783pt;}
.x1c{left:545.279782pt;}
.x6{left:546.239782pt;}
.x7{left:550.879780pt;}
.x1d{left:554.559778pt;}
.x10{left:557.119777pt;}
.x25{left:558.079777pt;}
.x11{left:561.759775pt;}
.x26{left:567.359773pt;}
.xb{left:590.239764pt;}
.xc{left:594.879762pt;}
.x2d{left:596.639761pt;}
.x2e{left:605.919758pt;}
.x16{left:625.599750pt;}
.x21{left:627.359749pt;}
.x17{left:634.879746pt;}
.x22{left:636.639745pt;}
.x18{left:666.559733pt;}
.x1{left:672.959731pt;}
.x19{left:680.319728pt;}
}




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