
    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_a30878433b9592f70da07112.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.862793;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_7f6a54a6911ef14ee6c096e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.706543;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_fa0991e767f28c57bab6df39.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9f1e3074ba82b3281c956e01.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_b8be83a41ffd3cabd4202a8f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8da88ab1259f0f59005ce40d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2590d3a01a2218120c52ac00.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.275460px;}
.ls4{letter-spacing:0.316500px;}
.ls3{letter-spacing:6.079918px;}
.ls1{letter-spacing:8.961656px;}
.ls2{letter-spacing:19.768072px;}
.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:-15.839994px;}
.ws1{word-spacing:-14.970234px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-2.585703px;}
._1{margin-left:-1.270053px;}
._0{width:1.308880px;}
._1c{width:2.313651px;}
._10{width:3.330065px;}
._f{width:4.586430px;}
._a{width:6.032112px;}
._b{width:7.344949px;}
._9{width:8.824057px;}
._8{width:10.051280px;}
._12{width:11.253655px;}
._1d{width:12.342237px;}
._1b{width:13.526278px;}
._11{width:15.449164px;}
._7{width:16.742897px;}
._14{width:19.630150px;}
._19{width:21.000384px;}
._18{width:22.258929px;}
._4{width:24.003224px;}
._c{width:25.538439px;}
._6{width:26.877085px;}
._5{width:28.052548px;}
._1a{width:29.167780px;}
._21{width:30.466586px;}
._13{width:31.569783px;}
._15{width:32.688020px;}
._3{width:34.405685px;}
._23{width:35.852703px;}
._1f{width:39.767341px;}
._1e{width:41.469222px;}
._22{width:42.962073px;}
._d{width:50.779418px;}
._e{width:59.426709px;}
._20{width:69.380403px;}
._17{width:73.120664px;}
._16{width:74.749637px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:59.759976px;}
.fs3{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.960037px;}
.y5{bottom:53.040240px;}
.y4{bottom:56.999977px;}
.y3{bottom:57.179977px;}
.ybc{bottom:110.279956px;}
.yea{bottom:118.379953px;}
.yd5{bottom:121.259951px;}
.y32{bottom:124.499950px;}
.y56{bottom:127.559949px;}
.y9e{bottom:127.919949px;}
.y87{bottom:130.259948px;}
.y67{bottom:137.819945px;}
.ybb{bottom:138.719945px;}
.ye9{bottom:146.819941px;}
.yd4{bottom:149.699940px;}
.y31{bottom:152.939939px;}
.y55{bottom:155.999938px;}
.y9d{bottom:156.359937px;}
.y86{bottom:158.699937px;}
.y66{bottom:166.259933px;}
.yba{bottom:167.159933px;}
.ye8{bottom:175.259930px;}
.yd3{bottom:178.139929px;}
.y30{bottom:181.379927px;}
.y85{bottom:187.139925px;}
.yf9{bottom:188.759924px;}
.y9c{bottom:193.799922px;}
.y65{bottom:194.699922px;}
.yb9{bottom:195.599922px;}
.y54{bottom:202.259919px;}
.ye7{bottom:203.699919px;}
.yd2{bottom:206.579917px;}
.y2f{bottom:209.819916px;}
.y84{bottom:215.579914px;}
.y9b{bottom:222.239911px;}
.y64{bottom:223.139911px;}
.yb8{bottom:224.219910px;}
.y53{bottom:230.699908px;}
.ye6{bottom:232.139907px;}
.yd1{bottom:235.019906px;}
.y2e{bottom:238.259905px;}
.y83{bottom:244.019902px;}
.y9a{bottom:250.859900px;}
.y63{bottom:251.579899px;}
.yb7{bottom:252.659899px;}
.y52{bottom:259.139896px;}
.ye5{bottom:260.579896px;}
.yd0{bottom:263.459895px;}
.y2d{bottom:266.699893px;}
.y82{bottom:272.459891px;}
.y99{bottom:279.479888px;}
.y62{bottom:280.019888px;}
.yf8{bottom:281.459887px;}
.y51{bottom:287.579885px;}
.yac{bottom:289.019884px;}
.yb6{bottom:290.099884px;}
.ycf{bottom:292.079883px;}
.y2c{bottom:295.139882px;}
.y81{bottom:301.079880px;}
.y98{bottom:308.099877px;}
.y61{bottom:308.459877px;}
.yf7{bottom:310.079876px;}
.y50{bottom:316.019874px;}
.yab{bottom:317.459873px;}
.yb5{bottom:318.539873px;}
.yce{bottom:320.519872px;}
.y2b{bottom:323.579871px;}
.ye4{bottom:326.459869px;}
.y80{bottom:329.519868px;}
.y97{bottom:336.539865px;}
.y60{bottom:337.079865px;}
.yf6{bottom:338.519865px;}
.y4f{bottom:344.459862px;}
.yaa{bottom:346.079862px;}
.yb4{bottom:346.979861px;}
.ycd{bottom:348.959860px;}
.y2a{bottom:352.019859px;}
.ye3{bottom:355.079858px;}
.y96{bottom:364.979854px;}
.y5f{bottom:365.519854px;}
.yf5{bottom:366.959853px;}
.y4e{bottom:373.079851px;}
.ya9{bottom:374.519850px;}
.yb3{bottom:375.419850px;}
.y7f{bottom:375.959850px;}
.ycc{bottom:377.399849px;}
.y29{bottom:380.639848px;}
.ye2{bottom:392.519843px;}
.y95{bottom:393.779842px;}
.y5e{bottom:393.959842px;}
.yf4{bottom:395.399842px;}
.y4d{bottom:401.519839px;}
.ya8{bottom:402.959839px;}
.yb2{bottom:403.859838px;}
.y7e{bottom:404.399838px;}
.ycb{bottom:405.839838px;}
.y28{bottom:409.079836px;}
.ye1{bottom:420.959832px;}
.yf3{bottom:423.839830px;}
.y4c{bottom:429.959828px;}
.y94{bottom:431.399827px;}
.yb1{bottom:432.299827px;}
.y7d{bottom:432.839827px;}
.yca{bottom:434.279826px;}
.y27{bottom:437.519825px;}
.y5d{bottom:440.399824px;}
.ye0{bottom:449.399820px;}
.yf2{bottom:452.279819px;}
.y4b{bottom:458.399817px;}
.y93{bottom:459.839816px;}
.yb0{bottom:460.739816px;}
.y7c{bottom:461.279815px;}
.yc9{bottom:462.719815px;}
.y26{bottom:465.959814px;}
.y5c{bottom:468.839812px;}
.ydf{bottom:477.839809px;}
.yf1{bottom:480.719808px;}
.y4a{bottom:486.839805px;}
.y92{bottom:488.279805px;}
.yaf{bottom:488.999804px;}
.y7b{bottom:489.719804px;}
.yc8{bottom:491.159804px;}
.y25{bottom:494.399802px;}
.y5b{bottom:497.279801px;}
.yde{bottom:506.279797px;}
.yae{bottom:507.899797px;}
.yf0{bottom:509.159796px;}
.y49{bottom:515.279794px;}
.ya7{bottom:516.719793px;}
.y7a{bottom:518.159793px;}
.y24{bottom:522.839791px;}
.y5a{bottom:525.719790px;}
.yc7{bottom:528.599789px;}
.ydd{bottom:534.719786px;}
.y48{bottom:543.719783px;}
.y79{bottom:546.599781px;}
.y59{bottom:554.159778px;}
.yef{bottom:555.779778px;}
.yc6{bottom:557.219777px;}
.ydc{bottom:563.159775px;}
.y23{bottom:569.459772px;}
.y47{bottom:572.159771px;}
.y78{bottom:575.219770px;}
.y58{bottom:582.599767px;}
.yc5{bottom:585.659766px;}
.ydb{bottom:591.599763px;}
.y22{bottom:597.359761px;}
.y46{bottom:600.599760px;}
.yee{bottom:602.219759px;}
.y77{bottom:603.659759px;}
.y57{bottom:611.219756px;}
.y21{bottom:617.339753px;}
.yda{bottom:620.219752px;}
.yc4{bottom:623.099751px;}
.y45{bottom:629.219748px;}
.yed{bottom:630.659748px;}
.y76{bottom:632.099747px;}
.y20{bottom:637.319745px;}
.y91{bottom:639.659744px;}
.yd9{bottom:648.659741px;}
.yc3{bottom:651.539739px;}
.y1f{bottom:656.579737px;}
.y44{bottom:657.659737px;}
.yec{bottom:659.099736px;}
.y90{bottom:668.099733px;}
.y1e{bottom:675.479730px;}
.yd8{bottom:677.099729px;}
.y75{bottom:678.539729px;}
.yc2{bottom:679.979728px;}
.y43{bottom:686.099726px;}
.yeb{bottom:687.539725px;}
.y1d{bottom:694.559722px;}
.y8f{bottom:696.539721px;}
.yd7{bottom:705.539718px;}
.y74{bottom:706.979717px;}
.y1c{bottom:713.639715px;}
.y42{bottom:714.539714px;}
.yc1{bottom:717.419713px;}
.y8e{bottom:724.979710px;}
.y1b{bottom:732.359707px;}
.yd6{bottom:733.979706px;}
.y73{bottom:735.419706px;}
.y41{bottom:742.979703px;}
.y1a{bottom:751.439699px;}
.y8d{bottom:753.419699px;}
.yc0{bottom:754.859698px;}
.ya6{bottom:762.419695px;}
.y72{bottom:763.859694px;}
.y19{bottom:770.339692px;}
.y40{bottom:771.419691px;}
.y8c{bottom:781.859687px;}
.y18{bottom:789.419684px;}
.ya5{bottom:790.859684px;}
.y71{bottom:792.299683px;}
.y3f{bottom:799.859680px;}
.y17{bottom:808.499677px;}
.y8b{bottom:810.299676px;}
.ya4{bottom:819.299672px;}
.y70{bottom:820.739672px;}
.y16{bottom:827.219669px;}
.y3e{bottom:828.299669px;}
.ybf{bottom:829.739668px;}
.y8a{bottom:838.739665px;}
.y15{bottom:846.299661px;}
.ya3{bottom:847.739661px;}
.y6f{bottom:849.359660px;}
.y3d{bottom:856.739657px;}
.ybe{bottom:858.359657px;}
.y14{bottom:865.199654px;}
.y89{bottom:867.359653px;}
.ya2{bottom:876.359649px;}
.y13{bottom:884.279646px;}
.y3c{bottom:885.359646px;}
.ybd{bottom:886.799645px;}
.y6e{bottom:895.799642px;}
.y12{bottom:903.359639px;}
.ya1{bottom:904.799638px;}
.y3b{bottom:913.799634px;}
.y11{bottom:922.439631px;}
.y6d{bottom:924.239630px;}
.ya0{bottom:933.239627px;}
.y10{bottom:941.339623px;}
.y3a{bottom:942.239623px;}
.y6c{bottom:952.679619px;}
.yf{bottom:960.239616px;}
.y9f{bottom:961.679615px;}
.y39{bottom:970.679612px;}
.ye{bottom:980.039608px;}
.y6b{bottom:981.119608px;}
.yad{bottom:990.119604px;}
.y38{bottom:999.119600px;}
.yd{bottom:999.299600px;}
.y6a{bottom:1009.559596px;}
.yc{bottom:1018.199593px;}
.y37{bottom:1027.559589px;}
.yb{bottom:1037.099585px;}
.y69{bottom:1037.999585px;}
.yfa{bottom:1045.199582px;}
.y36{bottom:1055.999578px;}
.ya{bottom:1056.359577px;}
.y68{bottom:1066.439573px;}
.y9{bottom:1075.259570px;}
.y35{bottom:1084.439566px;}
.y88{bottom:1094.879562px;}
.y8{bottom:1104.059558px;}
.y34{bottom:1112.879555px;}
.y7{bottom:1128.359549px;}
.y33{bottom:1141.499543px;}
.y2{bottom:1172.279531px;}
.y1{bottom:1195.499522px;}
.h3{height:21.060000px;}
.h1{height:40.909906px;}
.h6{height:44.149201px;}
.h2{height:50.308574px;}
.h5{height:69.086222px;}
.h4{height:87.859652px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.x5{left:152.099939px;}
.x19{left:154.620237px;}
.x18{left:159.659965px;}
.x1a{left:170.099864px;}
.x6{left:181.979865px;}
.xe{left:192.420252px;}
.x17{left:212.579928px;}
.x10{left:310.860135px;}
.x13{left:330.121503px;}
.x11{left:367.740128px;}
.x8{left:372.600368px;}
.x14{left:385.202722px;}
.x7{left:401.039840px;}
.x9{left:403.559831px;}
.x12{left:407.160375px;}
.xd{left:409.319382px;}
.x1b{left:436.319235px;}
.x3{left:441.179244px;}
.x2{left:446.219237px;}
.x4{left:451.080000px;}
.x16{left:454.864182px;}
.xa{left:486.899430px;}
.x15{left:502.382445px;}
.xb{left:509.939135px;}
.xf{left:551.340146px;}
.xc{left:764.999416px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.244853pt;}
.ls4{letter-spacing:0.281333pt;}
.ls3{letter-spacing:5.404371pt;}
.ls1{letter-spacing:7.965917pt;}
.ls2{letter-spacing:17.571620pt;}
.ws2{word-spacing:-14.079994pt;}
.ws1{word-spacing:-13.306875pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-2.298403pt;}
._1{margin-left:-1.128936pt;}
._0{width:1.163449pt;}
._1c{width:2.056579pt;}
._10{width:2.960058pt;}
._f{width:4.076827pt;}
._a{width:5.361877pt;}
._b{width:6.528844pt;}
._9{width:7.843606pt;}
._8{width:8.934471pt;}
._12{width:10.003249pt;}
._1d{width:10.970878pt;}
._1b{width:12.023358pt;}
._11{width:13.732591pt;}
._7{width:14.882575pt;}
._14{width:17.449022pt;}
._19{width:18.667008pt;}
._18{width:19.785715pt;}
._4{width:21.336199pt;}
._c{width:22.700835pt;}
._6{width:23.890742pt;}
._5{width:24.935598pt;}
._1a{width:25.926915pt;}
._21{width:27.081410pt;}
._13{width:28.062029pt;}
._15{width:29.056018pt;}
._3{width:30.582831pt;}
._23{width:31.869069pt;}
._1f{width:35.348747pt;}
._1e{width:36.861531pt;}
._22{width:38.188509pt;}
._d{width:45.137260pt;}
._e{width:52.823741pt;}
._20{width:61.671470pt;}
._17{width:64.996146pt;}
._16{width:66.444122pt;}
.fs0{font-size:53.119979pt;}
.fs3{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.520033pt;}
.y5{bottom:47.146880pt;}
.y4{bottom:50.666646pt;}
.y3{bottom:50.826646pt;}
.ybc{bottom:98.026627pt;}
.yea{bottom:105.226625pt;}
.yd5{bottom:107.786624pt;}
.y32{bottom:110.666622pt;}
.y56{bottom:113.386621pt;}
.y9e{bottom:113.706621pt;}
.y87{bottom:115.786620pt;}
.y67{bottom:122.506618pt;}
.ybb{bottom:123.306617pt;}
.ye9{bottom:130.506614pt;}
.yd4{bottom:133.066613pt;}
.y31{bottom:135.946612pt;}
.y55{bottom:138.666611pt;}
.y9d{bottom:138.986611pt;}
.y86{bottom:141.066610pt;}
.y66{bottom:147.786608pt;}
.yba{bottom:148.586607pt;}
.ye8{bottom:155.786604pt;}
.yd3{bottom:158.346603pt;}
.y30{bottom:161.226602pt;}
.y85{bottom:166.346600pt;}
.yf9{bottom:167.786600pt;}
.y9c{bottom:172.266598pt;}
.y65{bottom:173.066597pt;}
.yb9{bottom:173.866597pt;}
.y54{bottom:179.786595pt;}
.ye7{bottom:181.066594pt;}
.yd2{bottom:183.626593pt;}
.y2f{bottom:186.506592pt;}
.y84{bottom:191.626590pt;}
.y9b{bottom:197.546588pt;}
.y64{bottom:198.346587pt;}
.yb8{bottom:199.306587pt;}
.y53{bottom:205.066585pt;}
.ye6{bottom:206.346584pt;}
.yd1{bottom:208.906583pt;}
.y2e{bottom:211.786582pt;}
.y83{bottom:216.906580pt;}
.y9a{bottom:222.986577pt;}
.y63{bottom:223.626577pt;}
.yb7{bottom:224.586577pt;}
.y52{bottom:230.346575pt;}
.ye5{bottom:231.626574pt;}
.yd0{bottom:234.186573pt;}
.y2d{bottom:237.066572pt;}
.y82{bottom:242.186570pt;}
.y99{bottom:248.426567pt;}
.y62{bottom:248.906567pt;}
.yf8{bottom:250.186567pt;}
.y51{bottom:255.626564pt;}
.yac{bottom:256.906564pt;}
.yb6{bottom:257.866564pt;}
.ycf{bottom:259.626563pt;}
.y2c{bottom:262.346562pt;}
.y81{bottom:267.626560pt;}
.y98{bottom:273.866557pt;}
.y61{bottom:274.186557pt;}
.yf7{bottom:275.626556pt;}
.y50{bottom:280.906554pt;}
.yab{bottom:282.186554pt;}
.yb5{bottom:283.146553pt;}
.yce{bottom:284.906553pt;}
.y2b{bottom:287.626552pt;}
.ye4{bottom:290.186551pt;}
.y80{bottom:292.906550pt;}
.y97{bottom:299.146547pt;}
.y60{bottom:299.626547pt;}
.yf6{bottom:300.906546pt;}
.y4f{bottom:306.186544pt;}
.yaa{bottom:307.626544pt;}
.yb4{bottom:308.426543pt;}
.ycd{bottom:310.186543pt;}
.y2a{bottom:312.906542pt;}
.ye3{bottom:315.626540pt;}
.y96{bottom:324.426537pt;}
.y5f{bottom:324.906537pt;}
.yf5{bottom:326.186536pt;}
.y4e{bottom:331.626534pt;}
.ya9{bottom:332.906534pt;}
.yb3{bottom:333.706533pt;}
.y7f{bottom:334.186533pt;}
.ycc{bottom:335.466532pt;}
.y29{bottom:338.346531pt;}
.ye2{bottom:348.906527pt;}
.y95{bottom:350.026527pt;}
.y5e{bottom:350.186527pt;}
.yf4{bottom:351.466526pt;}
.y4d{bottom:356.906524pt;}
.ya8{bottom:358.186523pt;}
.yb2{bottom:358.986523pt;}
.y7e{bottom:359.466523pt;}
.ycb{bottom:360.746522pt;}
.y28{bottom:363.626521pt;}
.ye1{bottom:374.186517pt;}
.yf3{bottom:376.746516pt;}
.y4c{bottom:382.186514pt;}
.y94{bottom:383.466513pt;}
.yb1{bottom:384.266513pt;}
.y7d{bottom:384.746513pt;}
.yca{bottom:386.026512pt;}
.y27{bottom:388.906511pt;}
.y5d{bottom:391.466510pt;}
.ye0{bottom:399.466507pt;}
.yf2{bottom:402.026506pt;}
.y4b{bottom:407.466504pt;}
.y93{bottom:408.746503pt;}
.yb0{bottom:409.546503pt;}
.y7c{bottom:410.026503pt;}
.yc9{bottom:411.306502pt;}
.y26{bottom:414.186501pt;}
.y5c{bottom:416.746500pt;}
.ydf{bottom:424.746497pt;}
.yf1{bottom:427.306496pt;}
.y4a{bottom:432.746494pt;}
.y92{bottom:434.026493pt;}
.yaf{bottom:434.666493pt;}
.y7b{bottom:435.306493pt;}
.yc8{bottom:436.586492pt;}
.y25{bottom:439.466491pt;}
.y5b{bottom:442.026490pt;}
.yde{bottom:450.026487pt;}
.yae{bottom:451.466486pt;}
.yf0{bottom:452.586486pt;}
.y49{bottom:458.026483pt;}
.ya7{bottom:459.306483pt;}
.y7a{bottom:460.586482pt;}
.y24{bottom:464.746481pt;}
.y5a{bottom:467.306480pt;}
.yc7{bottom:469.866479pt;}
.ydd{bottom:475.306477pt;}
.y48{bottom:483.306473pt;}
.y79{bottom:485.866472pt;}
.y59{bottom:492.586470pt;}
.yef{bottom:494.026469pt;}
.yc6{bottom:495.306469pt;}
.ydc{bottom:500.586466pt;}
.y23{bottom:506.186464pt;}
.y47{bottom:508.586463pt;}
.y78{bottom:511.306462pt;}
.y58{bottom:517.866460pt;}
.yc5{bottom:520.586458pt;}
.ydb{bottom:525.866456pt;}
.y22{bottom:530.986454pt;}
.y46{bottom:533.866453pt;}
.yee{bottom:535.306453pt;}
.y77{bottom:536.586452pt;}
.y57{bottom:543.306449pt;}
.y21{bottom:548.746447pt;}
.yda{bottom:551.306446pt;}
.yc4{bottom:553.866445pt;}
.y45{bottom:559.306443pt;}
.yed{bottom:560.586442pt;}
.y76{bottom:561.866442pt;}
.y20{bottom:566.506440pt;}
.y91{bottom:568.586439pt;}
.yd9{bottom:576.586436pt;}
.yc3{bottom:579.146435pt;}
.y1f{bottom:583.626433pt;}
.y44{bottom:584.586433pt;}
.yec{bottom:585.866432pt;}
.y90{bottom:593.866429pt;}
.y1e{bottom:600.426426pt;}
.yd8{bottom:601.866426pt;}
.y75{bottom:603.146425pt;}
.yc2{bottom:604.426425pt;}
.y43{bottom:609.866423pt;}
.yeb{bottom:611.146422pt;}
.y1d{bottom:617.386420pt;}
.y8f{bottom:619.146419pt;}
.yd7{bottom:627.146416pt;}
.y74{bottom:628.426415pt;}
.y1c{bottom:634.346413pt;}
.y42{bottom:635.146413pt;}
.yc1{bottom:637.706412pt;}
.y8e{bottom:644.426409pt;}
.y1b{bottom:650.986406pt;}
.yd6{bottom:652.426406pt;}
.y73{bottom:653.706405pt;}
.y41{bottom:660.426402pt;}
.y1a{bottom:667.946399pt;}
.y8d{bottom:669.706399pt;}
.yc0{bottom:670.986398pt;}
.ya6{bottom:677.706396pt;}
.y72{bottom:678.986395pt;}
.y19{bottom:684.746393pt;}
.y40{bottom:685.706392pt;}
.y8c{bottom:694.986389pt;}
.y18{bottom:701.706386pt;}
.ya5{bottom:702.986385pt;}
.y71{bottom:704.266385pt;}
.y3f{bottom:710.986382pt;}
.y17{bottom:718.666379pt;}
.y8b{bottom:720.266379pt;}
.ya4{bottom:728.266375pt;}
.y70{bottom:729.546375pt;}
.y16{bottom:735.306373pt;}
.y3e{bottom:736.266372pt;}
.ybf{bottom:737.546372pt;}
.y8a{bottom:745.546368pt;}
.y15{bottom:752.266366pt;}
.ya3{bottom:753.546365pt;}
.y6f{bottom:754.986365pt;}
.y3d{bottom:761.546362pt;}
.ybe{bottom:762.986361pt;}
.y14{bottom:769.066359pt;}
.y89{bottom:770.986358pt;}
.ya2{bottom:778.986355pt;}
.y13{bottom:786.026352pt;}
.y3c{bottom:786.986352pt;}
.ybd{bottom:788.266351pt;}
.y6e{bottom:796.266348pt;}
.y12{bottom:802.986345pt;}
.ya1{bottom:804.266345pt;}
.y3b{bottom:812.266342pt;}
.y11{bottom:819.946339pt;}
.y6d{bottom:821.546338pt;}
.ya0{bottom:829.546335pt;}
.y10{bottom:836.746332pt;}
.y3a{bottom:837.546332pt;}
.y6c{bottom:846.826328pt;}
.yf{bottom:853.546325pt;}
.y9f{bottom:854.826325pt;}
.y39{bottom:862.826322pt;}
.ye{bottom:871.146318pt;}
.y6b{bottom:872.106318pt;}
.yad{bottom:880.106315pt;}
.y38{bottom:888.106311pt;}
.yd{bottom:888.266311pt;}
.y6a{bottom:897.386308pt;}
.yc{bottom:905.066305pt;}
.y37{bottom:913.386301pt;}
.yb{bottom:921.866298pt;}
.y69{bottom:922.666298pt;}
.yfa{bottom:929.066295pt;}
.y36{bottom:938.666291pt;}
.ya{bottom:938.986291pt;}
.y68{bottom:947.946287pt;}
.y9{bottom:955.786284pt;}
.y35{bottom:963.946281pt;}
.y88{bottom:973.226277pt;}
.y8{bottom:981.386274pt;}
.y34{bottom:989.226271pt;}
.y7{bottom:1002.986265pt;}
.y33{bottom:1014.666261pt;}
.y2{bottom:1042.026250pt;}
.y1{bottom:1062.666242pt;}
.h3{height:18.720000pt;}
.h1{height:36.364360pt;}
.h6{height:39.243734pt;}
.h2{height:44.718732pt;}
.h5{height:61.409975pt;}
.h4{height:78.097469pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.x5{left:135.199946pt;}
.x19{left:137.440211pt;}
.x18{left:141.919969pt;}
.x1a{left:151.199879pt;}
.x6{left:161.759880pt;}
.xe{left:171.040224pt;}
.x17{left:188.959936pt;}
.x10{left:276.320120pt;}
.x13{left:293.441336pt;}
.x11{left:326.880114pt;}
.x8{left:331.200327pt;}
.x14{left:342.402420pt;}
.x7{left:356.479857pt;}
.x9{left:358.719850pt;}
.x12{left:361.920333pt;}
.xd{left:363.839451pt;}
.x1b{left:387.839320pt;}
.x3{left:392.159328pt;}
.x2{left:396.639322pt;}
.x4{left:400.960000pt;}
.x16{left:404.323717pt;}
.xa{left:432.799494pt;}
.x15{left:446.562173pt;}
.xb{left:453.279231pt;}
.xf{left:490.080130pt;}
.xc{left:679.999481pt;}
}




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