
    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_876d656e8e48320cc2ca604c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_2c248e215b48eab136ddc912.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_2f963fbf03482541ae7d86ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:4.500000px;}
.ls1{letter-spacing:22.500000px;}
.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:-29.999999px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:0.000000px;}
._13{margin-left:-10.700326px;}
._12{margin-left:-7.980447px;}
._15{margin-left:-6.609375px;}
._6{margin-left:-4.675778px;}
._d{margin-left:-2.974008px;}
._2{margin-left:-1.800071px;}
._3{width:4.500002px;}
._c{width:8.001351px;}
._b{width:9.998637px;}
._9{width:12.501386px;}
._8{width:13.999301px;}
._5{width:22.500010px;}
._4{width:27.000000px;}
._e{width:31.331305px;}
._14{width:32.357361px;}
._7{width:36.000000px;}
._10{width:40.499993px;}
._f{width:45.000002px;}
._a{width:48.339842px;}
._11{width:76.500001px;}
._1{width:103.075687px;}
._0{width:107.953128px;}
.fc1{color:rgb(10,10,10);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.000003px;}
.fs2{font-size:119.999997px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y107{bottom:113.929688px;}
.y5c{bottom:114.747802px;}
.y38{bottom:117.828368px;}
.y75{bottom:118.419432px;}
.y12b{bottom:124.902094px;}
.yea{bottom:134.547364px;}
.y18{bottom:134.879153px;}
.ycf{bottom:136.862550px;}
.y106{bottom:137.731927px;}
.y5b{bottom:138.550778px;}
.y37{bottom:141.631342px;}
.y74{bottom:142.222410px;}
.yab{bottom:144.574223px;}
.y12a{bottom:146.721673px;}
.y95{bottom:152.307867px;}
.ye9{bottom:158.350342px;}
.y17{bottom:158.682127px;}
.yce{bottom:160.665529px;}
.y105{bottom:161.535638px;}
.y5a{bottom:162.353764px;}
.y36{bottom:165.434333px;}
.y73{bottom:166.025389px;}
.yaa{bottom:168.377940px;}
.y129{bottom:168.540523px;}
.y94{bottom:176.110845px;}
.ye8{bottom:182.153318px;}
.y16{bottom:182.485103px;}
.ycd{bottom:184.468507px;}
.y104{bottom:185.350336px;}
.y59{bottom:186.156742px;}
.y72{bottom:189.828368px;}
.ya9{bottom:192.180180px;}
.y93{bottom:199.913824px;}
.y35{bottom:200.570069px;}
.y128{bottom:204.609367px;}
.ye7{bottom:205.956300px;}
.y15{bottom:206.288092px;}
.ycc{bottom:208.271483px;}
.y103{bottom:209.232426px;}
.y58{bottom:209.959717px;}
.y71{bottom:213.631347px;}
.ya8{bottom:215.983889px;}
.y92{bottom:223.716803px;}
.ye6{bottom:229.759279px;}
.y14{bottom:230.091068px;}
.ycb{bottom:232.074458px;}
.y102{bottom:233.046391px;}
.y57{bottom:233.762700px;}
.y70{bottom:237.434325px;}
.ya7{bottom:239.786137px;}
.ye5{bottom:253.562257px;}
.y13{bottom:253.894043px;}
.yca{bottom:255.877437px;}
.y101{bottom:256.928468px;}
.y34{bottom:256.974608px;}
.y56{bottom:257.565679px;}
.y91{bottom:259.519776px;}
.y6f{bottom:261.237304px;}
.ya6{bottom:263.589847px;}
.y127{bottom:269.615480px;}
.ye4{bottom:277.365233px;}
.y12{bottom:277.697018px;}
.yc9{bottom:279.680415px;}
.y100{bottom:280.731443px;}
.y33{bottom:280.777587px;}
.y55{bottom:281.368657px;}
.y90{bottom:283.322754px;}
.y6e{bottom:285.040282px;}
.ya5{bottom:287.392089px;}
.y126{bottom:293.418458px;}
.ye3{bottom:301.168207px;}
.y11{bottom:301.499992px;}
.yc8{bottom:303.483394px;}
.yff{bottom:304.534422px;}
.y32{bottom:304.580565px;}
.y54{bottom:305.171633px;}
.y8f{bottom:307.125733px;}
.ya4{bottom:311.195805px;}
.y125{bottom:317.221437px;}
.y6d{bottom:320.176019px;}
.ye2{bottom:324.971194px;}
.y10{bottom:325.302983px;}
.yc7{bottom:327.286372px;}
.yfe{bottom:328.349116px;}
.y31{bottom:328.383544px;}
.y53{bottom:328.974612px;}
.y8e{bottom:330.928711px;}
.ya3{bottom:334.998055px;}
.y124{bottom:341.024415px;}
.ye1{bottom:348.774172px;}
.yf{bottom:349.105957px;}
.yc6{bottom:351.089362px;}
.y30{bottom:352.186523px;}
.yfd{bottom:352.243651px;}
.y52{bottom:352.777590px;}
.y8d{bottom:354.731689px;}
.ya2{bottom:358.801762px;}
.y123{bottom:364.827394px;}
.ye0{bottom:372.576413px;}
.ye{bottom:372.908932px;}
.yc5{bottom:374.892327px;}
.yfc{bottom:376.125728px;}
.y6c{bottom:376.580562px;}
.y51{bottom:376.580569px;}
.y8c{bottom:378.534668px;}
.ya1{bottom:382.021003px;}
.y2f{bottom:387.322258px;}
.y122{bottom:388.630373px;}
.ydf{bottom:396.379399px;}
.yd{bottom:396.711908px;}
.yc4{bottom:398.695305px;}
.yfb{bottom:399.928717px;}
.y6b{bottom:400.383540px;}
.y50{bottom:400.383548px;}
.ya0{bottom:403.840573px;}
.y121{bottom:412.433348px;}
.y8b{bottom:416.670404px;}
.yde{bottom:420.182378px;}
.yc{bottom:420.514898px;}
.yc3{bottom:422.498284px;}
.yfa{bottom:423.731697px;}
.y6a{bottom:424.186519px;}
.y4f{bottom:424.186522px;}
.y9f{bottom:426.243162px;}
.y120{bottom:436.236334px;}
.y2e{bottom:443.726809px;}
.ydd{bottom:443.985352px;}
.yc2{bottom:446.301263px;}
.yf9{bottom:447.546391px;}
.y69{bottom:447.989497px;}
.y4e{bottom:447.989509px;}
.y9e{bottom:450.046140px;}
.yb{bottom:458.314447px;}
.y11f{bottom:460.039312px;}
.y2d{bottom:467.529787px;}
.ydc{bottom:467.788324px;}
.yc1{bottom:470.104253px;}
.yf8{bottom:471.429207px;}
.y4d{bottom:471.792488px;}
.y8a{bottom:473.074954px;}
.y9d{bottom:473.849119px;}
.y11e{bottom:483.842284px;}
.y2c{bottom:491.332770px;}
.ydb{bottom:491.591302px;}
.yc0{bottom:493.907232px;}
.yf7{bottom:495.243901px;}
.y68{bottom:495.595459px;}
.y4c{bottom:495.595462px;}
.y89{bottom:496.877932px;}
.y9c{bottom:497.652098px;}
.y11d{bottom:507.645263px;}
.yda{bottom:514.811278px;}
.y2b{bottom:515.135749px;}
.ybf{bottom:517.710210px;}
.yf6{bottom:519.125977px;}
.y4b{bottom:519.398434px;}
.y67{bottom:519.398438px;}
.y9b{bottom:521.455072px;}
.ya{bottom:529.723387px;}
.y11c{bottom:531.448249px;}
.y88{bottom:532.013668px;}
.yd9{bottom:537.213863px;}
.y2a{bottom:538.938728px;}
.ybe{bottom:541.513189px;}
.yf5{bottom:542.928952px;}
.y66{bottom:543.201409px;}
.y4a{bottom:543.201412px;}
.y9a{bottom:545.258052px;}
.y11b{bottom:555.251228px;}
.yd8{bottom:561.016845px;}
.y29{bottom:562.741695px;}
.ybd{bottom:565.316168px;}
.yf4{bottom:566.742916px;}
.y49{bottom:567.004388px;}
.y11a{bottom:579.054199px;}
.yd7{bottom:584.819824px;}
.y28{bottom:586.544674px;}
.ybc{bottom:589.119142px;}
.yf3{bottom:590.624994px;}
.y48{bottom:590.807378px;}
.y87{bottom:593.083748px;}
.y9{bottom:601.132327px;}
.y119{bottom:602.857178px;}
.yd6{bottom:608.622803px;}
.y27{bottom:610.347652px;}
.ybb{bottom:612.922122px;}
.yf2{bottom:614.440426px;}
.y65{bottom:614.610345px;}
.y47{bottom:614.610352px;}
.yd5{bottom:632.425777px;}
.y26{bottom:634.150635px;}
.yba{bottom:636.725100px;}
.yf1{bottom:638.334226px;}
.y64{bottom:638.413324px;}
.y46{bottom:638.413327px;}
.y118{bottom:640.325677px;}
.yd4{bottom:656.228757px;}
.y25{bottom:657.953614px;}
.y86{bottom:658.089839px;}
.yb9{bottom:660.528079px;}
.y45{bottom:662.216302px;}
.y8{bottom:672.541252px;}
.y24{bottom:681.756593px;}
.y85{bottom:681.892818px;}
.yb8{bottom:684.331058px;}
.y44{bottom:686.019292px;}
.y117{bottom:705.344236px;}
.y23{bottom:705.559568px;}
.y84{bottom:705.707881px;}
.yb7{bottom:708.134032px;}
.y43{bottom:709.822268px;}
.y63{bottom:709.822272px;}
.yf0{bottom:721.049560px;}
.y116{bottom:729.237301px;}
.y83{bottom:729.601321px;}
.yb6{bottom:731.937012px;}
.y42{bottom:733.625243px;}
.y62{bottom:733.625250px;}
.y22{bottom:740.695303px;}
.y7{bottom:743.950192px;}
.y115{bottom:753.119378px;}
.y82{bottom:753.495856px;}
.yb5{bottom:755.739990px;}
.y41{bottom:757.428222px;}
.y61{bottom:757.428229px;}
.y114{bottom:776.922367px;}
.y81{bottom:777.377932px;}
.yef{bottom:777.559575px;}
.yb4{bottom:779.542969px;}
.y40{bottom:781.231200px;}
.y60{bottom:781.231208px;}
.y21{bottom:797.099850px;}
.y113{bottom:800.737786px;}
.y80{bottom:801.180907px;}
.yee{bottom:801.362554px;}
.yb3{bottom:803.345947px;}
.y3f{bottom:805.034179px;}
.y6{bottom:815.359132px;}
.y5f{bottom:816.366943px;}
.y20{bottom:820.902829px;}
.y112{bottom:824.631586px;}
.y7f{bottom:824.983894px;}
.yed{bottom:825.165532px;}
.yb2{bottom:827.148923px;}
.y3e{bottom:828.837157px;}
.y1f{bottom:844.705807px;}
.y111{bottom:848.513677px;}
.y7e{bottom:848.786872px;}
.yec{bottom:848.968507px;}
.yb1{bottom:850.951905px;}
.y3d{bottom:863.972893px;}
.y1e{bottom:868.508783px;}
.y110{bottom:872.316652px;}
.y7d{bottom:872.589843px;}
.y5e{bottom:872.771484px;}
.yb0{bottom:874.754883px;}
.y5{bottom:886.768066px;}
.y1d{bottom:892.311769px;}
.y10f{bottom:896.119626px;}
.y7c{bottom:896.392822px;}
.y5d{bottom:896.574463px;}
.yaf{bottom:898.557862px;}
.y1c{bottom:916.114748px;}
.y10e{bottom:919.935058px;}
.y7b{bottom:920.195801px;}
.y3c{bottom:920.377441px;}
.yeb{bottom:920.377442px;}
.yae{bottom:922.360840px;}
.y99{bottom:937.548340px;}
.y10d{bottom:943.828858px;}
.y7a{bottom:943.998779px;}
.y3b{bottom:944.180419px;}
.yad{bottom:946.163818px;}
.y1b{bottom:951.250486px;}
.y4{bottom:958.177001px;}
.y98{bottom:959.950928px;}
.y10c{bottom:967.721924px;}
.y79{bottom:967.801757px;}
.y3a{bottom:967.983398px;}
.yac{bottom:969.383790px;}
.yd3{bottom:974.852051px;}
.y97{bottom:983.170899px;}
.y10b{bottom:991.604004px;}
.y78{bottom:991.604736px;}
.y39{bottom:991.786377px;}
.yd2{bottom:998.655029px;}
.y96{bottom:1004.989746px;}
.y1a{bottom:1012.320556px;}
.y10a{bottom:1015.406982px;}
.y77{bottom:1015.419067px;}
.y3{bottom:1015.589355px;}
.yd1{bottom:1022.458008px;}
.y109{bottom:1039.221679px;}
.y76{bottom:1039.313233px;}
.y2{bottom:1039.392335px;}
.y19{bottom:1051.992186px;}
.yd0{bottom:1057.488282px;}
.y108{bottom:1063.116211px;}
.y1{bottom:1063.195312px;}
.h7{height:44.730470px;}
.h8{height:45.858399px;}
.h5{height:48.796875px;}
.h1{height:50.027344px;}
.h6{height:52.417969px;}
.h4{height:66.703127px;}
.h9{height:69.890627px;}
.h3{height:83.378904px;}
.h2{height:150.082031px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:135.000000px;}
.x3{left:162.000000px;}
.x4{left:540.000000px;}
.x5{left:814.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:4.000000pt;}
.ls1{letter-spacing:20.000000pt;}
.ws1{word-spacing:-26.666666pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:0.000000pt;}
._13{margin-left:-9.511401pt;}
._12{margin-left:-7.093731pt;}
._15{margin-left:-5.875000pt;}
._6{margin-left:-4.156247pt;}
._d{margin-left:-2.643562pt;}
._2{margin-left:-1.600063pt;}
._3{width:4.000002pt;}
._c{width:7.112312pt;}
._b{width:8.887677pt;}
._9{width:11.112343pt;}
._8{width:12.443823pt;}
._5{width:20.000009pt;}
._4{width:24.000000pt;}
._e{width:27.850048pt;}
._14{width:28.762099pt;}
._7{width:32.000000pt;}
._10{width:35.999994pt;}
._f{width:40.000002pt;}
._a{width:42.968748pt;}
._11{width:68.000001pt;}
._1{width:91.622833pt;}
._0{width:95.958336pt;}
.fs4{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.333336pt;}
.fs2{font-size:106.666664pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y107{bottom:101.270833pt;}
.y5c{bottom:101.998047pt;}
.y38{bottom:104.736327pt;}
.y75{bottom:105.261717pt;}
.y12b{bottom:111.024083pt;}
.yea{bottom:119.597656pt;}
.y18{bottom:119.892580pt;}
.ycf{bottom:121.655600pt;}
.y106{bottom:122.428380pt;}
.y5b{bottom:123.156247pt;}
.y37{bottom:125.894527pt;}
.y74{bottom:126.419920pt;}
.yab{bottom:128.510420pt;}
.y12a{bottom:130.419265pt;}
.y95{bottom:135.384771pt;}
.ye9{bottom:140.755860pt;}
.y17{bottom:141.050780pt;}
.yce{bottom:142.813803pt;}
.y105{bottom:143.587233pt;}
.y5a{bottom:144.314456pt;}
.y36{bottom:147.052740pt;}
.y73{bottom:147.578123pt;}
.yaa{bottom:149.669280pt;}
.y129{bottom:149.813799pt;}
.y94{bottom:156.542974pt;}
.ye8{bottom:161.914060pt;}
.y16{bottom:162.208980pt;}
.ycd{bottom:163.972007pt;}
.y104{bottom:164.755854pt;}
.y59{bottom:165.472660pt;}
.y72{bottom:168.736327pt;}
.ya9{bottom:170.826827pt;}
.y93{bottom:177.701177pt;}
.y35{bottom:178.284505pt;}
.y128{bottom:181.874993pt;}
.ye7{bottom:183.072267pt;}
.y15{bottom:183.367193pt;}
.ycc{bottom:185.130207pt;}
.y103{bottom:185.984378pt;}
.y58{bottom:186.630860pt;}
.y71{bottom:189.894530pt;}
.ya8{bottom:191.985679pt;}
.y92{bottom:198.859380pt;}
.ye6{bottom:204.230470pt;}
.y14{bottom:204.525393pt;}
.ycb{bottom:206.288407pt;}
.y102{bottom:207.152347pt;}
.y57{bottom:207.789067pt;}
.y70{bottom:211.052733pt;}
.ya7{bottom:213.143233pt;}
.ye5{bottom:225.388673pt;}
.y13{bottom:225.683593pt;}
.yca{bottom:227.446610pt;}
.y101{bottom:228.380860pt;}
.y34{bottom:228.421874pt;}
.y56{bottom:228.947270pt;}
.y91{bottom:230.684245pt;}
.y6f{bottom:232.210936pt;}
.ya6{bottom:234.302087pt;}
.y127{bottom:239.658204pt;}
.ye4{bottom:246.546873pt;}
.y12{bottom:246.841793pt;}
.yc9{bottom:248.604813pt;}
.y100{bottom:249.539060pt;}
.y33{bottom:249.580077pt;}
.y55{bottom:250.105473pt;}
.y90{bottom:251.842448pt;}
.y6e{bottom:253.369140pt;}
.ya5{bottom:255.459634pt;}
.y126{bottom:260.816407pt;}
.ye3{bottom:267.705073pt;}
.y11{bottom:267.999993pt;}
.yc8{bottom:269.763016pt;}
.yff{bottom:270.697264pt;}
.y32{bottom:270.738280pt;}
.y54{bottom:271.263673pt;}
.y8f{bottom:273.000651pt;}
.ya4{bottom:276.618493pt;}
.y125{bottom:281.974610pt;}
.y6d{bottom:284.600905pt;}
.ye2{bottom:288.863283pt;}
.y10{bottom:289.158207pt;}
.yc7{bottom:290.921220pt;}
.yfe{bottom:291.865881pt;}
.y31{bottom:291.896483pt;}
.y53{bottom:292.421877pt;}
.y8e{bottom:294.158854pt;}
.ya3{bottom:297.776048pt;}
.y124{bottom:303.132813pt;}
.ye1{bottom:310.021487pt;}
.yf{bottom:310.316407pt;}
.yc6{bottom:312.079433pt;}
.y30{bottom:313.054687pt;}
.yfd{bottom:313.105467pt;}
.y52{bottom:313.580080pt;}
.y8d{bottom:315.317057pt;}
.ya2{bottom:318.934900pt;}
.y123{bottom:324.291016pt;}
.ye0{bottom:331.179033pt;}
.ye{bottom:331.474607pt;}
.yc5{bottom:333.237624pt;}
.yfc{bottom:334.333980pt;}
.y6c{bottom:334.738277pt;}
.y51{bottom:334.738283pt;}
.y8c{bottom:336.475261pt;}
.ya1{bottom:339.574225pt;}
.y2f{bottom:344.286452pt;}
.y122{bottom:345.449220pt;}
.ydf{bottom:352.337243pt;}
.yd{bottom:352.632807pt;}
.yc4{bottom:354.395827pt;}
.yfb{bottom:355.492193pt;}
.y6b{bottom:355.896480pt;}
.y50{bottom:355.896487pt;}
.ya0{bottom:358.969399pt;}
.y121{bottom:366.607420pt;}
.y8b{bottom:370.373692pt;}
.yde{bottom:373.495447pt;}
.yc{bottom:373.791020pt;}
.yc3{bottom:375.554030pt;}
.yfa{bottom:376.650397pt;}
.y6a{bottom:377.054683pt;}
.y4f{bottom:377.054687pt;}
.y9f{bottom:378.882811pt;}
.y120{bottom:387.765630pt;}
.y2e{bottom:394.423830pt;}
.ydd{bottom:394.653647pt;}
.yc2{bottom:396.712233pt;}
.yf9{bottom:397.819014pt;}
.y69{bottom:398.212887pt;}
.y4e{bottom:398.212897pt;}
.y9e{bottom:400.041014pt;}
.yb{bottom:407.390619pt;}
.y11f{bottom:408.923833pt;}
.y2d{bottom:415.582033pt;}
.ydc{bottom:415.811843pt;}
.yc1{bottom:417.870447pt;}
.yf8{bottom:419.048184pt;}
.y4d{bottom:419.371100pt;}
.y8a{bottom:420.511070pt;}
.y9d{bottom:421.199217pt;}
.y11e{bottom:430.082030pt;}
.y2c{bottom:436.740240pt;}
.ydb{bottom:436.970047pt;}
.yc0{bottom:439.028650pt;}
.yf7{bottom:440.216801pt;}
.y68{bottom:440.529297pt;}
.y4c{bottom:440.529300pt;}
.y89{bottom:441.669273pt;}
.y9c{bottom:442.357420pt;}
.y11d{bottom:451.240233pt;}
.yda{bottom:457.610025pt;}
.y2b{bottom:457.898443pt;}
.ybf{bottom:460.186853pt;}
.yf6{bottom:461.445313pt;}
.y4b{bottom:461.687496pt;}
.y67{bottom:461.687500pt;}
.y9b{bottom:463.515620pt;}
.ya{bottom:470.865233pt;}
.y11c{bottom:472.398443pt;}
.y88{bottom:472.901039pt;}
.yd9{bottom:477.523433pt;}
.y2a{bottom:479.056647pt;}
.ybe{bottom:481.345056pt;}
.yf5{bottom:482.603513pt;}
.y66{bottom:482.845697pt;}
.y4a{bottom:482.845700pt;}
.y9a{bottom:484.673824pt;}
.y11b{bottom:493.556647pt;}
.yd8{bottom:498.681640pt;}
.y29{bottom:500.214840pt;}
.ybd{bottom:502.503260pt;}
.yf4{bottom:503.771481pt;}
.y49{bottom:504.003900pt;}
.y11a{bottom:514.714843pt;}
.yd7{bottom:519.839843pt;}
.y28{bottom:521.373043pt;}
.ybc{bottom:523.661460pt;}
.yf3{bottom:524.999994pt;}
.y48{bottom:525.162113pt;}
.y87{bottom:527.185553pt;}
.y9{bottom:534.339846pt;}
.y119{bottom:535.873047pt;}
.yd6{bottom:540.998047pt;}
.y27{bottom:542.531247pt;}
.ybb{bottom:544.819664pt;}
.yf2{bottom:546.169267pt;}
.y65{bottom:546.320307pt;}
.y47{bottom:546.320313pt;}
.yd5{bottom:562.156247pt;}
.y26{bottom:563.689454pt;}
.yba{bottom:565.977867pt;}
.yf1{bottom:567.408201pt;}
.y64{bottom:567.478510pt;}
.y46{bottom:567.478513pt;}
.y118{bottom:569.178380pt;}
.yd4{bottom:583.314451pt;}
.y25{bottom:584.847656pt;}
.y86{bottom:584.968746pt;}
.yb9{bottom:587.136070pt;}
.y45{bottom:588.636713pt;}
.y8{bottom:597.814446pt;}
.y24{bottom:606.005860pt;}
.y85{bottom:606.126949pt;}
.yb8{bottom:608.294273pt;}
.y44{bottom:609.794927pt;}
.y117{bottom:626.972654pt;}
.y23{bottom:627.164060pt;}
.y84{bottom:627.295894pt;}
.yb7{bottom:629.452473pt;}
.y43{bottom:630.953127pt;}
.y63{bottom:630.953131pt;}
.yf0{bottom:640.932942pt;}
.y116{bottom:648.210934pt;}
.y83{bottom:648.534507pt;}
.yb6{bottom:650.610677pt;}
.y42{bottom:652.111327pt;}
.y62{bottom:652.111334pt;}
.y22{bottom:658.395825pt;}
.y7{bottom:661.289060pt;}
.y115{bottom:669.439447pt;}
.y82{bottom:669.774094pt;}
.yb5{bottom:671.768880pt;}
.y41{bottom:673.269530pt;}
.y61{bottom:673.269537pt;}
.y114{bottom:690.597660pt;}
.y81{bottom:691.002607pt;}
.yef{bottom:691.164067pt;}
.yb4{bottom:692.927083pt;}
.y40{bottom:694.427733pt;}
.y60{bottom:694.427740pt;}
.y21{bottom:708.533200pt;}
.y113{bottom:711.766921pt;}
.y80{bottom:712.160807pt;}
.yee{bottom:712.322270pt;}
.yb3{bottom:714.085287pt;}
.y3f{bottom:715.585936pt;}
.y6{bottom:724.763673pt;}
.y5f{bottom:725.659505pt;}
.y20{bottom:729.691403pt;}
.y112{bottom:733.005854pt;}
.y7f{bottom:733.319016pt;}
.yed{bottom:733.480473pt;}
.yb2{bottom:735.243487pt;}
.y3e{bottom:736.744140pt;}
.y1f{bottom:750.849607pt;}
.y111{bottom:754.234380pt;}
.y7e{bottom:754.477220pt;}
.yec{bottom:754.638673pt;}
.yb1{bottom:756.401693pt;}
.y3d{bottom:767.975905pt;}
.y1e{bottom:772.007807pt;}
.y110{bottom:775.392580pt;}
.y7d{bottom:775.635416pt;}
.y5e{bottom:775.796875pt;}
.yb0{bottom:777.559896pt;}
.y5{bottom:788.238281pt;}
.y1d{bottom:793.166016pt;}
.y10f{bottom:796.550778pt;}
.y7c{bottom:796.793619pt;}
.y5d{bottom:796.955078pt;}
.yaf{bottom:798.718099pt;}
.y1c{bottom:814.324220pt;}
.y10e{bottom:817.720051pt;}
.y7b{bottom:817.951823pt;}
.y3c{bottom:818.113280pt;}
.yeb{bottom:818.113281pt;}
.yae{bottom:819.876303pt;}
.y99{bottom:833.376303pt;}
.y10d{bottom:838.958985pt;}
.y7a{bottom:839.110026pt;}
.y3b{bottom:839.271484pt;}
.yad{bottom:841.034505pt;}
.y1b{bottom:845.555988pt;}
.y4{bottom:851.712890pt;}
.y98{bottom:853.289713pt;}
.y10c{bottom:860.197266pt;}
.y79{bottom:860.268228pt;}
.y3a{bottom:860.429687pt;}
.yac{bottom:861.674480pt;}
.yd3{bottom:866.535156pt;}
.y97{bottom:873.929688pt;}
.y10b{bottom:881.425781pt;}
.y78{bottom:881.426432pt;}
.y39{bottom:881.587891pt;}
.yd2{bottom:887.693359pt;}
.y96{bottom:893.324219pt;}
.y1a{bottom:899.840495pt;}
.y10a{bottom:902.583984pt;}
.y77{bottom:902.594726pt;}
.y3{bottom:902.746093pt;}
.yd1{bottom:908.851563pt;}
.y109{bottom:923.752603pt;}
.y76{bottom:923.833985pt;}
.y2{bottom:923.904297pt;}
.y19{bottom:935.104166pt;}
.yd0{bottom:939.989584pt;}
.y108{bottom:944.992188pt;}
.y1{bottom:945.062500pt;}
.h7{height:39.760418pt;}
.h8{height:40.763022pt;}
.h5{height:43.375000pt;}
.h1{height:44.468750pt;}
.h6{height:46.593750pt;}
.h4{height:59.291669pt;}
.h9{height:62.125002pt;}
.h3{height:74.114581pt;}
.h2{height:133.406250pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:120.000000pt;}
.x3{left:144.000000pt;}
.x4{left:480.000000pt;}
.x5{left:724.000000pt;}
}




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