
    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_f9e190c63da9a100a3ae5795.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_dbf8efeb53da9751ffcf89f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.783691;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_3bb228d56a3868c92cf7b314.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-54.000000px;}
.v7{vertical-align:-44.640000px;}
.v3{vertical-align:-4.440000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.440000px;}
.v4{vertical-align:3.300000px;}
.v5{vertical-align:18.720000px;}
.v8{vertical-align:54.000000px;}
.v1{vertical-align:63.360000px;}
.ls18{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.072600px;}
.ls15{letter-spacing:-0.061800px;}
.ls16{letter-spacing:-0.000006px;}
.ls10{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.020880px;}
.ls17{letter-spacing:0.094800px;}
.ls12{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.293040px;}
.ls14{letter-spacing:0.360000px;}
.lsd{letter-spacing:34.740000px;}
.ls4{letter-spacing:34.857504px;}
.ls6{letter-spacing:34.920000px;}
.lse{letter-spacing:35.300880px;}
.lsb{letter-spacing:35.460000px;}
.ls7{letter-spacing:35.640000px;}
.lsc{letter-spacing:36.020880px;}
.lsf{letter-spacing:48.260880px;}
.lsa{letter-spacing:74.520000px;}
.ls2{letter-spacing:95.940000px;}
.ls8{letter-spacing:152.976000px;}
.ls9{letter-spacing:153.000000px;}
.ls5{letter-spacing:191.973504px;}
.ls3{letter-spacing:192.036000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc2{text-shadow:-0.015em 0 rgb(116,76,112),0 0.015em rgb(116,76,112),0.015em 0 rgb(116,76,112),0 -0.015em  rgb(116,76,112);}
.sc1{text-shadow:-0.015em 0 rgb(68,44,65),0 0.015em rgb(68,44,65),0.015em 0 rgb(68,44,65),0 -0.015em  rgb(68,44,65);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(116,76,112);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(68,44,65);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-70.200000px;}
.ws19{word-spacing:-41.091600px;}
.ws11{word-spacing:-35.280000px;}
.ws2c{word-spacing:-35.128080px;}
.ws2{word-spacing:-35.100000px;}
.wsb{word-spacing:-34.920000px;}
.ws2f{word-spacing:-34.560000px;}
.ws1{word-spacing:-27.237600px;}
.ws26{word-spacing:-4.680000px;}
.ws27{word-spacing:-3.060000px;}
.wsa{word-spacing:-1.800000px;}
.ws28{word-spacing:-1.620000px;}
.ws8{word-spacing:-0.900000px;}
.ws2a{word-spacing:-0.745056px;}
.ws1a{word-spacing:-0.540000px;}
.ws21{word-spacing:-0.360000px;}
.ws14{word-spacing:-0.180000px;}
.ws2b{word-spacing:-0.123048px;}
.ws6{word-spacing:0.000000px;}
.ws9{word-spacing:0.360000px;}
.wsd{word-spacing:0.720000px;}
.ws25{word-spacing:1.020000px;}
.ws17{word-spacing:1.440000px;}
.ws7{word-spacing:1.560000px;}
.ws10{word-spacing:3.960000px;}
.ws29{word-spacing:5.580000px;}
.ws23{word-spacing:10.980000px;}
.ws2d{word-spacing:12.960000px;}
.ws2e{word-spacing:13.320000px;}
.ws15{word-spacing:25.920000px;}
.ws16{word-spacing:26.100017px;}
.ws1b{word-spacing:28.620000px;}
.ws1e{word-spacing:43.740000px;}
.ws1d{word-spacing:44.820000px;}
.ws5{word-spacing:59.940000px;}
.ws3{word-spacing:60.840000px;}
.ws4{word-spacing:61.200000px;}
.wsc{word-spacing:84.600000px;}
.ws20{word-spacing:89.280000px;}
.ws1f{word-spacing:90.540000px;}
.ws1c{word-spacing:91.800000px;}
.ws13{word-spacing:139.320000px;}
.ws12{word-spacing:150.660000px;}
.ws24{word-spacing:209.100000px;}
.ws22{word-spacing:274.080000px;}
.wsf{word-spacing:463.109472px;}
.wse{word-spacing:463.881960px;}
.ws18{word-spacing:2474.820000px;}
._3{margin-left:-5.332560px;}
._2{margin-left:-3.960000px;}
._1{margin-left:-2.520000px;}
._0{margin-left:-1.080000px;}
._4{width:1.255680px;}
._6{width:2.280000px;}
._5{width:3.368640px;}
._10{width:31.860000px;}
._b{width:34.564320px;}
._a{width:35.820000px;}
._c{width:37.980000px;}
._12{width:49.500000px;}
._9{width:70.380000px;}
._8{width:96.424320px;}
._11{width:147.060000px;}
._d{width:2232.600000px;}
._7{width:2390.284320px;}
._e{width:2720.639040px;}
._f{width:3203.964000px;}
.fc4{color:transparent;}
.fc1{color:rgb(68,44,65);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(116,76,112);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:120.240000px;}
.fs0{font-size:131.760000px;}
.fs5{font-size:139.680000px;}
.fs7{font-size:180.000000px;}
.fs8{font-size:180.144000px;}
.fs4{font-size:210.240000px;}
.fs1{font-size:360.000000px;}
.fs2{font-size:360.144000px;}
.fs3{font-size:419.760000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:397.080000px;}
.y59{bottom:417.030000px;}
.y5b{bottom:451.080000px;}
.y55{bottom:506.490000px;}
.y5a{bottom:529.530000px;}
.y54{bottom:560.490000px;}
.y58{bottom:571.650000px;}
.y53{bottom:614.490000px;}
.y57{bottom:625.830000px;}
.y52{bottom:668.490000px;}
.y56{bottom:679.830000px;}
.y50{bottom:703.905000px;}
.yb{bottom:748.230000px;}
.y4f{bottom:757.905000px;}
.y4e{bottom:811.905000px;}
.y4d{bottom:865.905000px;}
.y4c{bottom:919.950000px;}
.y49{bottom:944.895000px;}
.y46{bottom:949.395000px;}
.y48{bottom:998.715000px;}
.y43{bottom:998.895000px;}
.y45{bottom:1003.215000px;}
.y47{bottom:1052.715000px;}
.y42{bottom:1052.895000px;}
.y44{bottom:1057.215000px;}
.y5e{bottom:1475.535000px;}
.y4b{bottom:1549.620000px;}
.y4a{bottom:1603.800000px;}
.y27{bottom:2149.920000px;}
.y5d{bottom:2179.155000px;}
.ya{bottom:2234.370000px;}
.y26{bottom:2474.565000px;}
.y25{bottom:2481.015000px;}
.y1e{bottom:2505.165000px;}
.y24{bottom:2535.015000px;}
.y19{bottom:2553.990000px;}
.y18{bottom:2607.990000px;}
.y17{bottom:2661.990000px;}
.y10{bottom:2698.020000px;}
.y23{bottom:2707.845000px;}
.y1d{bottom:2709.285000px;}
.y16{bottom:2716.020000px;}
.y22{bottom:2761.845000px;}
.y1c{bottom:2763.330000px;}
.y15{bottom:2770.020000px;}
.y14{bottom:2824.020000px;}
.y13{bottom:2878.020000px;}
.y21{bottom:2917.980000px;}
.y1b{bottom:2926.650000px;}
.y12{bottom:2941.845000px;}
.y20{bottom:2971.980000px;}
.y11{bottom:2977.845000px;}
.y1a{bottom:2980.650000px;}
.y1f{bottom:3025.980000px;}
.y28{bottom:3122.895000px;}
.y4{bottom:3226.605000px;}
.y40{bottom:3453.450000px;}
.ye{bottom:3500.280000px;}
.y3f{bottom:3507.450000px;}
.yd{bottom:3554.100000px;}
.y3e{bottom:3561.450000px;}
.y3d{bottom:3615.450000px;}
.y34{bottom:3668.250000px;}
.y2e{bottom:3668.295000px;}
.y3a{bottom:3668.505000px;}
.y3c{bottom:3669.450000px;}
.y33{bottom:3722.250000px;}
.y2d{bottom:3722.295000px;}
.y39{bottom:3722.505000px;}
.y3b{bottom:3723.450000px;}
.y32{bottom:3776.250000px;}
.y2c{bottom:3776.295000px;}
.y38{bottom:3776.505000px;}
.y31{bottom:3830.250000px;}
.y2b{bottom:3830.295000px;}
.y37{bottom:3830.505000px;}
.y30{bottom:3884.250000px;}
.y2a{bottom:3884.295000px;}
.y36{bottom:3884.505000px;}
.y2f{bottom:3938.250000px;}
.y29{bottom:3938.295000px;}
.y35{bottom:3938.505000px;}
.y1{bottom:3951.360000px;}
.yf{bottom:3981.810000px;}
.yc{bottom:4233.345000px;}
.y2{bottom:4248.570000px;}
.y41{bottom:4296.930000px;}
.y3{bottom:4373.100000px;}
.y51{bottom:4378.035000px;}
.y9{bottom:4610.130000px;}
.y8{bottom:4664.130000px;}
.y7{bottom:4706.430000px;}
.y6{bottom:4782.210000px;}
.y5{bottom:4908.210000px;}
.h7{height:88.066406px;}
.h2{height:96.503906px;}
.h8{height:131.835938px;}
.ha{height:131.941406px;}
.h9{height:137.812500px;}
.hd{height:142.066406px;}
.hb{height:153.855938px;}
.hc{height:156.144375px;}
.h6{height:165.664687px;}
.h3{height:263.671875px;}
.h4{height:263.777344px;}
.h5{height:307.441406px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x34{left:113.435947px;}
.x12{left:129.275947px;}
.x13{left:138.095947px;}
.x5{left:139.751947px;}
.xd{left:174.239947px;}
.xc{left:183.059947px;}
.x4{left:187.949947px;}
.xa{left:190.154947px;}
.x2{left:196.094947px;}
.x2a{left:237.389947px;}
.x1c{left:241.769947px;}
.x2b{left:273.029947px;}
.x2c{left:303.989947px;}
.x1a{left:435.809947px;}
.x35{left:446.294947px;}
.x1b{left:451.289947px;}
.x11{left:453.419947px;}
.x10{left:457.739947px;}
.x19{left:513.539947px;}
.x1e{left:523.649947px;}
.x1f{left:577.649947px;}
.x38{left:615.524947px;}
.x1d{left:634.709947px;}
.x8{left:669.164947px;}
.x6{left:749.444947px;}
.x9{left:800.744947px;}
.x7{left:857.084947px;}
.x21{left:944.789947px;}
.x2d{left:948.629947px;}
.x2e{left:990.569947px;}
.x22{left:998.789947px;}
.x20{left:1014.629947px;}
.xf{left:1022.789947px;}
.x2f{left:1071.029947px;}
.x37{left:1444.244947px;}
.x3{left:1519.379947px;}
.x27{left:1649.159947px;}
.x24{left:1657.439947px;}
.x23{left:1666.079947px;}
.x14{left:1680.734947px;}
.x25{left:1711.439947px;}
.x36{left:1775.984947px;}
.x28{left:1791.149947px;}
.x15{left:1859.729947px;}
.xb{left:1872.104947px;}
.x29{left:1935.689947px;}
.xe{left:2214.434947px;}
.x1{left:2441.489947px;}
.x32{left:2597.684947px;}
.x30{left:2648.339947px;}
.x33{left:2651.684947px;}
.x39{left:2654.489947px;}
.x26{left:2678.249947px;}
.x18{left:2772.209947px;}
.x16{left:2774.669947px;}
.x17{left:2796.299947px;}
.x3a{left:2890.949947px;}
.x3b{left:2925.329947px;}
.x31{left:2948.504947px;}
@media print{
.v2{vertical-align:-48.000000pt;}
.v7{vertical-align:-39.680000pt;}
.v3{vertical-align:-3.946667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.280000pt;}
.v4{vertical-align:2.933333pt;}
.v5{vertical-align:16.640000pt;}
.v8{vertical-align:48.000000pt;}
.v1{vertical-align:56.320000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.064533pt;}
.ls15{letter-spacing:-0.054933pt;}
.ls16{letter-spacing:-0.000005pt;}
.ls10{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.018560pt;}
.ls17{letter-spacing:0.084267pt;}
.ls12{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.260480pt;}
.ls14{letter-spacing:0.320000pt;}
.lsd{letter-spacing:30.880000pt;}
.ls4{letter-spacing:30.984448pt;}
.ls6{letter-spacing:31.040000pt;}
.lse{letter-spacing:31.378560pt;}
.lsb{letter-spacing:31.520000pt;}
.ls7{letter-spacing:31.680000pt;}
.lsc{letter-spacing:32.018560pt;}
.lsf{letter-spacing:42.898560pt;}
.lsa{letter-spacing:66.240000pt;}
.ls2{letter-spacing:85.280000pt;}
.ls8{letter-spacing:135.978667pt;}
.ls9{letter-spacing:136.000000pt;}
.ls5{letter-spacing:170.643115pt;}
.ls3{letter-spacing:170.698667pt;}
.ws0{word-spacing:-62.400000pt;}
.ws19{word-spacing:-36.525867pt;}
.ws11{word-spacing:-31.360000pt;}
.ws2c{word-spacing:-31.224960pt;}
.ws2{word-spacing:-31.200000pt;}
.wsb{word-spacing:-31.040000pt;}
.ws2f{word-spacing:-30.720000pt;}
.ws1{word-spacing:-24.211200pt;}
.ws26{word-spacing:-4.160000pt;}
.ws27{word-spacing:-2.720000pt;}
.wsa{word-spacing:-1.600000pt;}
.ws28{word-spacing:-1.440000pt;}
.ws8{word-spacing:-0.800000pt;}
.ws2a{word-spacing:-0.662272pt;}
.ws1a{word-spacing:-0.480000pt;}
.ws21{word-spacing:-0.320000pt;}
.ws14{word-spacing:-0.160000pt;}
.ws2b{word-spacing:-0.109376pt;}
.ws6{word-spacing:0.000000pt;}
.ws9{word-spacing:0.320000pt;}
.wsd{word-spacing:0.640000pt;}
.ws25{word-spacing:0.906667pt;}
.ws17{word-spacing:1.280000pt;}
.ws7{word-spacing:1.386667pt;}
.ws10{word-spacing:3.520000pt;}
.ws29{word-spacing:4.960000pt;}
.ws23{word-spacing:9.760000pt;}
.ws2d{word-spacing:11.520000pt;}
.ws2e{word-spacing:11.840000pt;}
.ws15{word-spacing:23.040000pt;}
.ws16{word-spacing:23.200015pt;}
.ws1b{word-spacing:25.440000pt;}
.ws1e{word-spacing:38.880000pt;}
.ws1d{word-spacing:39.840000pt;}
.ws5{word-spacing:53.280000pt;}
.ws3{word-spacing:54.080000pt;}
.ws4{word-spacing:54.400000pt;}
.wsc{word-spacing:75.200000pt;}
.ws20{word-spacing:79.360000pt;}
.ws1f{word-spacing:80.480000pt;}
.ws1c{word-spacing:81.600000pt;}
.ws13{word-spacing:123.840000pt;}
.ws12{word-spacing:133.920000pt;}
.ws24{word-spacing:185.866667pt;}
.ws22{word-spacing:243.626667pt;}
.wsf{word-spacing:411.652864pt;}
.wse{word-spacing:412.339520pt;}
.ws18{word-spacing:2199.840000pt;}
._3{margin-left:-4.740053pt;}
._2{margin-left:-3.520000pt;}
._1{margin-left:-2.240000pt;}
._0{margin-left:-0.960000pt;}
._4{width:1.116160pt;}
._6{width:2.026667pt;}
._5{width:2.994347pt;}
._10{width:28.320000pt;}
._b{width:30.723840pt;}
._a{width:31.840000pt;}
._c{width:33.760000pt;}
._12{width:44.000000pt;}
._9{width:62.560000pt;}
._8{width:85.710507pt;}
._11{width:130.720000pt;}
._d{width:1984.533333pt;}
._7{width:2124.697173pt;}
._e{width:2418.345813pt;}
._f{width:2847.968000pt;}
.fs6{font-size:106.880000pt;}
.fs0{font-size:117.120000pt;}
.fs5{font-size:124.160000pt;}
.fs7{font-size:160.000000pt;}
.fs8{font-size:160.128000pt;}
.fs4{font-size:186.880000pt;}
.fs1{font-size:320.000000pt;}
.fs2{font-size:320.128000pt;}
.fs3{font-size:373.120000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:352.960000pt;}
.y59{bottom:370.693333pt;}
.y5b{bottom:400.960000pt;}
.y55{bottom:450.213333pt;}
.y5a{bottom:470.693333pt;}
.y54{bottom:498.213333pt;}
.y58{bottom:508.133333pt;}
.y53{bottom:546.213333pt;}
.y57{bottom:556.293333pt;}
.y52{bottom:594.213333pt;}
.y56{bottom:604.293333pt;}
.y50{bottom:625.693333pt;}
.yb{bottom:665.093333pt;}
.y4f{bottom:673.693333pt;}
.y4e{bottom:721.693333pt;}
.y4d{bottom:769.693333pt;}
.y4c{bottom:817.733333pt;}
.y49{bottom:839.906667pt;}
.y46{bottom:843.906667pt;}
.y48{bottom:887.746667pt;}
.y43{bottom:887.906667pt;}
.y45{bottom:891.746667pt;}
.y47{bottom:935.746667pt;}
.y42{bottom:935.906667pt;}
.y44{bottom:939.746667pt;}
.y5e{bottom:1311.586667pt;}
.y4b{bottom:1377.440000pt;}
.y4a{bottom:1425.600000pt;}
.y27{bottom:1911.040000pt;}
.y5d{bottom:1937.026667pt;}
.ya{bottom:1986.106667pt;}
.y26{bottom:2199.613333pt;}
.y25{bottom:2205.346667pt;}
.y1e{bottom:2226.813333pt;}
.y24{bottom:2253.346667pt;}
.y19{bottom:2270.213333pt;}
.y18{bottom:2318.213333pt;}
.y17{bottom:2366.213333pt;}
.y10{bottom:2398.240000pt;}
.y23{bottom:2406.973333pt;}
.y1d{bottom:2408.253333pt;}
.y16{bottom:2414.240000pt;}
.y22{bottom:2454.973333pt;}
.y1c{bottom:2456.293333pt;}
.y15{bottom:2462.240000pt;}
.y14{bottom:2510.240000pt;}
.y13{bottom:2558.240000pt;}
.y21{bottom:2593.760000pt;}
.y1b{bottom:2601.466667pt;}
.y12{bottom:2614.973333pt;}
.y20{bottom:2641.760000pt;}
.y11{bottom:2646.973333pt;}
.y1a{bottom:2649.466667pt;}
.y1f{bottom:2689.760000pt;}
.y28{bottom:2775.906667pt;}
.y4{bottom:2868.093333pt;}
.y40{bottom:3069.733333pt;}
.ye{bottom:3111.360000pt;}
.y3f{bottom:3117.733333pt;}
.yd{bottom:3159.200000pt;}
.y3e{bottom:3165.733333pt;}
.y3d{bottom:3213.733333pt;}
.y34{bottom:3260.666667pt;}
.y2e{bottom:3260.706667pt;}
.y3a{bottom:3260.893333pt;}
.y3c{bottom:3261.733333pt;}
.y33{bottom:3308.666667pt;}
.y2d{bottom:3308.706667pt;}
.y39{bottom:3308.893333pt;}
.y3b{bottom:3309.733333pt;}
.y32{bottom:3356.666667pt;}
.y2c{bottom:3356.706667pt;}
.y38{bottom:3356.893333pt;}
.y31{bottom:3404.666667pt;}
.y2b{bottom:3404.706667pt;}
.y37{bottom:3404.893333pt;}
.y30{bottom:3452.666667pt;}
.y2a{bottom:3452.706667pt;}
.y36{bottom:3452.893333pt;}
.y2f{bottom:3500.666667pt;}
.y29{bottom:3500.706667pt;}
.y35{bottom:3500.893333pt;}
.y1{bottom:3512.320000pt;}
.yf{bottom:3539.386667pt;}
.yc{bottom:3762.973333pt;}
.y2{bottom:3776.506667pt;}
.y41{bottom:3819.493333pt;}
.y3{bottom:3887.200000pt;}
.y51{bottom:3891.586667pt;}
.y9{bottom:4097.893333pt;}
.y8{bottom:4145.893333pt;}
.y7{bottom:4183.493333pt;}
.y6{bottom:4250.853333pt;}
.y5{bottom:4362.853333pt;}
.h7{height:78.281250pt;}
.h2{height:85.781250pt;}
.h8{height:117.187500pt;}
.ha{height:117.281250pt;}
.h9{height:122.500000pt;}
.hd{height:126.281250pt;}
.hb{height:136.760833pt;}
.hc{height:138.795000pt;}
.h6{height:147.257500pt;}
.h3{height:234.375000pt;}
.h4{height:234.468750pt;}
.h5{height:273.281250pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x34{left:100.831953pt;}
.x12{left:114.911953pt;}
.x13{left:122.751953pt;}
.x5{left:124.223953pt;}
.xd{left:154.879953pt;}
.xc{left:162.719953pt;}
.x4{left:167.066619pt;}
.xa{left:169.026619pt;}
.x2{left:174.306619pt;}
.x2a{left:211.013286pt;}
.x1c{left:214.906619pt;}
.x2b{left:242.693286pt;}
.x2c{left:270.213286pt;}
.x1a{left:387.386619pt;}
.x35{left:396.706619pt;}
.x1b{left:401.146619pt;}
.x11{left:403.039953pt;}
.x10{left:406.879953pt;}
.x19{left:456.479953pt;}
.x1e{left:465.466619pt;}
.x1f{left:513.466619pt;}
.x38{left:547.133286pt;}
.x1d{left:564.186619pt;}
.x8{left:594.813286pt;}
.x6{left:666.173286pt;}
.x9{left:711.773286pt;}
.x7{left:761.853286pt;}
.x21{left:839.813286pt;}
.x2d{left:843.226619pt;}
.x2e{left:880.506619pt;}
.x22{left:887.813286pt;}
.x20{left:901.893286pt;}
.xf{left:909.146619pt;}
.x2f{left:952.026619pt;}
.x37{left:1283.773286pt;}
.x3{left:1350.559953pt;}
.x27{left:1465.919953pt;}
.x24{left:1473.279953pt;}
.x23{left:1480.959953pt;}
.x14{left:1493.986619pt;}
.x25{left:1521.279953pt;}
.x36{left:1578.653286pt;}
.x28{left:1592.133286pt;}
.x15{left:1653.093286pt;}
.xb{left:1664.093286pt;}
.x29{left:1720.613286pt;}
.xe{left:1968.386619pt;}
.x1{left:2170.213286pt;}
.x32{left:2309.053286pt;}
.x30{left:2354.079953pt;}
.x33{left:2357.053286pt;}
.x39{left:2359.546619pt;}
.x26{left:2380.666619pt;}
.x18{left:2464.186619pt;}
.x16{left:2466.373286pt;}
.x17{left:2485.599953pt;}
.x3a{left:2569.733286pt;}
.x3b{left:2600.293286pt;}
.x31{left:2620.893286pt;}
}




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