
    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_82e68dbb890650e1cda63ef0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_666b133249d4a5e117469f9f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.809570;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_a92beee98821fa101172590d.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_d71804b2c3b868149c46b07d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c1bd6d91e02f9cfee7350307.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;}
.m5{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1{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);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:60.479976px;}
.v1{vertical-align:61.919975px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.189257px;}
.ls5{letter-spacing:0.275460px;}
.ls6{letter-spacing:0.316500px;}
.ls8{letter-spacing:1.036920px;}
.ls7{letter-spacing:13.284235px;}
.ls2{letter-spacing:359.602510px;}
.ls3{letter-spacing:369.688652px;}
.ls1{letter-spacing:380.494473px;}
.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:-18.414713px;}
.ws4{word-spacing:-16.613273px;}
.ws2{word-spacing:-15.011994px;}
.ws3{word-spacing:-10.007996px;}
.ws0{word-spacing:0.000000px;}
._1f{margin-left:-12.966075px;}
._2d{margin-left:-2.373882px;}
._2{margin-left:-1.233054px;}
._0{width:1.044606px;}
._8{width:2.469575px;}
._6{width:4.066449px;}
._7{width:5.095868px;}
._d{width:6.568474px;}
._c{width:7.680723px;}
._5{width:9.622123px;}
._e{width:10.804551px;}
._f{width:11.896054px;}
._9{width:12.932984px;}
._a{width:14.518263px;}
._10{width:16.002869px;}
._3{width:17.139824px;}
._4{width:20.366247px;}
._20{width:21.634247px;}
._b{width:22.636289px;}
._12{width:24.176091px;}
._11{width:25.349164px;}
._17{width:27.064661px;}
._16{width:28.882784px;}
._13{width:32.250724px;}
._14{width:33.328959px;}
._33{width:34.412002px;}
._34{width:35.502096px;}
._35{width:37.224361px;}
._32{width:41.487536px;}
._30{width:43.151157px;}
._36{width:44.491742px;}
._37{width:45.931406px;}
._2e{width:51.944858px;}
._15{width:67.591811px;}
._38{width:73.507272px;}
._2c{width:197.714398px;}
._21{width:213.331725px;}
._25{width:215.522032px;}
._2f{width:218.901872px;}
._27{width:229.958602px;}
._31{width:233.607147px;}
._22{width:258.464592px;}
._26{width:263.512759px;}
._23{width:342.273700px;}
._1b{width:366.788126px;}
._1a{width:368.174951px;}
._28{width:405.918558px;}
._18{width:424.999190px;}
._19{width:426.260810px;}
._1d{width:438.710825px;}
._1c{width:441.732423px;}
._29{width:453.467598px;}
._1e{width:461.414215px;}
._2a{width:521.187372px;}
._24{width:593.772726px;}
._2b{width:699.851816px;}
._1{width:1231.427507px;}
.fc2{color:rgb(255,204,0);}
.fc1{color:rgb(128,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.239988px;}
.fs4{font-size:35.999986px;}
.fs5{font-size:38.879984px;}
.fs2{font-size:48.239981px;}
.fs3{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.y0{bottom:0.000000px;}
.y4{bottom:23.339991px;}
.y6e{bottom:130.620248px;}
.y28{bottom:134.759946px;}
.y4a{bottom:137.639945px;}
.ybf{bottom:143.399943px;}
.y8b{bottom:144.299942px;}
.y6d{bottom:144.480242px;}
.ye5{bottom:148.079941px;}
.y6c{bottom:150.419940px;}
.y6b{bottom:158.159937px;}
.yd3{bottom:158.519937px;}
.y27{bottom:163.379935px;}
.y49{bottom:166.079934px;}
.yf3{bottom:167.519933px;}
.ybe{bottom:171.839931px;}
.y6a{bottom:172.019931px;}
.y8a{bottom:172.739931px;}
.ye4{bottom:176.519929px;}
.yb7{bottom:179.399928px;}
.y9c{bottom:181.919927px;}
.y69{bottom:185.879926px;}
.yd2{bottom:186.959925px;}
.y26{bottom:191.819923px;}
.y48{bottom:194.519922px;}
.yf2{bottom:195.959922px;}
.y68{bottom:199.559920px;}
.ybd{bottom:200.459920px;}
.y89{bottom:201.179920px;}
.ye3{bottom:204.959918px;}
.y67{bottom:205.499918px;}
.yb6{bottom:207.839917px;}
.y9b{bottom:210.359916px;}
.y66{bottom:213.419915px;}
.yd1{bottom:215.399914px;}
.y25{bottom:220.259912px;}
.y47{bottom:222.959911px;}
.yf1{bottom:224.579910px;}
.y65{bottom:227.279909px;}
.ybc{bottom:228.899908px;}
.y88{bottom:229.619908px;}
.ye2{bottom:233.399907px;}
.yb5{bottom:236.459905px;}
.y9a{bottom:238.799904px;}
.y64{bottom:240.959904px;}
.ye1{bottom:243.839902px;}
.y24{bottom:248.699901px;}
.y46{bottom:251.399899px;}
.yf0{bottom:252.839899px;}
.y63{bottom:255.719898px;}
.ybb{bottom:257.339897px;}
.y87{bottom:258.059897px;}
.yd0{bottom:261.839895px;}
.y62{bottom:262.559895px;}
.yb4{bottom:264.899894px;}
.y99{bottom:267.239893px;}
.ye0{bottom:272.459891px;}
.y61{bottom:272.999891px;}
.y23{bottom:277.139889px;}
.y45{bottom:279.839888px;}
.yef{bottom:281.459887px;}
.y86{bottom:286.499885px;}
.ycf{bottom:290.459884px;}
.yb3{bottom:293.339883px;}
.y98{bottom:295.859882px;}
.ydf{bottom:300.899880px;}
.yba{bottom:303.779878px;}
.y44{bottom:308.459877px;}
.yee{bottom:309.899876px;}
.y60{bottom:311.339875px;}
.y85{bottom:314.939874px;}
.yce{bottom:318.899872px;}
.yb2{bottom:321.779871px;}
.y22{bottom:323.579871px;}
.y97{bottom:324.299870px;}
.yde{bottom:329.339868px;}
.y43{bottom:336.899865px;}
.yed{bottom:338.339865px;}
.y5f{bottom:339.779864px;}
.ycd{bottom:347.339861px;}
.yb1{bottom:350.219860px;}
.y21{bottom:352.019859px;}
.y96{bottom:352.739859px;}
.ydd{bottom:357.779857px;}
.y84{bottom:361.379855px;}
.y42{bottom:365.339854px;}
.yec{bottom:366.779853px;}
.y5e{bottom:368.219853px;}
.ycc{bottom:375.779850px;}
.yb0{bottom:378.659849px;}
.y20{bottom:380.459848px;}
.y95{bottom:381.179848px;}
.ydc{bottom:386.219846px;}
.y83{bottom:389.999844px;}
.y41{bottom:393.779842px;}
.yeb{bottom:395.219842px;}
.y5d{bottom:396.659841px;}
.ycb{bottom:404.219838px;}
.yaf{bottom:407.099837px;}
.y1f{bottom:408.899836px;}
.y94{bottom:409.619836px;}
.ydb{bottom:414.659834px;}
.y82{bottom:418.439833px;}
.y40{bottom:422.219831px;}
.yea{bottom:423.659831px;}
.y5c{bottom:425.099830px;}
.yca{bottom:432.659827px;}
.yae{bottom:435.539826px;}
.y1e{bottom:437.519825px;}
.y93{bottom:438.059825px;}
.yda{bottom:443.099823px;}
.y3f{bottom:450.659820px;}
.ye9{bottom:452.099819px;}
.y81{bottom:453.359819px;}
.y5b{bottom:453.539819px;}
.yc9{bottom:461.099816px;}
.yad{bottom:463.979814px;}
.y1d{bottom:465.959814px;}
.y92{bottom:466.499813px;}
.yd9{bottom:471.539811px;}
.y3e{bottom:479.099808px;}
.ye8{bottom:480.539808px;}
.y5a{bottom:481.979807px;}
.yc8{bottom:489.539804px;}
.y1c{bottom:494.399802px;}
.yd8{bottom:499.979800px;}
.y58{bottom:503.399799px;}
.y59{bottom:503.759798px;}
.y80{bottom:506.999797px;}
.y3d{bottom:507.539797px;}
.ye7{bottom:509.159796px;}
.yac{bottom:510.599796px;}
.y91{bottom:512.939795px;}
.yc7{bottom:517.979793px;}
.y57{bottom:518.879792px;}
.y1b{bottom:522.839791px;}
.yd7{bottom:528.599789px;}
.y56{bottom:534.359786px;}
.y3c{bottom:535.979786px;}
.ye6{bottom:537.779785px;}
.yab{bottom:539.039784px;}
.yc6{bottom:546.599781px;}
.y55{bottom:550.019780px;}
.y1a{bottom:551.279779px;}
.y7f{bottom:554.159778px;}
.yd6{bottom:557.039777px;}
.y90{bottom:558.299777px;}
.y3b{bottom:564.599774px;}
.yaa{bottom:567.479773px;}
.y53{bottom:568.559773px;}
.yc5{bottom:575.039770px;}
.y19{bottom:579.719768px;}
.y52{bottom:584.219766px;}
.y54{bottom:584.579766px;}
.yd5{bottom:585.479766px;}
.y3a{bottom:593.039763px;}
.ya9{bottom:595.919762px;}
.y51{bottom:599.699760px;}
.y7e{bottom:601.319759px;}
.yc4{bottom:603.479759px;}
.y18{bottom:608.159757px;}
.y8f{bottom:610.139756px;}
.yd4{bottom:613.919754px;}
.y50{bottom:618.599753px;}
.y39{bottom:621.479751px;}
.ya8{bottom:624.359750px;}
.y7d{bottom:629.939748px;}
.yc3{bottom:631.919747px;}
.y4e{bottom:634.259746px;}
.y8e{bottom:635.879746px;}
.y4f{bottom:641.099744px;}
.y7c{bottom:647.219741px;}
.y7a{bottom:647.759741px;}
.y4d{bottom:649.739740px;}
.y38{bottom:649.919740px;}
.ya7{bottom:652.799739px;}
.y17{bottom:654.599738px;}
.yc2{bottom:660.359736px;}
.y8d{bottom:661.799735px;}
.y7b{bottom:664.499734px;}
.y37{bottom:678.359729px;}
.ya6{bottom:681.239728px;}
.y79{bottom:682.139727px;}
.y16{bottom:683.039727px;}
.yc1{bottom:688.799724px;}
.y36{bottom:706.799717px;}
.y8c{bottom:706.979717px;}
.y78{bottom:708.239717px;}
.yf6{bottom:708.599717px;}
.yb9{bottom:709.679716px;}
.y15{bottom:711.659715px;}
.yc0{bottom:717.239713px;}
.ya5{bottom:727.679709px;}
.y35{bottom:735.239706px;}
.yf5{bottom:735.419706px;}
.yb8{bottom:738.119705px;}
.y14{bottom:740.099704px;}
.y77{bottom:745.679702px;}
.ya4{bottom:756.119698px;}
.y34{bottom:763.679695px;}
.y13{bottom:768.539693px;}
.y76{bottom:774.119690px;}
.ya3{bottom:784.739686px;}
.y33{bottom:792.119683px;}
.yf4{bottom:792.299683px;}
.y12{bottom:796.979681px;}
.y75{bottom:802.739679px;}
.ya2{bottom:813.179675px;}
.y32{bottom:820.739672px;}
.y11{bottom:825.419670px;}
.y74{bottom:831.179668px;}
.ya1{bottom:841.619663px;}
.y31{bottom:849.179660px;}
.y73{bottom:859.619656px;}
.ya0{bottom:870.059652px;}
.y10{bottom:872.039651px;}
.y4c{bottom:877.619649px;}
.y30{bottom:877.799649px;}
.y72{bottom:888.059645px;}
.yf{bottom:890.939644px;}
.y9f{bottom:898.499641px;}
.y2f{bottom:906.059638px;}
.ye{bottom:909.839636px;}
.y71{bottom:916.499633px;}
.y2e{bottom:934.499626px;}
.y70{bottom:944.939622px;}
.y2d{bottom:962.939615px;}
.yd{bottom:968.159613px;}
.y6f{bottom:973.379611px;}
.yc{bottom:982.019607px;}
.y2c{bottom:991.379603px;}
.yb{bottom:995.699602px;}
.y9e{bottom:1001.819599px;}
.ya{bottom:1010.459596px;}
.y2b{bottom:1019.819592px;}
.y9{bottom:1029.539588px;}
.y9d{bottom:1030.259588px;}
.y2a{bottom:1048.259581px;}
.y8{bottom:1048.439581px;}
.y7{bottom:1067.519573px;}
.y29{bottom:1076.879569px;}
.y6{bottom:1086.419565px;}
.y4b{bottom:1105.319558px;}
.y5{bottom:1105.499558px;}
.y3{bottom:1124.399550px;}
.y1{bottom:1137.899545px;}
.y2{bottom:1194.599522px;}
.hb{height:31.539362px;}
.h6{height:37.546860px;}
.ha{height:38.158578px;}
.h2{height:41.376780px;}
.h4{height:50.312792px;}
.h5{height:56.320290px;}
.h1{height:58.651148px;}
.hc{height:62.327788px;}
.h3{height:69.086222px;}
.h8{height:116.800266px;}
.h7{height:118.240265px;}
.h9{height:118.960265px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3a{left:80.280437px;}
.x3{left:106.379848px;}
.x30{left:111.239956px;}
.x31{left:115.199954px;}
.x33{left:117.719953px;}
.x5{left:119.700563px;}
.x34{left:127.079949px;}
.xe{left:133.379921px;}
.x10{left:134.819946px;}
.x2f{left:146.880008px;}
.x1b{left:149.940000px;}
.xd{left:159.479963px;}
.x11{left:164.159934px;}
.x12{left:174.239930px;}
.xf{left:181.439927px;}
.x1{left:201.419919px;}
.x1c{left:203.579975px;}
.x1d{left:214.559976px;}
.x13{left:218.339913px;}
.x32{left:228.419909px;}
.x39{left:232.559556px;}
.x4{left:281.159888px;}
.x8{left:287.279885px;}
.x26{left:298.979347px;}
.x1f{left:308.340381px;}
.x6{left:310.500320px;}
.x9{left:320.039860px;}
.x14{left:324.899870px;}
.x27{left:331.199311px;}
.x1e{left:383.760400px;}
.x20{left:429.480479px;}
.x21{left:434.880471px;}
.x15{left:444.599822px;}
.x28{left:446.938908px;}
.x29{left:452.878905px;}
.x7{left:457.020190px;}
.xa{left:498.779201px;}
.xb{left:504.359204px;}
.xc{left:524.879247px;}
.x16{left:546.119782px;}
.x23{left:548.640004px;}
.x2a{left:551.878506px;}
.x2c{left:561.958513px;}
.x2b{left:564.838511px;}
.x17{left:585.179766px;}
.x18{left:590.219764px;}
.x22{left:595.080060px;}
.x19{left:629.459748px;}
.x2{left:639.540573px;}
.x24{left:647.460083px;}
.x2e{left:653.038383px;}
.x35{left:664.199734px;}
.x37{left:673.739731px;}
.x2d{left:683.818423px;}
.x36{left:687.419725px;}
.x1a{left:723.599711px;}
.x25{left:745.020060px;}
.x38{left:778.679689px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:53.759978pt;}
.v1{vertical-align:55.039978pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.168228pt;}
.ls5{letter-spacing:0.244853pt;}
.ls6{letter-spacing:0.281333pt;}
.ls8{letter-spacing:0.921706pt;}
.ls7{letter-spacing:11.808209pt;}
.ls2{letter-spacing:319.646676pt;}
.ls3{letter-spacing:328.612135pt;}
.ls1{letter-spacing:338.217309pt;}
.ws1{word-spacing:-16.368633pt;}
.ws4{word-spacing:-14.767354pt;}
.ws2{word-spacing:-13.343995pt;}
.ws3{word-spacing:-8.895996pt;}
.ws0{word-spacing:0.000000pt;}
._1f{margin-left:-11.525400pt;}
._2d{margin-left:-2.110117pt;}
._2{margin-left:-1.096048pt;}
._0{width:0.928539pt;}
._8{width:2.195177pt;}
._6{width:3.614622pt;}
._7{width:4.529661pt;}
._d{width:5.838643pt;}
._c{width:6.827309pt;}
._5{width:8.552999pt;}
._e{width:9.604045pt;}
._f{width:10.574271pt;}
._9{width:11.495986pt;}
._a{width:12.905122pt;}
._10{width:14.224772pt;}
._3{width:15.235399pt;}
._4{width:18.103331pt;}
._20{width:19.230442pt;}
._b{width:20.121146pt;}
._12{width:21.489859pt;}
._11{width:22.532591pt;}
._17{width:24.057476pt;}
._16{width:25.673586pt;}
._13{width:28.667310pt;}
._14{width:29.625742pt;}
._33{width:30.588446pt;}
._34{width:31.557418pt;}
._35{width:33.088321pt;}
._32{width:36.877810pt;}
._30{width:38.356584pt;}
._36{width:39.548215pt;}
._37{width:40.827916pt;}
._2e{width:46.173207pt;}
._15{width:60.081610pt;}
._38{width:65.339797pt;}
._2c{width:175.746131pt;}
._21{width:189.628200pt;}
._25{width:191.575139pt;}
._2f{width:194.579442pt;}
._27{width:204.407646pt;}
._31{width:207.650797pt;}
._22{width:229.746304pt;}
._26{width:234.233564pt;}
._23{width:304.243289pt;}
._1b{width:326.033889pt;}
._1a{width:327.266623pt;}
._28{width:360.816496pt;}
._18{width:377.777058pt;}
._19{width:378.898498pt;}
._1d{width:389.965177pt;}
._1c{width:392.651043pt;}
._29{width:403.082309pt;}
._1e{width:410.145969pt;}
._2a{width:463.277664pt;}
._24{width:527.797979pt;}
._2b{width:622.090503pt;}
._1{width:1094.602229pt;}
.fs6{font-size:26.879989pt;}
.fs4{font-size:31.999987pt;}
.fs5{font-size:34.559986pt;}
.fs2{font-size:42.879983pt;}
.fs3{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:20.746658pt;}
.y6e{bottom:116.106887pt;}
.y28{bottom:119.786619pt;}
.y4a{bottom:122.346618pt;}
.ybf{bottom:127.466616pt;}
.y8b{bottom:128.266615pt;}
.y6d{bottom:128.426882pt;}
.ye5{bottom:131.626614pt;}
.y6c{bottom:133.706613pt;}
.y6b{bottom:140.586610pt;}
.yd3{bottom:140.906610pt;}
.y27{bottom:145.226609pt;}
.y49{bottom:147.626608pt;}
.yf3{bottom:148.906607pt;}
.ybe{bottom:152.746606pt;}
.y6a{bottom:152.906606pt;}
.y8a{bottom:153.546605pt;}
.ye4{bottom:156.906604pt;}
.yb7{bottom:159.466603pt;}
.y9c{bottom:161.706602pt;}
.y69{bottom:165.226601pt;}
.yd2{bottom:166.186600pt;}
.y26{bottom:170.506598pt;}
.y48{bottom:172.906598pt;}
.yf2{bottom:174.186597pt;}
.y68{bottom:177.386596pt;}
.ybd{bottom:178.186595pt;}
.y89{bottom:178.826595pt;}
.ye3{bottom:182.186594pt;}
.y67{bottom:182.666594pt;}
.yb6{bottom:184.746593pt;}
.y9b{bottom:186.986592pt;}
.y66{bottom:189.706591pt;}
.yd1{bottom:191.466590pt;}
.y25{bottom:195.786588pt;}
.y47{bottom:198.186587pt;}
.yf1{bottom:199.626587pt;}
.y65{bottom:202.026586pt;}
.ybc{bottom:203.466585pt;}
.y88{bottom:204.106585pt;}
.ye2{bottom:207.466584pt;}
.yb5{bottom:210.186583pt;}
.y9a{bottom:212.266582pt;}
.y64{bottom:214.186581pt;}
.ye1{bottom:216.746580pt;}
.y24{bottom:221.066578pt;}
.y46{bottom:223.466577pt;}
.yf0{bottom:224.746577pt;}
.y63{bottom:227.306576pt;}
.ybb{bottom:228.746575pt;}
.y87{bottom:229.386575pt;}
.yd0{bottom:232.746574pt;}
.y62{bottom:233.386573pt;}
.yb4{bottom:235.466572pt;}
.y99{bottom:237.546572pt;}
.ye0{bottom:242.186570pt;}
.y61{bottom:242.666570pt;}
.y23{bottom:246.346568pt;}
.y45{bottom:248.746567pt;}
.yef{bottom:250.186567pt;}
.y86{bottom:254.666565pt;}
.ycf{bottom:258.186563pt;}
.yb3{bottom:260.746562pt;}
.y98{bottom:262.986561pt;}
.ydf{bottom:267.466560pt;}
.yba{bottom:270.026559pt;}
.y44{bottom:274.186557pt;}
.yee{bottom:275.466556pt;}
.y60{bottom:276.746556pt;}
.y85{bottom:279.946555pt;}
.yce{bottom:283.466553pt;}
.yb2{bottom:286.026552pt;}
.y22{bottom:287.626552pt;}
.y97{bottom:288.266551pt;}
.yde{bottom:292.746550pt;}
.y43{bottom:299.466547pt;}
.yed{bottom:300.746546pt;}
.y5f{bottom:302.026546pt;}
.ycd{bottom:308.746543pt;}
.yb1{bottom:311.306542pt;}
.y21{bottom:312.906542pt;}
.y96{bottom:313.546541pt;}
.ydd{bottom:318.026539pt;}
.y84{bottom:321.226538pt;}
.y42{bottom:324.746537pt;}
.yec{bottom:326.026536pt;}
.y5e{bottom:327.306536pt;}
.ycc{bottom:334.026533pt;}
.yb0{bottom:336.586532pt;}
.y20{bottom:338.186531pt;}
.y95{bottom:338.826531pt;}
.ydc{bottom:343.306529pt;}
.y83{bottom:346.666528pt;}
.y41{bottom:350.026527pt;}
.yeb{bottom:351.306526pt;}
.y5d{bottom:352.586526pt;}
.ycb{bottom:359.306523pt;}
.yaf{bottom:361.866522pt;}
.y1f{bottom:363.466521pt;}
.y94{bottom:364.106521pt;}
.ydb{bottom:368.586519pt;}
.y82{bottom:371.946518pt;}
.y40{bottom:375.306517pt;}
.yea{bottom:376.586516pt;}
.y5c{bottom:377.866516pt;}
.yca{bottom:384.586513pt;}
.yae{bottom:387.146512pt;}
.y1e{bottom:388.906511pt;}
.y93{bottom:389.386511pt;}
.yda{bottom:393.866509pt;}
.y3f{bottom:400.586506pt;}
.ye9{bottom:401.866506pt;}
.y81{bottom:402.986505pt;}
.y5b{bottom:403.146505pt;}
.yc9{bottom:409.866503pt;}
.yad{bottom:412.426502pt;}
.y1d{bottom:414.186501pt;}
.y92{bottom:414.666501pt;}
.yd9{bottom:419.146499pt;}
.y3e{bottom:425.866496pt;}
.ye8{bottom:427.146496pt;}
.y5a{bottom:428.426495pt;}
.yc8{bottom:435.146493pt;}
.y1c{bottom:439.466491pt;}
.yd8{bottom:444.426489pt;}
.y58{bottom:447.466488pt;}
.y59{bottom:447.786488pt;}
.y80{bottom:450.666486pt;}
.y3d{bottom:451.146486pt;}
.ye7{bottom:452.586486pt;}
.yac{bottom:453.866485pt;}
.y91{bottom:455.946484pt;}
.yc7{bottom:460.426482pt;}
.y57{bottom:461.226482pt;}
.y1b{bottom:464.746481pt;}
.yd7{bottom:469.866479pt;}
.y56{bottom:474.986477pt;}
.y3c{bottom:476.426476pt;}
.ye6{bottom:478.026475pt;}
.yab{bottom:479.146475pt;}
.yc6{bottom:485.866472pt;}
.y55{bottom:488.906471pt;}
.y1a{bottom:490.026471pt;}
.y7f{bottom:492.586470pt;}
.yd6{bottom:495.146469pt;}
.y90{bottom:496.266468pt;}
.y3b{bottom:501.866466pt;}
.yaa{bottom:504.426465pt;}
.y53{bottom:505.386465pt;}
.yc5{bottom:511.146462pt;}
.y19{bottom:515.306461pt;}
.y52{bottom:519.306459pt;}
.y54{bottom:519.626459pt;}
.yd5{bottom:520.426458pt;}
.y3a{bottom:527.146456pt;}
.ya9{bottom:529.706455pt;}
.y51{bottom:533.066453pt;}
.y7e{bottom:534.506453pt;}
.yc4{bottom:536.426452pt;}
.y18{bottom:540.586450pt;}
.y8f{bottom:542.346450pt;}
.yd4{bottom:545.706448pt;}
.y50{bottom:549.866447pt;}
.y39{bottom:552.426446pt;}
.ya8{bottom:554.986445pt;}
.y7d{bottom:559.946443pt;}
.yc3{bottom:561.706442pt;}
.y4e{bottom:563.786441pt;}
.y8e{bottom:565.226441pt;}
.y4f{bottom:569.866439pt;}
.y7c{bottom:575.306437pt;}
.y7a{bottom:575.786436pt;}
.y4d{bottom:577.546436pt;}
.y38{bottom:577.706436pt;}
.ya7{bottom:580.266435pt;}
.y17{bottom:581.866434pt;}
.yc2{bottom:586.986432pt;}
.y8d{bottom:588.266431pt;}
.y7b{bottom:590.666430pt;}
.y37{bottom:602.986425pt;}
.ya6{bottom:605.546424pt;}
.y79{bottom:606.346424pt;}
.y16{bottom:607.146424pt;}
.yc1{bottom:612.266422pt;}
.y36{bottom:628.266415pt;}
.y8c{bottom:628.426415pt;}
.y78{bottom:629.546415pt;}
.yf6{bottom:629.866415pt;}
.yb9{bottom:630.826414pt;}
.y15{bottom:632.586414pt;}
.yc0{bottom:637.546412pt;}
.ya5{bottom:646.826408pt;}
.y35{bottom:653.546405pt;}
.yf5{bottom:653.706405pt;}
.yb8{bottom:656.106404pt;}
.y14{bottom:657.866404pt;}
.y77{bottom:662.826402pt;}
.ya4{bottom:672.106398pt;}
.y34{bottom:678.826395pt;}
.y13{bottom:683.146393pt;}
.y76{bottom:688.106391pt;}
.ya3{bottom:697.546388pt;}
.y33{bottom:704.106385pt;}
.yf4{bottom:704.266385pt;}
.y12{bottom:708.426383pt;}
.y75{bottom:713.546381pt;}
.ya2{bottom:722.826378pt;}
.y32{bottom:729.546375pt;}
.y11{bottom:733.706373pt;}
.y74{bottom:738.826371pt;}
.ya1{bottom:748.106367pt;}
.y31{bottom:754.826365pt;}
.y73{bottom:764.106361pt;}
.ya0{bottom:773.386357pt;}
.y10{bottom:775.146357pt;}
.y4c{bottom:780.106355pt;}
.y30{bottom:780.266355pt;}
.y72{bottom:789.386351pt;}
.yf{bottom:791.946350pt;}
.y9f{bottom:798.666347pt;}
.y2f{bottom:805.386345pt;}
.ye{bottom:808.746343pt;}
.y71{bottom:814.666341pt;}
.y2e{bottom:830.666334pt;}
.y70{bottom:839.946331pt;}
.y2d{bottom:855.946324pt;}
.yd{bottom:860.586322pt;}
.y6f{bottom:865.226321pt;}
.yc{bottom:872.906318pt;}
.y2c{bottom:881.226314pt;}
.yb{bottom:885.066313pt;}
.y9e{bottom:890.506310pt;}
.ya{bottom:898.186307pt;}
.y2b{bottom:906.506304pt;}
.y9{bottom:915.146301pt;}
.y9d{bottom:915.786300pt;}
.y2a{bottom:931.786294pt;}
.y8{bottom:931.946294pt;}
.y7{bottom:948.906287pt;}
.y29{bottom:957.226284pt;}
.y6{bottom:965.706280pt;}
.y4b{bottom:982.506274pt;}
.y5{bottom:982.666274pt;}
.y3{bottom:999.466267pt;}
.y1{bottom:1011.466262pt;}
.y2{bottom:1061.866242pt;}
.hb{height:28.034989pt;}
.h6{height:33.374987pt;}
.ha{height:33.918736pt;}
.h2{height:36.779360pt;}
.h4{height:44.722482pt;}
.h5{height:50.062480pt;}
.h1{height:52.134354pt;}
.hc{height:55.402478pt;}
.h3{height:61.409975pt;}
.h8{height:103.822458pt;}
.h7{height:105.102458pt;}
.h9{height:105.742458pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3a{left:71.360388pt;}
.x3{left:94.559865pt;}
.x30{left:98.879960pt;}
.x31{left:102.399959pt;}
.x33{left:104.639958pt;}
.x5{left:106.400500pt;}
.x34{left:112.959955pt;}
.xe{left:118.559930pt;}
.x10{left:119.839952pt;}
.x2f{left:130.560007pt;}
.x1b{left:133.280000pt;}
.xd{left:141.759967pt;}
.x11{left:145.919942pt;}
.x12{left:154.879938pt;}
.xf{left:161.279935pt;}
.x1{left:179.039928pt;}
.x1c{left:180.959978pt;}
.x1d{left:190.719978pt;}
.x13{left:194.079922pt;}
.x32{left:203.039919pt;}
.x39{left:206.719606pt;}
.x4{left:249.919900pt;}
.x8{left:255.359898pt;}
.x26{left:265.759419pt;}
.x1f{left:274.080339pt;}
.x6{left:276.000284pt;}
.x9{left:284.479875pt;}
.x14{left:288.799884pt;}
.x27{left:294.399388pt;}
.x1e{left:341.120356pt;}
.x20{left:381.760426pt;}
.x21{left:386.560419pt;}
.x15{left:395.199842pt;}
.x28{left:397.279029pt;}
.x29{left:402.559027pt;}
.x7{left:406.240169pt;}
.xa{left:443.359290pt;}
.xb{left:448.319293pt;}
.xc{left:466.559330pt;}
.x16{left:485.439806pt;}
.x23{left:487.680004pt;}
.x2a{left:490.558672pt;}
.x2c{left:499.518678pt;}
.x2b{left:502.078676pt;}
.x17{left:520.159792pt;}
.x18{left:524.639790pt;}
.x22{left:528.960054pt;}
.x19{left:559.519776pt;}
.x2{left:568.480509pt;}
.x24{left:575.520074pt;}
.x2e{left:580.478563pt;}
.x35{left:590.399764pt;}
.x37{left:598.879760pt;}
.x2d{left:607.838599pt;}
.x36{left:611.039756pt;}
.x1a{left:643.199743pt;}
.x25{left:662.240054pt;}
.x38{left:692.159723pt;}
}




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