
    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_e380042c7a3197c3cbb722d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_3752101f292af72959d89ae9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2987777ad4da1df2f8d1304c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_28b4ff19cd92a96a95bc3562.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;}
.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:-24.461990px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.467990px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.122402px;}
.ls4{letter-spacing:0.125222px;}
.ls0{letter-spacing:0.130802px;}
.ls7{letter-spacing:0.241170px;}
.ls5{letter-spacing:0.272988px;}
.ls2{letter-spacing:0.670073px;}
.ls3{letter-spacing:0.671273px;}
.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:-16.404023px;}
.ws1{word-spacing:-13.476220px;}
.ws0{word-spacing:-13.203232px;}
.ws3{word-spacing:0.000000px;}
._0{width:1.066157px;}
._3{width:2.151125px;}
._5{width:3.795208px;}
._4{width:4.935017px;}
._7{width:6.597347px;}
._8{width:9.114510px;}
._1{width:10.738788px;}
._2{width:11.922194px;}
._6{width:19.887480px;}
.fc2{color:rgb(140,41,28);}
.fc1{color:rgb(91,88,89);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:28.784028px;}
.fs2{font-size:47.493641px;}
.fs1{font-size:53.250459px;}
.fs4{font-size:59.007276px;}
.fs0{font-size:83.473767px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.492890px;}
.y3{bottom:13.985856px;}
.y85{bottom:103.937347px;}
.y86{bottom:117.430312px;}
.y83{bottom:118.688791px;}
.y84{bottom:132.181757px;}
.y81{bottom:135.959784px;}
.y82{bottom:149.452750px;}
.y7f{bottom:153.231077px;}
.yf5{bottom:165.284043px;}
.y80{bottom:166.724043px;}
.y7d{bottom:170.500570px;}
.yf3{bottom:176.257718px;}
.y7e{bottom:183.993536px;}
.y7b{bottom:187.410213px;}
.yf4{bottom:189.750534px;}
.yf1{bottom:193.528561px;}
.y7c{bottom:200.904529px;}
.y7a{bottom:204.681057px;}
.y78{bottom:204.681957px;}
.yf2{bottom:207.021527px;}
.yef{bottom:210.798054px;}
.y79{bottom:218.174022px;}
.y77{bottom:221.952050px;}
.y75{bottom:221.952200px;}
.yf0{bottom:224.291020px;}
.yed{bottom:228.067697px;}
.y76{bottom:235.445015px;}
.y74{bottom:239.223043px;}
.y72{bottom:239.223193px;}
.yee{bottom:241.562013px;}
.yeb{bottom:245.338540px;}
.y73{bottom:252.716008px;}
.y70{bottom:256.494036px;}
.yec{bottom:258.831506px;}
.ye9{bottom:262.608933px;}
.y71{bottom:269.987001px;}
.y6e{bottom:273.763529px;}
.yea{bottom:276.100999px;}
.ye7{bottom:279.880526px;}
.y6f{bottom:287.256495px;}
.y6c{bottom:291.034522px;}
.ye8{bottom:293.373492px;}
.ye5{bottom:297.151520px;}
.y6d{bottom:304.527488px;}
.y6a{bottom:308.304015px;}
.ye6{bottom:310.644485px;}
.ye3{bottom:314.061163px;}
.y6b{bottom:321.796981px;}
.y68{bottom:325.574408px;}
.ye4{bottom:327.553978px;}
.ye1{bottom:331.332006px;}
.y69{bottom:339.066474px;}
.y66{bottom:342.846001px;}
.ye2{bottom:344.824971px;}
.ydf{bottom:348.601499px;}
.y67{bottom:356.338967px;}
.y65{bottom:360.115494px;}
.y63{bottom:360.115644px;}
.ye0{bottom:362.094465px;}
.ydd{bottom:365.871892px;}
.y64{bottom:373.608460px;}
.y61{bottom:377.386487px;}
.yde{bottom:379.363958px;}
.ydb{bottom:383.143485px;}
.y62{bottom:390.879453px;}
.y5f{bottom:394.297481px;}
.ydc{bottom:396.636451px;}
.yd9{bottom:400.412978px;}
.y60{bottom:407.790446px;}
.y5c{bottom:411.565624px;}
.y5e{bottom:411.566974px;}
.yda{bottom:413.905944px;}
.yd7{bottom:417.683971px;}
.y5d{bottom:425.059939px;}
.y5a{bottom:428.836467px;}
.yd8{bottom:431.176937px;}
.yd5{bottom:434.954964px;}
.y5b{bottom:442.329432px;}
.y59{bottom:446.105960px;}
.y57{bottom:446.106110px;}
.yd6{bottom:448.447930px;}
.yd3{bottom:452.223108px;}
.y58{bottom:459.598926px;}
.y55{bottom:463.376953px;}
.yd4{bottom:465.717423px;}
.yd1{bottom:469.493951px;}
.y56{bottom:476.869919px;}
.y53{bottom:480.649446px;}
.yd2{bottom:482.986916px;}
.yd0{bottom:486.763444px;}
.yce{bottom:486.763594px;}
.y54{bottom:494.142412px;}
.y51{bottom:496.840440px;}
.ycf{bottom:500.256409px;}
.ycc{bottom:504.034437px;}
.y52{bottom:510.333405px;}
.y50{bottom:510.871434px;}
.ycd{bottom:517.527402px;}
.yca{bottom:520.946930px;}
.y4e{bottom:524.542429px;}
.ycb{bottom:534.439896px;}
.y4f{bottom:538.035394px;}
.y4c{bottom:538.216423px;}
.yc9{bottom:538.216573px;}
.y4d{bottom:551.709389px;}
.y4a{bottom:552.248918px;}
.yc7{bottom:555.487416px;}
.y4b{bottom:565.741883px;}
.y48{bottom:565.919912px;}
.yc8{bottom:568.980382px;}
.yc5{bottom:572.758409px;}
.y49{bottom:579.412878px;}
.y46{bottom:579.593907px;}
.yc6{bottom:586.251375px;}
.yc3{bottom:590.026552px;}
.y47{bottom:593.086872px;}
.y44{bottom:593.626401px;}
.yc4{bottom:603.519368px;}
.y45{bottom:607.119367px;}
.yc2{bottom:607.297395px;}
.y42{bottom:607.298430px;}
.y43{bottom:620.790361px;}
.y41{bottom:620.971390px;}
.yc0{bottom:624.566889px;}
.y3f{bottom:635.002624px;}
.yc1{bottom:638.059854px;}
.ybe{bottom:641.839382px;}
.y40{bottom:648.496850px;}
.y3e{bottom:648.674879px;}
.ybf{bottom:655.332347px;}
.ybc{bottom:659.110375px;}
.y3c{bottom:662.345873px;}
.ybd{bottom:672.603340px;}
.y3d{bottom:675.838839px;}
.y3a{bottom:676.378608px;}
.ybb{bottom:676.379868px;}
.y3b{bottom:689.872833px;}
.y39{bottom:690.050862px;}
.yb9{bottom:693.649511px;}
.y37{bottom:703.723357px;}
.yba{bottom:707.142327px;}
.yb7{bottom:710.560354px;}
.y38{bottom:717.216323px;}
.y35{bottom:717.756091px;}
.yb8{bottom:724.053320px;}
.yb5{bottom:727.829997px;}
.y36{bottom:731.250317px;}
.y34{bottom:731.428346px;}
.y32{bottom:731.428361px;}
.yb6{bottom:741.322813px;}
.y33{bottom:744.921311px;}
.y31{bottom:745.100615px;}
.yb3{bottom:745.100840px;}
.yb4{bottom:758.593806px;}
.y30{bottom:759.133575px;}
.yb1{bottom:761.653334px;}
.y2d{bottom:772.805739px;}
.y2f{bottom:772.805829px;}
.yb2{bottom:775.146299px;}
.yaf{bottom:776.404328px;}
.y2e{bottom:786.298795px;}
.y2c{bottom:786.477994px;}
.yb0{bottom:789.897293px;}
.yad{bottom:793.313821px;}
.y2b{bottom:800.509558px;}
.yae{bottom:806.806787px;}
.yab{bottom:810.584814px;}
.y2a{bottom:814.181813px;}
.y28{bottom:814.182053px;}
.yac{bottom:824.077780px;}
.y29{bottom:827.674778px;}
.y27{bottom:827.854307px;}
.y25{bottom:827.854322px;}
.y26{bottom:841.347273px;}
.y24{bottom:841.887282px;}
.ya9{bottom:845.125300px;}
.y23{bottom:855.559536px;}
.yaa{bottom:858.618266px;}
.ya7{bottom:862.395693px;}
.y22{bottom:869.231791px;}
.y20{bottom:869.231806px;}
.ya8{bottom:875.887759px;}
.ya6{bottom:879.667287px;}
.ya4{bottom:879.667437px;}
.y21{bottom:882.724756px;}
.y1f{bottom:883.264060px;}
.ya5{bottom:893.160252px;}
.ya1{bottom:896.936780px;}
.y1e{bottom:896.937020px;}
.ya3{bottom:896.938280px;}
.ya2{bottom:910.431245px;}
.y1d{bottom:910.609274px;}
.y1b{bottom:910.610444px;}
.ya0{bottom:914.206273px;}
.y9e{bottom:914.206423px;}
.y1c{bottom:924.102240px;}
.y1a{bottom:924.641304px;}
.y9f{bottom:927.699238px;}
.y9c{bottom:931.477266px;}
.y19{bottom:938.314263px;}
.y9d{bottom:944.970231px;}
.y9a{bottom:948.748259px;}
.y17{bottom:951.985258px;}
.y9b{bottom:962.241225px;}
.y18{bottom:965.478223px;}
.y15{bottom:966.017752px;}
.y99{bottom:966.017902px;}
.y16{bottom:979.510718px;}
.y97{bottom:982.928745px;}
.y13{bottom:985.807244px;}
.y11{bottom:993.362981px;}
.y98{bottom:996.421711px;}
.y14{bottom:999.300210px;}
.y95{bottom:1000.201238px;}
.y12{bottom:1006.855707px;}
.yf{bottom:1007.035236px;}
.y96{bottom:1013.694204px;}
.y93{bottom:1017.470731px;}
.y10{bottom:1020.528201px;}
.yd{bottom:1021.429230px;}
.y94{bottom:1030.963697px;}
.y91{bottom:1034.740225px;}
.ye{bottom:1034.922195px;}
.yb{bottom:1036.538724px;}
.y92{bottom:1048.233190px;}
.yc{bottom:1050.031689px;}
.y9{bottom:1050.211218px;}
.y8f{bottom:1052.009718px;}
.ya{bottom:1063.704184px;}
.y7{bottom:1064.243713px;}
.y90{bottom:1065.502683px;}
.y8d{bottom:1069.280711px;}
.y8{bottom:1077.736678px;}
.y5{bottom:1077.916207px;}
.y8e{bottom:1082.773676px;}
.y8b{bottom:1086.551704px;}
.y6{bottom:1091.409173px;}
.y8c{bottom:1100.044669px;}
.y4{bottom:1102.742697px;}
.y89{bottom:1103.822097px;}
.y8a{bottom:1117.315662px;}
.y87{bottom:1121.092190px;}
.y88{bottom:1134.585156px;}
.y2{bottom:1136.025155px;}
.ha{height:20.969615px;}
.h5{height:34.576669px;}
.h6{height:34.599860px;}
.h7{height:38.767790px;}
.h4{height:38.793791px;}
.hc{height:39.328580px;}
.hb{height:42.987723px;}
.h8{height:45.423550px;}
.h9{height:45.429550px;}
.h2{height:60.811943px;}
.h3{height:1235.149344px;}
.h1{height:1262.135110px;}
.h0{height:1263.000000px;}
.w3{width:635.406840px;}
.w2{width:637.925580px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:2.159138px;}
.x2{left:3.957878px;}
.x10{left:104.333547px;}
.x1{left:127.548999px;}
.x3{left:128.628360px;}
.x16{left:140.798532px;}
.x1f{left:142.288593px;}
.x5{left:147.459391px;}
.x41{left:149.109540px;}
.x2e{left:151.627439px;}
.x25{left:156.619437px;}
.x34{left:159.124436px;}
.x3c{left:162.439435px;}
.x39{left:164.950434px;}
.x28{left:166.627433px;}
.x3a{left:168.274433px;}
.x7{left:169.442932px;}
.x51{left:170.791432px;}
.x15{left:172.693431px;}
.x4f{left:176.618929px;}
.x36{left:179.129928px;}
.xd{left:181.454927px;}
.x45{left:183.287927px;}
.x2f{left:184.963426px;}
.x43{left:186.121426px;}
.x6{left:187.451925px;}
.x33{left:189.956924px;}
.x1a{left:192.961423px;}
.x2a{left:194.135922px;}
.x4b{left:195.805422px;}
.x13{left:197.629421px;}
.x38{left:199.450420px;}
.x31{left:201.617919px;}
.x24{left:202.846419px;}
.xe{left:204.931418px;}
.x37{left:206.623417px;}
.x48{left:209.134416px;}
.x47{left:211.631915px;}
.x26{left:213.299915px;}
.x4c{left:218.270913px;}
.x3f{left:219.953912px;}
.x9{left:221.591911px;}
.xf{left:228.967408px;}
.xb{left:232.244907px;}
.x1b{left:236.947405px;}
.x20{left:257.618897px;}
.xc{left:275.789890px;}
.x18{left:304.046467px;}
.x21{left:306.944877px;}
.x19{left:330.979368px;}
.x17{left:340.556864px;}
.x14{left:387.725433px;}
.x23{left:402.329839px;}
.x46{left:411.683835px;}
.x1d{left:432.980827px;}
.x4e{left:476.650309px;}
.x22{left:486.254805px;}
.x42{left:500.507388px;}
.x1e{left:504.946298px;}
.x49{left:527.906377px;}
.x44{left:531.332376px;}
.x40{left:540.512372px;}
.x27{left:553.835367px;}
.x50{left:555.533366px;}
.x3e{left:562.179864px;}
.x4a{left:564.662363px;}
.x3d{left:570.531860px;}
.x4d{left:572.999359px;}
.x30{left:575.525358px;}
.x2d{left:577.970357px;}
.x52{left:579.623357px;}
.x53{left:581.300356px;}
.x2c{left:592.185852px;}
.x35{left:593.876351px;}
.x2b{left:596.328850px;}
.x12{left:598.982349px;}
.x3b{left:600.515348px;}
.x1c{left:601.595759px;}
.x32{left:603.801847px;}
.x29{left:606.276846px;}
.xa{left:611.496844px;}
.x8{left:707.384717px;}
.x11{left:723.616211px;}
@media print{
.v2{vertical-align:-21.743991pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.749325pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.108802pt;}
.ls4{letter-spacing:0.111309pt;}
.ls0{letter-spacing:0.116269pt;}
.ls7{letter-spacing:0.214373pt;}
.ls5{letter-spacing:0.242656pt;}
.ls2{letter-spacing:0.595621pt;}
.ls3{letter-spacing:0.596688pt;}
.ws2{word-spacing:-14.581354pt;}
.ws1{word-spacing:-11.978863pt;}
.ws0{word-spacing:-11.736206pt;}
.ws3{word-spacing:0.000000pt;}
._0{width:0.947695pt;}
._3{width:1.912111pt;}
._5{width:3.373518pt;}
._4{width:4.386682pt;}
._7{width:5.864308pt;}
._8{width:8.101787pt;}
._1{width:9.545589pt;}
._2{width:10.597506pt;}
._6{width:17.677760pt;}
.fs3{font-size:25.585803pt;}
.fs2{font-size:42.216570pt;}
.fs1{font-size:47.333741pt;}
.fs4{font-size:52.450912pt;}
.fs0{font-size:74.198904pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.438125pt;}
.y3{bottom:12.431872pt;}
.y85{bottom:92.388753pt;}
.y86{bottom:104.382500pt;}
.y83{bottom:105.501147pt;}
.y84{bottom:117.494895pt;}
.y81{bottom:120.853141pt;}
.y82{bottom:132.846889pt;}
.y7f{bottom:136.205402pt;}
.yf5{bottom:146.919150pt;}
.y80{bottom:148.199149pt;}
.y7d{bottom:151.556062pt;}
.yf3{bottom:156.673527pt;}
.y7e{bottom:163.549810pt;}
.y7b{bottom:166.586856pt;}
.yf4{bottom:168.667141pt;}
.yf1{bottom:172.025388pt;}
.y7c{bottom:178.581804pt;}
.y7a{bottom:181.938717pt;}
.y78{bottom:181.939517pt;}
.yf2{bottom:184.019135pt;}
.yef{bottom:187.376048pt;}
.y79{bottom:193.932464pt;}
.y77{bottom:197.290711pt;}
.y75{bottom:197.290844pt;}
.yf0{bottom:199.369795pt;}
.yed{bottom:202.726842pt;}
.y76{bottom:209.284458pt;}
.y74{bottom:212.642705pt;}
.y72{bottom:212.642838pt;}
.yee{bottom:214.721789pt;}
.yeb{bottom:218.078702pt;}
.y73{bottom:224.636452pt;}
.y70{bottom:227.994698pt;}
.yec{bottom:230.072450pt;}
.ye9{bottom:233.430163pt;}
.y71{bottom:239.988446pt;}
.y6e{bottom:243.345359pt;}
.yea{bottom:245.423110pt;}
.ye7{bottom:248.782690pt;}
.y6f{bottom:255.339106pt;}
.y6c{bottom:258.697353pt;}
.ye8{bottom:260.776437pt;}
.ye5{bottom:264.134684pt;}
.y6d{bottom:270.691100pt;}
.y6a{bottom:274.048013pt;}
.ye6{bottom:276.128431pt;}
.ye3{bottom:279.165478pt;}
.y6b{bottom:286.041761pt;}
.y68{bottom:289.399474pt;}
.ye4{bottom:291.159092pt;}
.ye1{bottom:294.517339pt;}
.y69{bottom:301.392421pt;}
.y66{bottom:304.752001pt;}
.ye2{bottom:306.511086pt;}
.ydf{bottom:309.867999pt;}
.y67{bottom:316.745748pt;}
.y65{bottom:320.102662pt;}
.y63{bottom:320.102795pt;}
.ye0{bottom:321.861746pt;}
.ydd{bottom:325.219460pt;}
.y64{bottom:332.096409pt;}
.y61{bottom:335.454656pt;}
.yde{bottom:337.212407pt;}
.ydb{bottom:340.571987pt;}
.y62{bottom:347.448403pt;}
.y5f{bottom:350.486649pt;}
.ydc{bottom:352.565734pt;}
.yd9{bottom:355.922647pt;}
.y60{bottom:362.480397pt;}
.y5c{bottom:365.836110pt;}
.y5e{bottom:365.837310pt;}
.yda{bottom:367.916395pt;}
.yd7{bottom:371.274641pt;}
.y5d{bottom:377.831057pt;}
.y5a{bottom:381.187971pt;}
.yd8{bottom:383.268388pt;}
.yd5{bottom:386.626635pt;}
.y5b{bottom:393.181718pt;}
.y59{bottom:396.538631pt;}
.y57{bottom:396.538764pt;}
.yd6{bottom:398.620382pt;}
.yd3{bottom:401.976096pt;}
.y58{bottom:408.532378pt;}
.y55{bottom:411.890625pt;}
.yd4{bottom:413.971043pt;}
.yd1{bottom:417.327956pt;}
.y56{bottom:423.884372pt;}
.y53{bottom:427.243952pt;}
.yd2{bottom:429.321703pt;}
.yd0{bottom:432.678617pt;}
.yce{bottom:432.678750pt;}
.y54{bottom:439.237699pt;}
.y51{bottom:441.635946pt;}
.ycf{bottom:444.672364pt;}
.ycc{bottom:448.030610pt;}
.y52{bottom:453.629694pt;}
.y50{bottom:454.107941pt;}
.ycd{bottom:460.024358pt;}
.yca{bottom:463.063938pt;}
.y4e{bottom:466.259937pt;}
.ycb{bottom:475.057685pt;}
.y4f{bottom:478.253684pt;}
.y4c{bottom:478.414598pt;}
.yc9{bottom:478.414732pt;}
.y4d{bottom:490.408346pt;}
.y4a{bottom:490.887927pt;}
.yc7{bottom:493.766592pt;}
.y4b{bottom:502.881674pt;}
.y48{bottom:503.039922pt;}
.yc8{bottom:505.760339pt;}
.yc5{bottom:509.118586pt;}
.y49{bottom:515.033669pt;}
.y46{bottom:515.194584pt;}
.yc6{bottom:521.112333pt;}
.yc3{bottom:524.468047pt;}
.y47{bottom:527.188331pt;}
.y44{bottom:527.667912pt;}
.yc4{bottom:536.461660pt;}
.y45{bottom:539.661659pt;}
.yc2{bottom:539.819907pt;}
.y42{bottom:539.820827pt;}
.y43{bottom:551.813654pt;}
.y41{bottom:551.974569pt;}
.yc0{bottom:555.170568pt;}
.y3f{bottom:564.446777pt;}
.yc1{bottom:567.164315pt;}
.ybe{bottom:570.523895pt;}
.y40{bottom:576.441644pt;}
.y3e{bottom:576.599892pt;}
.ybf{bottom:582.517642pt;}
.ybc{bottom:585.875889pt;}
.y3c{bottom:588.751888pt;}
.ybd{bottom:597.869636pt;}
.y3d{bottom:600.745635pt;}
.y3a{bottom:601.225429pt;}
.ybb{bottom:601.226549pt;}
.y3b{bottom:613.220296pt;}
.y39{bottom:613.378544pt;}
.yb9{bottom:616.577343pt;}
.y37{bottom:625.531873pt;}
.yba{bottom:628.570957pt;}
.yb7{bottom:631.609204pt;}
.y38{bottom:637.525620pt;}
.y35{bottom:638.005414pt;}
.yb8{bottom:643.602951pt;}
.yb5{bottom:646.959998pt;}
.y36{bottom:650.000282pt;}
.y34{bottom:650.158530pt;}
.y32{bottom:650.158543pt;}
.yb6{bottom:658.953611pt;}
.y33{bottom:662.152277pt;}
.y31{bottom:662.311658pt;}
.yb3{bottom:662.311858pt;}
.yb4{bottom:674.305605pt;}
.y30{bottom:674.785400pt;}
.yb1{bottom:677.025186pt;}
.y2d{bottom:686.938435pt;}
.y2f{bottom:686.938515pt;}
.yb2{bottom:689.018933pt;}
.yaf{bottom:690.137180pt;}
.y2e{bottom:698.932262pt;}
.y2c{bottom:699.091550pt;}
.yb0{bottom:702.130928pt;}
.yad{bottom:705.167841pt;}
.y2b{bottom:711.564052pt;}
.yae{bottom:717.161588pt;}
.yab{bottom:720.519835pt;}
.y2a{bottom:723.717167pt;}
.y28{bottom:723.717380pt;}
.yac{bottom:732.513582pt;}
.y29{bottom:735.710914pt;}
.y27{bottom:735.870495pt;}
.y25{bottom:735.870509pt;}
.y26{bottom:747.864243pt;}
.y24{bottom:748.344250pt;}
.ya9{bottom:751.222489pt;}
.y23{bottom:760.497365pt;}
.yaa{bottom:763.216236pt;}
.ya7{bottom:766.573950pt;}
.y22{bottom:772.650481pt;}
.y20{bottom:772.650494pt;}
.ya8{bottom:778.566897pt;}
.ya6{bottom:781.926477pt;}
.ya4{bottom:781.926610pt;}
.y21{bottom:784.644228pt;}
.y1f{bottom:785.123609pt;}
.ya5{bottom:793.920224pt;}
.ya1{bottom:797.277137pt;}
.y1e{bottom:797.277351pt;}
.ya3{bottom:797.278471pt;}
.ya2{bottom:809.272218pt;}
.y1d{bottom:809.430466pt;}
.y1b{bottom:809.431506pt;}
.ya0{bottom:812.627798pt;}
.y9e{bottom:812.627931pt;}
.y1c{bottom:821.424213pt;}
.y1a{bottom:821.903381pt;}
.y9f{bottom:824.621545pt;}
.y9c{bottom:827.979792pt;}
.y19{bottom:834.057123pt;}
.y9d{bottom:839.973539pt;}
.y9a{bottom:843.331786pt;}
.y17{bottom:846.209118pt;}
.y9b{bottom:855.325533pt;}
.y18{bottom:858.202865pt;}
.y15{bottom:858.682446pt;}
.y99{bottom:858.682580pt;}
.y16{bottom:870.676193pt;}
.y97{bottom:873.714440pt;}
.y13{bottom:876.273106pt;}
.y11{bottom:882.989316pt;}
.y98{bottom:885.708187pt;}
.y14{bottom:888.266853pt;}
.y95{bottom:889.067767pt;}
.y12{bottom:894.982850pt;}
.yf{bottom:895.142432pt;}
.y96{bottom:901.061515pt;}
.y93{bottom:904.418428pt;}
.y10{bottom:907.136179pt;}
.yd{bottom:907.937093pt;}
.y94{bottom:916.412175pt;}
.y91{bottom:919.769088pt;}
.ye{bottom:919.930840pt;}
.yb{bottom:921.367754pt;}
.y92{bottom:931.762836pt;}
.yc{bottom:933.361502pt;}
.y9{bottom:933.521083pt;}
.y8f{bottom:935.119749pt;}
.ya{bottom:945.514830pt;}
.y7{bottom:945.994411pt;}
.y90{bottom:947.113496pt;}
.y8d{bottom:950.471743pt;}
.y8{bottom:957.988158pt;}
.y5{bottom:958.147740pt;}
.y8e{bottom:962.465490pt;}
.y8b{bottom:965.823737pt;}
.y6{bottom:970.141487pt;}
.y8c{bottom:977.817484pt;}
.y4{bottom:980.215731pt;}
.y89{bottom:981.175197pt;}
.y8a{bottom:993.169478pt;}
.y87{bottom:996.526391pt;}
.y88{bottom:1008.520138pt;}
.y2{bottom:1009.800138pt;}
.ha{height:18.639657pt;}
.h5{height:30.734817pt;}
.h6{height:30.755431pt;}
.h7{height:34.460258pt;}
.h4{height:34.483370pt;}
.hc{height:34.958738pt;}
.hb{height:38.211309pt;}
.h8{height:40.376489pt;}
.h9{height:40.381822pt;}
.h2{height:54.055061pt;}
.h3{height:1097.910528pt;}
.h1{height:1121.897875pt;}
.h0{height:1122.666667pt;}
.w3{width:564.806080pt;}
.w2{width:567.044960pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:1.919233pt;}
.x2{left:3.518113pt;}
.x10{left:92.740931pt;}
.x1{left:113.376888pt;}
.x3{left:114.336320pt;}
.x16{left:125.154251pt;}
.x1f{left:126.478749pt;}
.x5{left:131.075014pt;}
.x41{left:132.541814pt;}
.x2e{left:134.779946pt;}
.x25{left:139.217278pt;}
.x34{left:141.443943pt;}
.x3c{left:144.390609pt;}
.x39{left:146.622608pt;}
.x28{left:148.113274pt;}
.x3a{left:149.577274pt;}
.x7{left:150.615940pt;}
.x51{left:151.814606pt;}
.x15{left:153.505272pt;}
.x4f{left:156.994604pt;}
.x36{left:159.226603pt;}
.xd{left:161.293269pt;}
.x45{left:162.922601pt;}
.x2f{left:164.411934pt;}
.x43{left:165.441267pt;}
.x6{left:166.623933pt;}
.x33{left:168.850599pt;}
.x1a{left:171.521265pt;}
.x2a{left:172.565264pt;}
.x4b{left:174.049264pt;}
.x13{left:175.670596pt;}
.x38{left:177.289262pt;}
.x31{left:179.215928pt;}
.x24{left:180.307928pt;}
.xe{left:182.161260pt;}
.x37{left:183.665260pt;}
.x48{left:185.897259pt;}
.x47{left:188.117258pt;}
.x26{left:189.599924pt;}
.x4c{left:194.018589pt;}
.x3f{left:195.514588pt;}
.x9{left:196.970588pt;}
.xf{left:203.526585pt;}
.xb{left:206.439917pt;}
.x1b{left:210.619916pt;}
.x20{left:228.994575pt;}
.xc{left:245.146569pt;}
.x18{left:270.263526pt;}
.x21{left:272.839891pt;}
.x19{left:294.203882pt;}
.x17{left:302.717212pt;}
.x14{left:344.644830pt;}
.x23{left:357.626524pt;}
.x46{left:365.941187pt;}
.x1d{left:384.871846pt;}
.x4e{left:423.689164pt;}
.x22{left:432.226494pt;}
.x42{left:444.895456pt;}
.x1e{left:448.841154pt;}
.x49{left:469.250113pt;}
.x44{left:472.295445pt;}
.x40{left:480.455442pt;}
.x27{left:492.298104pt;}
.x50{left:493.807437pt;}
.x3e{left:499.715434pt;}
.x4a{left:501.922100pt;}
.x3d{left:507.139431pt;}
.x4d{left:509.332764pt;}
.x30{left:511.578096pt;}
.x2d{left:513.751429pt;}
.x52{left:515.220762pt;}
.x53{left:516.711428pt;}
.x2c{left:526.387424pt;}
.x35{left:527.890090pt;}
.x2b{left:530.070089pt;}
.x12{left:532.428755pt;}
.x3b{left:533.791421pt;}
.x1c{left:534.751786pt;}
.x32{left:536.712753pt;}
.x29{left:538.912752pt;}
.xa{left:543.552750pt;}
.x8{left:628.786415pt;}
.x11{left:643.214409pt;}
}




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