
    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_073176acbfa136436a36b3c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_eb93b24322eebf31a4d1251a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.761719;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_b60a191d22d948775960502c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.860352;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_575f1b8058d135a3327acdea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_e5c185301698142545f4f3e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3efc06207f9184f69d98b8e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_d30df3344a976557e028dcb3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_7d4bbf8e252bd2cc6abca10a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_da24d909477645e09207e35e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_e459b4ec89fa5945edbc10cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_a108b53af758ebf658205c8d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;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_2361847fffb000afbe2a0472.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;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_985ee251f4696ce42dba06cc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5576ba3eaab33b5ec38ee29f.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_696fecb68f38c5d5ad6ba7d8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7a125c065be9380ac4a30adb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.744000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.440000px;}
.ls1d{letter-spacing:-0.301086px;}
.ls5{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls0{letter-spacing:-0.203400px;}
.ls18{letter-spacing:-0.163145px;}
.ls6{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.072000px;}
.ls1c{letter-spacing:-0.044847px;}
.ls19{letter-spacing:-0.006407px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.006407px;}
.ls16{letter-spacing:0.019220px;}
.ls14{letter-spacing:0.025627px;}
.ls15{letter-spacing:0.032034px;}
.ls17{letter-spacing:0.070474px;}
.ls11{letter-spacing:0.112172px;}
.ls7{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.172982px;}
.ls12{letter-spacing:0.179389px;}
.ls2{letter-spacing:0.252000px;}
.lsf{letter-spacing:0.256200px;}
.lsd{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.339557px;}
.ls4{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.720000px;}
.lse{letter-spacing:50.832000px;}
.lsa{letter-spacing:62.784000px;}
.ls3{letter-spacing:64.224000px;}
.ls9{letter-spacing:74.880000px;}
.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;}
}
.ws3{word-spacing:-27.000000px;}
.ws2{word-spacing:-23.940000px;}
.wsc{word-spacing:-21.060000px;}
.wsb{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.203914px;}
.wsd{word-spacing:-15.226440px;}
.ws8{word-spacing:-13.505760px;}
.ws14{word-spacing:-0.858503px;}
.ws10{word-spacing:-0.336515px;}
.ws15{word-spacing:-0.192202px;}
.ws13{word-spacing:-0.185795px;}
.ws16{word-spacing:-0.179389px;}
.ws12{word-spacing:-0.166575px;}
.ws11{word-spacing:-0.153762px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:11.136000px;}
.wse{word-spacing:35.976000px;}
.ws17{word-spacing:188.768187px;}
._0{margin-left:-1.406987px;}
._1{width:1.089360px;}
._2{width:2.357627px;}
._6{width:5.603971px;}
._5{width:7.488000px;}
._7{width:10.584000px;}
._8{width:12.072000px;}
._3{width:14.448024px;}
._4{width:15.599952px;}
.fc6{color:rgb(0,51,205);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(51,102,0);}
.fc0{color:rgb(0,51,102);}
.fs6{font-size:59.760000px;}
.fsa{font-size:64.067400px;}
.fs2{font-size:66.240000px;}
.fsb{font-size:70.020000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:81.572400px;}
.fs7{font-size:84.240000px;}
.fs8{font-size:93.476400px;}
.fs3{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs0{font-size:156.384000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y71{bottom:7.215000px;}
.y70{bottom:27.015000px;}
.y6f{bottom:46.815000px;}
.y6e{bottom:66.465000px;}
.y3{bottom:77.796000px;}
.yd9{bottom:114.138000px;}
.y35{bottom:118.296000px;}
.y5f{bottom:118.836000px;}
.ya3{bottom:131.436000px;}
.y99{bottom:131.976000px;}
.y34{bottom:138.996000px;}
.y5e{bottom:140.976000px;}
.y1b{bottom:143.136000px;}
.y89{bottom:144.396000px;}
.y98{bottom:152.670000px;}
.y33{bottom:159.690000px;}
.y5d{bottom:163.290000px;}
.y1a{bottom:165.450000px;}
.yc5{bottom:165.990000px;}
.y97{bottom:173.370000px;}
.y32{bottom:180.390000px;}
.y5c{bottom:185.610000px;}
.yc4{bottom:186.690000px;}
.y19{bottom:187.770000px;}
.y96{bottom:194.070000px;}
.y31{bottom:201.090000px;}
.yc3{bottom:207.390000px;}
.y18{bottom:210.090000px;}
.yc2{bottom:228.090000px;}
.ya2{bottom:230.790000px;}
.y95{bottom:235.470000px;}
.y30{bottom:242.310000px;}
.y17{bottom:244.650000px;}
.y94{bottom:256.170000px;}
.y16{bottom:266.790000px;}
.y93{bottom:276.870000px;}
.y6c{bottom:280.290000px;}
.y15{bottom:289.110000px;}
.yc1{bottom:290.190000px;}
.y92{bottom:297.570000px;}
.y6b{bottom:302.430000px;}
.yc0{bottom:310.890000px;}
.y14{bottom:311.430000px;}
.y91{bottom:318.270000px;}
.y6a{bottom:324.750000px;}
.y13{bottom:333.795000px;}
.y90{bottom:339.015000px;}
.y12{bottom:368.355000px;}
.y1{bottom:389.955000px;}
.y43{bottom:444.315000px;}
.y5b{bottom:454.755000px;}
.y42{bottom:465.015000px;}
.y52{bottom:470.055000px;}
.y5a{bottom:476.895000px;}
.yc9{bottom:482.835000px;}
.y41{bottom:485.715000px;}
.yae{bottom:486.435000px;}
.y51{bottom:492.195000px;}
.y59{bottom:499.395000px;}
.yc8{bottom:503.535000px;}
.y40{bottom:506.415000px;}
.yad{bottom:507.135000px;}
.ya1{bottom:512.535000px;}
.y50{bottom:514.515000px;}
.y58{bottom:521.715000px;}
.yc7{bottom:524.235000px;}
.y3f{bottom:527.115000px;}
.yac{bottom:527.835000px;}
.ya0{bottom:533.235000px;}
.y4f{bottom:537.015000px;}
.y6d{bottom:545.460000px;}
.y3e{bottom:547.815000px;}
.yab{bottom:548.535000px;}
.y9f{bottom:553.935000px;}
.y88{bottom:554.655000px;}
.yd7{bottom:559.920340px;}
.yd8{bottom:559.920450px;}
.y3d{bottom:568.515000px;}
.yaa{bottom:569.235000px;}
.y4e{bottom:571.395000px;}
.y9e{bottom:574.635000px;}
.y87{bottom:576.795000px;}
.yd6{bottom:579.637082px;}
.yc6{bottom:586.335000px;}
.y3c{bottom:589.215000px;}
.ya9{bottom:589.935000px;}
.y4d{bottom:593.535000px;}
.y9d{bottom:595.335000px;}
.yd5{bottom:598.088493px;}
.y86{bottom:599.145000px;}
.y3b{bottom:609.945000px;}
.ya8{bottom:610.665000px;}
.yba{bottom:615.885000px;}
.y4c{bottom:616.065000px;}
.y85{bottom:620.025000px;}
.y23{bottom:621.105000px;}
.y3a{bottom:630.645000px;}
.ya7{bottom:631.365000px;}
.yd4{bottom:634.895215px;}
.yb9{bottom:636.585000px;}
.y4b{bottom:638.385000px;}
.y84{bottom:640.725000px;}
.y22{bottom:643.245000px;}
.y39{bottom:651.345000px;}
.ya6{bottom:652.065000px;}
.yd3{bottom:653.426710px;}
.yb8{bottom:657.285000px;}
.y4a{bottom:660.705000px;}
.y83{bottom:661.425000px;}
.y21{bottom:665.565000px;}
.yd2{bottom:671.878121px;}
.yb7{bottom:677.985000px;}
.y82{bottom:682.125000px;}
.ybf{bottom:685.005000px;}
.y38{bottom:685.725000px;}
.y20{bottom:687.885000px;}
.ya5{bottom:693.465000px;}
.yb6{bottom:698.685000px;}
.ybe{bottom:705.705000px;}
.y37{bottom:707.865000px;}
.yd1{bottom:708.684843px;}
.y1f{bottom:710.205000px;}
.ya4{bottom:714.165000px;}
.yb5{bottom:719.385000px;}
.y81{bottom:723.525000px;}
.ybd{bottom:726.405000px;}
.y1e{bottom:732.525000px;}
.y36{bottom:742.065000px;}
.y80{bottom:744.225000px;}
.y8f{bottom:757.185000px;}
.yb4{bottom:761.685000px;}
.y7f{bottom:764.925000px;}
.y11{bottom:768.525000px;}
.y8e{bottom:782.385000px;}
.yd0{bottom:782.570572px;}
.y7e{bottom:785.625000px;}
.ybc{bottom:788.505000px;}
.y10{bottom:790.665000px;}
.ycf{bottom:801.021983px;}
.y69{bottom:806.325000px;}
.yf{bottom:812.985000px;}
.y2f{bottom:816.765000px;}
.yce{bottom:819.473394px;}
.y7d{bottom:827.025000px;}
.y68{bottom:828.645000px;}
.yb3{bottom:829.905000px;}
.ye{bottom:835.305000px;}
.y2e{bottom:839.085000px;}
.y7c{bottom:849.165000px;}
.yb2{bottom:850.605000px;}
.y67{bottom:850.965000px;}
.y2{bottom:851.685000px;}
.ycd{bottom:856.376216px;}
.yd{bottom:857.625000px;}
.y2d{bottom:861.405000px;}
.yb1{bottom:871.350000px;}
.y7b{bottom:871.710000px;}
.y66{bottom:873.330000px;}
.ycc{bottom:874.827628px;}
.yc{bottom:879.990000px;}
.y8d{bottom:883.770000px;}
.yb0{bottom:892.050000px;}
.y65{bottom:895.650000px;}
.y2c{bottom:895.830000px;}
.ycb{bottom:911.730450px;}
.ybb{bottom:912.750000px;}
.yb{bottom:914.550000px;}
.y2b{bottom:917.970000px;}
.y8c{bottom:919.590000px;}
.y7a{bottom:926.790000px;}
.y2a{bottom:940.470000px;}
.y79{bottom:947.490000px;}
.ya{bottom:948.930000px;}
.y29{bottom:962.790000px;}
.y78{bottom:968.190000px;}
.y9{bottom:971.070000px;}
.yaf{bottom:974.850000px;}
.y64{bottom:985.110000px;}
.y8{bottom:993.390000px;}
.y8b{bottom:994.290000px;}
.y9c{bottom:995.550000px;}
.y28{bottom:997.170000px;}
.y49{bottom:1003.470000px;}
.y63{bottom:1007.430000px;}
.y77{bottom:1009.590000px;}
.y9b{bottom:1016.250000px;}
.y8a{bottom:1016.430000px;}
.y27{bottom:1019.490000px;}
.y48{bottom:1025.610000px;}
.y7{bottom:1027.770000px;}
.y76{bottom:1030.290000px;}
.y57{bottom:1036.950000px;}
.y26{bottom:1041.810000px;}
.y62{bottom:1041.990000px;}
.y47{bottom:1047.930000px;}
.y6{bottom:1050.090000px;}
.y75{bottom:1050.990000px;}
.y56{bottom:1057.650000px;}
.y25{bottom:1064.130000px;}
.yca{bottom:1067.520450px;}
.y46{bottom:1070.250000px;}
.y5{bottom:1072.410000px;}
.y74{bottom:1073.130000px;}
.y61{bottom:1076.190000px;}
.y55{bottom:1078.350000px;}
.y73{bottom:1095.450000px;}
.y60{bottom:1098.330000px;}
.y54{bottom:1099.050000px;}
.y45{bottom:1104.810000px;}
.y4{bottom:1109.310000px;}
.y72{bottom:1117.770000px;}
.y1d{bottom:1117.950000px;}
.y53{bottom:1119.750000px;}
.y24{bottom:1134.330000px;}
.y44{bottom:1138.860000px;}
.y1c{bottom:1140.300000px;}
.y9a{bottom:1140.480000px;}
.hd{height:40.764023px;}
.h5{height:45.184219px;}
.h13{height:50.400000px;}
.hf{height:58.651172px;}
.h11{height:66.820296px;}
.h12{height:68.720801px;}
.hb{height:70.628906px;}
.h8{height:70.664062px;}
.h7{height:72.562500px;}
.h9{height:74.004654px;}
.hc{height:80.685000px;}
.he{height:84.898125px;}
.ha{height:96.508125px;}
.h10{height:97.492964px;}
.h6{height:108.843750px;}
.h2{height:156.460359px;}
.h3{height:162.000000px;}
.h4{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:136.642500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w5{width:892.830000px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:10.785000px;}
.x1b{left:104.073000px;}
.x5{left:127.656000px;}
.x4{left:148.896000px;}
.x6{left:154.650000px;}
.x7{left:180.750000px;}
.x8{left:239.985000px;}
.x11{left:270.252551px;}
.x10{left:275.570145px;}
.x19{left:278.997751px;}
.x14{left:298.778561px;}
.xc{left:308.250000px;}
.xf{left:318.415219px;}
.x1a{left:320.850000px;}
.x1{left:344.415000px;}
.xe{left:346.492757px;}
.x18{left:349.007402px;}
.x12{left:353.139750px;}
.x17{left:365.200438px;}
.x15{left:372.392003px;}
.x2{left:376.095000px;}
.x16{left:395.071863px;}
.x13{left:400.934030px;}
.xd{left:408.510000px;}
.xb{left:590.325000px;}
.xa{left:748.770000px;}
.x3{left:757.230000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls1d{letter-spacing:-0.267632pt;}
.ls5{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:-0.180800pt;}
.ls18{letter-spacing:-0.145018pt;}
.ls6{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls1c{letter-spacing:-0.039864pt;}
.ls19{letter-spacing:-0.005695pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.005695pt;}
.ls16{letter-spacing:0.017085pt;}
.ls14{letter-spacing:0.022780pt;}
.ls15{letter-spacing:0.028474pt;}
.ls17{letter-spacing:0.062644pt;}
.ls11{letter-spacing:0.099708pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.153762pt;}
.ls12{letter-spacing:0.159457pt;}
.ls2{letter-spacing:0.224000pt;}
.lsf{letter-spacing:0.227733pt;}
.lsd{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.301829pt;}
.ls4{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.640000pt;}
.lse{letter-spacing:45.184000pt;}
.lsa{letter-spacing:55.808000pt;}
.ls3{letter-spacing:57.088000pt;}
.ls9{letter-spacing:66.560000pt;}
.ws3{word-spacing:-24.000000pt;}
.ws2{word-spacing:-21.280000pt;}
.wsc{word-spacing:-18.720000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.292368pt;}
.wsd{word-spacing:-13.534613pt;}
.ws8{word-spacing:-12.005120pt;}
.ws14{word-spacing:-0.763114pt;}
.ws10{word-spacing:-0.299124pt;}
.ws15{word-spacing:-0.170846pt;}
.ws13{word-spacing:-0.165152pt;}
.ws16{word-spacing:-0.159457pt;}
.ws12{word-spacing:-0.148067pt;}
.ws11{word-spacing:-0.136677pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:9.898667pt;}
.wse{word-spacing:31.978667pt;}
.ws17{word-spacing:167.793944pt;}
._0{margin-left:-1.250655pt;}
._1{width:0.968320pt;}
._2{width:2.095668pt;}
._6{width:4.981308pt;}
._5{width:6.656000pt;}
._7{width:9.408000pt;}
._8{width:10.730667pt;}
._3{width:12.842688pt;}
._4{width:13.866624pt;}
.fs6{font-size:53.120000pt;}
.fsa{font-size:56.948800pt;}
.fs2{font-size:58.880000pt;}
.fsb{font-size:62.240000pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:72.508800pt;}
.fs7{font-size:74.880000pt;}
.fs8{font-size:83.090133pt;}
.fs3{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:139.008000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:6.413333pt;}
.y70{bottom:24.013333pt;}
.y6f{bottom:41.613333pt;}
.y6e{bottom:59.080000pt;}
.y3{bottom:69.152000pt;}
.yd9{bottom:101.456000pt;}
.y35{bottom:105.152000pt;}
.y5f{bottom:105.632000pt;}
.ya3{bottom:116.832000pt;}
.y99{bottom:117.312000pt;}
.y34{bottom:123.552000pt;}
.y5e{bottom:125.312000pt;}
.y1b{bottom:127.232000pt;}
.y89{bottom:128.352000pt;}
.y98{bottom:135.706667pt;}
.y33{bottom:141.946667pt;}
.y5d{bottom:145.146667pt;}
.y1a{bottom:147.066667pt;}
.yc5{bottom:147.546667pt;}
.y97{bottom:154.106667pt;}
.y32{bottom:160.346667pt;}
.y5c{bottom:164.986667pt;}
.yc4{bottom:165.946667pt;}
.y19{bottom:166.906667pt;}
.y96{bottom:172.506667pt;}
.y31{bottom:178.746667pt;}
.yc3{bottom:184.346667pt;}
.y18{bottom:186.746667pt;}
.yc2{bottom:202.746667pt;}
.ya2{bottom:205.146667pt;}
.y95{bottom:209.306667pt;}
.y30{bottom:215.386667pt;}
.y17{bottom:217.466667pt;}
.y94{bottom:227.706667pt;}
.y16{bottom:237.146667pt;}
.y93{bottom:246.106667pt;}
.y6c{bottom:249.146667pt;}
.y15{bottom:256.986667pt;}
.yc1{bottom:257.946667pt;}
.y92{bottom:264.506667pt;}
.y6b{bottom:268.826667pt;}
.yc0{bottom:276.346667pt;}
.y14{bottom:276.826667pt;}
.y91{bottom:282.906667pt;}
.y6a{bottom:288.666667pt;}
.y13{bottom:296.706667pt;}
.y90{bottom:301.346667pt;}
.y12{bottom:327.426667pt;}
.y1{bottom:346.626667pt;}
.y43{bottom:394.946667pt;}
.y5b{bottom:404.226667pt;}
.y42{bottom:413.346667pt;}
.y52{bottom:417.826667pt;}
.y5a{bottom:423.906667pt;}
.yc9{bottom:429.186667pt;}
.y41{bottom:431.746667pt;}
.yae{bottom:432.386667pt;}
.y51{bottom:437.506667pt;}
.y59{bottom:443.906667pt;}
.yc8{bottom:447.586667pt;}
.y40{bottom:450.146667pt;}
.yad{bottom:450.786667pt;}
.ya1{bottom:455.586667pt;}
.y50{bottom:457.346667pt;}
.y58{bottom:463.746667pt;}
.yc7{bottom:465.986667pt;}
.y3f{bottom:468.546667pt;}
.yac{bottom:469.186667pt;}
.ya0{bottom:473.986667pt;}
.y4f{bottom:477.346667pt;}
.y6d{bottom:484.853333pt;}
.y3e{bottom:486.946667pt;}
.yab{bottom:487.586667pt;}
.y9f{bottom:492.386667pt;}
.y88{bottom:493.026667pt;}
.yd7{bottom:497.706969pt;}
.yd8{bottom:497.707067pt;}
.y3d{bottom:505.346667pt;}
.yaa{bottom:505.986667pt;}
.y4e{bottom:507.906667pt;}
.y9e{bottom:510.786667pt;}
.y87{bottom:512.706667pt;}
.yd6{bottom:515.232962pt;}
.yc6{bottom:521.186667pt;}
.y3c{bottom:523.746667pt;}
.ya9{bottom:524.386667pt;}
.y4d{bottom:527.586667pt;}
.y9d{bottom:529.186667pt;}
.yd5{bottom:531.634216pt;}
.y86{bottom:532.573333pt;}
.y3b{bottom:542.173333pt;}
.ya8{bottom:542.813333pt;}
.yba{bottom:547.453333pt;}
.y4c{bottom:547.613333pt;}
.y85{bottom:551.133333pt;}
.y23{bottom:552.093333pt;}
.y3a{bottom:560.573333pt;}
.ya7{bottom:561.213333pt;}
.yd4{bottom:564.351302pt;}
.yb9{bottom:565.853333pt;}
.y4b{bottom:567.453333pt;}
.y84{bottom:569.533333pt;}
.y22{bottom:571.773333pt;}
.y39{bottom:578.973333pt;}
.ya6{bottom:579.613333pt;}
.yd3{bottom:580.823742pt;}
.yb8{bottom:584.253333pt;}
.y4a{bottom:587.293333pt;}
.y83{bottom:587.933333pt;}
.y21{bottom:591.613333pt;}
.yd2{bottom:597.224997pt;}
.yb7{bottom:602.653333pt;}
.y82{bottom:606.333333pt;}
.ybf{bottom:608.893333pt;}
.y38{bottom:609.533333pt;}
.y20{bottom:611.453333pt;}
.ya5{bottom:616.413333pt;}
.yb6{bottom:621.053333pt;}
.ybe{bottom:627.293333pt;}
.y37{bottom:629.213333pt;}
.yd1{bottom:629.942082pt;}
.y1f{bottom:631.293333pt;}
.ya4{bottom:634.813333pt;}
.yb5{bottom:639.453333pt;}
.y81{bottom:643.133333pt;}
.ybd{bottom:645.693333pt;}
.y1e{bottom:651.133333pt;}
.y36{bottom:659.613333pt;}
.y80{bottom:661.533333pt;}
.y8f{bottom:673.053333pt;}
.yb4{bottom:677.053333pt;}
.y7f{bottom:679.933333pt;}
.y11{bottom:683.133333pt;}
.y8e{bottom:695.453333pt;}
.yd0{bottom:695.618286pt;}
.y7e{bottom:698.333333pt;}
.ybc{bottom:700.893333pt;}
.y10{bottom:702.813333pt;}
.ycf{bottom:712.019540pt;}
.y69{bottom:716.733333pt;}
.yf{bottom:722.653333pt;}
.y2f{bottom:726.013333pt;}
.yce{bottom:728.420795pt;}
.y7d{bottom:735.133333pt;}
.y68{bottom:736.573333pt;}
.yb3{bottom:737.693333pt;}
.ye{bottom:742.493333pt;}
.y2e{bottom:745.853333pt;}
.y7c{bottom:754.813333pt;}
.yb2{bottom:756.093333pt;}
.y67{bottom:756.413333pt;}
.y2{bottom:757.053333pt;}
.ycd{bottom:761.223303pt;}
.yd{bottom:762.333333pt;}
.y2d{bottom:765.693333pt;}
.yb1{bottom:774.533333pt;}
.y7b{bottom:774.853333pt;}
.y66{bottom:776.293333pt;}
.ycc{bottom:777.624558pt;}
.yc{bottom:782.213333pt;}
.y8d{bottom:785.573333pt;}
.yb0{bottom:792.933333pt;}
.y65{bottom:796.133333pt;}
.y2c{bottom:796.293333pt;}
.ycb{bottom:810.427067pt;}
.ybb{bottom:811.333333pt;}
.yb{bottom:812.933333pt;}
.y2b{bottom:815.973333pt;}
.y8c{bottom:817.413333pt;}
.y7a{bottom:823.813333pt;}
.y2a{bottom:835.973333pt;}
.y79{bottom:842.213333pt;}
.ya{bottom:843.493333pt;}
.y29{bottom:855.813333pt;}
.y78{bottom:860.613333pt;}
.y9{bottom:863.173333pt;}
.yaf{bottom:866.533333pt;}
.y64{bottom:875.653333pt;}
.y8{bottom:883.013333pt;}
.y8b{bottom:883.813333pt;}
.y9c{bottom:884.933333pt;}
.y28{bottom:886.373333pt;}
.y49{bottom:891.973333pt;}
.y63{bottom:895.493333pt;}
.y77{bottom:897.413333pt;}
.y9b{bottom:903.333333pt;}
.y8a{bottom:903.493333pt;}
.y27{bottom:906.213333pt;}
.y48{bottom:911.653333pt;}
.y7{bottom:913.573333pt;}
.y76{bottom:915.813333pt;}
.y57{bottom:921.733333pt;}
.y26{bottom:926.053333pt;}
.y62{bottom:926.213333pt;}
.y47{bottom:931.493333pt;}
.y6{bottom:933.413333pt;}
.y75{bottom:934.213333pt;}
.y56{bottom:940.133333pt;}
.y25{bottom:945.893333pt;}
.yca{bottom:948.907067pt;}
.y46{bottom:951.333333pt;}
.y5{bottom:953.253333pt;}
.y74{bottom:953.893333pt;}
.y61{bottom:956.613333pt;}
.y55{bottom:958.533333pt;}
.y73{bottom:973.733333pt;}
.y60{bottom:976.293333pt;}
.y54{bottom:976.933333pt;}
.y45{bottom:982.053333pt;}
.y4{bottom:986.053333pt;}
.y72{bottom:993.573333pt;}
.y1d{bottom:993.733333pt;}
.y53{bottom:995.333333pt;}
.y24{bottom:1008.293333pt;}
.y44{bottom:1012.320000pt;}
.y1c{bottom:1013.600000pt;}
.y9a{bottom:1013.760000pt;}
.hd{height:36.234687pt;}
.h5{height:40.163750pt;}
.h13{height:44.800000pt;}
.hf{height:52.134375pt;}
.h11{height:59.395819pt;}
.h12{height:61.085156pt;}
.hb{height:62.781250pt;}
.h8{height:62.812500pt;}
.h7{height:64.500000pt;}
.h9{height:65.781915pt;}
.hc{height:71.720000pt;}
.he{height:75.465000pt;}
.ha{height:85.785000pt;}
.h10{height:86.660413pt;}
.h6{height:96.750000pt;}
.h2{height:139.075875pt;}
.h3{height:144.000000pt;}
.h4{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:121.460000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w5{width:793.626667pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:9.586667pt;}
.x1b{left:92.509333pt;}
.x5{left:113.472000pt;}
.x4{left:132.352000pt;}
.x6{left:137.466667pt;}
.x7{left:160.666667pt;}
.x8{left:213.320000pt;}
.x11{left:240.224490pt;}
.x10{left:244.951240pt;}
.x19{left:247.998001pt;}
.x14{left:265.580943pt;}
.xc{left:274.000000pt;}
.xf{left:283.035750pt;}
.x1a{left:285.200000pt;}
.x1{left:306.146667pt;}
.xe{left:307.993562pt;}
.x18{left:310.228802pt;}
.x12{left:313.902000pt;}
.x17{left:324.622611pt;}
.x15{left:331.015114pt;}
.x2{left:334.306667pt;}
.x16{left:351.174989pt;}
.x13{left:356.385804pt;}
.xd{left:363.120000pt;}
.xb{left:524.733333pt;}
.xa{left:665.573333pt;}
.x3{left:673.093333pt;}
}




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