
    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_f159d2b396dbebb4f9c3f0b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.869629;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_9cd5b30df0c5a05a5a998457.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912598;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_d6c8b5ad82aa07009c714ccd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_dcddac65c046c383f7501df8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_4f556f00acf12be997dd0901.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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);}
.m2{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.107987px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:20.821492px;}
.ls2{letter-spacing:83.418567px;}
.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;}
}
.ws2{word-spacing:-17.992193px;}
.ws8{word-spacing:-12.054805px;}
.ws6{word-spacing:-0.115630px;}
.ws1{word-spacing:-0.112785px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.463963px;}
.ws9{word-spacing:0.761717px;}
.ws7{word-spacing:2.494234px;}
.ws5{word-spacing:12.252421px;}
.ws4{word-spacing:12.372560px;}
._2f{margin-left:-2.310276px;}
._5{margin-left:-1.060241px;}
._4{width:1.004537px;}
._b{width:2.805132px;}
._1{width:4.158000px;}
._2{width:5.250024px;}
._0{width:7.200000px;}
._a{width:8.272619px;}
._8{width:9.485335px;}
._7{width:10.761274px;}
._c{width:11.910189px;}
._6{width:13.082789px;}
._e{width:14.302643px;}
._f{width:15.314246px;}
._9{width:16.406244px;}
._11{width:19.824180px;}
._1d{width:20.841458px;}
._17{width:21.855014px;}
._d{width:22.969185px;}
._1b{width:24.267723px;}
._15{width:25.861417px;}
._1e{width:27.319225px;}
._12{width:28.765918px;}
._13{width:30.031414px;}
._2c{width:31.264028px;}
._1c{width:32.285200px;}
._1a{width:33.449780px;}
._3{width:34.781976px;}
._14{width:36.113893px;}
._18{width:37.295993px;}
._16{width:38.779398px;}
._29{width:40.134479px;}
._21{width:41.142085px;}
._22{width:42.818364px;}
._27{width:44.269169px;}
._2e{width:45.332524px;}
._1f{width:47.205326px;}
._2a{width:48.395429px;}
._10{width:50.348633px;}
._2d{width:51.730043px;}
._23{width:55.420035px;}
._19{width:56.631414px;}
._26{width:58.231401px;}
._28{width:60.261354px;}
._20{width:65.622800px;}
._2b{width:66.880336px;}
._25{width:71.044320px;}
._24{width:72.308656px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.219221px;}
.fs3{font-size:66.211774px;}
.fs2{font-size:71.968771px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.406406px;}
.yd{bottom:4.496551px;}
.yc{bottom:67.378320px;}
.yb{bottom:76.687893px;}
.y48{bottom:115.550298px;}
.yd3{bottom:115.551798px;}
.y2a{bottom:117.707897px;}
.y136{bottom:118.789097px;}
.yea{bottom:125.985344px;}
.y6f{bottom:125.986094px;}
.y11e{bottom:128.684293px;}
.y105{bottom:131.562491px;}
.yb7{bottom:136.061290px;}
.y9a{bottom:136.241890px;}
.y4b{bottom:142.178287px;}
.y47{bottom:146.676185px;}
.yd2{bottom:146.677685px;}
.y29{bottom:148.654535px;}
.y135{bottom:149.734984px;}
.ye9{bottom:156.931981px;}
.y6e{bottom:156.932731px;}
.y11d{bottom:159.630930px;}
.y104{bottom:162.689129px;}
.y4a{bottom:162.869129px;}
.yb6{bottom:167.187927px;}
.y99{bottom:167.368527px;}
.y46{bottom:177.622823px;}
.yd1{bottom:177.624323px;}
.y28{bottom:179.781172px;}
.y134{bottom:180.861622px;}
.ye8{bottom:188.058619px;}
.y6d{bottom:188.059369px;}
.y11c{bottom:190.757568px;}
.y103{bottom:193.635767px;}
.yb5{bottom:198.133815px;}
.y98{bottom:198.314415px;}
.y49{bottom:208.389461px;}
.y45{bottom:208.749461px;}
.yd0{bottom:208.750961px;}
.y133{bottom:211.808259px;}
.ye7{bottom:219.005256px;}
.y6c{bottom:219.006006px;}
.y11b{bottom:221.703455px;}
.y102{bottom:224.761654px;}
.y27{bottom:225.481504px;}
.yb4{bottom:229.260452px;}
.y97{bottom:229.441052px;}
.y44{bottom:239.696098px;}
.ycf{bottom:239.697598px;}
.y132{bottom:242.934897px;}
.ye6{bottom:250.131144px;}
.y6b{bottom:250.131894px;}
.y11a{bottom:252.830093px;}
.y101{bottom:255.709642px;}
.yb3{bottom:260.207090px;}
.y43{bottom:270.821986px;}
.yce{bottom:270.823486px;}
.y96{bottom:271.003486px;}
.y131{bottom:273.880784px;}
.ye5{bottom:281.077782px;}
.y6a{bottom:281.078532px;}
.y119{bottom:283.778081px;}
.y100{bottom:286.836279px;}
.y26{bottom:287.914779px;}
.yb2{bottom:291.333728px;}
.y95{bottom:291.694327px;}
.y42{bottom:301.768623px;}
.ycd{bottom:301.770123px;}
.y130{bottom:305.007422px;}
.ye4{bottom:312.204419px;}
.y69{bottom:312.205169px;}
.y94{bottom:312.385169px;}
.y118{bottom:314.904718px;}
.yff{bottom:317.782917px;}
.y25{bottom:318.861416px;}
.yb1{bottom:322.281715px;}
.y41{bottom:332.895261px;}
.y93{bottom:333.076011px;}
.y12f{bottom:335.955410px;}
.ye3{bottom:343.152407px;}
.y68{bottom:343.153157px;}
.y117{bottom:345.851356px;}
.yfe{bottom:348.909554px;}
.y24{bottom:349.989404px;}
.yb0{bottom:353.407603px;}
.y92{bottom:353.766853px;}
.y40{bottom:363.843249px;}
.ycc{bottom:364.024748px;}
.y12e{bottom:366.902047px;}
.ye2{bottom:374.279044px;}
.y67{bottom:374.279794px;}
.y91{bottom:374.459794px;}
.yfd{bottom:379.855442px;}
.y23{bottom:380.935292px;}
.yaf{bottom:384.354240px;}
.ycb{bottom:384.715590px;}
.y3f{bottom:394.969886px;}
.y116{bottom:394.970186px;}
.y90{bottom:395.150636px;}
.ye1{bottom:405.224932px;}
.y66{bottom:405.225682px;}
.yca{bottom:405.406432px;}
.yfc{bottom:410.982080px;}
.y22{bottom:411.881929px;}
.yae{bottom:415.480878px;}
.y8f{bottom:415.841478px;}
.y12d{bottom:416.020878px;}
.y3e{bottom:425.916524px;}
.y115{bottom:425.916824px;}
.yc9{bottom:426.097274px;}
.ye0{bottom:436.171570px;}
.y65{bottom:436.172320px;}
.y8e{bottom:436.352319px;}
.yfb{bottom:441.928717px;}
.y21{bottom:443.008567px;}
.yad{bottom:446.427515px;}
.yc8{bottom:446.788115px;}
.y12c{bottom:446.967515px;}
.y3d{bottom:456.862411px;}
.y114{bottom:456.862711px;}
.y8d{bottom:457.043161px;}
.ydf{bottom:467.298207px;}
.y64{bottom:467.298957px;}
.yc7{bottom:467.478957px;}
.yfa{bottom:473.055355px;}
.y20{bottom:473.955204px;}
.yac{bottom:477.554153px;}
.y8c{bottom:477.734003px;}
.y12b{bottom:478.094153px;}
.y3c{bottom:487.989049px;}
.y113{bottom:487.989349px;}
.yc6{bottom:488.169799px;}
.yde{bottom:498.244845px;}
.y63{bottom:498.245595px;}
.y8b{bottom:498.424845px;}
.yf9{bottom:504.001242px;}
.y1f{bottom:505.081092px;}
.yab{bottom:508.500041px;}
.yc5{bottom:508.860640px;}
.y12a{bottom:509.040040px;}
.y112{bottom:518.575987px;}
.y3b{bottom:518.935686px;}
.y8a{bottom:519.115686px;}
.ydd{bottom:529.370732px;}
.y62{bottom:529.371482px;}
.yc4{bottom:529.551482px;}
.yf8{bottom:535.127880px;}
.y1e{bottom:536.027730px;}
.yaa{bottom:539.626678px;}
.y89{bottom:539.806528px;}
.y3a{bottom:550.062324px;}
.yc3{bottom:550.242324px;}
.y129{bottom:558.158871px;}
.ydc{bottom:560.317370px;}
.y61{bottom:560.318120px;}
.yf7{bottom:566.075868px;}
.y1d{bottom:567.154367px;}
.y88{bottom:570.753166px;}
.yc2{bottom:570.933166px;}
.y39{bottom:581.008212px;}
.y111{bottom:581.008512px;}
.ya9{bottom:581.188362px;}
.y128{bottom:589.105508px;}
.ydb{bottom:591.444007px;}
.y60{bottom:591.444757px;}
.yc1{bottom:591.624007px;}
.yf6{bottom:597.202505px;}
.y1c{bottom:598.101005px;}
.y87{bottom:601.699803px;}
.y38{bottom:612.134849px;}
.y110{bottom:612.135149px;}
.yc0{bottom:612.314849px;}
.ya8{bottom:616.273948px;}
.y127{bottom:620.232146px;}
.yda{bottom:622.390645px;}
.y5f{bottom:622.391395px;}
.yf5{bottom:628.149143px;}
.y1b{bottom:629.227642px;}
.y86{bottom:632.825691px;}
.ybf{bottom:633.005691px;}
.ya7{bottom:635.346140px;}
.y37{bottom:643.082837px;}
.y10f{bottom:643.083137px;}
.y126{bottom:651.178784px;}
.yd9{bottom:653.518633px;}
.y5e{bottom:653.519383px;}
.ybe{bottom:653.697283px;}
.ya6{bottom:654.237732px;}
.yf4{bottom:659.275030px;}
.y1a{bottom:660.175030px;}
.y85{bottom:663.773679px;}
.ya5{bottom:673.309925px;}
.y36{bottom:674.209474px;}
.y10e{bottom:674.209774px;}
.y73{bottom:674.389474px;}
.yd8{bottom:684.464520px;}
.y5d{bottom:684.465270px;}
.yf3{bottom:690.221668px;}
.y19{bottom:691.301668px;}
.y72{bottom:694.720316px;}
.y84{bottom:694.900316px;}
.ybd{bottom:695.080316px;}
.y125{bottom:700.297614px;}
.y35{bottom:705.156112px;}
.y10d{bottom:705.156412px;}
.yd7{bottom:705.336112px;}
.ya4{bottom:707.135211px;}
.y71{bottom:715.411158px;}
.y5c{bottom:715.591908px;}
.ybc{bottom:715.771158px;}
.yf2{bottom:721.348305px;}
.y18{bottom:722.248305px;}
.y83{bottom:725.846954px;}
.yd6{bottom:726.026954px;}
.ya3{bottom:726.207404px;}
.y124{bottom:731.244252px;}
.y7{bottom:732.091500px;}
.y106{bottom:735.922000px;}
.y70{bottom:736.102000px;}
.y34{bottom:736.282000px;}
.y10c{bottom:736.283500px;}
.ybb{bottom:736.461999px;}
.ya2{bottom:745.098246px;}
.y5b{bottom:746.538545px;}
.yd5{bottom:746.717795px;}
.yf1{bottom:752.294943px;}
.y17{bottom:753.374943px;}
.y6{bottom:753.691500px;}
.y82{bottom:756.973591px;}
.yba{bottom:757.153591px;}
.y123{bottom:762.370139px;}
.ya1{bottom:764.170438px;}
.y33{bottom:767.228637px;}
.y10b{bottom:767.230137px;}
.yd4{bottom:767.408637px;}
.y5{bottom:775.291500px;}
.y5a{bottom:777.665183px;}
.yb9{bottom:777.844433px;}
.ya0{bottom:783.062031px;}
.yf0{bottom:783.241581px;}
.y16{bottom:784.321580px;}
.y81{bottom:787.919479px;}
.y4{bottom:796.891500px;}
.y32{bottom:798.355275px;}
.y10a{bottom:798.356025px;}
.yb8{bottom:798.535275px;}
.y9f{bottom:801.954223px;}
.y59{bottom:808.611821px;}
.y122{bottom:811.308970px;}
.yef{bottom:814.367468px;}
.y15{bottom:815.447468px;}
.y3{bottom:818.491500px;}
.y80{bottom:819.046116px;}
.y31{bottom:829.301912px;}
.y109{bottom:829.302662px;}
.y9e{bottom:835.959510px;}
.y58{bottom:839.737708px;}
.y121{bottom:842.435607px;}
.yee{bottom:845.315456px;}
.y7f{bottom:849.992754px;}
.y9d{bottom:854.851702px;}
.y30{bottom:860.428550px;}
.y108{bottom:860.429300px;}
.y2{bottom:861.691500px;}
.y76{bottom:870.684346px;}
.y120{bottom:873.382245px;}
.y9c{bottom:873.922544px;}
.yed{bottom:876.442093px;}
.y14{bottom:877.160743px;}
.y7e{bottom:881.119392px;}
.y1{bottom:883.291500px;}
.y2f{bottom:891.374437px;}
.y107{bottom:891.375187px;}
.y9b{bottom:892.814737px;}
.y57{bottom:901.810983px;}
.y11f{bottom:904.510232px;}
.yec{bottom:907.388731px;}
.y75{bottom:912.246779px;}
.y2e{bottom:922.501075px;}
.y7d{bottom:922.681075px;}
.y56{bottom:932.758971px;}
.y74{bottom:932.937621px;}
.y7c{bottom:943.371917px;}
.yeb{bottom:953.089063px;}
.y13{bottom:953.449063px;}
.y55{bottom:953.628463px;}
.y7b{bottom:964.064858px;}
.y54{bottom:974.320654px;}
.y12{bottom:984.575700px;}
.y7a{bottom:984.755700px;}
.y53{bottom:995.011496px;}
.y79{bottom:1005.446542px;}
.y11{bottom:1015.522338px;}
.y52{bottom:1015.702338px;}
.y78{bottom:1026.137384px;}
.y51{bottom:1036.393179px;}
.y10{bottom:1046.648225px;}
.y77{bottom:1046.828225px;}
.y50{bottom:1057.084021px;}
.y2d{bottom:1077.594863px;}
.y4f{bottom:1077.774863px;}
.y4e{bottom:1098.465705px;}
.yf{bottom:1108.361501px;}
.y2c{bottom:1108.721501px;}
.y4d{bottom:1119.157296px;}
.ye{bottom:1139.308138px;}
.y2b{bottom:1139.668138px;}
.y4c{bottom:1139.848138px;}
.ya{bottom:1184.470450px;}
.y9{bottom:1198.324115px;}
.h4{height:20.690820px;}
.h3{height:33.598061px;}
.h1{height:49.781250px;}
.ha{height:49.970504px;}
.h6{height:50.146209px;}
.h7{height:58.096952px;}
.h5{height:63.148380px;}
.h9{height:66.577525px;}
.h8{height:75.417528px;}
.h2{height:1262.307994px;}
.h0{height:1263.000000px;}
.w2{width:18.169200px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.479249px;}
.x1{left:151.974000px;}
.xb{left:154.464913px;}
.xa{left:169.934777px;}
.xf{left:180.548928px;}
.x4{left:183.967426px;}
.x10{left:207.533194px;}
.xc{left:212.391650px;}
.x5{left:225.882796px;}
.x8{left:249.629398px;}
.xd{left:260.242387px;}
.x7{left:273.914580px;}
.x6{left:313.852054px;}
.x9{left:339.216648px;}
.x12{left:378.974468px;}
.x11{left:562.828275px;}
.x13{left:564.086856px;}
.xe{left:606.003605px;}
.x3{left:746.861400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.429322pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:18.507993pt;}
.ls2{letter-spacing:74.149837pt;}
.ws2{word-spacing:-15.993060pt;}
.ws8{word-spacing:-10.715382pt;}
.ws6{word-spacing:-0.102782pt;}
.ws1{word-spacing:-0.100253pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.412411pt;}
.ws9{word-spacing:0.677082pt;}
.ws7{word-spacing:2.217097pt;}
.ws5{word-spacing:10.891041pt;}
.ws4{word-spacing:10.997831pt;}
._2f{margin-left:-2.053579pt;}
._5{margin-left:-0.942437pt;}
._4{width:0.892922pt;}
._b{width:2.493451pt;}
._1{width:3.696000pt;}
._2{width:4.666688pt;}
._0{width:6.400000pt;}
._a{width:7.353439pt;}
._8{width:8.431409pt;}
._7{width:9.565577pt;}
._c{width:10.586835pt;}
._6{width:11.629146pt;}
._e{width:12.713461pt;}
._f{width:13.612663pt;}
._9{width:14.583328pt;}
._11{width:17.621494pt;}
._1d{width:18.525740pt;}
._17{width:19.426679pt;}
._d{width:20.417053pt;}
._1b{width:21.571309pt;}
._15{width:22.987926pt;}
._1e{width:24.283755pt;}
._12{width:25.569705pt;}
._13{width:26.694590pt;}
._2c{width:27.790247pt;}
._1c{width:28.697956pt;}
._1a{width:29.733138pt;}
._3{width:30.917312pt;}
._14{width:32.101238pt;}
._18{width:33.151994pt;}
._16{width:34.470576pt;}
._29{width:35.675093pt;}
._21{width:36.570742pt;}
._22{width:38.060768pt;}
._27{width:39.350372pt;}
._2e{width:40.295577pt;}
._1f{width:41.960290pt;}
._2a{width:43.018159pt;}
._10{width:44.754340pt;}
._2d{width:45.982260pt;}
._23{width:49.262253pt;}
._19{width:50.339035pt;}
._26{width:51.761245pt;}
._28{width:53.565648pt;}
._20{width:58.331378pt;}
._2b{width:59.449188pt;}
._25{width:63.150507pt;}
._24{width:64.274360pt;}
.fs1{font-size:42.861530pt;}
.fs3{font-size:58.854910pt;}
.fs2{font-size:63.972241pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.361250pt;}
.yd{bottom:3.996934pt;}
.yc{bottom:59.891840pt;}
.yb{bottom:68.167016pt;}
.y48{bottom:102.711376pt;}
.yd3{bottom:102.712709pt;}
.y2a{bottom:104.629242pt;}
.y136{bottom:105.590308pt;}
.yea{bottom:111.986972pt;}
.y6f{bottom:111.987639pt;}
.y11e{bottom:114.386038pt;}
.y105{bottom:116.944437pt;}
.yb7{bottom:120.943369pt;}
.y9a{bottom:121.103902pt;}
.y4b{bottom:126.380700pt;}
.y47{bottom:130.378831pt;}
.yd2{bottom:130.380165pt;}
.y29{bottom:132.137364pt;}
.y135{bottom:133.097764pt;}
.ye9{bottom:139.495094pt;}
.y6e{bottom:139.495761pt;}
.y11d{bottom:141.894160pt;}
.y104{bottom:144.612559pt;}
.y4a{bottom:144.772559pt;}
.yb6{bottom:148.611491pt;}
.y99{bottom:148.772024pt;}
.y46{bottom:157.886954pt;}
.yd1{bottom:157.888287pt;}
.y28{bottom:159.805486pt;}
.y134{bottom:160.765886pt;}
.ye8{bottom:167.163217pt;}
.y6d{bottom:167.163883pt;}
.y11c{bottom:169.562282pt;}
.y103{bottom:172.120681pt;}
.yb5{bottom:176.118946pt;}
.y98{bottom:176.279480pt;}
.y49{bottom:185.235076pt;}
.y45{bottom:185.555076pt;}
.yd0{bottom:185.556409pt;}
.y133{bottom:188.274008pt;}
.ye7{bottom:194.671339pt;}
.y6c{bottom:194.672006pt;}
.y11b{bottom:197.069738pt;}
.y102{bottom:199.788137pt;}
.y27{bottom:200.428003pt;}
.yb4{bottom:203.787069pt;}
.y97{bottom:203.947602pt;}
.y44{bottom:213.063198pt;}
.ycf{bottom:213.064532pt;}
.y132{bottom:215.942131pt;}
.ye6{bottom:222.338795pt;}
.y6b{bottom:222.339461pt;}
.y11a{bottom:224.737860pt;}
.y101{bottom:227.297459pt;}
.yb3{bottom:231.295191pt;}
.y43{bottom:240.730654pt;}
.yce{bottom:240.731987pt;}
.y96{bottom:240.891987pt;}
.y131{bottom:243.449586pt;}
.ye5{bottom:249.846917pt;}
.y6a{bottom:249.847584pt;}
.y119{bottom:252.247183pt;}
.y100{bottom:254.965582pt;}
.y26{bottom:255.924248pt;}
.yb2{bottom:258.963313pt;}
.y95{bottom:259.283847pt;}
.y42{bottom:268.238776pt;}
.ycd{bottom:268.240110pt;}
.y130{bottom:271.117708pt;}
.ye4{bottom:277.515039pt;}
.y69{bottom:277.515706pt;}
.y94{bottom:277.675706pt;}
.y118{bottom:279.915305pt;}
.yff{bottom:282.473704pt;}
.y25{bottom:283.432370pt;}
.yb1{bottom:286.472636pt;}
.y41{bottom:295.906899pt;}
.y93{bottom:296.067565pt;}
.y12f{bottom:298.627031pt;}
.ye3{bottom:305.024362pt;}
.y68{bottom:305.025028pt;}
.y117{bottom:307.423427pt;}
.yfe{bottom:310.141826pt;}
.y24{bottom:311.101692pt;}
.yb0{bottom:314.140091pt;}
.y92{bottom:314.459424pt;}
.y40{bottom:323.416221pt;}
.ycc{bottom:323.577554pt;}
.y12e{bottom:326.135153pt;}
.ye2{bottom:332.692484pt;}
.y67{bottom:332.693151pt;}
.y91{bottom:332.853150pt;}
.yfd{bottom:337.649282pt;}
.y23{bottom:338.609148pt;}
.yaf{bottom:341.648214pt;}
.ycb{bottom:341.969413pt;}
.y3f{bottom:351.084343pt;}
.y116{bottom:351.084610pt;}
.y90{bottom:351.245010pt;}
.ye1{bottom:360.199940pt;}
.y66{bottom:360.200606pt;}
.yca{bottom:360.361273pt;}
.yfc{bottom:365.317404pt;}
.y22{bottom:366.117270pt;}
.yae{bottom:369.316336pt;}
.y8f{bottom:369.636869pt;}
.y12d{bottom:369.796336pt;}
.y3e{bottom:378.592465pt;}
.y115{bottom:378.592732pt;}
.yc9{bottom:378.753132pt;}
.ye0{bottom:387.708062pt;}
.y65{bottom:387.708729pt;}
.y8e{bottom:387.868728pt;}
.yfb{bottom:392.825526pt;}
.y21{bottom:393.785393pt;}
.yad{bottom:396.824458pt;}
.yc8{bottom:397.144991pt;}
.y12c{bottom:397.304458pt;}
.y3d{bottom:406.099921pt;}
.y114{bottom:406.100188pt;}
.y8d{bottom:406.260588pt;}
.ydf{bottom:415.376184pt;}
.y64{bottom:415.376851pt;}
.yc7{bottom:415.536851pt;}
.yfa{bottom:420.493649pt;}
.y20{bottom:421.293515pt;}
.yac{bottom:424.492580pt;}
.y8c{bottom:424.652447pt;}
.y12b{bottom:424.972580pt;}
.y3c{bottom:433.768043pt;}
.y113{bottom:433.768310pt;}
.yc6{bottom:433.928710pt;}
.yde{bottom:442.884306pt;}
.y63{bottom:442.884973pt;}
.y8b{bottom:443.044306pt;}
.yf9{bottom:448.001104pt;}
.y1f{bottom:448.960971pt;}
.yab{bottom:452.000036pt;}
.yc5{bottom:452.320569pt;}
.y12a{bottom:452.480036pt;}
.y112{bottom:460.956433pt;}
.y3b{bottom:461.276166pt;}
.y8a{bottom:461.436166pt;}
.ydd{bottom:470.551762pt;}
.y62{bottom:470.552429pt;}
.yc4{bottom:470.712429pt;}
.yf8{bottom:475.669227pt;}
.y1e{bottom:476.469093pt;}
.yaa{bottom:479.668158pt;}
.y89{bottom:479.828025pt;}
.y3a{bottom:488.944288pt;}
.yc3{bottom:489.104288pt;}
.y129{bottom:496.141218pt;}
.ydc{bottom:498.059884pt;}
.y61{bottom:498.060551pt;}
.yf7{bottom:503.178549pt;}
.y1d{bottom:504.137215pt;}
.y88{bottom:507.336147pt;}
.yc2{bottom:507.496147pt;}
.y39{bottom:516.451744pt;}
.y111{bottom:516.452010pt;}
.ya9{bottom:516.611877pt;}
.y128{bottom:523.649341pt;}
.ydb{bottom:525.728007pt;}
.y60{bottom:525.728673pt;}
.yc1{bottom:525.888007pt;}
.yf6{bottom:530.846671pt;}
.y1c{bottom:531.645338pt;}
.y87{bottom:534.844270pt;}
.y38{bottom:544.119866pt;}
.y110{bottom:544.120133pt;}
.yc0{bottom:544.279866pt;}
.ya8{bottom:547.799064pt;}
.y127{bottom:551.317463pt;}
.yda{bottom:553.236129pt;}
.y5f{bottom:553.236796pt;}
.yf5{bottom:558.354794pt;}
.y1b{bottom:559.313460pt;}
.y86{bottom:562.511725pt;}
.ybf{bottom:562.671725pt;}
.ya7{bottom:564.752124pt;}
.y37{bottom:571.629188pt;}
.y10f{bottom:571.629455pt;}
.y126{bottom:578.825585pt;}
.yd9{bottom:580.905451pt;}
.y5e{bottom:580.906118pt;}
.ybe{bottom:581.064251pt;}
.ya6{bottom:581.544651pt;}
.yf4{bottom:586.022249pt;}
.y1a{bottom:586.822249pt;}
.y85{bottom:590.021048pt;}
.ya5{bottom:598.497711pt;}
.y36{bottom:599.297311pt;}
.y10e{bottom:599.297577pt;}
.y73{bottom:599.457310pt;}
.yd8{bottom:608.412907pt;}
.y5d{bottom:608.413574pt;}
.yf3{bottom:613.530372pt;}
.y19{bottom:614.490371pt;}
.y72{bottom:617.529170pt;}
.y84{bottom:617.689170pt;}
.ybd{bottom:617.849170pt;}
.y125{bottom:622.486768pt;}
.y35{bottom:626.805433pt;}
.y10d{bottom:626.805700pt;}
.yd7{bottom:626.965433pt;}
.ya4{bottom:628.564632pt;}
.y71{bottom:635.921029pt;}
.y5c{bottom:636.081696pt;}
.ybc{bottom:636.241029pt;}
.yf2{bottom:641.198494pt;}
.y18{bottom:641.998493pt;}
.y83{bottom:645.197292pt;}
.yd6{bottom:645.357292pt;}
.ya3{bottom:645.517692pt;}
.y124{bottom:649.994890pt;}
.y7{bottom:650.748000pt;}
.y106{bottom:654.152889pt;}
.y70{bottom:654.312889pt;}
.y34{bottom:654.472888pt;}
.y10c{bottom:654.474222pt;}
.ybb{bottom:654.632888pt;}
.ya2{bottom:662.309552pt;}
.y5b{bottom:663.589818pt;}
.yd5{bottom:663.749151pt;}
.yf1{bottom:668.706616pt;}
.y17{bottom:669.666616pt;}
.y6{bottom:669.948000pt;}
.y82{bottom:672.865414pt;}
.yba{bottom:673.025414pt;}
.y123{bottom:677.662346pt;}
.ya1{bottom:679.262612pt;}
.y33{bottom:681.981011pt;}
.y10b{bottom:681.982344pt;}
.yd4{bottom:682.141011pt;}
.y5{bottom:689.148000pt;}
.y5a{bottom:691.257940pt;}
.yb9{bottom:691.417274pt;}
.ya0{bottom:696.055138pt;}
.yf0{bottom:696.214738pt;}
.y16{bottom:697.174738pt;}
.y81{bottom:700.372870pt;}
.y4{bottom:708.348000pt;}
.y32{bottom:709.649133pt;}
.y10a{bottom:709.649800pt;}
.yb8{bottom:709.809133pt;}
.y9f{bottom:712.848198pt;}
.y59{bottom:718.766063pt;}
.y122{bottom:721.163528pt;}
.yef{bottom:723.882194pt;}
.y15{bottom:724.842194pt;}
.y3{bottom:727.548000pt;}
.y80{bottom:728.040992pt;}
.y31{bottom:737.157255pt;}
.y109{bottom:737.157922pt;}
.y9e{bottom:743.075120pt;}
.y58{bottom:746.433518pt;}
.y121{bottom:748.831651pt;}
.yee{bottom:751.391516pt;}
.y7f{bottom:755.549115pt;}
.y9d{bottom:759.868180pt;}
.y30{bottom:764.825378pt;}
.y108{bottom:764.826044pt;}
.y2{bottom:765.948000pt;}
.y76{bottom:773.941641pt;}
.y120{bottom:776.339773pt;}
.y9c{bottom:776.820040pt;}
.yed{bottom:779.059639pt;}
.y14{bottom:779.698438pt;}
.y7e{bottom:783.217237pt;}
.y1{bottom:785.148000pt;}
.y2f{bottom:792.332833pt;}
.y107{bottom:792.333500pt;}
.y9b{bottom:793.613099pt;}
.y57{bottom:801.609763pt;}
.y11f{bottom:804.009095pt;}
.yec{bottom:806.567761pt;}
.y75{bottom:810.886026pt;}
.y2e{bottom:820.000956pt;}
.y7d{bottom:820.160956pt;}
.y56{bottom:829.119085pt;}
.y74{bottom:829.277885pt;}
.y7c{bottom:838.552815pt;}
.yeb{bottom:847.190278pt;}
.y13{bottom:847.510278pt;}
.y55{bottom:847.669745pt;}
.y7b{bottom:856.946541pt;}
.y54{bottom:866.062804pt;}
.y12{bottom:875.178400pt;}
.y7a{bottom:875.338400pt;}
.y53{bottom:884.454663pt;}
.y79{bottom:893.730259pt;}
.y11{bottom:902.686523pt;}
.y52{bottom:902.846522pt;}
.y78{bottom:912.122119pt;}
.y51{bottom:921.238382pt;}
.y10{bottom:930.353978pt;}
.y77{bottom:930.513978pt;}
.y50{bottom:939.630241pt;}
.y2d{bottom:957.862100pt;}
.y4f{bottom:958.022100pt;}
.y4e{bottom:976.413960pt;}
.yf{bottom:985.210223pt;}
.y2c{bottom:985.530223pt;}
.y4d{bottom:994.806486pt;}
.ye{bottom:1012.718345pt;}
.y2b{bottom:1013.038345pt;}
.y4c{bottom:1013.198345pt;}
.ya{bottom:1052.862622pt;}
.y9{bottom:1065.176991pt;}
.h4{height:18.391840pt;}
.h3{height:29.864943pt;}
.h1{height:44.250000pt;}
.ha{height:44.418226pt;}
.h6{height:44.574408pt;}
.h7{height:51.641735pt;}
.h5{height:56.131893pt;}
.h9{height:59.180022pt;}
.h8{height:67.037802pt;}
.h2{height:1122.051550pt;}
.h0{height:1122.666667pt;}
.w2{width:16.150400pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.314888pt;}
.x1{left:135.088000pt;}
.xb{left:137.302145pt;}
.xa{left:151.053136pt;}
.xf{left:160.487936pt;}
.x4{left:163.526601pt;}
.x10{left:184.473950pt;}
.xc{left:188.792578pt;}
.x5{left:200.784708pt;}
.x8{left:221.892798pt;}
.xd{left:231.326566pt;}
.x7{left:243.479627pt;}
.x6{left:278.979604pt;}
.x9{left:301.525910pt;}
.x12{left:336.866194pt;}
.x11{left:500.291800pt;}
.x13{left:501.410538pt;}
.xe{left:538.669871pt;}
.x3{left:663.876800pt;}
}




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