
    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_0dc790222eb214fd533894d7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_137349ff00dac30df072f0b0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_c257f0112b75186a3c126ad7.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_aaafb51dbe957b949f8851c4.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c441e7c560e3485bef9a4ebf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_bbb77a1678339062197e22e1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_04bf01b05384d148a220790f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsf{letter-spacing:-4.008000px;}
.ls8{letter-spacing:-2.226000px;}
.ls1d{letter-spacing:-1.566000px;}
.ls15{letter-spacing:-1.290000px;}
.ls18{letter-spacing:-0.501000px;}
.ls7{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.121200px;}
.ls1b{letter-spacing:-0.065400px;}
.ls6{letter-spacing:-0.035400px;}
.ls19{letter-spacing:-0.017280px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.111000px;}
.ls5{letter-spacing:0.129000px;}
.ls16{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.165600px;}
.lsb{letter-spacing:0.238200px;}
.ls1a{letter-spacing:0.276600px;}
.ls0{letter-spacing:0.661680px;}
.ls1{letter-spacing:13.397760px;}
.ls2{letter-spacing:16.704000px;}
.ls10{letter-spacing:48.672000px;}
.ls17{letter-spacing:55.533600px;}
.ls12{letter-spacing:55.584000px;}
.ls1c{letter-spacing:55.728000px;}
.ls14{letter-spacing:63.849600px;}
.ls13{letter-spacing:63.900000px;}
.ls9{letter-spacing:65.865600px;}
.lsa{letter-spacing:65.916000px;}
.lse{letter-spacing:119.865600px;}
.lsd{letter-spacing:119.916000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(217,217,217),0 0.015em rgb(217,217,217),0.015em 0 rgb(217,217,217),0 -0.015em  rgb(217,217,217);}
.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(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(217,217,217);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2a{word-spacing:-360.144000px;}
.ws2f{word-spacing:-233.436672px;}
.ws7{word-spacing:-108.566784px;}
.ws3{word-spacing:-108.534240px;}
.ws6{word-spacing:-81.392544px;}
.ws5{word-spacing:-81.360000px;}
.ws9{word-spacing:-66.173760px;}
.wsd{word-spacing:-41.333760px;}
.ws30{word-spacing:-40.680000px;}
.ws19{word-spacing:-33.845760px;}
.wsf{word-spacing:-33.225984px;}
.ws1a{word-spacing:-33.186240px;}
.ws1e{word-spacing:-28.476000px;}
.ws1{word-spacing:-16.272000px;}
.ws13{word-spacing:-14.970240px;}
.ws0{word-spacing:-13.505760px;}
.ws2e{word-spacing:-1.556880px;}
.ws10{word-spacing:-1.176720px;}
.ws1f{word-spacing:-0.878400px;}
.ws16{word-spacing:-0.814320px;}
.ws22{word-spacing:-0.770880px;}
.ws2c{word-spacing:-0.760320px;}
.ws15{word-spacing:-0.693360px;}
.ws26{word-spacing:-0.306096px;}
.ws24{word-spacing:-0.265320px;}
.ws2d{word-spacing:-0.241560px;}
.wsc{word-spacing:-0.149760px;}
.wse{word-spacing:-0.120384px;}
.ws1b{word-spacing:-0.120240px;}
.ws27{word-spacing:-0.074400px;}
.ws2{word-spacing:0.000000px;}
.wsb{word-spacing:0.110880px;}
.ws11{word-spacing:0.127800px;}
.ws29{word-spacing:0.132480px;}
.ws21{word-spacing:0.203520px;}
.ws18{word-spacing:0.237120px;}
.ws1d{word-spacing:0.258240px;}
.ws25{word-spacing:0.290976px;}
.ws4{word-spacing:0.522912px;}
.ws23{word-spacing:0.569880px;}
.ws12{word-spacing:0.696000px;}
.ws14{word-spacing:0.744000px;}
.ws1c{word-spacing:1.203840px;}
.ws20{word-spacing:1.964016px;}
.ws8{word-spacing:2.520000px;}
.ws28{word-spacing:3.914640px;}
.wsa{word-spacing:4.402800px;}
.ws17{word-spacing:8.024016px;}
.ws2b{word-spacing:405.097536px;}
._11{margin-left:-18.360000px;}
._7{margin-left:-13.861200px;}
._e{margin-left:-11.472624px;}
._b{margin-left:-9.785136px;}
._6{margin-left:-8.586000px;}
._3{margin-left:-6.480000px;}
._5{margin-left:-4.856160px;}
._0{margin-left:-2.850000px;}
._1{margin-left:-1.170000px;}
._2{width:1.015920px;}
._4{width:2.057616px;}
._12{width:3.420000px;}
._8{width:4.866240px;}
._a{width:26.055360px;}
._d{width:28.570440px;}
._f{width:35.372640px;}
._9{width:431.681280px;}
._c{width:458.321280px;}
._10{width:619.981248px;}
.fc4{color:rgb(84,130,53);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(217,217,217);}
.fs2{font-size:40.320000px;}
.fs1{font-size:59.760000px;}
.fs15{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs3{font-size:90.144000px;}
.fs13{font-size:108.000000px;}
.fs14{font-size:108.144000px;}
.fs10{font-size:120.240000px;}
.fs11{font-size:120.384000px;}
.fs16{font-size:126.000000px;}
.fs17{font-size:126.144000px;}
.fsf{font-size:149.760000px;}
.fse{font-size:149.904000px;}
.fsc{font-size:180.000000px;}
.fsb{font-size:180.144000px;}
.fs12{font-size:216.000000px;}
.fs6{font-size:221.760000px;}
.fs5{font-size:221.904000px;}
.fsd{font-size:239.760000px;}
.fs18{font-size:300.384000px;}
.fs9{font-size:360.000000px;}
.fs4{font-size:360.144000px;}
.fs8{font-size:480.240000px;}
.fsa{font-size:480.384000px;}
.y0{bottom:0.000000px;}
.y11{bottom:16.992000px;}
.yc{bottom:25.452000px;}
.y28{bottom:25.848000px;}
.y57{bottom:42.444000px;}
.y48{bottom:44.316000px;}
.y44{bottom:46.152000px;}
.yb{bottom:49.752000px;}
.y6e{bottom:60.984000px;}
.ya{bottom:74.052000px;}
.y47{bottom:80.352000px;}
.y41{bottom:89.532000px;}
.y43{bottom:101.628000px;}
.y49{bottom:101.808000px;}
.y6d{bottom:109.584000px;}
.y46{bottom:116.352000px;}
.y9{bottom:123.552000px;}
.y32{bottom:125.316000px;}
.y8{bottom:139.752000px;}
.y45{bottom:152.355000px;}
.y7{bottom:155.955000px;}
.y50{bottom:164.595000px;}
.y31{bottom:165.090000px;}
.y6{bottom:167.655000px;}
.y5{bottom:188.385000px;}
.y51{bottom:191.985000px;}
.y4{bottom:204.585000px;}
.y30{bottom:205.050000px;}
.y4f{bottom:205.125000px;}
.y3{bottom:218.265000px;}
.y27{bottom:235.110000px;}
.y2{bottom:242.565000px;}
.y38{bottom:246.270000px;}
.y36{bottom:248.145000px;}
.y1{bottom:266.865000px;}
.y35{bottom:292.245000px;}
.y26{bottom:327.810000px;}
.y2f{bottom:332.355000px;}
.y34{bottom:336.525000px;}
.y63{bottom:358.380000px;}
.y25{bottom:368.310000px;}
.y4e{bottom:371.670000px;}
.y2e{bottom:372.135000px;}
.y37{bottom:378.750000px;}
.y68{bottom:383.400000px;}
.y65{bottom:390.810000px;}
.y24{bottom:408.810000px;}
.y2d{bottom:412.125000px;}
.y56{bottom:412.635000px;}
.y4d{bottom:427.110000px;}
.y23{bottom:449.355000px;}
.y59{bottom:452.625000px;}
.y5f{bottom:455.370000px;}
.y55{bottom:466.665000px;}
.y3f{bottom:466.995000px;}
.y29{bottom:475.950000px;}
.y67{bottom:478.110000px;}
.y6a{bottom:478.410000px;}
.y4c{bottom:482.550000px;}
.y64{bottom:485.670000px;}
.y62{bottom:493.230000px;}
.y5c{bottom:495.690000px;}
.y16{bottom:498.525000px;}
.y13{bottom:499.035000px;}
.y3c{bottom:505.830000px;}
.y54{bottom:508.065000px;}
.y10{bottom:509.475000px;}
.y3e{bottom:514.335000px;}
.y69{bottom:514.410000px;}
.y1b{bottom:522.720000px;}
.y61{bottom:533.010000px;}
.y22{bottom:535.395000px;}
.y4b{bottom:538.200000px;}
.y2c{bottom:539.385000px;}
.y53{bottom:551.265000px;}
.y5b{bottom:551.310000px;}
.y5e{bottom:552.600000px;}
.y3b{bottom:553.350000px;}
.y3d{bottom:561.855000px;}
.y58{bottom:563.685000px;}
.y1a{bottom:571.320000px;}
.y60{bottom:573.015000px;}
.yf{bottom:576.075000px;}
.y2b{bottom:579.210000px;}
.y66{bottom:592.125000px;}
.y4a{bottom:593.640000px;}
.y15{bottom:595.725000px;}
.y17{bottom:598.575000px;}
.y3a{bottom:600.690000px;}
.y21{bottom:600.810000px;}
.y52{bottom:606.705000px;}
.y5a{bottom:606.780000px;}
.y2a{bottom:619.170000px;}
.y1e{bottom:619.305000px;}
.y19{bottom:619.950000px;}
.y6c{bottom:638.430000px;}
.ye{bottom:642.705000px;}
.y12{bottom:643.065000px;}
.y20{bottom:649.410000px;}
.y5d{bottom:649.830000px;}
.y1d{bottom:667.905000px;}
.y6b{bottom:684.330000px;}
.y39{bottom:686.670000px;}
.y40{bottom:692.895000px;}
.y14{bottom:692.970000px;}
.y18{bottom:694.335000px;}
.y33{bottom:708.450000px;}
.y42{bottom:709.920000px;}
.yd{bottom:718.485000px;}
.y1f{bottom:720.900000px;}
.y1c{bottom:727.170000px;}
.h2{height:41.439023px;}
.h3{height:59.439023px;}
.h19{height:67.824844px;}
.h8{height:71.613281px;}
.h1{height:92.153320px;}
.h4{height:92.300766px;}
.h1d{height:103.977070px;}
.h1c{height:104.035781px;}
.h12{height:104.160375px;}
.h1a{height:107.419922px;}
.h17{height:110.583984px;}
.h18{height:110.731430px;}
.h14{height:119.594180px;}
.h13{height:119.737406px;}
.h11{height:123.116836px;}
.h15{height:123.264281px;}
.h1f{height:129.014648px;}
.h20{height:129.162094px;}
.h10{height:129.577500px;}
.hf{height:129.702094px;}
.h1e{height:148.955625px;}
.h1b{height:153.343125px;}
.h21{height:153.490570px;}
.hd{height:171.386719px;}
.hc{height:171.523828px;}
.h23{height:184.306641px;}
.he{height:207.448594px;}
.h7{height:220.568906px;}
.h6{height:220.712133px;}
.h16{height:221.167969px;}
.h22{height:307.570922px;}
.ha{height:368.613281px;}
.h5{height:368.760727px;}
.h9{height:491.730117px;}
.hb{height:491.877563px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1{left:20.879979px;}
.xa{left:24.803979px;}
.x2{left:30.959979px;}
.x2b{left:55.079979px;}
.x19{left:58.427979px;}
.xb{left:60.911979px;}
.xc{left:64.043979px;}
.x28{left:68.327979px;}
.x1f{left:71.963979px;}
.x2e{left:74.735979px;}
.x20{left:78.983979px;}
.x29{left:95.327979px;}
.x16{left:104.687979px;}
.x2c{left:109.079979px;}
.x30{left:131.399979px;}
.x2f{left:136.259979px;}
.x15{left:153.284979px;}
.x23{left:162.074979px;}
.x31{left:164.159979px;}
.x18{left:188.819979px;}
.x14{left:193.784979px;}
.x12{left:195.044979px;}
.x35{left:203.144979px;}
.x2d{left:219.449979px;}
.x21{left:227.129979px;}
.x13{left:253.589979px;}
.x17{left:257.609979px;}
.x33{left:270.179979px;}
.x1a{left:274.469979px;}
.x25{left:283.709979px;}
.x24{left:288.029979px;}
.x10{left:439.529979px;}
.x1e{left:452.444979px;}
.xd{left:459.794979px;}
.x3{left:473.504979px;}
.x34{left:507.449979px;}
.x36{left:509.399979px;}
.xe{left:560.594979px;}
.xf{left:639.254979px;}
.x32{left:727.589979px;}
.x27{left:777.884979px;}
.x11{left:826.199979px;}
.x5{left:922.394979px;}
.x2a{left:980.249979px;}
.x6{left:1067.114979px;}
.x8{left:1073.594979px;}
.x26{left:1104.329979px;}
.x1b{left:1132.949979px;}
.x7{left:1144.694979px;}
.x1c{left:1149.509979px;}
.x22{left:1167.629979px;}
.x4{left:1188.359979px;}
.x9{left:1297.004979px;}
.x1d{left:1354.109979px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsf{letter-spacing:-3.562667pt;}
.ls8{letter-spacing:-1.978667pt;}
.ls1d{letter-spacing:-1.392000pt;}
.ls15{letter-spacing:-1.146667pt;}
.ls18{letter-spacing:-0.445333pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.107733pt;}
.ls1b{letter-spacing:-0.058133pt;}
.ls6{letter-spacing:-0.031467pt;}
.ls19{letter-spacing:-0.015360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.098667pt;}
.ls5{letter-spacing:0.114667pt;}
.ls16{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.147200pt;}
.lsb{letter-spacing:0.211733pt;}
.ls1a{letter-spacing:0.245867pt;}
.ls0{letter-spacing:0.588160pt;}
.ls1{letter-spacing:11.909120pt;}
.ls2{letter-spacing:14.848000pt;}
.ls10{letter-spacing:43.264000pt;}
.ls17{letter-spacing:49.363200pt;}
.ls12{letter-spacing:49.408000pt;}
.ls1c{letter-spacing:49.536000pt;}
.ls14{letter-spacing:56.755200pt;}
.ls13{letter-spacing:56.800000pt;}
.ls9{letter-spacing:58.547200pt;}
.lsa{letter-spacing:58.592000pt;}
.lse{letter-spacing:106.547200pt;}
.lsd{letter-spacing:106.592000pt;}
.ws2a{word-spacing:-320.128000pt;}
.ws2f{word-spacing:-207.499264pt;}
.ws7{word-spacing:-96.503808pt;}
.ws3{word-spacing:-96.474880pt;}
.ws6{word-spacing:-72.348928pt;}
.ws5{word-spacing:-72.320000pt;}
.ws9{word-spacing:-58.821120pt;}
.wsd{word-spacing:-36.741120pt;}
.ws30{word-spacing:-36.160000pt;}
.ws19{word-spacing:-30.085120pt;}
.wsf{word-spacing:-29.534208pt;}
.ws1a{word-spacing:-29.498880pt;}
.ws1e{word-spacing:-25.312000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws13{word-spacing:-13.306880pt;}
.ws0{word-spacing:-12.005120pt;}
.ws2e{word-spacing:-1.383893pt;}
.ws10{word-spacing:-1.045973pt;}
.ws1f{word-spacing:-0.780800pt;}
.ws16{word-spacing:-0.723840pt;}
.ws22{word-spacing:-0.685227pt;}
.ws2c{word-spacing:-0.675840pt;}
.ws15{word-spacing:-0.616320pt;}
.ws26{word-spacing:-0.272085pt;}
.ws24{word-spacing:-0.235840pt;}
.ws2d{word-spacing:-0.214720pt;}
.wsc{word-spacing:-0.133120pt;}
.wse{word-spacing:-0.107008pt;}
.ws1b{word-spacing:-0.106880pt;}
.ws27{word-spacing:-0.066133pt;}
.ws2{word-spacing:0.000000pt;}
.wsb{word-spacing:0.098560pt;}
.ws11{word-spacing:0.113600pt;}
.ws29{word-spacing:0.117760pt;}
.ws21{word-spacing:0.180907pt;}
.ws18{word-spacing:0.210773pt;}
.ws1d{word-spacing:0.229547pt;}
.ws25{word-spacing:0.258645pt;}
.ws4{word-spacing:0.464811pt;}
.ws23{word-spacing:0.506560pt;}
.ws12{word-spacing:0.618667pt;}
.ws14{word-spacing:0.661333pt;}
.ws1c{word-spacing:1.070080pt;}
.ws20{word-spacing:1.745792pt;}
.ws8{word-spacing:2.240000pt;}
.ws28{word-spacing:3.479680pt;}
.wsa{word-spacing:3.913600pt;}
.ws17{word-spacing:7.132459pt;}
.ws2b{word-spacing:360.086699pt;}
._11{margin-left:-16.320000pt;}
._7{margin-left:-12.321067pt;}
._e{margin-left:-10.197888pt;}
._b{margin-left:-8.697899pt;}
._6{margin-left:-7.632000pt;}
._3{margin-left:-5.760000pt;}
._5{margin-left:-4.316587pt;}
._0{margin-left:-2.533333pt;}
._1{margin-left:-1.040000pt;}
._2{width:0.903040pt;}
._4{width:1.828992pt;}
._12{width:3.040000pt;}
._8{width:4.325547pt;}
._a{width:23.160320pt;}
._d{width:25.395947pt;}
._f{width:31.442347pt;}
._9{width:383.716693pt;}
._c{width:407.396693pt;}
._10{width:551.094443pt;}
.fs2{font-size:35.840000pt;}
.fs1{font-size:53.120000pt;}
.fs15{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs3{font-size:80.128000pt;}
.fs13{font-size:96.000000pt;}
.fs14{font-size:96.128000pt;}
.fs10{font-size:106.880000pt;}
.fs11{font-size:107.008000pt;}
.fs16{font-size:112.000000pt;}
.fs17{font-size:112.128000pt;}
.fsf{font-size:133.120000pt;}
.fse{font-size:133.248000pt;}
.fsc{font-size:160.000000pt;}
.fsb{font-size:160.128000pt;}
.fs12{font-size:192.000000pt;}
.fs6{font-size:197.120000pt;}
.fs5{font-size:197.248000pt;}
.fsd{font-size:213.120000pt;}
.fs18{font-size:267.008000pt;}
.fs9{font-size:320.000000pt;}
.fs4{font-size:320.128000pt;}
.fs8{font-size:426.880000pt;}
.fsa{font-size:427.008000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:15.104000pt;}
.yc{bottom:22.624000pt;}
.y28{bottom:22.976000pt;}
.y57{bottom:37.728000pt;}
.y48{bottom:39.392000pt;}
.y44{bottom:41.024000pt;}
.yb{bottom:44.224000pt;}
.y6e{bottom:54.208000pt;}
.ya{bottom:65.824000pt;}
.y47{bottom:71.424000pt;}
.y41{bottom:79.584000pt;}
.y43{bottom:90.336000pt;}
.y49{bottom:90.496000pt;}
.y6d{bottom:97.408000pt;}
.y46{bottom:103.424000pt;}
.y9{bottom:109.824000pt;}
.y32{bottom:111.392000pt;}
.y8{bottom:124.224000pt;}
.y45{bottom:135.426667pt;}
.y7{bottom:138.626667pt;}
.y50{bottom:146.306667pt;}
.y31{bottom:146.746667pt;}
.y6{bottom:149.026667pt;}
.y5{bottom:167.453333pt;}
.y51{bottom:170.653333pt;}
.y4{bottom:181.853333pt;}
.y30{bottom:182.266667pt;}
.y4f{bottom:182.333333pt;}
.y3{bottom:194.013333pt;}
.y27{bottom:208.986667pt;}
.y2{bottom:215.613333pt;}
.y38{bottom:218.906667pt;}
.y36{bottom:220.573333pt;}
.y1{bottom:237.213333pt;}
.y35{bottom:259.773333pt;}
.y26{bottom:291.386667pt;}
.y2f{bottom:295.426667pt;}
.y34{bottom:299.133333pt;}
.y63{bottom:318.560000pt;}
.y25{bottom:327.386667pt;}
.y4e{bottom:330.373333pt;}
.y2e{bottom:330.786667pt;}
.y37{bottom:336.666667pt;}
.y68{bottom:340.800000pt;}
.y65{bottom:347.386667pt;}
.y24{bottom:363.386667pt;}
.y2d{bottom:366.333333pt;}
.y56{bottom:366.786667pt;}
.y4d{bottom:379.653333pt;}
.y23{bottom:399.426667pt;}
.y59{bottom:402.333333pt;}
.y5f{bottom:404.773333pt;}
.y55{bottom:414.813333pt;}
.y3f{bottom:415.106667pt;}
.y29{bottom:423.066667pt;}
.y67{bottom:424.986667pt;}
.y6a{bottom:425.253333pt;}
.y4c{bottom:428.933333pt;}
.y64{bottom:431.706667pt;}
.y62{bottom:438.426667pt;}
.y5c{bottom:440.613333pt;}
.y16{bottom:443.133333pt;}
.y13{bottom:443.586667pt;}
.y3c{bottom:449.626667pt;}
.y54{bottom:451.613333pt;}
.y10{bottom:452.866667pt;}
.y3e{bottom:457.186667pt;}
.y69{bottom:457.253333pt;}
.y1b{bottom:464.640000pt;}
.y61{bottom:473.786667pt;}
.y22{bottom:475.906667pt;}
.y4b{bottom:478.400000pt;}
.y2c{bottom:479.453333pt;}
.y53{bottom:490.013333pt;}
.y5b{bottom:490.053333pt;}
.y5e{bottom:491.200000pt;}
.y3b{bottom:491.866667pt;}
.y3d{bottom:499.426667pt;}
.y58{bottom:501.053333pt;}
.y1a{bottom:507.840000pt;}
.y60{bottom:509.346667pt;}
.yf{bottom:512.066667pt;}
.y2b{bottom:514.853333pt;}
.y66{bottom:526.333333pt;}
.y4a{bottom:527.680000pt;}
.y15{bottom:529.533333pt;}
.y17{bottom:532.066667pt;}
.y3a{bottom:533.946667pt;}
.y21{bottom:534.053333pt;}
.y52{bottom:539.293333pt;}
.y5a{bottom:539.360000pt;}
.y2a{bottom:550.373333pt;}
.y1e{bottom:550.493333pt;}
.y19{bottom:551.066667pt;}
.y6c{bottom:567.493333pt;}
.ye{bottom:571.293333pt;}
.y12{bottom:571.613333pt;}
.y20{bottom:577.253333pt;}
.y5d{bottom:577.626667pt;}
.y1d{bottom:593.693333pt;}
.y6b{bottom:608.293333pt;}
.y39{bottom:610.373333pt;}
.y40{bottom:615.906667pt;}
.y14{bottom:615.973333pt;}
.y18{bottom:617.186667pt;}
.y33{bottom:629.733333pt;}
.y42{bottom:631.040000pt;}
.yd{bottom:638.653333pt;}
.y1f{bottom:640.800000pt;}
.y1c{bottom:646.373333pt;}
.h2{height:36.834688pt;}
.h3{height:52.834688pt;}
.h19{height:60.288750pt;}
.h8{height:63.656250pt;}
.h1{height:81.914062pt;}
.h4{height:82.045125pt;}
.h1d{height:92.424062pt;}
.h1c{height:92.476250pt;}
.h12{height:92.587000pt;}
.h1a{height:95.484375pt;}
.h17{height:98.296875pt;}
.h18{height:98.427937pt;}
.h14{height:106.305937pt;}
.h13{height:106.433250pt;}
.h11{height:109.437187pt;}
.h15{height:109.568250pt;}
.h1f{height:114.679688pt;}
.h20{height:114.810750pt;}
.h10{height:115.180000pt;}
.hf{height:115.290750pt;}
.h1e{height:132.405000pt;}
.h1b{height:136.305000pt;}
.h21{height:136.436062pt;}
.hd{height:152.343750pt;}
.hc{height:152.465625pt;}
.h23{height:163.828125pt;}
.he{height:184.398750pt;}
.h7{height:196.061250pt;}
.h6{height:196.188562pt;}
.h16{height:196.593750pt;}
.h22{height:273.396375pt;}
.ha{height:327.656250pt;}
.h5{height:327.787312pt;}
.h9{height:437.093437pt;}
.hb{height:437.224500pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1{left:18.559981pt;}
.xa{left:22.047981pt;}
.x2{left:27.519981pt;}
.x2b{left:48.959981pt;}
.x19{left:51.935981pt;}
.xb{left:54.143981pt;}
.xc{left:56.927981pt;}
.x28{left:60.735981pt;}
.x1f{left:63.967981pt;}
.x2e{left:66.431981pt;}
.x20{left:70.207981pt;}
.x29{left:84.735981pt;}
.x16{left:93.055981pt;}
.x2c{left:96.959981pt;}
.x30{left:116.799981pt;}
.x2f{left:121.119981pt;}
.x15{left:136.253314pt;}
.x23{left:144.066648pt;}
.x31{left:145.919981pt;}
.x18{left:167.839981pt;}
.x14{left:172.253314pt;}
.x12{left:173.373314pt;}
.x35{left:180.573314pt;}
.x2d{left:195.066648pt;}
.x21{left:201.893314pt;}
.x13{left:225.413314pt;}
.x17{left:228.986648pt;}
.x33{left:240.159981pt;}
.x1a{left:243.973314pt;}
.x25{left:252.186648pt;}
.x24{left:256.026648pt;}
.x10{left:390.693314pt;}
.x1e{left:402.173314pt;}
.xd{left:408.706648pt;}
.x3{left:420.893314pt;}
.x34{left:451.066648pt;}
.x36{left:452.799981pt;}
.xe{left:498.306648pt;}
.xf{left:568.226648pt;}
.x32{left:646.746648pt;}
.x27{left:691.453314pt;}
.x11{left:734.399981pt;}
.x5{left:819.906648pt;}
.x2a{left:871.333314pt;}
.x6{left:948.546648pt;}
.x8{left:954.306648pt;}
.x26{left:981.626648pt;}
.x1b{left:1007.066648pt;}
.x7{left:1017.506648pt;}
.x1c{left:1021.786648pt;}
.x22{left:1037.893314pt;}
.x4{left:1056.319981pt;}
.x9{left:1152.893314pt;}
.x1d{left:1203.653314pt;}
}




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