
    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_0bf819e2eb06bb4fe09d891c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_f431c088903155ab7b06152b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_3707c5eb1a579823d73756ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_fcd8f8d71b3b445de8e4bd69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.949219;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_69ab60e1b68feed0468c8ab4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_3b27e3caaba994a290a078ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_95cf0eeaadcd7100484b4154.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b7a077785b55c5828db7d399.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.030273;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_703054db9220df101482484a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.030273;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_1cd425ec86c90f52a93be694.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_e9f6fe824b950daf0051f247.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e795b798d7dd4d0ba5d695d5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6e1e2b54294d456dd5067c1e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973633;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_8f2b90d26b9fb297af3990d6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973633;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;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-3.066000px;}
.ls12{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.378000px;}
.lsa{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.720000px;}
.ls14{letter-spacing:2.160000px;}
.ls15{letter-spacing:19.440000px;}
.ls0{letter-spacing:198.180000px;}
.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;}
}
.wsd{word-spacing:-18.432000px;}
.ws10{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.228000px;}
.ws2{word-spacing:-15.012000px;}
.wsa{word-spacing:-14.940000px;}
.ws5{word-spacing:-12.240000px;}
.ws4{word-spacing:-12.204000px;}
.wsb{word-spacing:-9.711360px;}
.ws3{word-spacing:-9.437760px;}
.ws0{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
._1d{margin-left:-9.504000px;}
._2{margin-left:-7.888320px;}
._16{margin-left:-6.626880px;}
._7{margin-left:-5.245200px;}
._6{margin-left:-4.208400px;}
._5{margin-left:-2.645280px;}
._3{margin-left:-1.068000px;}
._1{width:1.149120px;}
._15{width:2.174400px;}
._9{width:3.198720px;}
._8{width:4.445280px;}
._e{width:5.562720px;}
._10{width:6.818400px;}
._14{width:8.193600px;}
._d{width:9.209760px;}
._c{width:10.512000px;}
._a{width:11.520000px;}
._b{width:13.032000px;}
._17{width:14.093280px;}
._f{width:15.480000px;}
._13{width:16.572000px;}
._1b{width:19.080000px;}
._1c{width:20.822880px;}
._18{width:22.104000px;}
._11{width:23.472000px;}
._12{width:24.730560px;}
._20{width:26.496000px;}
._1e{width:28.008000px;}
._1a{width:29.384160px;}
._19{width:30.773280px;}
._21{width:31.857600px;}
._22{width:33.102720px;}
._0{width:54.000000px;}
._1f{width:63.288000px;}
._4{width:66.006000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.y8{bottom:18.900000px;}
.y7{bottom:36.180000px;}
.y4{bottom:40.320000px;}
.y6{bottom:53.460000px;}
.yd{bottom:57.420000px;}
.y3{bottom:62.460000px;}
.y5{bottom:70.740000px;}
.yc{bottom:74.016000px;}
.yb{bottom:89.496000px;}
.ya{bottom:104.976000px;}
.y68{bottom:120.816000px;}
.y72{bottom:133.596000px;}
.y38{bottom:137.196000px;}
.y67{bottom:138.096000px;}
.y66{bottom:143.316000px;}
.y71{bottom:154.290000px;}
.y65{bottom:155.370000px;}
.y37{bottom:157.890000px;}
.y64{bottom:160.590000px;}
.y6d{bottom:172.650000px;}
.y63{bottom:173.370000px;}
.y70{bottom:174.990000px;}
.y6c{bottom:177.870000px;}
.y36{bottom:178.590000px;}
.y6b{bottom:190.650000px;}
.y6f{bottom:195.690000px;}
.y35{bottom:199.290000px;}
.y73{bottom:202.710000px;}
.y6e{bottom:216.390000px;}
.y34{bottom:219.990000px;}
.y62{bottom:237.090000px;}
.y33{bottom:240.690000px;}
.y61{bottom:257.790000px;}
.y32{bottom:261.390000px;}
.y60{bottom:278.490000px;}
.y31{bottom:282.090000px;}
.y5f{bottom:299.190000px;}
.y30{bottom:302.790000px;}
.y5e{bottom:319.935000px;}
.y2f{bottom:323.535000px;}
.y5d{bottom:340.635000px;}
.y2e{bottom:344.235000px;}
.y5c{bottom:361.335000px;}
.y2d{bottom:364.935000px;}
.y5b{bottom:382.035000px;}
.y2c{bottom:385.635000px;}
.y5a{bottom:402.735000px;}
.y2b{bottom:406.335000px;}
.y59{bottom:423.435000px;}
.y2a{bottom:427.035000px;}
.y58{bottom:444.135000px;}
.y29{bottom:447.735000px;}
.y57{bottom:464.835000px;}
.y28{bottom:468.435000px;}
.y56{bottom:485.535000px;}
.y27{bottom:489.135000px;}
.y54{bottom:506.235000px;}
.y26{bottom:509.835000px;}
.y55{bottom:513.075000px;}
.y53{bottom:526.935000px;}
.y25{bottom:530.535000px;}
.y52{bottom:547.635000px;}
.y24{bottom:551.235000px;}
.y51{bottom:568.365000px;}
.y23{bottom:571.965000px;}
.y50{bottom:589.065000px;}
.y22{bottom:592.665000px;}
.y4e{bottom:609.765000px;}
.y21{bottom:613.365000px;}
.y4f{bottom:616.605000px;}
.y4d{bottom:630.465000px;}
.y20{bottom:634.065000px;}
.y4c{bottom:651.165000px;}
.y1f{bottom:654.765000px;}
.y4b{bottom:671.865000px;}
.y1e{bottom:675.465000px;}
.y4a{bottom:692.565000px;}
.y1d{bottom:696.165000px;}
.y49{bottom:713.265000px;}
.y1c{bottom:716.865000px;}
.y48{bottom:733.965000px;}
.y1b{bottom:737.565000px;}
.y47{bottom:754.665000px;}
.y1a{bottom:758.265000px;}
.y46{bottom:775.365000px;}
.y19{bottom:778.965000px;}
.y45{bottom:796.065000px;}
.y18{bottom:799.665000px;}
.y44{bottom:816.765000px;}
.y17{bottom:820.410000px;}
.y43{bottom:837.510000px;}
.y16{bottom:841.110000px;}
.y6a{bottom:844.350000px;}
.y42{bottom:858.210000px;}
.y15{bottom:861.810000px;}
.y41{bottom:878.910000px;}
.y14{bottom:882.510000px;}
.y40{bottom:899.610000px;}
.y13{bottom:903.210000px;}
.y3f{bottom:920.310000px;}
.y12{bottom:923.910000px;}
.y3e{bottom:941.010000px;}
.y11{bottom:944.610000px;}
.y3d{bottom:961.710000px;}
.y10{bottom:965.310000px;}
.y3c{bottom:982.410000px;}
.yf{bottom:996.270000px;}
.y3b{bottom:1003.110000px;}
.y3a{bottom:1023.810000px;}
.ye{bottom:1033.170000px;}
.y39{bottom:1044.510000px;}
.y69{bottom:1051.350000px;}
.y9{bottom:1065.210000px;}
.y1{bottom:1081.980000px;}
.hb{height:27.147656px;}
.ha{height:33.683203px;}
.h5{height:40.579102px;}
.hc{height:41.726953px;}
.hd{height:45.549492px;}
.he{height:48.027656px;}
.h2{height:50.273438px;}
.h4{height:50.800781px;}
.h6{height:53.709961px;}
.h9{height:54.246094px;}
.h8{height:54.878906px;}
.h3{height:66.863672px;}
.h1{height:84.780000px;}
.h7{height:101.628633px;}
.h0{height:1188.000000px;}
.w1{width:124.200000px;}
.w3{width:159.690000px;}
.w2{width:390.855000px;}
.w5{width:917.999973px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x7{left:30.240000px;}
.x6{left:34.560000px;}
.x8{left:55.125000px;}
.x9{left:56.205000px;}
.x2{left:98.094000px;}
.x1{left:108.036000px;}
.x13{left:112.895986px;}
.xa{left:139.715986px;}
.x18{left:162.029986px;}
.x3{left:232.230000px;}
.xb{left:248.789986px;}
.x11{left:316.154973px;}
.xf{left:322.274973px;}
.x12{left:324.074986px;}
.x10{left:328.394986px;}
.xe{left:351.974986px;}
.xd{left:360.434986px;}
.xc{left:459.074986px;}
.x14{left:479.774973px;}
.x15{left:485.924986px;}
.x5{left:623.085000px;}
.x16{left:703.229973px;}
.x17{left:709.349986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-2.725333pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.336000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls15{letter-spacing:17.280000pt;}
.ls0{letter-spacing:176.160000pt;}
.wsd{word-spacing:-16.384000pt;}
.ws10{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws1{word-spacing:-13.536000pt;}
.ws2{word-spacing:-13.344000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws5{word-spacing:-10.880000pt;}
.ws4{word-spacing:-10.848000pt;}
.wsb{word-spacing:-8.632320pt;}
.ws3{word-spacing:-8.389120pt;}
.ws0{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
._1d{margin-left:-8.448000pt;}
._2{margin-left:-7.011840pt;}
._16{margin-left:-5.890560pt;}
._7{margin-left:-4.662400pt;}
._6{margin-left:-3.740800pt;}
._5{margin-left:-2.351360pt;}
._3{margin-left:-0.949333pt;}
._1{width:1.021440pt;}
._15{width:1.932800pt;}
._9{width:2.843307pt;}
._8{width:3.951360pt;}
._e{width:4.944640pt;}
._10{width:6.060800pt;}
._14{width:7.283200pt;}
._d{width:8.186453pt;}
._c{width:9.344000pt;}
._a{width:10.240000pt;}
._b{width:11.584000pt;}
._17{width:12.527360pt;}
._f{width:13.760000pt;}
._13{width:14.730667pt;}
._1b{width:16.960000pt;}
._1c{width:18.509227pt;}
._18{width:19.648000pt;}
._11{width:20.864000pt;}
._12{width:21.982720pt;}
._20{width:23.552000pt;}
._1e{width:24.896000pt;}
._1a{width:26.119253pt;}
._19{width:27.354027pt;}
._21{width:28.317867pt;}
._22{width:29.424640pt;}
._0{width:48.000000pt;}
._1f{width:56.256000pt;}
._4{width:58.672000pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.y8{bottom:16.800000pt;}
.y7{bottom:32.160000pt;}
.y4{bottom:35.840000pt;}
.y6{bottom:47.520000pt;}
.yd{bottom:51.040000pt;}
.y3{bottom:55.520000pt;}
.y5{bottom:62.880000pt;}
.yc{bottom:65.792000pt;}
.yb{bottom:79.552000pt;}
.ya{bottom:93.312000pt;}
.y68{bottom:107.392000pt;}
.y72{bottom:118.752000pt;}
.y38{bottom:121.952000pt;}
.y67{bottom:122.752000pt;}
.y66{bottom:127.392000pt;}
.y71{bottom:137.146667pt;}
.y65{bottom:138.106667pt;}
.y37{bottom:140.346667pt;}
.y64{bottom:142.746667pt;}
.y6d{bottom:153.466667pt;}
.y63{bottom:154.106667pt;}
.y70{bottom:155.546667pt;}
.y6c{bottom:158.106667pt;}
.y36{bottom:158.746667pt;}
.y6b{bottom:169.466667pt;}
.y6f{bottom:173.946667pt;}
.y35{bottom:177.146667pt;}
.y73{bottom:180.186667pt;}
.y6e{bottom:192.346667pt;}
.y34{bottom:195.546667pt;}
.y62{bottom:210.746667pt;}
.y33{bottom:213.946667pt;}
.y61{bottom:229.146667pt;}
.y32{bottom:232.346667pt;}
.y60{bottom:247.546667pt;}
.y31{bottom:250.746667pt;}
.y5f{bottom:265.946667pt;}
.y30{bottom:269.146667pt;}
.y5e{bottom:284.386667pt;}
.y2f{bottom:287.586667pt;}
.y5d{bottom:302.786667pt;}
.y2e{bottom:305.986667pt;}
.y5c{bottom:321.186667pt;}
.y2d{bottom:324.386667pt;}
.y5b{bottom:339.586667pt;}
.y2c{bottom:342.786667pt;}
.y5a{bottom:357.986667pt;}
.y2b{bottom:361.186667pt;}
.y59{bottom:376.386667pt;}
.y2a{bottom:379.586667pt;}
.y58{bottom:394.786667pt;}
.y29{bottom:397.986667pt;}
.y57{bottom:413.186667pt;}
.y28{bottom:416.386667pt;}
.y56{bottom:431.586667pt;}
.y27{bottom:434.786667pt;}
.y54{bottom:449.986667pt;}
.y26{bottom:453.186667pt;}
.y55{bottom:456.066667pt;}
.y53{bottom:468.386667pt;}
.y25{bottom:471.586667pt;}
.y52{bottom:486.786667pt;}
.y24{bottom:489.986667pt;}
.y51{bottom:505.213333pt;}
.y23{bottom:508.413333pt;}
.y50{bottom:523.613333pt;}
.y22{bottom:526.813333pt;}
.y4e{bottom:542.013333pt;}
.y21{bottom:545.213333pt;}
.y4f{bottom:548.093333pt;}
.y4d{bottom:560.413333pt;}
.y20{bottom:563.613333pt;}
.y4c{bottom:578.813333pt;}
.y1f{bottom:582.013333pt;}
.y4b{bottom:597.213333pt;}
.y1e{bottom:600.413333pt;}
.y4a{bottom:615.613333pt;}
.y1d{bottom:618.813333pt;}
.y49{bottom:634.013333pt;}
.y1c{bottom:637.213333pt;}
.y48{bottom:652.413333pt;}
.y1b{bottom:655.613333pt;}
.y47{bottom:670.813333pt;}
.y1a{bottom:674.013333pt;}
.y46{bottom:689.213333pt;}
.y19{bottom:692.413333pt;}
.y45{bottom:707.613333pt;}
.y18{bottom:710.813333pt;}
.y44{bottom:726.013333pt;}
.y17{bottom:729.253333pt;}
.y43{bottom:744.453333pt;}
.y16{bottom:747.653333pt;}
.y6a{bottom:750.533333pt;}
.y42{bottom:762.853333pt;}
.y15{bottom:766.053333pt;}
.y41{bottom:781.253333pt;}
.y14{bottom:784.453333pt;}
.y40{bottom:799.653333pt;}
.y13{bottom:802.853333pt;}
.y3f{bottom:818.053333pt;}
.y12{bottom:821.253333pt;}
.y3e{bottom:836.453333pt;}
.y11{bottom:839.653333pt;}
.y3d{bottom:854.853333pt;}
.y10{bottom:858.053333pt;}
.y3c{bottom:873.253333pt;}
.yf{bottom:885.573333pt;}
.y3b{bottom:891.653333pt;}
.y3a{bottom:910.053333pt;}
.ye{bottom:918.373333pt;}
.y39{bottom:928.453333pt;}
.y69{bottom:934.533333pt;}
.y9{bottom:946.853333pt;}
.y1{bottom:961.760000pt;}
.hb{height:24.131250pt;}
.ha{height:29.940625pt;}
.h5{height:36.070312pt;}
.hc{height:37.090625pt;}
.hd{height:40.488438pt;}
.he{height:42.691250pt;}
.h2{height:44.687500pt;}
.h4{height:45.156250pt;}
.h6{height:47.742188pt;}
.h9{height:48.218750pt;}
.h8{height:48.781250pt;}
.h3{height:59.434375pt;}
.h1{height:75.360000pt;}
.h7{height:90.336562pt;}
.h0{height:1056.000000pt;}
.w1{width:110.400000pt;}
.w3{width:141.946667pt;}
.w2{width:347.426667pt;}
.w5{width:815.999976pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x7{left:26.880000pt;}
.x6{left:30.720000pt;}
.x8{left:49.000000pt;}
.x9{left:49.960000pt;}
.x2{left:87.194667pt;}
.x1{left:96.032000pt;}
.x13{left:100.351988pt;}
.xa{left:124.191988pt;}
.x18{left:144.026655pt;}
.x3{left:206.426667pt;}
.xb{left:221.146655pt;}
.x11{left:281.026642pt;}
.xf{left:286.466642pt;}
.x12{left:288.066655pt;}
.x10{left:291.906655pt;}
.xe{left:312.866655pt;}
.xd{left:320.386655pt;}
.xc{left:408.066655pt;}
.x14{left:426.466642pt;}
.x15{left:431.933321pt;}
.x5{left:553.853333pt;}
.x16{left:625.093309pt;}
.x17{left:630.533321pt;}
}




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