
    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_7639e129b327552f6f968c7c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_e7d6f29a40cde23ab7b9d6b7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_55d030ec665c13e8de77c7ea.woff')format("woff");}.ff3{font-family:ff3;line-height:0.859863;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_90a97ed8327cf722cde74ed8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_07767973b85e10e9fa2dac9d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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:-22.362649px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.490671px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:13.030595px;}
.ls2{letter-spacing:19.441389px;}
.ls4{letter-spacing:22.807059px;}
.ls3{letter-spacing:28.089774px;}
.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;}
}
.ws25{word-spacing:-71.999814px;}
.ws1{word-spacing:-63.731249px;}
.ws0{word-spacing:-62.972543px;}
.ws51{word-spacing:-54.719859px;}
.ws44{word-spacing:-54.647859px;}
.ws6f{word-spacing:-54.503859px;}
.ws2{word-spacing:-54.215860px;}
.ws4{word-spacing:-53.999861px;}
.ws36{word-spacing:-53.927861px;}
.ws27{word-spacing:-53.783861px;}
.ws38{word-spacing:-53.495862px;}
.ws1f{word-spacing:-53.490172px;}
.ws3{word-spacing:-53.476138px;}
.ws35{word-spacing:-53.279862px;}
.ws15{word-spacing:-52.775864px;}
.ws22{word-spacing:-52.559864px;}
.ws19{word-spacing:-52.055866px;}
.ws16{word-spacing:-51.839866px;}
.ws47{word-spacing:-51.335867px;}
.ws1d{word-spacing:-51.119868px;}
.ws18{word-spacing:-51.047868px;}
.ws13{word-spacing:-50.615869px;}
.ws1e{word-spacing:-50.543870px;}
.wse{word-spacing:-50.399870px;}
.ws4a{word-spacing:-50.327870px;}
.ws31{word-spacing:-49.895871px;}
.ws10{word-spacing:-49.679872px;}
.ws59{word-spacing:-49.607872px;}
.ws5{word-spacing:-49.175873px;}
.ws2c{word-spacing:-48.959874px;}
.ws3d{word-spacing:-48.887874px;}
.ws9{word-spacing:-48.455875px;}
.wsc{word-spacing:-48.239875px;}
.ws5c{word-spacing:-48.167876px;}
.ws29{word-spacing:-47.735877px;}
.ws66{word-spacing:-47.519877px;}
.ws4b{word-spacing:-47.447878px;}
.ws3c{word-spacing:-47.015879px;}
.ws41{word-spacing:-46.799879px;}
.ws17{word-spacing:-46.295880px;}
.ws2e{word-spacing:-46.079881px;}
.ws61{word-spacing:-46.007881px;}
.ws60{word-spacing:-45.575882px;}
.ws24{word-spacing:-45.359883px;}
.ws3e{word-spacing:-45.287883px;}
.ws28{word-spacing:-44.855884px;}
.ws20{word-spacing:-44.775382px;}
.ws5a{word-spacing:-44.639885px;}
.ws69{word-spacing:-44.567885px;}
.ws2f{word-spacing:-44.423885px;}
.ws43{word-spacing:-44.135886px;}
.ws42{word-spacing:-43.919887px;}
.ws68{word-spacing:-43.914244px;}
.ws30{word-spacing:-43.415888px;}
.ws2b{word-spacing:-43.199888px;}
.ws3a{word-spacing:-42.695890px;}
.ws49{word-spacing:-42.479890px;}
.ws56{word-spacing:-42.407891px;}
.ws37{word-spacing:-41.975892px;}
.ws52{word-spacing:-41.255894px;}
.ws65{word-spacing:-41.039894px;}
.ws14{word-spacing:-40.535895px;}
.ws3b{word-spacing:-39.815897px;}
.ws12{word-spacing:-39.599898px;}
.ws50{word-spacing:-39.095899px;}
.ws4c{word-spacing:-38.879900px;}
.ws7{word-spacing:-38.807900px;}
.ws46{word-spacing:-38.375901px;}
.ws39{word-spacing:-38.159901px;}
.ws2d{word-spacing:-37.655903px;}
.wsa{word-spacing:-37.439903px;}
.ws53{word-spacing:-37.367904px;}
.wsb{word-spacing:-36.935905px;}
.ws58{word-spacing:-36.719905px;}
.ws5d{word-spacing:-36.503906px;}
.ws34{word-spacing:-36.215907px;}
.ws55{word-spacing:-35.999907px;}
.ws57{word-spacing:-35.927907px;}
.ws5e{word-spacing:-35.495908px;}
.ws6{word-spacing:-35.279909px;}
.wsd{word-spacing:-34.775910px;}
.ws45{word-spacing:-33.767913px;}
.ws8{word-spacing:-33.119915px;}
.ws54{word-spacing:-32.615916px;}
.ws4d{word-spacing:-32.399916px;}
.ws5f{word-spacing:-31.895918px;}
.ws11{word-spacing:-31.175920px;}
.wsf{word-spacing:-30.887920px;}
.ws2a{word-spacing:-30.743921px;}
.ws4f{word-spacing:-30.455921px;}
.ws32{word-spacing:-29.735923px;}
.ws67{word-spacing:-29.015925px;}
.ws48{word-spacing:-28.799926px;}
.ws40{word-spacing:-28.727926px;}
.ws1c{word-spacing:-28.079928px;}
.ws64{word-spacing:-27.575929px;}
.ws33{word-spacing:-26.855931px;}
.ws6c{word-spacing:-26.135933px;}
.ws1a{word-spacing:-25.925519px;}
.ws6b{word-spacing:-25.919933px;}
.ws1b{word-spacing:-25.415934px;}
.ws6a{word-spacing:-25.199895px;}
.ws62{word-spacing:-23.039941px;}
.ws23{word-spacing:-22.535942px;}
.ws26{word-spacing:-17.495955px;}
.ws6d{word-spacing:-17.279955px;}
.ws63{word-spacing:-15.839959px;}
.ws3f{word-spacing:-15.767959px;}
.ws4e{word-spacing:-11.303971px;}
.ws21{word-spacing:0.000000px;}
.ws5b{word-spacing:13.463965px;}
.ws6e{word-spacing:2055.810693px;}
._1{margin-left:-1.348809px;}
._3{width:1.007997px;}
._b{width:18.215953px;}
._0{width:19.979241px;}
._2{width:21.665253px;}
._7{width:22.751941px;}
._9{width:23.759939px;}
._a{width:25.271935px;}
._c{width:27.287930px;}
._e{width:28.367927px;}
._d{width:30.383922px;}
._5{width:32.183917px;}
._13{width:33.263914px;}
._18{width:34.559911px;}
._6{width:35.711908px;}
._4{width:38.015902px;}
._15{width:39.383898px;}
._16{width:40.607895px;}
._8{width:42.479890px;}
._11{width:43.703887px;}
._14{width:45.143883px;}
._12{width:46.223881px;}
._1b{width:47.231878px;}
._1a{width:50.255870px;}
._f{width:55.727856px;}
._10{width:57.271868px;}
._17{width:61.847840px;}
._19{width:84.023783px;}
.fc4{color:rgb(5,99,193);}
.fc1{color:rgb(27,28,29);}
.fc3{color:rgb(31,31,31);}
.fc2{color:rgb(37,37,37);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:42.600037px;}
.fs2{font-size:46.799584px;}
.fs4{font-size:59.700509px;}
.fs1{font-size:71.999814px;}
.fs0{font-size:84.300593px;}
.y0{bottom:0.000000px;}
.y24{bottom:116.460174px;}
.ya7{bottom:125.825482px;}
.y50{bottom:138.058684px;}
.y7a{bottom:145.265761px;}
.ya6{bottom:146.523714px;}
.yb5{bottom:147.419033px;}
.y4f{bottom:160.382867px;}
.y79{bottom:165.963886px;}
.ya5{bottom:167.221839px;}
.yb4{bottom:169.743216px;}
.y4e{bottom:182.707050px;}
.y78{bottom:186.486380px;}
.ya4{bottom:187.920071px;}
.yb3{bottom:192.056348px;}
.y4d{bottom:205.020182px;}
.y77{bottom:207.184505px;}
.ya3{bottom:208.623775px;}
.yb2{bottom:214.380531px;}
.y23{bottom:215.638484px;}
.y4c{bottom:227.344365px;}
.y76{bottom:227.882737px;}
.ya2{bottom:229.321899px;}
.yb1{bottom:236.704714px;}
.y75{bottom:248.580862px;}
.y4b{bottom:249.663077px;}
.ya1{bottom:250.020132px;}
.yb0{bottom:259.023426px;}
.y74{bottom:269.279094px;}
.ya0{bottom:270.542518px;}
.y4a{bottom:271.987260px;}
.y22{bottom:276.661909px;}
.yaf{bottom:281.523347px;}
.y73{bottom:289.988269px;}
.y9f{bottom:291.240751px;}
.y49{bottom:294.487181px;}
.y21{bottom:297.360034px;}
.yae{bottom:303.847530px;}
.y72{bottom:310.686502px;}
.y9e{bottom:311.938875px;}
.y48{bottom:316.800313px;}
.y20{bottom:318.058266px;}
.yad{bottom:326.160662px;}
.y71{bottom:331.384626px;}
.y9d{bottom:332.637108px;}
.y1f{bottom:338.767441px;}
.y47{bottom:339.124496px;}
.yac{bottom:348.484845px;}
.y70{bottom:352.082859px;}
.y9c{bottom:353.346283px;}
.y1e{bottom:359.465674px;}
.y46{bottom:361.443208px;}
.yab{bottom:370.803503px;}
.y6f{bottom:372.781037px;}
.y9b{bottom:374.044462px;}
.y1d{bottom:380.163798px;}
.y45{bottom:383.767337px;}
.yaa{bottom:393.127632px;}
.y6e{bottom:393.484687px;}
.y9a{bottom:394.742640px;}
.y1c{bottom:400.862031px;}
.y44{bottom:406.080523px;}
.y6d{bottom:414.182919px;}
.y99{bottom:415.440818px;}
.y1b{bottom:421.560209px;}
.y43{bottom:428.404652px;}
.y6c{bottom:434.881098px;}
.y98{bottom:436.138997px;}
.y1a{bottom:442.263859px;}
.y42{bottom:450.717838px;}
.y6b{bottom:455.579276px;}
.y19{bottom:462.962091px;}
.y41{bottom:473.042022px;}
.y6a{bottom:476.277455px;}
.y97{bottom:477.546405px;}
.y18{bottom:483.660270px;}
.y40{bottom:495.360679px;}
.y69{bottom:496.986630px;}
.ya9{bottom:498.244583px;}
.y17{bottom:504.358448px;}
.y3f{bottom:517.684809px;}
.y96{bottom:518.942761px;}
.y16{bottom:525.056627px;}
.y68{bottom:538.383041px;}
.y95{bottom:539.640940px;}
.y3e{bottom:540.184783px;}
.y15{bottom:545.579067px;}
.y67{bottom:559.081219px;}
.y94{bottom:560.344644px;}
.y3d{bottom:562.497969px;}
.y14{bottom:566.277246px;}
.y93{bottom:581.042822px;}
.y66{bottom:581.581140px;}
.y3c{bottom:584.822099px;}
.y13{bottom:586.986421px;}
.y92{bottom:601.741001px;}
.y3b{bottom:607.140756px;}
.y12{bottom:607.684600px;}
.y91{bottom:622.439179px;}
.y65{bottom:626.218509px;}
.y11{bottom:628.382778px;}
.y3a{bottom:629.464939px;}
.y90{bottom:643.137411px;}
.y64{bottom:648.542639px;}
.y10{bottom:649.080957px;}
.y39{bottom:651.778126px;}
.y8f{bottom:663.846587px;}
.yf{bottom:669.779189px;}
.y63{bottom:670.861296px;}
.y38{bottom:674.102255px;}
.y8e{bottom:684.544765px;}
.ye{bottom:690.482839px;}
.y62{bottom:693.185479px;}
.y37{bottom:696.415441px;}
.y8d{bottom:705.242944px;}
.yd{bottom:711.181017px;}
.y36{bottom:718.917615px;}
.y8c{bottom:725.940049px;}
.yc3{bottom:728.102119px;}
.yc{bottom:731.881449px;}
.y61{bottom:737.822795px;}
.y35{bottom:741.057209px;}
.y8b{bottom:746.638228px;}
.yc2{bottom:748.800351px;}
.yb{bottom:752.579627px;}
.y34{bottom:763.381338px;}
.y8a{bottom:767.345204px;}
.ya{bottom:773.277806px;}
.yc1{bottom:781.381275px;}
.y60{bottom:782.462363px;}
.y33{bottom:785.881313px;}
.y89{bottom:788.043382px;}
.y9{bottom:793.984782px;}
.yc0{bottom:802.079507px;}
.y5f{bottom:804.777749px;}
.y32{bottom:808.205442px;}
.y88{bottom:808.741561px;}
.y8{bottom:814.682960px;}
.ybf{bottom:822.777686px;}
.y5e{bottom:827.277670px;}
.y87{bottom:829.439766px;}
.y31{bottom:830.520828px;}
.y7{bottom:835.381166px;}
.ybe{bottom:843.484662px;}
.y5d{bottom:849.601826px;}
.y86{bottom:850.137971px;}
.y30{bottom:852.844984px;}
.y6{bottom:856.079344px;}
.ybd{bottom:864.182840px;}
.y85{bottom:870.844948px;}
.y5c{bottom:871.917211px;}
.y2f{bottom:875.160343px;}
.y5{bottom:876.777550px;}
.y84{bottom:891.543126px;}
.y5b{bottom:894.241368px;}
.ybc{bottom:896.939609px;}
.y4{bottom:897.484526px;}
.y83{bottom:912.241304px;}
.y5a{bottom:916.556726px;}
.ybb{bottom:917.637788px;}
.y2e{bottom:919.799884px;}
.y82{bottom:932.939510px;}
.y59{bottom:938.880883px;}
.y2d{bottom:942.124040px;}
.y3{bottom:942.299832px;}
.yba{bottom:950.403328px;}
.y81{bottom:953.637688px;}
.y58{bottom:961.205066px;}
.y2c{bottom:964.623988px;}
.yb9{bottom:971.101506px;}
.y80{bottom:974.344664px;}
.y57{bottom:983.520424px;}
.y2b{bottom:986.763582px;}
.yb8{bottom:991.799712px;}
.y7f{bottom:995.042870px;}
.y2{bottom:999.893495px;}
.y56{bottom:1006.020372px;}
.y2a{bottom:1009.078968px;}
.y7e{bottom:1015.741048px;}
.yb7{bottom:1024.380689px;}
.y1{bottom:1025.815519px;}
.y55{bottom:1028.159966px;}
.y29{bottom:1031.578889px;}
.y7d{bottom:1036.439227px;}
.yb6{bottom:1045.078868px;}
.y54{bottom:1050.484122px;}
.y28{bottom:1053.903058px;}
.y7c{bottom:1057.137432px;}
.y53{bottom:1072.984070px;}
.y27{bottom:1076.218430px;}
.y7b{bottom:1077.844408px;}
.y52{bottom:1095.299442px;}
.y26{bottom:1098.542600px;}
.y51{bottom:1117.623598px;}
.ya8{bottom:1119.240792px;}
.y25{bottom:1139.938970px;}
.h5{height:32.303642px;}
.h6{height:63.949054px;}
.h4{height:64.546708px;}
.h3{height:66.057294px;}
.h2{height:74.874404px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.616858px;}
.x1{left:169.918382px;}
.x5{left:180.720236px;}
.x2{left:308.697430px;}
.x3{left:318.057784px;}
@media print{
.v2{vertical-align:-19.877910pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.769485pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:11.582751pt;}
.ls2{letter-spacing:17.281235pt;}
.ls4{letter-spacing:20.272941pt;}
.ls3{letter-spacing:24.968688pt;}
.ws25{word-spacing:-63.999835pt;}
.ws1{word-spacing:-56.649999pt;}
.ws0{word-spacing:-55.975594pt;}
.ws51{word-spacing:-48.639874pt;}
.ws44{word-spacing:-48.575875pt;}
.ws6f{word-spacing:-48.447875pt;}
.ws2{word-spacing:-48.191876pt;}
.ws4{word-spacing:-47.999876pt;}
.ws36{word-spacing:-47.935876pt;}
.ws27{word-spacing:-47.807877pt;}
.ws38{word-spacing:-47.551877pt;}
.ws1f{word-spacing:-47.546820pt;}
.ws3{word-spacing:-47.534345pt;}
.ws35{word-spacing:-47.359878pt;}
.ws15{word-spacing:-46.911879pt;}
.ws22{word-spacing:-46.719879pt;}
.ws19{word-spacing:-46.271881pt;}
.ws16{word-spacing:-46.079881pt;}
.ws47{word-spacing:-45.631882pt;}
.ws1d{word-spacing:-45.439883pt;}
.ws18{word-spacing:-45.375883pt;}
.ws13{word-spacing:-44.991884pt;}
.ws1e{word-spacing:-44.927884pt;}
.wse{word-spacing:-44.799884pt;}
.ws4a{word-spacing:-44.735885pt;}
.ws31{word-spacing:-44.351886pt;}
.ws10{word-spacing:-44.159886pt;}
.ws59{word-spacing:-44.095886pt;}
.ws5{word-spacing:-43.711887pt;}
.ws2c{word-spacing:-43.519888pt;}
.ws3d{word-spacing:-43.455888pt;}
.ws9{word-spacing:-43.071889pt;}
.wsc{word-spacing:-42.879889pt;}
.ws5c{word-spacing:-42.815889pt;}
.ws29{word-spacing:-42.431890pt;}
.ws66{word-spacing:-42.239891pt;}
.ws4b{word-spacing:-42.175891pt;}
.ws3c{word-spacing:-41.791892pt;}
.ws41{word-spacing:-41.599893pt;}
.ws17{word-spacing:-41.151894pt;}
.ws2e{word-spacing:-40.959894pt;}
.ws61{word-spacing:-40.895894pt;}
.ws60{word-spacing:-40.511895pt;}
.ws24{word-spacing:-40.319896pt;}
.ws3e{word-spacing:-40.255896pt;}
.ws28{word-spacing:-39.871897pt;}
.ws20{word-spacing:-39.800340pt;}
.ws5a{word-spacing:-39.679898pt;}
.ws69{word-spacing:-39.615898pt;}
.ws2f{word-spacing:-39.487898pt;}
.ws43{word-spacing:-39.231899pt;}
.ws42{word-spacing:-39.039899pt;}
.ws68{word-spacing:-39.034883pt;}
.ws30{word-spacing:-38.591900pt;}
.ws2b{word-spacing:-38.399901pt;}
.ws3a{word-spacing:-37.951902pt;}
.ws49{word-spacing:-37.759903pt;}
.ws56{word-spacing:-37.695903pt;}
.ws37{word-spacing:-37.311904pt;}
.ws52{word-spacing:-36.671905pt;}
.ws65{word-spacing:-36.479906pt;}
.ws14{word-spacing:-36.031907pt;}
.ws3b{word-spacing:-35.391909pt;}
.ws12{word-spacing:-35.199909pt;}
.ws50{word-spacing:-34.751910pt;}
.ws4c{word-spacing:-34.559911pt;}
.ws7{word-spacing:-34.495911pt;}
.ws46{word-spacing:-34.111912pt;}
.ws39{word-spacing:-33.919912pt;}
.ws2d{word-spacing:-33.471914pt;}
.wsa{word-spacing:-33.279914pt;}
.ws53{word-spacing:-33.215914pt;}
.wsb{word-spacing:-32.831915pt;}
.ws58{word-spacing:-32.639916pt;}
.ws5d{word-spacing:-32.447916pt;}
.ws34{word-spacing:-32.191917pt;}
.ws55{word-spacing:-31.999917pt;}
.ws57{word-spacing:-31.935918pt;}
.ws5e{word-spacing:-31.551919pt;}
.ws6{word-spacing:-31.359919pt;}
.wsd{word-spacing:-30.911920pt;}
.ws45{word-spacing:-30.015923pt;}
.ws8{word-spacing:-29.439924pt;}
.ws54{word-spacing:-28.991925pt;}
.ws4d{word-spacing:-28.799926pt;}
.ws5f{word-spacing:-28.351927pt;}
.ws11{word-spacing:-27.711928pt;}
.wsf{word-spacing:-27.455929pt;}
.ws2a{word-spacing:-27.327929pt;}
.ws4f{word-spacing:-27.071930pt;}
.ws32{word-spacing:-26.431932pt;}
.ws67{word-spacing:-25.791933pt;}
.ws48{word-spacing:-25.599934pt;}
.ws40{word-spacing:-25.535934pt;}
.ws1c{word-spacing:-24.959936pt;}
.ws64{word-spacing:-24.511937pt;}
.ws33{word-spacing:-23.871938pt;}
.ws6c{word-spacing:-23.231940pt;}
.ws1a{word-spacing:-23.044906pt;}
.ws6b{word-spacing:-23.039941pt;}
.ws1b{word-spacing:-22.591942pt;}
.ws6a{word-spacing:-22.399907pt;}
.ws62{word-spacing:-20.479947pt;}
.ws23{word-spacing:-20.031948pt;}
.ws26{word-spacing:-15.551960pt;}
.ws6d{word-spacing:-15.359960pt;}
.ws63{word-spacing:-14.079964pt;}
.ws3f{word-spacing:-14.015964pt;}
.ws4e{word-spacing:-10.047974pt;}
.ws21{word-spacing:0.000000pt;}
.ws5b{word-spacing:11.967969pt;}
.ws6e{word-spacing:1827.387283pt;}
._1{margin-left:-1.198942pt;}
._3{width:0.895998pt;}
._b{width:16.191958pt;}
._0{width:17.759325pt;}
._2{width:19.258002pt;}
._7{width:20.223948pt;}
._9{width:21.119945pt;}
._a{width:22.463942pt;}
._c{width:24.255937pt;}
._e{width:25.215935pt;}
._d{width:27.007930pt;}
._5{width:28.607926pt;}
._13{width:29.567924pt;}
._18{width:30.719921pt;}
._6{width:31.743918pt;}
._4{width:33.791913pt;}
._15{width:35.007910pt;}
._16{width:36.095907pt;}
._8{width:37.759903pt;}
._11{width:38.847900pt;}
._14{width:40.127896pt;}
._12{width:41.087894pt;}
._1b{width:41.983892pt;}
._1a{width:44.671885pt;}
._f{width:49.535872pt;}
._10{width:50.908327pt;}
._17{width:54.975858pt;}
._19{width:74.687807pt;}
.fs3{font-size:37.866700pt;}
.fs2{font-size:41.599630pt;}
.fs4{font-size:53.067120pt;}
.fs1{font-size:63.999835pt;}
.fs0{font-size:74.933861pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:103.520155pt;}
.ya7{bottom:111.844873pt;}
.y50{bottom:122.718830pt;}
.y7a{bottom:129.125121pt;}
.ya6{bottom:130.243301pt;}
.yb5{bottom:131.039140pt;}
.y4f{bottom:142.562548pt;}
.y79{bottom:147.523454pt;}
.ya5{bottom:148.641634pt;}
.yb4{bottom:150.882859pt;}
.y4e{bottom:162.406267pt;}
.y78{bottom:165.765671pt;}
.ya4{bottom:167.040063pt;}
.yb3{bottom:170.716754pt;}
.y4d{bottom:182.240162pt;}
.y77{bottom:184.164004pt;}
.ya3{bottom:185.443355pt;}
.yb2{bottom:190.560472pt;}
.y23{bottom:191.678653pt;}
.y4c{bottom:202.083880pt;}
.y76{bottom:202.562433pt;}
.ya2{bottom:203.841688pt;}
.yb1{bottom:210.404191pt;}
.y75{bottom:220.960766pt;}
.y4b{bottom:221.922735pt;}
.ya1{bottom:222.240117pt;}
.yb0{bottom:230.243045pt;}
.y74{bottom:239.359195pt;}
.ya0{bottom:240.482239pt;}
.y4a{bottom:241.766453pt;}
.y22{bottom:245.921697pt;}
.yaf{bottom:250.242975pt;}
.y73{bottom:257.767351pt;}
.y9f{bottom:258.880667pt;}
.y49{bottom:261.766383pt;}
.y21{bottom:264.320030pt;}
.yae{bottom:270.086693pt;}
.y72{bottom:276.165779pt;}
.y9e{bottom:277.279000pt;}
.y48{bottom:281.600278pt;}
.y20{bottom:282.718459pt;}
.yad{bottom:289.920589pt;}
.y71{bottom:294.564112pt;}
.y9d{bottom:295.677429pt;}
.y1f{bottom:301.126615pt;}
.y47{bottom:301.443997pt;}
.yac{bottom:309.764307pt;}
.y70{bottom:312.962541pt;}
.y9c{bottom:314.085585pt;}
.y1e{bottom:319.525043pt;}
.y46{bottom:321.282851pt;}
.yab{bottom:329.603114pt;}
.y6f{bottom:331.360922pt;}
.y9b{bottom:332.483966pt;}
.y1d{bottom:337.923376pt;}
.y45{bottom:341.126522pt;}
.yaa{bottom:349.446784pt;}
.y6e{bottom:349.764166pt;}
.y9a{bottom:350.882347pt;}
.y1c{bottom:356.321805pt;}
.y44{bottom:360.960465pt;}
.y6d{bottom:368.162595pt;}
.y99{bottom:369.280728pt;}
.y1b{bottom:374.720186pt;}
.y43{bottom:380.804136pt;}
.y6c{bottom:386.560976pt;}
.y98{bottom:387.679108pt;}
.y1a{bottom:393.123430pt;}
.y42{bottom:400.638079pt;}
.y6b{bottom:404.959357pt;}
.y19{bottom:411.521859pt;}
.y41{bottom:420.481797pt;}
.y6a{bottom:423.357738pt;}
.y97{bottom:424.485693pt;}
.y18{bottom:429.920240pt;}
.y40{bottom:440.320604pt;}
.y69{bottom:441.765894pt;}
.ya9{bottom:442.884074pt;}
.y17{bottom:448.318621pt;}
.y3f{bottom:460.164274pt;}
.y96{bottom:461.282455pt;}
.y16{bottom:466.717002pt;}
.y68{bottom:478.562703pt;}
.y95{bottom:479.680836pt;}
.y3e{bottom:480.164252pt;}
.y15{bottom:484.959171pt;}
.y67{bottom:496.961084pt;}
.y94{bottom:498.084128pt;}
.y3d{bottom:499.998195pt;}
.y14{bottom:503.357552pt;}
.y93{bottom:516.482509pt;}
.y66{bottom:516.961014pt;}
.y3c{bottom:519.841866pt;}
.y13{bottom:521.765708pt;}
.y92{bottom:534.880890pt;}
.y3b{bottom:539.680672pt;}
.y12{bottom:540.164089pt;}
.y91{bottom:553.279270pt;}
.y65{bottom:556.638675pt;}
.y11{bottom:558.562470pt;}
.y3a{bottom:559.524391pt;}
.y90{bottom:571.677699pt;}
.y64{bottom:576.482346pt;}
.y10{bottom:576.960850pt;}
.y39{bottom:579.358334pt;}
.y8f{bottom:590.085855pt;}
.yf{bottom:595.359279pt;}
.y63{bottom:596.321152pt;}
.y38{bottom:599.202004pt;}
.y8e{bottom:608.484236pt;}
.ye{bottom:613.762524pt;}
.y62{bottom:616.164871pt;}
.y37{bottom:619.035948pt;}
.y8d{bottom:626.882617pt;}
.yd{bottom:632.160904pt;}
.y36{bottom:639.037880pt;}
.y8c{bottom:645.280044pt;}
.yc3{bottom:647.201883pt;}
.yc{bottom:650.561288pt;}
.y61{bottom:655.842484pt;}
.y35{bottom:658.717519pt;}
.y8b{bottom:663.678425pt;}
.yc2{bottom:665.600312pt;}
.yb{bottom:668.959669pt;}
.y34{bottom:678.561190pt;}
.y8a{bottom:682.084626pt;}
.ya{bottom:687.358050pt;}
.yc1{bottom:694.561133pt;}
.y60{bottom:695.522101pt;}
.y33{bottom:698.561167pt;}
.y89{bottom:700.483007pt;}
.y9{bottom:705.764251pt;}
.yc0{bottom:712.959562pt;}
.y5f{bottom:715.357999pt;}
.y32{bottom:718.404838pt;}
.y88{bottom:718.881387pt;}
.y8{bottom:724.162632pt;}
.ybf{bottom:731.357943pt;}
.y5e{bottom:735.357929pt;}
.y87{bottom:737.279792pt;}
.y31{bottom:738.240736pt;}
.y7{bottom:742.561036pt;}
.ybe{bottom:749.764144pt;}
.y5d{bottom:755.201623pt;}
.y86{bottom:755.678197pt;}
.y30{bottom:758.084430pt;}
.y6{bottom:760.959417pt;}
.ybd{bottom:768.162525pt;}
.y85{bottom:774.084398pt;}
.y5c{bottom:775.037521pt;}
.y2f{bottom:777.920305pt;}
.y5{bottom:779.357822pt;}
.y84{bottom:792.482779pt;}
.y5b{bottom:794.881216pt;}
.ybc{bottom:797.279653pt;}
.y4{bottom:797.764023pt;}
.y83{bottom:810.881160pt;}
.y5a{bottom:814.717090pt;}
.ybb{bottom:815.678034pt;}
.y2e{bottom:817.599897pt;}
.y82{bottom:829.279564pt;}
.y59{bottom:834.560785pt;}
.y2d{bottom:837.443592pt;}
.y3{bottom:837.599851pt;}
.yba{bottom:844.802958pt;}
.y81{bottom:847.677945pt;}
.y58{bottom:854.404503pt;}
.y2c{bottom:857.443545pt;}
.yb9{bottom:863.201339pt;}
.y80{bottom:866.084146pt;}
.y57{bottom:874.240377pt;}
.y2b{bottom:877.123184pt;}
.yb8{bottom:881.599744pt;}
.y7f{bottom:884.482551pt;}
.y2{bottom:888.794218pt;}
.y56{bottom:894.240331pt;}
.y2a{bottom:896.959082pt;}
.y7e{bottom:902.880932pt;}
.yb7{bottom:910.560613pt;}
.y1{bottom:911.836017pt;}
.y55{bottom:913.919970pt;}
.y29{bottom:916.959012pt;}
.y7d{bottom:921.279313pt;}
.yb6{bottom:928.958994pt;}
.y54{bottom:933.763664pt;}
.y28{bottom:936.802718pt;}
.y7c{bottom:939.677717pt;}
.y53{bottom:953.763618pt;}
.y27{bottom:956.638605pt;}
.y7b{bottom:958.083918pt;}
.y52{bottom:973.599504pt;}
.y26{bottom:976.482311pt;}
.y51{bottom:993.443198pt;}
.ya8{bottom:994.880704pt;}
.y25{bottom:1013.279085pt;}
.h5{height:28.714348pt;}
.h6{height:56.843603pt;}
.h4{height:57.374852pt;}
.h3{height:58.717594pt;}
.h2{height:66.555026pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.437207pt;}
.x1{left:151.038562pt;}
.x5{left:160.640210pt;}
.x2{left:274.397716pt;}
.x3{left:282.718030pt;}
}




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