
    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_5f75045936c91906770b6be4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666000;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_07fd9592c88e90dd801daad5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.915527;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_d703d1cd11c04c4c2dc594f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_02004c79cb30a24747308c28.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922363;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_ff6d19ed1ff46cef2af74864.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_71ecd6b637631481c44872ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.701000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_69729f5072ee03b2ce6f8572.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.877930;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:ff8;src:url('chunks/assets/font_bfae7d4629ef9c31db105a39.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.888184;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:ff9;src:url('chunks/assets/font_27eba8451969b016a1ddbc37.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002930;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:ffa;src:url('chunks/assets/font_f0f5353edc4b23bf9ce0b2d8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.872559;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:ffb;src:url('chunks/assets/font_a24ad2928012fdbf74504a8d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_67a184f61ef378c25556bdb1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.959961;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:ffd;src:url('chunks/assets/font_24f1b18228f72058d3f94dc5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740723;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:ffe;src:url('chunks/assets/font_926308e3e551ce8fb5255b65.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.717285;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:fff;src:url('chunks/assets/font_89a1a3b2587014daf7b94d6f.woff2')format("woff");}.fff{font-family:fff;line-height:0.959961;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;}
.m1{transform:matrix(0.242503,0.000000,-0.060626,0.242538,0,0);-ms-transform:matrix(0.242503,0.000000,-0.060626,0.242538,0,0);-webkit-transform:matrix(0.242503,0.000000,-0.060626,0.242538,0,0);}
.m0{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-0.035984px;}
.ls19{letter-spacing:-0.032386px;}
.ls1d{letter-spacing:-0.028787px;}
.ls1c{letter-spacing:-0.019192px;}
.ls21{letter-spacing:-0.013194px;}
.ls20{letter-spacing:-0.011995px;}
.ls25{letter-spacing:-0.011127px;}
.ls24{letter-spacing:-0.010795px;}
.ls18{letter-spacing:-0.009596px;}
.ls17{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.005272px;}
.ls9{letter-spacing:0.005398px;}
.lsb{letter-spacing:0.005817px;}
.ls12{letter-spacing:0.005859px;}
.ls5{letter-spacing:0.005877px;}
.ls7{letter-spacing:0.005997px;}
.ls14{letter-spacing:0.006441px;}
.lse{letter-spacing:0.010795px;}
.ls11{letter-spacing:0.011127px;}
.ls2{letter-spacing:0.011995px;}
.ls4{letter-spacing:0.013194px;}
.ls1e{letter-spacing:0.014394px;}
.ls1{letter-spacing:0.019192px;}
.ls0{letter-spacing:0.021591px;}
.ls23{letter-spacing:0.025189px;}
.ls1b{letter-spacing:0.028787px;}
.ls1f{letter-spacing:1.613297px;}
.ls3{letter-spacing:5.378455px;}
.ls22{letter-spacing:6.261270px;}
.lsd{letter-spacing:6.886797px;}
.ls26{letter-spacing:9.165204px;}
.ls27{letter-spacing:9.447197px;}
.ls16{letter-spacing:9.559232px;}
.ls8{letter-spacing:51.631489px;}
.ls6{letter-spacing:51.631669px;}
.lsc{letter-spacing:51.631729px;}
.ls13{letter-spacing:51.631747px;}
.lsa{letter-spacing:51.632089px;}
.ls10{letter-spacing:54.565056px;}
.ls15{letter-spacing:102.674911px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(168,56,137),0 0.015em rgb(168,56,137),0.015em 0 rgb(168,56,137),0 -0.015em  rgb(168,56,137);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(177,241,177),0 0.015em rgb(177,241,177),0.015em 0 rgb(177,241,177),0 -0.015em  rgb(177,241,177);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(168,56,137);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(177,241,177);text-shadow:none;}
}
.ws1{word-spacing:-26.955848px;}
.wsd{word-spacing:-21.955228px;}
.ws15{word-spacing:-19.959298px;}
.wsb{word-spacing:-16.684726px;}
.wsc{word-spacing:-16.672731px;}
.ws11{word-spacing:-15.478270px;}
.ws12{word-spacing:-15.016253px;}
.ws14{word-spacing:-15.005458px;}
.ws13{word-spacing:-14.994662px;}
.ws0{word-spacing:-13.338185px;}
.ws10{word-spacing:-0.109152px;}
.ws7{word-spacing:-0.100756px;}
.ws2{word-spacing:-0.093559px;}
.wse{word-spacing:-0.083963px;}
.ws9{word-spacing:-0.071969px;}
.ws6{word-spacing:-0.067171px;}
.ws4{word-spacing:-0.047979px;}
.wsa{word-spacing:-0.043181px;}
.ws3{word-spacing:-0.035984px;}
.ws8{word-spacing:-0.028787px;}
.ws16{word-spacing:0.000000px;}
.ws5{word-spacing:47.946696px;}
.wsf{word-spacing:2688.217599px;}
._17{margin-left:-28.415671px;}
._2{margin-left:-22.435019px;}
._e{margin-left:-19.026105px;}
._f{margin-left:-17.549908px;}
._7{margin-left:-16.383657px;}
._10{margin-left:-15.361702px;}
._d{margin-left:-13.500114px;}
._5{margin-left:-10.867262px;}
._13{margin-left:-9.161666px;}
._3{margin-left:-6.549145px;}
._4{margin-left:-5.486408px;}
._1{margin-left:-4.438065px;}
._0{margin-left:-1.799216px;}
._6{width:1.589307px;}
._c{width:3.155464px;}
._9{width:4.679760px;}
._8{width:5.691818px;}
._a{width:7.430340px;}
._12{width:8.432743px;}
._11{width:9.438205px;}
._14{width:10.870621px;}
._16{width:13.246964px;}
._b{width:14.640877px;}
._15{width:19.911319px;}
.fc4{color:transparent;}
.fc3{color:rgb(102,255,204);}
.fc2{color:rgb(168,56,137);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(177,241,177);}
.fs0{font-size:11.994770px;}
.fs7{font-size:29.986926px;}
.fs1{font-size:47.979082px;}
.fsa{font-size:53.976467px;}
.fsb{font-size:55.637205px;}
.fs6{font-size:59.973852px;}
.fs3{font-size:65.971237px;}
.fs9{font-size:71.968622px;}
.fs8{font-size:83.963393px;}
.fs2{font-size:95.958163px;}
.fs5{font-size:107.952934px;}
.fs4{font-size:119.947704px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.218096px;}
.y48{bottom:52.340933px;}
.y47{bottom:68.833598px;}
.y3e{bottom:81.203168px;}
.y46{bottom:85.326518px;}
.y3d{bottom:97.696073px;}
.y45{bottom:101.819198px;}
.y3c{bottom:112.689413px;}
.y44{bottom:118.312103px;}
.y43{bottom:133.305443px;}
.y42{bottom:149.798288px;}
.y3b{bottom:156.284856px;}
.y41{bottom:166.291238px;}
.y40{bottom:182.783888px;}
.y3f{bottom:197.777438px;}
.y3a{bottom:232.795506px;}
.y58{bottom:256.439341px;}
.y57{bottom:274.431541px;}
.y56{bottom:292.423591px;}
.y5f{bottom:308.916445px;}
.y55{bottom:310.415791px;}
.y54{bottom:328.407991px;}
.y5e{bottom:337.403995px;}
.y53{bottom:346.400041px;}
.y52{bottom:364.392241px;}
.y5d{bottom:365.891545px;}
.y51{bottom:382.384291px;}
.y5c{bottom:394.379095px;}
.y50{bottom:400.376641px;}
.y5b{bottom:413.870695px;}
.y38{bottom:430.925791px;}
.y5a{bottom:435.611196px;}
.y37{bottom:448.917991px;}
.y59{bottom:451.504235px;}
.y36{bottom:466.910095px;}
.y39{bottom:504.832956px;}
.y64{bottom:707.929988px;}
.y62{bottom:716.363738px;}
.y63{bottom:877.918238px;}
.y61{bottom:894.973538px;}
.y60{bottom:1124.373488px;}
.y65{bottom:1141.428488px;}
.y31{bottom:1168.979095px;}
.y30{bottom:1188.470545px;}
.y2f{bottom:1207.962091px;}
.y2d{bottom:1244.435406px;}
.y23{bottom:1310.476184px;}
.y2{bottom:1320.057149px;}
.y4{bottom:1400.787215px;}
.y21{bottom:1408.122515px;}
.y17{bottom:1408.564415px;}
.y3{bottom:1412.781965px;}
.y16{bottom:1420.559165px;}
.y20{bottom:1421.616665px;}
.y1f{bottom:1433.611415px;}
.y15{bottom:1451.988215px;}
.y6{bottom:1453.657265px;}
.y14{bottom:1463.982965px;}
.y5{bottom:1465.652015px;}
.y1e{bottom:1473.700115px;}
.y7{bottom:1475.442815px;}
.y1d{bottom:1485.694865px;}
.y13{bottom:1495.412615px;}
.y12{bottom:1507.406615px;}
.y1c{bottom:1532.260115px;}
.y11{bottom:1538.836115px;}
.y2c{bottom:1541.894556px;}
.y1b{bottom:1544.255615px;}
.y22{bottom:1544.353115px;}
.y10{bottom:1550.830115px;}
.y1a{bottom:1578.057479px;}
.yf{bottom:1586.334479px;}
.y19{bottom:1605.045479px;}
.ye{bottom:1613.322479px;}
.y4f{bottom:1618.595941px;}
.y18{bottom:1623.037979px;}
.y4e{bottom:1636.586941px;}
.y4d{bottom:1654.579441px;}
.y4c{bottom:1672.571941px;}
.y35{bottom:1675.026595px;}
.y4b{bottom:1690.564441px;}
.y34{bottom:1694.517595px;}
.y4a{bottom:1708.556941px;}
.y33{bottom:1714.008595px;}
.y49{bottom:1726.547941px;}
.y32{bottom:1733.499595px;}
.y2b{bottom:1771.508556px;}
.y2a{bottom:1829.627941px;}
.y29{bottom:1847.621095px;}
.y28{bottom:1867.111441px;}
.y27{bottom:1885.103941px;}
.y26{bottom:1903.096441px;}
.y25{bottom:1921.088941px;}
.y24{bottom:1939.081441px;}
.y2e{bottom:1992.457056px;}
.yd{bottom:2040.848556px;}
.yc{bottom:2063.339673px;}
.yb{bottom:2076.833171px;}
.ya{bottom:2109.817978px;}
.y9{bottom:2144.303364px;}
.y8{bottom:2172.791364px;}
.h2{height:7.988517px;}
.h7{height:20.323171px;}
.h13{height:22.490194px;}
.hb{height:32.845055px;}
.h12{height:36.950687px;}
.hc{height:39.568686px;}
.h10{height:40.482350px;}
.h11{height:41.727904px;}
.h3{height:43.317052px;}
.hd{height:44.980389px;}
.he{height:49.478428px;}
.ha{height:50.040683px;}
.h9{height:59.353029px;}
.hf{height:69.245200px;}
.h8{height:73.262980px;}
.h14{height:73.901373px;}
.h4{height:87.383777px;}
.h6{height:95.513045px;}
.h5{height:106.125605px;}
.h1{height:2252.781000px;}
.h0{height:2253.000000px;}
.w1{width:1700.017500px;}
.w0{width:1701.000000px;}
.x0{left:0.000000px;}
.x29{left:61.764326px;}
.x43{left:70.384346px;}
.x3e{left:81.253061px;}
.x46{left:94.745276px;}
.x47{left:113.159051px;}
.x48{left:115.408850px;}
.x41{left:157.752822px;}
.x42{left:167.221314px;}
.x37{left:216.239596px;}
.x33{left:273.861840px;}
.x44{left:276.187268px;}
.x32{left:343.643981px;}
.x4a{left:377.567435px;}
.x4{left:379.320523px;}
.x5{left:380.535642px;}
.x38{left:398.483176px;}
.x45{left:402.421251px;}
.xa{left:410.112120px;}
.x3a{left:413.464322px;}
.x2{left:441.315269px;}
.x3{left:446.980942px;}
.x2b{left:456.118519px;}
.x6{left:479.651110px;}
.x1{left:480.717121px;}
.x7{left:505.054528px;}
.xc{left:538.204579px;}
.x9{left:567.665262px;}
.x3b{left:577.729237px;}
.x3c{left:581.477822px;}
.x3d{left:648.220769px;}
.x2c{left:732.318770px;}
.x2d{left:789.573971px;}
.x31{left:792.779591px;}
.x8{left:823.075878px;}
.xb{left:825.277806px;}
.x3f{left:841.031737px;}
.xf{left:886.554166px;}
.xd{left:891.364958px;}
.x13{left:894.023485px;}
.x2e{left:896.128927px;}
.x12{left:898.157815px;}
.x30{left:906.679967px;}
.x39{left:924.191709px;}
.x10{left:928.948619px;}
.x11{left:933.891084px;}
.xe{left:936.426814px;}
.x14{left:939.015079px;}
.x40{left:991.939068px;}
.x2f{left:1002.065354px;}
.x28{left:1112.606712px;}
.x1d{left:1120.851487px;}
.x15{left:1122.680077px;}
.x18{left:1125.176138px;}
.x1a{left:1127.237447px;}
.x1c{left:1129.328036px;}
.x2a{left:1136.747257px;}
.x49{left:1141.571560px;}
.x16{left:1158.654902px;}
.x17{left:1160.257986px;}
.x1e{left:1161.521358px;}
.x19{left:1169.617267px;}
.x1b{left:1174.067821px;}
.x35{left:1270.543605px;}
.x34{left:1325.193888px;}
.x24{left:1345.463079px;}
.x27{left:1347.272581px;}
.x1f{left:1348.755557px;}
.x26{left:1354.791675px;}
.x22{left:1366.825740px;}
.x23{left:1372.450416px;}
.x36{left:1376.669613px;}
.x20{left:1393.584643px;}
.x21{left:1396.562418px;}
.x25{left:1412.177468px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.031986pt;}
.ls19{letter-spacing:-0.028787pt;}
.ls1d{letter-spacing:-0.025589pt;}
.ls1c{letter-spacing:-0.017059pt;}
.ls21{letter-spacing:-0.011728pt;}
.ls20{letter-spacing:-0.010662pt;}
.ls25{letter-spacing:-0.009891pt;}
.ls24{letter-spacing:-0.009596pt;}
.ls18{letter-spacing:-0.008530pt;}
.ls17{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.004686pt;}
.ls9{letter-spacing:0.004798pt;}
.lsb{letter-spacing:0.005171pt;}
.ls12{letter-spacing:0.005208pt;}
.ls5{letter-spacing:0.005224pt;}
.ls7{letter-spacing:0.005331pt;}
.ls14{letter-spacing:0.005726pt;}
.lse{letter-spacing:0.009596pt;}
.ls11{letter-spacing:0.009891pt;}
.ls2{letter-spacing:0.010662pt;}
.ls4{letter-spacing:0.011728pt;}
.ls1e{letter-spacing:0.012794pt;}
.ls1{letter-spacing:0.017059pt;}
.ls0{letter-spacing:0.019192pt;}
.ls23{letter-spacing:0.022390pt;}
.ls1b{letter-spacing:0.025589pt;}
.ls1f{letter-spacing:1.434041pt;}
.ls3{letter-spacing:4.780849pt;}
.ls22{letter-spacing:5.565573pt;}
.lsd{letter-spacing:6.121598pt;}
.ls26{letter-spacing:8.146848pt;}
.ls27{letter-spacing:8.397509pt;}
.ls16{letter-spacing:8.497095pt;}
.ls8{letter-spacing:45.894657pt;}
.ls6{letter-spacing:45.894817pt;}
.lsc{letter-spacing:45.894870pt;}
.ls13{letter-spacing:45.894886pt;}
.lsa{letter-spacing:45.895190pt;}
.ls10{letter-spacing:48.502272pt;}
.ls15{letter-spacing:91.266587pt;}
.ws1{word-spacing:-23.960753pt;}
.wsd{word-spacing:-19.515758pt;}
.ws15{word-spacing:-17.741598pt;}
.wsb{word-spacing:-14.830867pt;}
.wsc{word-spacing:-14.820205pt;}
.ws11{word-spacing:-13.758463pt;}
.ws12{word-spacing:-13.347781pt;}
.ws14{word-spacing:-13.338185pt;}
.ws13{word-spacing:-13.328589pt;}
.ws0{word-spacing:-11.856164pt;}
.ws10{word-spacing:-0.097024pt;}
.ws7{word-spacing:-0.089561pt;}
.ws2{word-spacing:-0.083164pt;}
.wse{word-spacing:-0.074634pt;}
.ws9{word-spacing:-0.063972pt;}
.ws6{word-spacing:-0.059707pt;}
.ws4{word-spacing:-0.042648pt;}
.wsa{word-spacing:-0.038383pt;}
.ws3{word-spacing:-0.031986pt;}
.ws8{word-spacing:-0.025589pt;}
.ws16{word-spacing:0.000000pt;}
.ws5{word-spacing:42.619285pt;}
.wsf{word-spacing:2389.526755pt;}
._17{margin-left:-25.258374pt;}
._2{margin-left:-19.942239pt;}
._e{margin-left:-16.912093pt;}
._f{margin-left:-15.599919pt;}
._7{margin-left:-14.563251pt;}
._10{margin-left:-13.654847pt;}
._d{margin-left:-12.000101pt;}
._5{margin-left:-9.659788pt;}
._13{margin-left:-8.143703pt;}
._3{margin-left:-5.821462pt;}
._4{margin-left:-4.876807pt;}
._1{margin-left:-3.944947pt;}
._0{margin-left:-1.599303pt;}
._6{width:1.412717pt;}
._c{width:2.804857pt;}
._9{width:4.159786pt;}
._8{width:5.059394pt;}
._a{width:6.604747pt;}
._12{width:7.495772pt;}
._11{width:8.389516pt;}
._14{width:9.662774pt;}
._16{width:11.775080pt;}
._b{width:13.014113pt;}
._15{width:17.698950pt;}
.fs0{font-size:10.662018pt;}
.fs7{font-size:26.655045pt;}
.fs1{font-size:42.648073pt;}
.fsa{font-size:47.979082pt;}
.fsb{font-size:49.455294pt;}
.fs6{font-size:53.310091pt;}
.fs3{font-size:58.641100pt;}
.fs9{font-size:63.972109pt;}
.fs8{font-size:74.634127pt;}
.fs2{font-size:85.296145pt;}
.fs5{font-size:95.958163pt;}
.fs4{font-size:106.620181pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.193863pt;}
.y48{bottom:46.525273pt;}
.y47{bottom:61.185420pt;}
.y3e{bottom:72.180593pt;}
.y46{bottom:75.845793pt;}
.y3d{bottom:86.840953pt;}
.y45{bottom:90.505953pt;}
.y3c{bottom:100.168367pt;}
.y44{bottom:105.166313pt;}
.y43{bottom:118.493727pt;}
.y42{bottom:133.154033pt;}
.y3b{bottom:138.919872pt;}
.y41{bottom:147.814433pt;}
.y40{bottom:162.474567pt;}
.y3f{bottom:175.802167pt;}
.y3a{bottom:206.929339pt;}
.y58{bottom:227.946081pt;}
.y57{bottom:243.939148pt;}
.y56{bottom:259.932081pt;}
.y5f{bottom:274.592396pt;}
.y55{bottom:275.925148pt;}
.y54{bottom:291.918215pt;}
.y5e{bottom:299.914662pt;}
.y53{bottom:307.911148pt;}
.y52{bottom:323.904215pt;}
.y5d{bottom:325.236929pt;}
.y51{bottom:339.897148pt;}
.y5c{bottom:350.559196pt;}
.y50{bottom:355.890348pt;}
.y5b{bottom:367.885062pt;}
.y38{bottom:383.045148pt;}
.y5a{bottom:387.209952pt;}
.y37{bottom:399.038215pt;}
.y59{bottom:401.337098pt;}
.y36{bottom:415.031196pt;}
.y39{bottom:448.740405pt;}
.y64{bottom:629.271100pt;}
.y62{bottom:636.767767pt;}
.y63{bottom:780.371767pt;}
.y61{bottom:795.532033pt;}
.y60{bottom:999.443100pt;}
.y65{bottom:1014.603100pt;}
.y31{bottom:1039.092529pt;}
.y30{bottom:1056.418262pt;}
.y2f{bottom:1073.744081pt;}
.y2d{bottom:1106.164805pt;}
.y23{bottom:1164.867719pt;}
.y2{bottom:1173.384132pt;}
.y4{bottom:1245.144192pt;}
.y21{bottom:1251.664458pt;}
.y17{bottom:1252.057258pt;}
.y3{bottom:1255.806192pt;}
.y16{bottom:1262.719258pt;}
.y20{bottom:1263.659258pt;}
.y1f{bottom:1274.321258pt;}
.y15{bottom:1290.656192pt;}
.y6{bottom:1292.139792pt;}
.y14{bottom:1301.318192pt;}
.y5{bottom:1302.801792pt;}
.y1e{bottom:1309.955658pt;}
.y7{bottom:1311.504725pt;}
.y1d{bottom:1320.617658pt;}
.y13{bottom:1329.255658pt;}
.y12{bottom:1339.916992pt;}
.y1c{bottom:1362.008992pt;}
.y11{bottom:1367.854325pt;}
.y2c{bottom:1370.572939pt;}
.y1b{bottom:1372.671658pt;}
.y22{bottom:1372.758325pt;}
.y10{bottom:1378.515658pt;}
.y1a{bottom:1402.717759pt;}
.yf{bottom:1410.075093pt;}
.y19{bottom:1426.707093pt;}
.ye{bottom:1434.064426pt;}
.y4f{bottom:1438.751948pt;}
.y18{bottom:1442.700426pt;}
.y4e{bottom:1454.743948pt;}
.y4d{bottom:1470.737281pt;}
.y4c{bottom:1486.730615pt;}
.y35{bottom:1488.912529pt;}
.y4b{bottom:1502.723948pt;}
.y34{bottom:1506.237862pt;}
.y4a{bottom:1518.717281pt;}
.y33{bottom:1523.563196pt;}
.y49{bottom:1534.709281pt;}
.y32{bottom:1540.888529pt;}
.y2b{bottom:1574.674272pt;}
.y2a{bottom:1626.335948pt;}
.y29{bottom:1642.329862pt;}
.y28{bottom:1659.654615pt;}
.y27{bottom:1675.647948pt;}
.y26{bottom:1691.641281pt;}
.y25{bottom:1707.634615pt;}
.y24{bottom:1723.627948pt;}
.y2e{bottom:1771.072939pt;}
.yd{bottom:1814.087605pt;}
.yc{bottom:1834.079709pt;}
.yb{bottom:1846.073930pt;}
.ya{bottom:1875.393759pt;}
.y9{bottom:1906.047434pt;}
.y8{bottom:1931.370101pt;}
.h2{height:7.100904pt;}
.h7{height:18.065040pt;}
.h13{height:19.991284pt;}
.hb{height:29.195604pt;}
.h12{height:32.845055pt;}
.hc{height:35.172165pt;}
.h10{height:35.984311pt;}
.h11{height:37.091470pt;}
.h3{height:38.504046pt;}
.hd{height:39.982568pt;}
.he{height:43.980825pt;}
.ha{height:44.480607pt;}
.h9{height:52.758248pt;}
.hf{height:61.551289pt;}
.h8{height:65.122649pt;}
.h14{height:65.690110pt;}
.h4{height:77.674468pt;}
.h6{height:84.900484pt;}
.h5{height:94.333871pt;}
.h1{height:2002.472000pt;}
.h0{height:2002.666667pt;}
.w1{width:1511.126667pt;}
.w0{width:1512.000000pt;}
.x0{left:0.000000pt;}
.x29{left:54.901623pt;}
.x43{left:62.563863pt;}
.x3e{left:72.224943pt;}
.x46{left:84.218023pt;}
.x47{left:100.585824pt;}
.x48{left:102.585645pt;}
.x41{left:140.224731pt;}
.x42{left:148.641168pt;}
.x37{left:192.212974pt;}
.x33{left:243.432747pt;}
.x44{left:245.499794pt;}
.x32{left:305.461317pt;}
.x4a{left:335.615498pt;}
.x4{left:337.173799pt;}
.x5{left:338.253904pt;}
.x38{left:354.207267pt;}
.x45{left:357.707779pt;}
.xa{left:364.544107pt;}
.x3a{left:367.523842pt;}
.x2{left:392.280240pt;}
.x3{left:397.316393pt;}
.x2b{left:405.438684pt;}
.x6{left:426.356542pt;}
.x1{left:427.304107pt;}
.x7{left:448.937358pt;}
.xc{left:478.404071pt;}
.x9{left:504.591344pt;}
.x3b{left:513.537100pt;}
.x3c{left:516.869175pt;}
.x3d{left:576.196239pt;}
.x2c{left:650.950018pt;}
.x2d{left:701.843529pt;}
.x31{left:704.692970pt;}
.x8{left:731.623003pt;}
.xb{left:733.580272pt;}
.x3f{left:747.583767pt;}
.xf{left:788.048147pt;}
.xd{left:792.324407pt;}
.x13{left:794.687542pt;}
.x2e{left:796.559046pt;}
.x12{left:798.362502pt;}
.x30{left:805.937748pt;}
.x39{left:821.503741pt;}
.x10{left:825.732106pt;}
.x11{left:830.125408pt;}
.xe{left:832.379390pt;}
.x14{left:834.680070pt;}
.x40{left:881.723616pt;}
.x2f{left:890.724759pt;}
.x28{left:988.983744pt;}
.x1d{left:996.312433pt;}
.x15{left:997.937846pt;}
.x18{left:1000.156567pt;}
.x1a{left:1001.988842pt;}
.x1c{left:1003.847143pt;}
.x2a{left:1010.442007pt;}
.x49{left:1014.730276pt;}
.x16{left:1029.915468pt;}
.x17{left:1031.340432pt;}
.x1e{left:1032.463429pt;}
.x19{left:1039.659793pt;}
.x1b{left:1043.615841pt;}
.x35{left:1129.372094pt;}
.x34{left:1177.950122pt;}
.x24{left:1195.967181pt;}
.x27{left:1197.575628pt;}
.x1f{left:1198.893829pt;}
.x26{left:1204.259267pt;}
.x22{left:1214.956213pt;}
.x23{left:1219.955925pt;}
.x36{left:1223.706323pt;}
.x20{left:1238.741905pt;}
.x21{left:1241.388816pt;}
.x25{left:1255.268861pt;}
}




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