
    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_9570d25c21b0d138e3dcd4d5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1f0ec5b058bf8a0ba37c61f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_ef97136c6b70ae9733018d8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.737305;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_acc1e9f39897a8057968df72.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_339c70fba4a6606c67609e63.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761230;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_7bcfe059fc45129e9c4c5605.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.773926;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_02fd87f88ce27427572dbd5a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.920410;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_00f378656bc6a8fb400b8cef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904297;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_07399736443cb911fc76c766.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_662be09eeca41f5fbd1674e2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.871094;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_29c3c8fc054224e0788f70de.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.873535;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);}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-0.342144px;}
.lsb{letter-spacing:-0.326592px;}
.ls20{letter-spacing:-0.310464px;}
.ls16{letter-spacing:-0.297792px;}
.lsa{letter-spacing:-0.278208px;}
.ls1b{letter-spacing:-0.266112px;}
.ls7{letter-spacing:-0.260064px;}
.ls28{letter-spacing:-0.259776px;}
.ls3a{letter-spacing:-0.253440px;}
.ls10{letter-spacing:-0.234432px;}
.ls38{letter-spacing:-0.228096px;}
.lse{letter-spacing:-0.221760px;}
.ls19{letter-spacing:-0.215424px;}
.ls18{letter-spacing:-0.209088px;}
.ls1f{letter-spacing:-0.202752px;}
.ls5{letter-spacing:-0.196416px;}
.ls3{letter-spacing:-0.190080px;}
.ls1c{letter-spacing:-0.183744px;}
.ls1a{letter-spacing:-0.177408px;}
.ls15{letter-spacing:-0.171072px;}
.ls6{letter-spacing:-0.164736px;}
.lsf{letter-spacing:-0.158400px;}
.ls32{letter-spacing:-0.152064px;}
.ls14{letter-spacing:-0.145728px;}
.ls2a{letter-spacing:-0.139392px;}
.ls1{letter-spacing:-0.133056px;}
.ls4{letter-spacing:-0.132480px;}
.ls39{letter-spacing:-0.126720px;}
.ls11{letter-spacing:-0.120384px;}
.ls27{letter-spacing:-0.114048px;}
.ls12{letter-spacing:-0.101376px;}
.lsd{letter-spacing:-0.099360px;}
.ls13{letter-spacing:-0.095040px;}
.ls31{letter-spacing:-0.088704px;}
.lsc{letter-spacing:-0.079488px;}
.ls29{letter-spacing:-0.063360px;}
.ls17{letter-spacing:-0.050688px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.283968px;}
.ls8{letter-spacing:0.292320px;}
.ls21{letter-spacing:0.355536px;}
.ls26{letter-spacing:0.417024px;}
.ls2b{letter-spacing:0.866736px;}
.ls34{letter-spacing:1.493280px;}
.ls24{letter-spacing:2.208960px;}
.ls23{letter-spacing:2.211840px;}
.ls25{letter-spacing:2.370240px;}
.ls2d{letter-spacing:5.226048px;}
.ls30{letter-spacing:6.015600px;}
.ls36{letter-spacing:6.197760px;}
.ls33{letter-spacing:6.805440px;}
.ls2e{letter-spacing:8.017920px;}
.ls3b{letter-spacing:11.499840px;}
.ls1d{letter-spacing:15.484320px;}
.ls2f{letter-spacing:15.753888px;}
.ls35{letter-spacing:16.011360px;}
.ls22{letter-spacing:20.942352px;}
.ls2c{letter-spacing:22.853952px;}
.ls37{letter-spacing:93.318768px;}
.ls0{letter-spacing:1194.007104px;}
.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;}
}
.ws8{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.970240px;}
.wsa{word-spacing:-14.870880px;}
.ws7{word-spacing:-14.841792px;}
.ws1{word-spacing:-14.837760px;}
.ws9{word-spacing:-14.793408px;}
.ws2{word-spacing:-14.319360px;}
.ws11{word-spacing:-14.268672px;}
.wsf{word-spacing:-14.224320px;}
.ws18{word-spacing:-14.217984px;}
.ws12{word-spacing:-14.205312px;}
.ws10{word-spacing:-14.198976px;}
.ws16{word-spacing:-14.186304px;}
.ws14{word-spacing:-14.173632px;}
.ws3{word-spacing:-14.154624px;}
.ws1a{word-spacing:-14.148288px;}
.ws0{word-spacing:-14.129280px;}
.wsd{word-spacing:-14.122944px;}
.ws1b{word-spacing:-14.110272px;}
.ws15{word-spacing:-14.103936px;}
.wsc{word-spacing:-14.097600px;}
.ws17{word-spacing:-14.091264px;}
.ws13{word-spacing:-14.059584px;}
.ws19{word-spacing:-14.053248px;}
.ws5{word-spacing:-0.060480px;}
.wse{word-spacing:0.000000px;}
.ws4{word-spacing:0.199584px;}
.ws6{word-spacing:0.217728px;}
._1b{margin-left:-2.950848px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._9{width:2.027520px;}
._b{width:3.864960px;}
._a{width:5.068800px;}
._4{width:6.145920px;}
._3{width:7.159680px;}
._8{width:8.616960px;}
._c{width:10.517760px;}
._10{width:11.816640px;}
._5{width:12.893760px;}
._7{width:15.459840px;}
._6{width:16.473600px;}
._11{width:18.437760px;}
._d{width:19.463040px;}
._e{width:20.615472px;}
._12{width:21.638592px;}
._13{width:23.443200px;}
._19{width:26.357760px;}
._f{width:27.434880px;}
._18{width:34.411392px;}
._17{width:35.544960px;}
._1a{width:43.148160px;}
._16{width:57.720960px;}
._15{width:93.772800px;}
._14{width:212.129280px;}
._1c{width:255.214080px;}
._1{width:2492.960832px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(31,78,121);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.480000px;}
.fs0{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y2{bottom:71.226150px;}
.y6d{bottom:103.626150px;}
.y35{bottom:112.986150px;}
.y6c{bottom:122.706150px;}
.y34{bottom:132.066150px;}
.y6b{bottom:142.146150px;}
.y33{bottom:151.146150px;}
.y6a{bottom:161.226150px;}
.y32{bottom:170.586150px;}
.y69{bottom:180.306150px;}
.y31{bottom:189.666150px;}
.y68{bottom:199.746150px;}
.y30{bottom:209.106150px;}
.y67{bottom:218.826150px;}
.y2f{bottom:228.186150px;}
.y66{bottom:238.266150px;}
.y2e{bottom:247.266150px;}
.y65{bottom:257.346150px;}
.y2d{bottom:266.706150px;}
.y64{bottom:276.426150px;}
.y2c{bottom:285.786150px;}
.y63{bottom:295.866150px;}
.y2b{bottom:305.226150px;}
.y62{bottom:314.946150px;}
.y2a{bottom:324.306150px;}
.y61{bottom:334.386150px;}
.y29{bottom:343.386150px;}
.y60{bottom:353.466150px;}
.y28{bottom:362.826150px;}
.y5f{bottom:372.546150px;}
.y27{bottom:381.906150px;}
.y5e{bottom:391.986150px;}
.y26{bottom:401.346150px;}
.y5d{bottom:411.066150px;}
.y25{bottom:420.426150px;}
.y5c{bottom:430.506150px;}
.y24{bottom:439.866150px;}
.y5b{bottom:449.586150px;}
.y23{bottom:458.946150px;}
.y5a{bottom:468.666150px;}
.y22{bottom:478.026150px;}
.y59{bottom:488.106150px;}
.y21{bottom:497.466150px;}
.y58{bottom:507.186150px;}
.y20{bottom:516.546150px;}
.y57{bottom:526.626150px;}
.y1f{bottom:535.986150px;}
.y56{bottom:545.706150px;}
.y1e{bottom:555.066150px;}
.y55{bottom:564.786150px;}
.y1d{bottom:575.226150px;}
.y54{bottom:584.226150px;}
.y1c{bottom:594.306150px;}
.y53{bottom:603.306150px;}
.y1b{bottom:613.746150px;}
.y52{bottom:622.746150px;}
.y1a{bottom:632.826150px;}
.y51{bottom:641.826150px;}
.y19{bottom:652.266150px;}
.y50{bottom:660.906150px;}
.y18{bottom:671.346150px;}
.y4f{bottom:680.346150px;}
.y17{bottom:690.426150px;}
.y4e{bottom:699.426150px;}
.y16{bottom:709.866150px;}
.y4d{bottom:718.866150px;}
.y15{bottom:728.946150px;}
.y4c{bottom:737.946150px;}
.y14{bottom:748.386150px;}
.y4b{bottom:757.386150px;}
.y13{bottom:767.466150px;}
.y4a{bottom:776.466150px;}
.y12{bottom:786.546150px;}
.y49{bottom:795.546150px;}
.y11{bottom:805.986150px;}
.y48{bottom:814.986150px;}
.y10{bottom:825.066150px;}
.y47{bottom:834.066150px;}
.yf{bottom:844.506150px;}
.y46{bottom:853.506150px;}
.ye{bottom:863.586150px;}
.y45{bottom:872.586150px;}
.yd{bottom:882.666150px;}
.y44{bottom:891.666150px;}
.yc{bottom:902.826150px;}
.y43{bottom:911.106150px;}
.yb{bottom:922.986150px;}
.y42{bottom:930.186150px;}
.y41{bottom:949.626150px;}
.ya{bottom:957.546150px;}
.y40{bottom:968.706150px;}
.y9{bottom:976.266150px;}
.y3f{bottom:987.786150px;}
.y8{bottom:996.426150px;}
.y3e{bottom:1007.226150px;}
.y7{bottom:1021.986150px;}
.y3d{bottom:1026.306150px;}
.y3c{bottom:1045.746150px;}
.y6{bottom:1046.466150px;}
.y3b{bottom:1064.826150px;}
.y5{bottom:1066.626150px;}
.y3a{bottom:1083.906150px;}
.y4{bottom:1086.066150px;}
.y3{bottom:1100.826150px;}
.y39{bottom:1103.346150px;}
.y38{bottom:1122.426150px;}
.y37{bottom:1141.866150px;}
.y36{bottom:1160.946150px;}
.y1{bottom:1193.346150px;}
.h8{height:43.900313px;}
.h9{height:44.055000px;}
.h4{height:44.149219px;}
.h7{height:46.004063px;}
.h3{height:47.545313px;}
.h2{height:52.253438px;}
.h6{height:54.928125px;}
.h5{height:61.987500px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w0{width:892.913250px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.328406px;}
.x7{left:100.762362px;}
.x5{left:106.553250px;}
.x6{left:144.248814px;}
.x3{left:181.433142px;}
.x9{left:251.370270px;}
.x2{left:434.246310px;}
.xa{left:540.643950px;}
.x4{left:615.008070px;}
.x8{left:637.203510px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.304128pt;}
.lsb{letter-spacing:-0.290304pt;}
.ls20{letter-spacing:-0.275968pt;}
.ls16{letter-spacing:-0.264704pt;}
.lsa{letter-spacing:-0.247296pt;}
.ls1b{letter-spacing:-0.236544pt;}
.ls7{letter-spacing:-0.231168pt;}
.ls28{letter-spacing:-0.230912pt;}
.ls3a{letter-spacing:-0.225280pt;}
.ls10{letter-spacing:-0.208384pt;}
.ls38{letter-spacing:-0.202752pt;}
.lse{letter-spacing:-0.197120pt;}
.ls19{letter-spacing:-0.191488pt;}
.ls18{letter-spacing:-0.185856pt;}
.ls1f{letter-spacing:-0.180224pt;}
.ls5{letter-spacing:-0.174592pt;}
.ls3{letter-spacing:-0.168960pt;}
.ls1c{letter-spacing:-0.163328pt;}
.ls1a{letter-spacing:-0.157696pt;}
.ls15{letter-spacing:-0.152064pt;}
.ls6{letter-spacing:-0.146432pt;}
.lsf{letter-spacing:-0.140800pt;}
.ls32{letter-spacing:-0.135168pt;}
.ls14{letter-spacing:-0.129536pt;}
.ls2a{letter-spacing:-0.123904pt;}
.ls1{letter-spacing:-0.118272pt;}
.ls4{letter-spacing:-0.117760pt;}
.ls39{letter-spacing:-0.112640pt;}
.ls11{letter-spacing:-0.107008pt;}
.ls27{letter-spacing:-0.101376pt;}
.ls12{letter-spacing:-0.090112pt;}
.lsd{letter-spacing:-0.088320pt;}
.ls13{letter-spacing:-0.084480pt;}
.ls31{letter-spacing:-0.078848pt;}
.lsc{letter-spacing:-0.070656pt;}
.ls29{letter-spacing:-0.056320pt;}
.ls17{letter-spacing:-0.045056pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.252416pt;}
.ls8{letter-spacing:0.259840pt;}
.ls21{letter-spacing:0.316032pt;}
.ls26{letter-spacing:0.370688pt;}
.ls2b{letter-spacing:0.770432pt;}
.ls34{letter-spacing:1.327360pt;}
.ls24{letter-spacing:1.963520pt;}
.ls23{letter-spacing:1.966080pt;}
.ls25{letter-spacing:2.106880pt;}
.ls2d{letter-spacing:4.645376pt;}
.ls30{letter-spacing:5.347200pt;}
.ls36{letter-spacing:5.509120pt;}
.ls33{letter-spacing:6.049280pt;}
.ls2e{letter-spacing:7.127040pt;}
.ls3b{letter-spacing:10.222080pt;}
.ls1d{letter-spacing:13.763840pt;}
.ls2f{letter-spacing:14.003456pt;}
.ls35{letter-spacing:14.232320pt;}
.ls22{letter-spacing:18.615424pt;}
.ls2c{letter-spacing:20.314624pt;}
.ls37{letter-spacing:82.950016pt;}
.ls0{letter-spacing:1061.339648pt;}
.ws8{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.306880pt;}
.wsa{word-spacing:-13.218560pt;}
.ws7{word-spacing:-13.192704pt;}
.ws1{word-spacing:-13.189120pt;}
.ws9{word-spacing:-13.149696pt;}
.ws2{word-spacing:-12.728320pt;}
.ws11{word-spacing:-12.683264pt;}
.wsf{word-spacing:-12.643840pt;}
.ws18{word-spacing:-12.638208pt;}
.ws12{word-spacing:-12.626944pt;}
.ws10{word-spacing:-12.621312pt;}
.ws16{word-spacing:-12.610048pt;}
.ws14{word-spacing:-12.598784pt;}
.ws3{word-spacing:-12.581888pt;}
.ws1a{word-spacing:-12.576256pt;}
.ws0{word-spacing:-12.559360pt;}
.wsd{word-spacing:-12.553728pt;}
.ws1b{word-spacing:-12.542464pt;}
.ws15{word-spacing:-12.536832pt;}
.wsc{word-spacing:-12.531200pt;}
.ws17{word-spacing:-12.525568pt;}
.ws13{word-spacing:-12.497408pt;}
.ws19{word-spacing:-12.491776pt;}
.ws5{word-spacing:-0.053760pt;}
.wse{word-spacing:0.000000pt;}
.ws4{word-spacing:0.177408pt;}
.ws6{word-spacing:0.193536pt;}
._1b{margin-left:-2.622976pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._9{width:1.802240pt;}
._b{width:3.435520pt;}
._a{width:4.505600pt;}
._4{width:5.463040pt;}
._3{width:6.364160pt;}
._8{width:7.659520pt;}
._c{width:9.349120pt;}
._10{width:10.503680pt;}
._5{width:11.461120pt;}
._7{width:13.742080pt;}
._6{width:14.643200pt;}
._11{width:16.389120pt;}
._d{width:17.300480pt;}
._e{width:18.324864pt;}
._12{width:19.234304pt;}
._13{width:20.838400pt;}
._19{width:23.429120pt;}
._f{width:24.386560pt;}
._18{width:30.587904pt;}
._17{width:31.595520pt;}
._1a{width:38.353920pt;}
._16{width:51.307520pt;}
._15{width:83.353600pt;}
._14{width:188.559360pt;}
._1c{width:226.856960pt;}
._1{width:2215.965184pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:63.312133pt;}
.y6d{bottom:92.112133pt;}
.y35{bottom:100.432133pt;}
.y6c{bottom:109.072133pt;}
.y34{bottom:117.392133pt;}
.y6b{bottom:126.352133pt;}
.y33{bottom:134.352133pt;}
.y6a{bottom:143.312133pt;}
.y32{bottom:151.632133pt;}
.y69{bottom:160.272133pt;}
.y31{bottom:168.592133pt;}
.y68{bottom:177.552133pt;}
.y30{bottom:185.872133pt;}
.y67{bottom:194.512133pt;}
.y2f{bottom:202.832133pt;}
.y66{bottom:211.792133pt;}
.y2e{bottom:219.792133pt;}
.y65{bottom:228.752133pt;}
.y2d{bottom:237.072133pt;}
.y64{bottom:245.712133pt;}
.y2c{bottom:254.032133pt;}
.y63{bottom:262.992133pt;}
.y2b{bottom:271.312133pt;}
.y62{bottom:279.952133pt;}
.y2a{bottom:288.272133pt;}
.y61{bottom:297.232133pt;}
.y29{bottom:305.232133pt;}
.y60{bottom:314.192133pt;}
.y28{bottom:322.512133pt;}
.y5f{bottom:331.152133pt;}
.y27{bottom:339.472133pt;}
.y5e{bottom:348.432133pt;}
.y26{bottom:356.752133pt;}
.y5d{bottom:365.392133pt;}
.y25{bottom:373.712133pt;}
.y5c{bottom:382.672133pt;}
.y24{bottom:390.992133pt;}
.y5b{bottom:399.632133pt;}
.y23{bottom:407.952133pt;}
.y5a{bottom:416.592133pt;}
.y22{bottom:424.912133pt;}
.y59{bottom:433.872133pt;}
.y21{bottom:442.192133pt;}
.y58{bottom:450.832133pt;}
.y20{bottom:459.152133pt;}
.y57{bottom:468.112133pt;}
.y1f{bottom:476.432133pt;}
.y56{bottom:485.072133pt;}
.y1e{bottom:493.392133pt;}
.y55{bottom:502.032133pt;}
.y1d{bottom:511.312133pt;}
.y54{bottom:519.312133pt;}
.y1c{bottom:528.272133pt;}
.y53{bottom:536.272133pt;}
.y1b{bottom:545.552133pt;}
.y52{bottom:553.552133pt;}
.y1a{bottom:562.512133pt;}
.y51{bottom:570.512133pt;}
.y19{bottom:579.792133pt;}
.y50{bottom:587.472133pt;}
.y18{bottom:596.752133pt;}
.y4f{bottom:604.752133pt;}
.y17{bottom:613.712133pt;}
.y4e{bottom:621.712133pt;}
.y16{bottom:630.992133pt;}
.y4d{bottom:638.992133pt;}
.y15{bottom:647.952133pt;}
.y4c{bottom:655.952133pt;}
.y14{bottom:665.232133pt;}
.y4b{bottom:673.232133pt;}
.y13{bottom:682.192133pt;}
.y4a{bottom:690.192133pt;}
.y12{bottom:699.152133pt;}
.y49{bottom:707.152133pt;}
.y11{bottom:716.432133pt;}
.y48{bottom:724.432133pt;}
.y10{bottom:733.392133pt;}
.y47{bottom:741.392133pt;}
.yf{bottom:750.672133pt;}
.y46{bottom:758.672133pt;}
.ye{bottom:767.632133pt;}
.y45{bottom:775.632133pt;}
.yd{bottom:784.592133pt;}
.y44{bottom:792.592133pt;}
.yc{bottom:802.512133pt;}
.y43{bottom:809.872133pt;}
.yb{bottom:820.432133pt;}
.y42{bottom:826.832133pt;}
.y41{bottom:844.112133pt;}
.ya{bottom:851.152133pt;}
.y40{bottom:861.072133pt;}
.y9{bottom:867.792133pt;}
.y3f{bottom:878.032133pt;}
.y8{bottom:885.712133pt;}
.y3e{bottom:895.312133pt;}
.y7{bottom:908.432133pt;}
.y3d{bottom:912.272133pt;}
.y3c{bottom:929.552133pt;}
.y6{bottom:930.192133pt;}
.y3b{bottom:946.512133pt;}
.y5{bottom:948.112133pt;}
.y3a{bottom:963.472133pt;}
.y4{bottom:965.392133pt;}
.y3{bottom:978.512133pt;}
.y39{bottom:980.752133pt;}
.y38{bottom:997.712133pt;}
.y37{bottom:1014.992133pt;}
.y36{bottom:1031.952133pt;}
.y1{bottom:1060.752133pt;}
.h8{height:39.022500pt;}
.h9{height:39.160000pt;}
.h4{height:39.243750pt;}
.h7{height:40.892500pt;}
.h3{height:42.262500pt;}
.h2{height:46.447500pt;}
.h6{height:48.825000pt;}
.h5{height:55.100000pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.847472pt;}
.x7{left:89.566544pt;}
.x5{left:94.714000pt;}
.x6{left:128.221168pt;}
.x3{left:161.273904pt;}
.x9{left:223.440240pt;}
.x2{left:385.996720pt;}
.xa{left:480.572400pt;}
.x4{left:546.673840pt;}
.x8{left:566.403120pt;}
}




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