
    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_a30037c3f78fd625cfd0a195.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_57b7af9091753423bc13e0d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_1241e95bf003d1ff7d7ef804.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_86c65b0e717c478ed558a355.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_573616e8b73a9c52e105dc85.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_48d3aafb613b1af77dbf95bc.woff2')format("woff");}.ff7{font-family:ff7;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1a82c6d84b77062fba58d4d4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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);}
.v2{vertical-align:-65.523276px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000900px;}
.lsa{letter-spacing:-0.720036px;}
.lsb{letter-spacing:-0.305415px;}
.lsc{letter-spacing:-0.262213px;}
.ls5{letter-spacing:-0.216011px;}
.lsd{letter-spacing:-0.152408px;}
.lse{letter-spacing:-0.109205px;}
.ls4{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.018001px;}
.ls12{letter-spacing:0.109205px;}
.ls11{letter-spacing:0.152408px;}
.ls0{letter-spacing:0.180009px;}
.ls13{letter-spacing:0.262213px;}
.ls2{letter-spacing:0.360018px;}
.ls6{letter-spacing:25.506555px;}
.ls7{letter-spacing:29.106735px;}
.ls8{letter-spacing:32.706915px;}
.ls9{letter-spacing:36.307095px;}
.lsf{letter-spacing:37.027131px;}
.ls10{letter-spacing:44.227491px;}
.ls1{letter-spacing:67.107355px;}
.ls14{letter-spacing:110.309515px;}
.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;}
}
.wsd{word-spacing:-16.823041px;}
.wsb{word-spacing:-16.713236px;}
.wsc{word-spacing:-16.670033px;}
.ws0{word-spacing:-16.614111px;}
.ws6{word-spacing:-16.560828px;}
.wsa{word-spacing:-16.451623px;}
.ws9{word-spacing:-16.408420px;}
.ws8{word-spacing:-16.298615px;}
.ws7{word-spacing:-16.255413px;}
.ws4{word-spacing:-15.300765px;}
.ws3{word-spacing:-14.940747px;}
.ws2{word-spacing:-13.500675px;}
.ws1{word-spacing:-10.800540px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.512076px;}
._0{width:1.170779px;}
._2{width:2.916146px;}
._4{width:4.283494px;}
._7{width:5.809250px;}
._e{width:6.893625px;}
._8{width:8.015441px;}
._9{width:9.130056px;}
._6{width:11.016551px;}
._5{width:12.150608px;}
._d{width:13.618041px;}
._3{width:14.688734px;}
._c{width:18.084424px;}
._f{width:19.323846px;}
._12{width:20.533987px;}
._11{width:21.836772px;}
._a{width:23.781349px;}
._b{width:24.785079px;}
._10{width:26.096025px;}
._13{width:32.790439px;}
._14{width:34.115306px;}
._15{width:35.707545px;}
._16{width:47.231481px;}
._17{width:49.411270px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.881944px;}
.fs7{font-size:48.242412px;}
.fs4{font-size:54.002700px;}
.fs0{font-size:59.762988px;}
.fs5{font-size:59.775600px;}
.fs3{font-size:66.243312px;}
.fs6{font-size:72.003600px;}
.fs2{font-size:108.005400px;}
.y0{bottom:0.000000px;}
.yd4{bottom:2.865143px;}
.yd2{bottom:2.880144px;}
.yce{bottom:3.060153px;}
.yd0{bottom:3.225161px;}
.y29{bottom:3.405170px;}
.y2d{bottom:3.765188px;}
.y2b{bottom:20.686034px;}
.y3d{bottom:47.985000px;}
.y3c{bottom:89.955000px;}
.ycc{bottom:105.795792px;}
.y3b{bottom:108.855945px;}
.y8e{bottom:110.656035px;}
.y74{bottom:115.696287px;}
.ycb{bottom:124.876746px;}
.y3a{bottom:127.756890px;}
.y8d{bottom:129.736989px;}
.y73{bottom:136.037304px;}
.yca{bottom:143.057655px;}
.y39{bottom:146.837844px;}
.y8c{bottom:148.637934px;}
.y72{bottom:154.938249px;}
.y38{bottom:165.738789px;}
.y8b{bottom:167.358870px;}
.yba{bottom:167.718888px;}
.y71{bottom:174.019203px;}
.yc9{bottom:174.919248px;}
.y37{bottom:184.819743px;}
.y8a{bottom:186.619833px;}
.yc8{bottom:189.859995px;}
.y70{bottom:192.920148px;}
.ye8{bottom:194.720238px;}
.y36{bottom:203.720688px;}
.y89{bottom:205.520778px;}
.y6f{bottom:211.851095px;}
.ye7{bottom:213.651185px;}
.y35{bottom:222.651635px;}
.y88{bottom:224.631734px;}
.y6e{bottom:230.932049px;}
.ye6{bottom:232.552130px;}
.y34{bottom:241.732589px;}
.y87{bottom:243.532679px;}
.y6d{bottom:249.832994px;}
.ye5{bottom:251.633084px;}
.y33{bottom:260.633533px;}
.y86{bottom:262.613632px;}
.y6c{bottom:268.913948px;}
.ye4{bottom:270.534029px;}
.y32{bottom:279.714488px;}
.yb9{bottom:281.514578px;}
.y6b{bottom:287.814893px;}
.ye3{bottom:289.614982px;}
.y85{bottom:290.515028px;}
.y31{bottom:298.615432px;}
.yb8{bottom:300.415523px;}
.y6a{bottom:306.715838px;}
.ye2{bottom:308.515928px;}
.y84{bottom:309.415973px;}
.y30{bottom:317.516378px;}
.yb7{bottom:319.496477px;}
.y69{bottom:325.796792px;}
.ye1{bottom:327.416873px;}
.y83{bottom:328.496927px;}
.y2f{bottom:336.597332px;}
.yb6{bottom:338.397422px;}
.y68{bottom:344.697737px;}
.ye0{bottom:346.497827px;}
.y82{bottom:347.397872px;}
.y2e{bottom:355.498277px;}
.yb5{bottom:357.478376px;}
.y67{bottom:363.778691px;}
.ydf{bottom:365.398772px;}
.y2c{bottom:371.174060px;}
.y81{bottom:375.479276px;}
.yb4{bottom:376.379321px;}
.ycf{bottom:381.974600px;}
.y66{bottom:382.679636px;}
.yd3{bottom:382.694636px;}
.yde{bottom:384.479726px;}
.y2a{bottom:389.174960px;}
.y80{bottom:394.380221px;}
.yb3{bottom:395.460275px;}
.y65{bottom:401.760590px;}
.ydd{bottom:403.380671px;}
.y7f{bottom:413.461175px;}
.yb2{bottom:414.361220px;}
.y64{bottom:420.661535px;}
.ydc{bottom:422.461625px;}
.y28{bottom:424.456724px;}
.y7e{bottom:432.362120px;}
.yb1{bottom:433.262165px;}
.y63{bottom:439.562480px;}
.ydb{bottom:441.407572px;}
.y27{bottom:446.627833px;}
.y7d{bottom:451.308067px;}
.yb0{bottom:452.388121px;}
.y62{bottom:458.688436px;}
.yda{bottom:460.308517px;}
.y26{bottom:464.808742px;}
.y7c{bottom:470.389021px;}
.yaf{bottom:471.289066px;}
.y61{bottom:477.589381px;}
.yd9{bottom:479.389471px;}
.y25{bottom:480.289516px;}
.y7b{bottom:489.289966px;}
.yae{bottom:490.370020px;}
.ycd{bottom:491.990101px;}
.yd1{bottom:492.530128px;}
.y60{bottom:496.670335px;}
.yd8{bottom:498.290416px;}
.y7a{bottom:508.370920px;}
.yad{bottom:509.270965px;}
.y24{bottom:512.151109px;}
.y5f{bottom:516.111307px;}
.yd7{bottom:517.371370px;}
.y79{bottom:527.271865px;}
.yac{bottom:528.171910px;}
.y23{bottom:531.052054px;}
.yd6{bottom:535.912297px;}
.y5e{bottom:536.272315px;}
.y78{bottom:546.172810px;}
.yab{bottom:547.252864px;}
.y22{bottom:550.133008px;}
.y5d{bottom:555.173260px;}
.yaa{bottom:566.153809px;}
.y21{bottom:569.033953px;}
.y5c{bottom:574.254214px;}
.ya9{bottom:585.234763px;}
.y20{bottom:587.934898px;}
.y5b{bottom:593.155159px;}
.ya8{bottom:604.135708px;}
.y1f{bottom:607.015852px;}
.y5a{bottom:612.236113px;}
.ya7{bottom:623.036653px;}
.y1e{bottom:625.916797px;}
.yc7{bottom:629.336968px;}
.y59{bottom:631.137058px;}
.ya6{bottom:642.117607px;}
.y1d{bottom:644.997751px;}
.yc6{bottom:648.417922px;}
.y77{bottom:649.677985px;}
.y58{bottom:650.038003px;}
.ya5{bottom:661.018552px;}
.y1c{bottom:663.898696px;}
.yc5{bottom:667.318867px;}
.y57{bottom:669.118957px;}
.ya4{bottom:680.129507px;}
.y1b{bottom:682.829642px;}
.yc4{bottom:686.429822px;}
.y56{bottom:688.049903px;}
.ya3{bottom:699.030452px;}
.y1a{bottom:701.550578px;}
.yc3{bottom:705.330767px;}
.y55{bottom:707.130857px;}
.ya2{bottom:717.931397px;}
.y19{bottom:720.091505px;}
.yc2{bottom:724.231712px;}
.y54{bottom:725.671784px;}
.y76{bottom:726.031802px;}
.y18{bottom:735.572279px;}
.ya1{bottom:736.652333px;}
.yc1{bottom:743.312666px;}
.y53{bottom:744.932747px;}
.y17{bottom:751.233062px;}
.ya0{bottom:755.913296px;}
.yc0{bottom:762.213611px;}
.y52{bottom:764.013701px;}
.y16{bottom:766.713836px;}
.y9f{bottom:774.994250px;}
.ybf{bottom:781.294565px;}
.y15{bottom:782.194610px;}
.y51{bottom:782.914646px;}
.y9e{bottom:793.895195px;}
.y14{bottom:797.675384px;}
.ybe{bottom:800.195510px;}
.y50{bottom:801.995600px;}
.y9d{bottom:812.796140px;}
.y13{bottom:813.336167px;}
.ybd{bottom:819.096455px;}
.y4f{bottom:820.896545px;}
.y12{bottom:828.816941px;}
.y9c{bottom:831.877094px;}
.ybc{bottom:837.457373px;}
.y4e{bottom:839.797490px;}
.y11{bottom:844.297715px;}
.ybb{bottom:849.697985px;}
.y9b{bottom:850.778039px;}
.y4d{bottom:858.878444px;}
.y10{bottom:859.778489px;}
.y9a{bottom:869.858993px;}
.yf{bottom:875.439272px;}
.y4c{bottom:877.779389px;}
.y99{bottom:888.759938px;}
.ye{bottom:890.560028px;}
.y4b{bottom:896.860343px;}
.yd{bottom:906.400820px;}
.y4a{bottom:915.806291px;}
.y98{bottom:916.886345px;}
.yc{bottom:921.926597px;}
.y49{bottom:934.887245px;}
.y97{bottom:935.787290px;}
.yb{bottom:937.587380px;}
.ya{bottom:953.068154px;}
.y48{bottom:953.788190px;}
.y96{bottom:954.688235px;}
.y9{bottom:968.548928px;}
.y75{bottom:972.329117px;}
.y47{bottom:972.689135px;}
.y95{bottom:973.769189px;}
.y8{bottom:984.029702px;}
.y46{bottom:991.770089px;}
.y94{bottom:992.670134px;}
.y7{bottom:1000.410521px;}
.y45{bottom:1010.671034px;}
.y93{bottom:1011.751088px;}
.y6{bottom:1019.311466px;}
.y44{bottom:1029.751988px;}
.y92{bottom:1039.652483px;}
.y5{bottom:1040.912546px;}
.y43{bottom:1048.652933px;}
.y91{bottom:1058.553428px;}
.y42{bottom:1067.553878px;}
.y4{bottom:1071.874094px;}
.y90{bottom:1077.634382px;}
.y41{bottom:1086.634832px;}
.y8f{bottom:1096.535327px;}
.y3{bottom:1102.475624px;}
.y40{bottom:1105.535777px;}
.y3f{bottom:1124.616731px;}
.y2{bottom:1133.437172px;}
.yd5{bottom:1143.157658px;}
.y3e{bottom:1143.517675px;}
.y1{bottom:1216.631331px;}
.h17{height:13.665683px;}
.h14{height:13.845692px;}
.h16{height:14.025701px;}
.h18{height:14.205710px;}
.he{height:17.265863px;}
.h9{height:17.301865px;}
.hb{height:34.546727px;}
.h15{height:47.347289px;}
.h6{height:53.000697px;}
.h7{height:54.424596px;}
.hf{height:56.786820px;}
.hd{height:58.624923px;}
.hc{height:58.654104px;}
.h10{height:59.386094px;}
.ha{height:60.229886px;}
.h13{height:64.981843px;}
.h5{height:65.014188px;}
.h8{height:66.760838px;}
.h12{height:69.089704px;}
.h11{height:70.667596px;}
.h4{height:106.001394px;}
.h3{height:108.849192px;}
.h2{height:112.646257px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:32.401620px;}
.w8{width:34.021701px;}
.w9{width:37.081854px;}
.wa{width:37.801890px;}
.w4{width:141.148057px;}
.w5{width:141.163058px;}
.w6{width:141.292064px;}
.w3{width:141.343067px;}
.w2{width:709.370467px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:2.160108px;}
.x12{left:8.445422px;}
.x14{left:25.741287px;}
.x15{left:30.241512px;}
.xf{left:32.041602px;}
.xb{left:33.157658px;}
.xd{left:46.427321px;}
.x11{left:50.927546px;}
.x18{left:55.622781px;}
.x16{left:63.213161px;}
.x17{left:66.813340px;}
.x7{left:76.451325px;}
.x1{left:79.151460px;}
.x1f{left:86.531829px;}
.x9{left:87.611883px;}
.x3{left:90.672036px;}
.x6{left:100.428524px;}
.x1a{left:103.488677px;}
.x2{left:105.468776px;}
.x1b{left:130.490027px;}
.x1d{left:157.485377px;}
.x8{left:179.446475px;}
.x21{left:206.627834px;}
.x5{left:225.168761px;}
.xc{left:229.683986px;}
.xa{left:265.408270px;}
.x22{left:307.117858px;}
.xe{left:371.741089px;}
.x24{left:402.522628px;}
.x19{left:412.197000px;}
.x4{left:442.124608px;}
.x1c{left:465.772500px;}
.x10{left:513.633183px;}
.x13{left:655.690286px;}
.x1e{left:724.093706px;}
.x20{left:807.977900px;}
@media print{
.v2{vertical-align:-58.242912pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000800pt;}
.lsa{letter-spacing:-0.640032pt;}
.lsb{letter-spacing:-0.271480pt;}
.lsc{letter-spacing:-0.233078pt;}
.ls5{letter-spacing:-0.192010pt;}
.lsd{letter-spacing:-0.135473pt;}
.lse{letter-spacing:-0.097072pt;}
.ls4{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.016001pt;}
.ls12{letter-spacing:0.097072pt;}
.ls11{letter-spacing:0.135473pt;}
.ls0{letter-spacing:0.160008pt;}
.ls13{letter-spacing:0.233078pt;}
.ls2{letter-spacing:0.320016pt;}
.ls6{letter-spacing:22.672494pt;}
.ls7{letter-spacing:25.872654pt;}
.ls8{letter-spacing:29.072814pt;}
.ls9{letter-spacing:32.272974pt;}
.lsf{letter-spacing:32.913006pt;}
.ls10{letter-spacing:39.313326pt;}
.ls1{letter-spacing:59.650982pt;}
.ls14{letter-spacing:98.052902pt;}
.wsd{word-spacing:-14.953814pt;}
.wsb{word-spacing:-14.856209pt;}
.wsc{word-spacing:-14.817808pt;}
.ws0{word-spacing:-14.768098pt;}
.ws6{word-spacing:-14.720736pt;}
.wsa{word-spacing:-14.623664pt;}
.ws9{word-spacing:-14.585263pt;}
.ws8{word-spacing:-14.487658pt;}
.ws7{word-spacing:-14.449256pt;}
.ws4{word-spacing:-13.600680pt;}
.ws3{word-spacing:-13.280664pt;}
.ws2{word-spacing:-12.000600pt;}
.ws1{word-spacing:-9.600480pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1.344067pt;}
._0{width:1.040692pt;}
._2{width:2.592130pt;}
._4{width:3.807550pt;}
._7{width:5.163778pt;}
._e{width:6.127666pt;}
._8{width:7.124836pt;}
._9{width:8.115606pt;}
._6{width:9.792490pt;}
._5{width:10.800540pt;}
._d{width:12.104925pt;}
._3{width:13.056653pt;}
._c{width:16.075044pt;}
._f{width:17.176752pt;}
._12{width:18.252433pt;}
._11{width:19.410464pt;}
._a{width:21.138977pt;}
._b{width:22.031182pt;}
._10{width:23.196466pt;}
._13{width:29.147057pt;}
._14{width:30.324716pt;}
._15{width:31.740040pt;}
._16{width:41.983539pt;}
._17{width:43.921129pt;}
.fs1{font-size:34.561728pt;}
.fs7{font-size:42.882144pt;}
.fs4{font-size:48.002400pt;}
.fs0{font-size:53.122656pt;}
.fs5{font-size:53.133867pt;}
.fs3{font-size:58.882944pt;}
.fs6{font-size:64.003200pt;}
.fs2{font-size:96.004800pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:2.546794pt;}
.yd2{bottom:2.560128pt;}
.yce{bottom:2.720136pt;}
.yd0{bottom:2.866810pt;}
.y29{bottom:3.026818pt;}
.y2d{bottom:3.346834pt;}
.y2b{bottom:18.387586pt;}
.y3d{bottom:42.653333pt;}
.y3c{bottom:79.960000pt;}
.ycc{bottom:94.040704pt;}
.y3b{bottom:96.760840pt;}
.y8e{bottom:98.360920pt;}
.y74{bottom:102.841144pt;}
.ycb{bottom:111.001552pt;}
.y3a{bottom:113.561680pt;}
.y8d{bottom:115.321768pt;}
.y73{bottom:120.922048pt;}
.yca{bottom:127.162360pt;}
.y39{bottom:130.522528pt;}
.y8c{bottom:132.122608pt;}
.y72{bottom:137.722888pt;}
.y38{bottom:147.323368pt;}
.y8b{bottom:148.763440pt;}
.yba{bottom:149.083456pt;}
.y71{bottom:154.683736pt;}
.yc9{bottom:155.483776pt;}
.y37{bottom:164.284216pt;}
.y8a{bottom:165.884296pt;}
.yc8{bottom:168.764440pt;}
.y70{bottom:171.484576pt;}
.ye8{bottom:173.084656pt;}
.y36{bottom:181.085056pt;}
.y89{bottom:182.685136pt;}
.y6f{bottom:188.312084pt;}
.ye7{bottom:189.912164pt;}
.y35{bottom:197.912564pt;}
.y88{bottom:199.672652pt;}
.y6e{bottom:205.272932pt;}
.ye6{bottom:206.713004pt;}
.y34{bottom:214.873412pt;}
.y87{bottom:216.473492pt;}
.y6d{bottom:222.073772pt;}
.ye5{bottom:223.673852pt;}
.y33{bottom:231.674252pt;}
.y86{bottom:233.434340pt;}
.y6c{bottom:239.034620pt;}
.ye4{bottom:240.474692pt;}
.y32{bottom:248.635100pt;}
.yb9{bottom:250.235180pt;}
.y6b{bottom:255.835460pt;}
.ye3{bottom:257.435540pt;}
.y85{bottom:258.235580pt;}
.y31{bottom:265.435940pt;}
.yb8{bottom:267.036020pt;}
.y6a{bottom:272.636300pt;}
.ye2{bottom:274.236380pt;}
.y84{bottom:275.036420pt;}
.y30{bottom:282.236780pt;}
.yb7{bottom:283.996868pt;}
.y69{bottom:289.597148pt;}
.ye1{bottom:291.037220pt;}
.y83{bottom:291.997268pt;}
.y2f{bottom:299.197628pt;}
.yb6{bottom:300.797708pt;}
.y68{bottom:306.397988pt;}
.ye0{bottom:307.998068pt;}
.y82{bottom:308.798108pt;}
.y2e{bottom:315.998468pt;}
.yb5{bottom:317.758556pt;}
.y67{bottom:323.358836pt;}
.ydf{bottom:324.798908pt;}
.y2c{bottom:329.932498pt;}
.y81{bottom:333.759356pt;}
.yb4{bottom:334.559396pt;}
.ycf{bottom:339.532978pt;}
.y66{bottom:340.159676pt;}
.yd3{bottom:340.173010pt;}
.yde{bottom:341.759756pt;}
.y2a{bottom:345.933298pt;}
.y80{bottom:350.560196pt;}
.yb3{bottom:351.520244pt;}
.y65{bottom:357.120524pt;}
.ydd{bottom:358.560596pt;}
.y7f{bottom:367.521044pt;}
.yb2{bottom:368.321084pt;}
.y64{bottom:373.921364pt;}
.ydc{bottom:375.521444pt;}
.y28{bottom:377.294866pt;}
.y7e{bottom:384.321884pt;}
.yb1{bottom:385.121924pt;}
.y63{bottom:390.722204pt;}
.ydb{bottom:392.362286pt;}
.y27{bottom:397.002518pt;}
.y7d{bottom:401.162726pt;}
.yb0{bottom:402.122774pt;}
.y62{bottom:407.723054pt;}
.yda{bottom:409.163126pt;}
.y26{bottom:413.163326pt;}
.y7c{bottom:418.123574pt;}
.yaf{bottom:418.923614pt;}
.y61{bottom:424.523894pt;}
.yd9{bottom:426.123974pt;}
.y25{bottom:426.924014pt;}
.y7b{bottom:434.924414pt;}
.yae{bottom:435.884462pt;}
.ycd{bottom:437.324534pt;}
.yd1{bottom:437.804558pt;}
.y60{bottom:441.484742pt;}
.yd8{bottom:442.924814pt;}
.y7a{bottom:451.885262pt;}
.yad{bottom:452.685302pt;}
.y24{bottom:455.245430pt;}
.y5f{bottom:458.765606pt;}
.yd7{bottom:459.885662pt;}
.y79{bottom:468.686102pt;}
.yac{bottom:469.486142pt;}
.y23{bottom:472.046270pt;}
.yd6{bottom:476.366486pt;}
.y5e{bottom:476.686502pt;}
.y78{bottom:485.486942pt;}
.yab{bottom:486.446990pt;}
.y22{bottom:489.007118pt;}
.y5d{bottom:493.487342pt;}
.yaa{bottom:503.247830pt;}
.y21{bottom:505.807958pt;}
.y5c{bottom:510.448190pt;}
.ya9{bottom:520.208678pt;}
.y20{bottom:522.608798pt;}
.y5b{bottom:527.249030pt;}
.ya8{bottom:537.009518pt;}
.y1f{bottom:539.569646pt;}
.y5a{bottom:544.209878pt;}
.ya7{bottom:553.810358pt;}
.y1e{bottom:556.370486pt;}
.yc7{bottom:559.410638pt;}
.y59{bottom:561.010718pt;}
.ya6{bottom:570.771206pt;}
.y1d{bottom:573.331334pt;}
.yc6{bottom:576.371486pt;}
.y77{bottom:577.491542pt;}
.y58{bottom:577.811558pt;}
.ya5{bottom:587.572046pt;}
.y1c{bottom:590.132174pt;}
.yc5{bottom:593.172326pt;}
.y57{bottom:594.772406pt;}
.ya4{bottom:604.559562pt;}
.y1b{bottom:606.959682pt;}
.yc4{bottom:610.159842pt;}
.y56{bottom:611.599914pt;}
.ya3{bottom:621.360402pt;}
.y1a{bottom:623.600514pt;}
.yc3{bottom:626.960682pt;}
.y55{bottom:628.560762pt;}
.ya2{bottom:638.161242pt;}
.y19{bottom:640.081338pt;}
.yc2{bottom:643.761522pt;}
.y54{bottom:645.041586pt;}
.y76{bottom:645.361602pt;}
.y18{bottom:653.842026pt;}
.ya1{bottom:654.802074pt;}
.yc1{bottom:660.722370pt;}
.y53{bottom:662.162442pt;}
.y17{bottom:667.762722pt;}
.ya0{bottom:671.922930pt;}
.yc0{bottom:677.523210pt;}
.y52{bottom:679.123290pt;}
.y16{bottom:681.523410pt;}
.y9f{bottom:688.883778pt;}
.ybf{bottom:694.484058pt;}
.y15{bottom:695.284098pt;}
.y51{bottom:695.924130pt;}
.y9e{bottom:705.684618pt;}
.y14{bottom:709.044786pt;}
.ybe{bottom:711.284898pt;}
.y50{bottom:712.884978pt;}
.y9d{bottom:722.485458pt;}
.y13{bottom:722.965482pt;}
.ybd{bottom:728.085738pt;}
.y4f{bottom:729.685818pt;}
.y12{bottom:736.726170pt;}
.y9c{bottom:739.446306pt;}
.ybc{bottom:744.406554pt;}
.y4e{bottom:746.486658pt;}
.y11{bottom:750.486858pt;}
.ybb{bottom:755.287098pt;}
.y9b{bottom:756.247146pt;}
.y4d{bottom:763.447506pt;}
.y10{bottom:764.247546pt;}
.y9a{bottom:773.207994pt;}
.yf{bottom:778.168242pt;}
.y4c{bottom:780.248346pt;}
.y99{bottom:790.008834pt;}
.ye{bottom:791.608914pt;}
.y4b{bottom:797.209194pt;}
.yd{bottom:805.689618pt;}
.y4a{bottom:814.050036pt;}
.y98{bottom:815.010084pt;}
.yc{bottom:819.490308pt;}
.y49{bottom:831.010884pt;}
.y97{bottom:831.810924pt;}
.yb{bottom:833.411004pt;}
.ya{bottom:847.171692pt;}
.y48{bottom:847.811724pt;}
.y96{bottom:848.611764pt;}
.y9{bottom:860.932380pt;}
.y75{bottom:864.292548pt;}
.y47{bottom:864.612564pt;}
.y95{bottom:865.572612pt;}
.y8{bottom:874.693068pt;}
.y46{bottom:881.573412pt;}
.y94{bottom:882.373452pt;}
.y7{bottom:889.253796pt;}
.y45{bottom:898.374252pt;}
.y93{bottom:899.334300pt;}
.y6{bottom:906.054636pt;}
.y44{bottom:915.335100pt;}
.y92{bottom:924.135540pt;}
.y5{bottom:925.255596pt;}
.y43{bottom:932.135940pt;}
.y91{bottom:940.936380pt;}
.y42{bottom:948.936780pt;}
.y4{bottom:952.776972pt;}
.y90{bottom:957.897228pt;}
.y41{bottom:965.897628pt;}
.y8f{bottom:974.698068pt;}
.y3{bottom:979.978332pt;}
.y40{bottom:982.698468pt;}
.y3f{bottom:999.659316pt;}
.y2{bottom:1007.499708pt;}
.yd5{bottom:1016.140140pt;}
.y3e{bottom:1016.460156pt;}
.y1{bottom:1081.450072pt;}
.h17{height:12.147274pt;}
.h14{height:12.307282pt;}
.h16{height:12.467290pt;}
.h18{height:12.627298pt;}
.he{height:15.347434pt;}
.h9{height:15.379436pt;}
.hb{height:30.708202pt;}
.h15{height:42.086479pt;}
.h6{height:47.111730pt;}
.h7{height:48.377419pt;}
.hf{height:50.477173pt;}
.hd{height:52.111043pt;}
.hc{height:52.136982pt;}
.h10{height:52.787639pt;}
.ha{height:53.537677pt;}
.h13{height:57.761638pt;}
.h5{height:57.790389pt;}
.h8{height:59.342967pt;}
.h12{height:61.413071pt;}
.h11{height:62.815641pt;}
.h4{height:94.223461pt;}
.h3{height:96.754838pt;}
.h2{height:100.130006pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:28.801440pt;}
.w8{width:30.241512pt;}
.w9{width:32.961648pt;}
.wa{width:33.601680pt;}
.w4{width:125.464940pt;}
.w5{width:125.478274pt;}
.w6{width:125.592946pt;}
.w3{width:125.638282pt;}
.w2{width:630.551526pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:1.920096pt;}
.x12{left:7.507042pt;}
.x14{left:22.881144pt;}
.x15{left:26.881344pt;}
.xf{left:28.481424pt;}
.xb{left:29.473474pt;}
.xd{left:41.268730pt;}
.x11{left:45.268930pt;}
.x18{left:49.442472pt;}
.x16{left:56.189476pt;}
.x17{left:59.389636pt;}
.x7{left:67.956733pt;}
.x1{left:70.356853pt;}
.x1f{left:76.917181pt;}
.x9{left:77.877229pt;}
.x3{left:80.597365pt;}
.x6{left:89.269799pt;}
.x1a{left:91.989935pt;}
.x2{left:93.750023pt;}
.x1b{left:115.991135pt;}
.x1d{left:139.987001pt;}
.x8{left:159.507977pt;}
.x21{left:183.669185pt;}
.x5{left:200.150009pt;}
.xc{left:204.163543pt;}
.xa{left:235.918462pt;}
.x22{left:272.993651pt;}
.xe{left:330.436523pt;}
.x24{left:357.797891pt;}
.x19{left:366.397333pt;}
.x4{left:392.999651pt;}
.x1c{left:414.020000pt;}
.x10{left:456.562829pt;}
.x13{left:582.835809pt;}
.x1e{left:643.638849pt;}
.x20{left:718.202577pt;}
}




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