
    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_0bb008f313c33b95a7d1a985.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_f7227c72c566e1e69b488ce4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e0e22608be28bde316f8365d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.773926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_389b9aee1303d1b7d56cc7f9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9fdcb3acf229b260548b62cd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ac6822e5d4f2bdb2137f474f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2efe23f36605fcd21b6eb189.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_cc7749da43d2db41daabc3e6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3e8e7da1e403b54cabbfba8e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1ab87e5abe14d9bdf27cc2b7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936035;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;}
.lsb{letter-spacing:-19.920000px;}
.ls2{letter-spacing:-0.475200px;}
.ls27{letter-spacing:-0.366000px;}
.ls12{letter-spacing:-0.338400px;}
.ls11{letter-spacing:-0.321000px;}
.ls23{letter-spacing:-0.291600px;}
.ls6{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.265800px;}
.ls13{letter-spacing:-0.240600px;}
.ls26{letter-spacing:-0.210000px;}
.ls15{letter-spacing:-0.204600px;}
.ls25{letter-spacing:-0.202800px;}
.ls28{letter-spacing:-0.182400px;}
.ls1b{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.151200px;}
.ls7{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.094200px;}
.ls22{letter-spacing:-0.060600px;}
.ls1a{letter-spacing:-0.036000px;}
.ls1e{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.007920px;}
.ls10{letter-spacing:0.009240px;}
.ls24{letter-spacing:0.056880px;}
.ls9{letter-spacing:0.068400px;}
.ls1{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.089280px;}
.ls19{letter-spacing:0.115200px;}
.ls1c{letter-spacing:0.174000px;}
.lse{letter-spacing:0.220800px;}
.ls29{letter-spacing:0.238200px;}
.lsc{letter-spacing:0.258000px;}
.ls20{letter-spacing:0.944064px;}
.ls21{letter-spacing:1.085040px;}
.ls3{letter-spacing:24.696000px;}
.ls1f{letter-spacing:26.864064px;}
.lsf{letter-spacing:27.005040px;}
.ls16{letter-spacing:66.060000px;}
.ls5{letter-spacing:95.982048px;}
.ls4{letter-spacing:96.048000px;}
.ls18{letter-spacing:97.509600px;}
.ls17{letter-spacing:97.560000px;}
.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(0,51,73),0 0.015em rgb(0,51,73),0.015em 0 rgb(0,51,73),0 -0.015em  rgb(0,51,73);}
.sc1{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.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(0,51,73);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-80.917344px;}
.ws0{word-spacing:-64.022400px;}
.ws12{word-spacing:-59.892240px;}
.ws19{word-spacing:-59.750784px;}
.ws11{word-spacing:-59.718240px;}
.ws8{word-spacing:-59.397240px;}
.ws2{word-spacing:-56.232000px;}
.wse{word-spacing:-43.180440px;}
.wsd{word-spacing:-43.140384px;}
.ws7{word-spacing:-39.798240px;}
.ws18{word-spacing:-33.878304px;}
.ws16{word-spacing:-32.576544px;}
.ws15{word-spacing:-32.544000px;}
.ws13{word-spacing:-32.543994px;}
.ws5{word-spacing:-32.400000px;}
.ws4{word-spacing:-32.256000px;}
.ws9{word-spacing:-27.395040px;}
.ws1c{word-spacing:-27.206784px;}
.wsb{word-spacing:-27.174240px;}
.ws14{word-spacing:-26.882640px;}
.wsc{word-spacing:-24.408000px;}
.wsf{word-spacing:-24.372000px;}
.ws10{word-spacing:-24.228000px;}
.ws1a{word-spacing:-2.510640px;}
.ws17{word-spacing:-1.627200px;}
.wsa{word-spacing:-0.650160px;}
.ws6{word-spacing:-0.352944px;}
.ws1b{word-spacing:-0.020544px;}
.ws1{word-spacing:0.000000px;}
._8{margin-left:-22.149360px;}
._11{margin-left:-14.647440px;}
._c{margin-left:-12.581184px;}
._10{margin-left:-11.412000px;}
._5{margin-left:-8.982480px;}
._4{margin-left:-7.172064px;}
._1{margin-left:-5.417280px;}
._9{margin-left:-4.020000px;}
._2{margin-left:-2.736000px;}
._0{margin-left:-1.723680px;}
._3{width:1.704000px;}
._a{width:3.096000px;}
._12{width:5.289840px;}
._b{width:16.657344px;}
._7{width:19.706640px;}
._6{width:31.496880px;}
._e{width:372.401760px;}
._d{width:375.760320px;}
._f{width:1195.688256px;}
.fcb{color:rgb(0,48,72);}
.fc9{color:rgb(0,176,240);}
.fc8{color:rgb(0,112,192);}
.fc7{color:rgb(192,0,0);}
.fc6{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc3{color:rgb(242,169,0);}
.fca{color:rgb(56,56,56);}
.fc5{color:rgb(165,227,231);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,51,73);}
.fs12{font-size:7.200000px;}
.fs3{font-size:66.240000px;}
.fs9{font-size:84.240000px;}
.fs5{font-size:108.000000px;}
.fs10{font-size:108.144000px;}
.fsb{font-size:120.240000px;}
.fs11{font-size:120.384000px;}
.fsf{font-size:131.760000px;}
.fs1{font-size:144.000000px;}
.fs7{font-size:144.144000px;}
.fs13{font-size:149.760000px;}
.fs14{font-size:149.904000px;}
.fs8{font-size:167.760000px;}
.fse{font-size:192.240000px;}
.fsd{font-size:192.384000px;}
.fs4{font-size:216.000000px;}
.fsc{font-size:239.760000px;}
.fs0{font-size:246.240000px;}
.fs6{font-size:264.240000px;}
.fsa{font-size:264.384000px;}
.fs2{font-size:360.144000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:11.520000px;}
.y28{bottom:19.872000px;}
.y26{bottom:22.104000px;}
.y5d{bottom:39.780000px;}
.y3{bottom:61.092000px;}
.y57{bottom:63.864000px;}
.y1{bottom:63.936000px;}
.y59{bottom:64.296000px;}
.y37{bottom:76.140000px;}
.y4c{bottom:89.172000px;}
.y13{bottom:94.212000px;}
.y2{bottom:99.972000px;}
.y58{bottom:103.176000px;}
.y56{bottom:104.760000px;}
.y21{bottom:131.940000px;}
.y3a{bottom:150.585000px;}
.y36{bottom:159.690000px;}
.y4b{bottom:161.025000px;}
.y47{bottom:161.100000px;}
.y20{bottom:166.710000px;}
.y55{bottom:168.045000px;}
.y12{bottom:170.025000px;}
.y39{bottom:182.985000px;}
.y4f{bottom:183.270000px;}
.y3f{bottom:185.760000px;}
.y35{bottom:192.135000px;}
.y5{bottom:199.230000px;}
.y29{bottom:199.725000px;}
.y19{bottom:207.150000px;}
.y1f{bottom:209.910000px;}
.y54{bottom:211.890000px;}
.y11{bottom:213.225000px;}
.y38{bottom:220.245000px;}
.y34{bottom:224.535000px;}
.y3e{bottom:228.960000px;}
.y46{bottom:239.475000px;}
.y5e{bottom:249.015000px;}
.y10{bottom:256.425000px;}
.y33{bottom:256.935000px;}
.y60{bottom:259.125000px;}
.y4a{bottom:273.420000px;}
.y45{bottom:275.475000px;}
.y4e{bottom:276.690000px;}
.y67{bottom:284.790000px;}
.y53{bottom:289.830000px;}
.y18{bottom:293.550000px;}
.yf{bottom:299.625000px;}
.y32{bottom:302.325000px;}
.y44{bottom:311.475000px;}
.y66{bottom:317.190000px;}
.y1e{bottom:323.250000px;}
.y52{bottom:330.690000px;}
.y31{bottom:334.725000px;}
.ye{bottom:342.870000px;}
.y4{bottom:354.165000px;}
.y65{bottom:364.710000px;}
.y30{bottom:367.125000px;}
.y4d{bottom:369.255000px;}
.y7{bottom:379.830000px;}
.y17{bottom:379.980000px;}
.yd{bottom:386.070000px;}
.y43{bottom:389.775000px;}
.y64{bottom:397.110000px;}
.y2f{bottom:399.525000px;}
.y42{bottom:425.775000px;}
.yc{bottom:429.270000px;}
.y63{bottom:429.510000px;}
.y49{bottom:431.250000px;}
.y2e{bottom:431.925000px;}
.y51{bottom:436.575000px;}
.y25{bottom:438.840000px;}
.y5c{bottom:444.165000px;}
.y5f{bottom:454.395000px;}
.y41{bottom:461.775000px;}
.y2d{bottom:464.370000px;}
.y16{bottom:466.380000px;}
.y3d{bottom:471.030000px;}
.yb{bottom:472.470000px;}
.y1d{bottom:475.020000px;}
.y62{bottom:476.895000px;}
.y6{bottom:482.430000px;}
.y24{bottom:496.440000px;}
.y2c{bottom:496.770000px;}
.y5b{bottom:506.955000px;}
.y61{bottom:509.295000px;}
.y3c{bottom:514.230000px;}
.y1c{bottom:518.220000px;}
.y2b{bottom:529.170000px;}
.y50{bottom:542.595000px;}
.y48{bottom:542.730000px;}
.y40{bottom:542.910000px;}
.y15{bottom:552.810000px;}
.y23{bottom:554.070000px;}
.y14{bottom:561.420000px;}
.y2a{bottom:561.570000px;}
.y27{bottom:561.810000px;}
.y5a{bottom:593.355000px;}
.y8{bottom:656.970000px;}
.y1a{bottom:670.395000px;}
.y22{bottom:672.015000px;}
.y3b{bottom:673.635000px;}
.ya{bottom:699.840000px;}
.y9{bottom:767.850000px;}
.h19{height:7.161328px;}
.h18{height:41.400000px;}
.h4{height:65.884219px;}
.hd{height:107.419922px;}
.h12{height:107.563148px;}
.h2{height:109.406250px;}
.h6{height:110.583984px;}
.hc{height:119.594180px;}
.h1c{height:119.737406px;}
.h15{height:123.116836px;}
.h16{height:123.264281px;}
.h17{height:134.912461px;}
.h8{height:143.226562px;}
.h9{height:143.369789px;}
.h14{height:147.445312px;}
.h11{height:147.592758px;}
.h1a{height:153.343125px;}
.h1b{height:153.490570px;}
.h5{height:164.109375px;}
.ha{height:171.773789px;}
.h1{height:187.084688px;}
.h10{height:191.207461px;}
.hf{height:191.350688px;}
.h13{height:214.839844px;}
.he{height:228.287109px;}
.hb{height:251.732813px;}
.h7{height:270.562148px;}
.h3{height:358.209633px;}
.h0{height:810.000000px;}
.w3{width:416.775000px;}
.w2{width:539.355000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5{left:4.139979px;}
.xc{left:10.799979px;}
.x1b{left:19.763979px;}
.x9{left:25.739979px;}
.x14{left:48.779979px;}
.x23{left:60.695979px;}
.xb{left:62.135979px;}
.x21{left:64.259979px;}
.x24{left:82.799979px;}
.xa{left:88.451979px;}
.x12{left:93.887979px;}
.x2{left:104.291979px;}
.xd{left:109.799979px;}
.x13{left:113.039979px;}
.x4{left:118.403979px;}
.x1c{left:144.251979px;}
.x17{left:174.269979px;}
.x15{left:186.089979px;}
.x1d{left:206.429979px;}
.x6{left:209.369979px;}
.x10{left:220.064979px;}
.x26{left:361.439979px;}
.x25{left:386.459979px;}
.x1e{left:395.279979px;}
.xf{left:419.369979px;}
.x7{left:454.829979px;}
.x3{left:467.639979px;}
.x22{left:494.354979px;}
.x20{left:502.454979px;}
.x27{left:504.975000px;}
.x1{left:592.634979px;}
.x28{left:609.555000px;}
.x11{left:613.259979px;}
.x8{left:651.929979px;}
.x1f{left:767.009979px;}
.x18{left:1067.729979px;}
.x1a{left:1085.294979px;}
.x19{left:1101.569979px;}
.x16{left:1202.684979px;}
.xe{left:1298.519979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-17.706667pt;}
.ls2{letter-spacing:-0.422400pt;}
.ls27{letter-spacing:-0.325333pt;}
.ls12{letter-spacing:-0.300800pt;}
.ls11{letter-spacing:-0.285333pt;}
.ls23{letter-spacing:-0.259200pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.236267pt;}
.ls13{letter-spacing:-0.213867pt;}
.ls26{letter-spacing:-0.186667pt;}
.ls15{letter-spacing:-0.181867pt;}
.ls25{letter-spacing:-0.180267pt;}
.ls28{letter-spacing:-0.162133pt;}
.ls1b{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.134400pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.083733pt;}
.ls22{letter-spacing:-0.053867pt;}
.ls1a{letter-spacing:-0.032000pt;}
.ls1e{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.007040pt;}
.ls10{letter-spacing:0.008213pt;}
.ls24{letter-spacing:0.050560pt;}
.ls9{letter-spacing:0.060800pt;}
.ls1{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.079360pt;}
.ls19{letter-spacing:0.102400pt;}
.ls1c{letter-spacing:0.154667pt;}
.lse{letter-spacing:0.196267pt;}
.ls29{letter-spacing:0.211733pt;}
.lsc{letter-spacing:0.229333pt;}
.ls20{letter-spacing:0.839168pt;}
.ls21{letter-spacing:0.964480pt;}
.ls3{letter-spacing:21.952000pt;}
.ls1f{letter-spacing:23.879168pt;}
.lsf{letter-spacing:24.004480pt;}
.ls16{letter-spacing:58.720000pt;}
.ls5{letter-spacing:85.317376pt;}
.ls4{letter-spacing:85.376000pt;}
.ls18{letter-spacing:86.675200pt;}
.ls17{letter-spacing:86.720000pt;}
.ws3{word-spacing:-71.926528pt;}
.ws0{word-spacing:-56.908800pt;}
.ws12{word-spacing:-53.237547pt;}
.ws19{word-spacing:-53.111808pt;}
.ws11{word-spacing:-53.082880pt;}
.ws8{word-spacing:-52.797547pt;}
.ws2{word-spacing:-49.984000pt;}
.wse{word-spacing:-38.382613pt;}
.wsd{word-spacing:-38.347008pt;}
.ws7{word-spacing:-35.376213pt;}
.ws18{word-spacing:-30.114048pt;}
.ws16{word-spacing:-28.956928pt;}
.ws15{word-spacing:-28.928000pt;}
.ws13{word-spacing:-28.927995pt;}
.ws5{word-spacing:-28.800000pt;}
.ws4{word-spacing:-28.672000pt;}
.ws9{word-spacing:-24.351147pt;}
.ws1c{word-spacing:-24.183808pt;}
.wsb{word-spacing:-24.154880pt;}
.ws14{word-spacing:-23.895680pt;}
.wsc{word-spacing:-21.696000pt;}
.wsf{word-spacing:-21.664000pt;}
.ws10{word-spacing:-21.536000pt;}
.ws1a{word-spacing:-2.231680pt;}
.ws17{word-spacing:-1.446400pt;}
.wsa{word-spacing:-0.577920pt;}
.ws6{word-spacing:-0.313728pt;}
.ws1b{word-spacing:-0.018261pt;}
.ws1{word-spacing:0.000000pt;}
._8{margin-left:-19.688320pt;}
._11{margin-left:-13.019947pt;}
._c{margin-left:-11.183275pt;}
._10{margin-left:-10.144000pt;}
._5{margin-left:-7.984427pt;}
._4{margin-left:-6.375168pt;}
._1{margin-left:-4.815360pt;}
._9{margin-left:-3.573333pt;}
._2{margin-left:-2.432000pt;}
._0{margin-left:-1.532160pt;}
._3{width:1.514667pt;}
._a{width:2.752000pt;}
._12{width:4.702080pt;}
._b{width:14.806528pt;}
._7{width:17.517013pt;}
._6{width:27.997227pt;}
._e{width:331.023787pt;}
._d{width:334.009173pt;}
._f{width:1062.834005pt;}
.fs12{font-size:6.400000pt;}
.fs3{font-size:58.880000pt;}
.fs9{font-size:74.880000pt;}
.fs5{font-size:96.000000pt;}
.fs10{font-size:96.128000pt;}
.fsb{font-size:106.880000pt;}
.fs11{font-size:107.008000pt;}
.fsf{font-size:117.120000pt;}
.fs1{font-size:128.000000pt;}
.fs7{font-size:128.128000pt;}
.fs13{font-size:133.120000pt;}
.fs14{font-size:133.248000pt;}
.fs8{font-size:149.120000pt;}
.fse{font-size:170.880000pt;}
.fsd{font-size:171.008000pt;}
.fs4{font-size:192.000000pt;}
.fsc{font-size:213.120000pt;}
.fs0{font-size:218.880000pt;}
.fs6{font-size:234.880000pt;}
.fsa{font-size:235.008000pt;}
.fs2{font-size:320.128000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:10.240000pt;}
.y28{bottom:17.664000pt;}
.y26{bottom:19.648000pt;}
.y5d{bottom:35.360000pt;}
.y3{bottom:54.304000pt;}
.y57{bottom:56.768000pt;}
.y1{bottom:56.832000pt;}
.y59{bottom:57.152000pt;}
.y37{bottom:67.680000pt;}
.y4c{bottom:79.264000pt;}
.y13{bottom:83.744000pt;}
.y2{bottom:88.864000pt;}
.y58{bottom:91.712000pt;}
.y56{bottom:93.120000pt;}
.y21{bottom:117.280000pt;}
.y3a{bottom:133.853333pt;}
.y36{bottom:141.946667pt;}
.y4b{bottom:143.133333pt;}
.y47{bottom:143.200000pt;}
.y20{bottom:148.186667pt;}
.y55{bottom:149.373333pt;}
.y12{bottom:151.133333pt;}
.y39{bottom:162.653333pt;}
.y4f{bottom:162.906667pt;}
.y3f{bottom:165.120000pt;}
.y35{bottom:170.786667pt;}
.y5{bottom:177.093333pt;}
.y29{bottom:177.533333pt;}
.y19{bottom:184.133333pt;}
.y1f{bottom:186.586667pt;}
.y54{bottom:188.346667pt;}
.y11{bottom:189.533333pt;}
.y38{bottom:195.773333pt;}
.y34{bottom:199.586667pt;}
.y3e{bottom:203.520000pt;}
.y46{bottom:212.866667pt;}
.y5e{bottom:221.346667pt;}
.y10{bottom:227.933333pt;}
.y33{bottom:228.386667pt;}
.y60{bottom:230.333333pt;}
.y4a{bottom:243.040000pt;}
.y45{bottom:244.866667pt;}
.y4e{bottom:245.946667pt;}
.y67{bottom:253.146667pt;}
.y53{bottom:257.626667pt;}
.y18{bottom:260.933333pt;}
.yf{bottom:266.333333pt;}
.y32{bottom:268.733333pt;}
.y44{bottom:276.866667pt;}
.y66{bottom:281.946667pt;}
.y1e{bottom:287.333333pt;}
.y52{bottom:293.946667pt;}
.y31{bottom:297.533333pt;}
.ye{bottom:304.773333pt;}
.y4{bottom:314.813333pt;}
.y65{bottom:324.186667pt;}
.y30{bottom:326.333333pt;}
.y4d{bottom:328.226667pt;}
.y7{bottom:337.626667pt;}
.y17{bottom:337.760000pt;}
.yd{bottom:343.173333pt;}
.y43{bottom:346.466667pt;}
.y64{bottom:352.986667pt;}
.y2f{bottom:355.133333pt;}
.y42{bottom:378.466667pt;}
.yc{bottom:381.573333pt;}
.y63{bottom:381.786667pt;}
.y49{bottom:383.333333pt;}
.y2e{bottom:383.933333pt;}
.y51{bottom:388.066667pt;}
.y25{bottom:390.080000pt;}
.y5c{bottom:394.813333pt;}
.y5f{bottom:403.906667pt;}
.y41{bottom:410.466667pt;}
.y2d{bottom:412.773333pt;}
.y16{bottom:414.560000pt;}
.y3d{bottom:418.693333pt;}
.yb{bottom:419.973333pt;}
.y1d{bottom:422.240000pt;}
.y62{bottom:423.906667pt;}
.y6{bottom:428.826667pt;}
.y24{bottom:441.280000pt;}
.y2c{bottom:441.573333pt;}
.y5b{bottom:450.626667pt;}
.y61{bottom:452.706667pt;}
.y3c{bottom:457.093333pt;}
.y1c{bottom:460.640000pt;}
.y2b{bottom:470.373333pt;}
.y50{bottom:482.306667pt;}
.y48{bottom:482.426667pt;}
.y40{bottom:482.586667pt;}
.y15{bottom:491.386667pt;}
.y23{bottom:492.506667pt;}
.y14{bottom:499.040000pt;}
.y2a{bottom:499.173333pt;}
.y27{bottom:499.386667pt;}
.y5a{bottom:527.426667pt;}
.y8{bottom:583.973333pt;}
.y1a{bottom:595.906667pt;}
.y22{bottom:597.346667pt;}
.y3b{bottom:598.786667pt;}
.ya{bottom:622.080000pt;}
.y9{bottom:682.533333pt;}
.h19{height:6.365625pt;}
.h18{height:36.800000pt;}
.h4{height:58.563750pt;}
.hd{height:95.484375pt;}
.h12{height:95.611688pt;}
.h2{height:97.250000pt;}
.h6{height:98.296875pt;}
.hc{height:106.305937pt;}
.h1c{height:106.433250pt;}
.h15{height:109.437187pt;}
.h16{height:109.568250pt;}
.h17{height:119.922187pt;}
.h8{height:127.312500pt;}
.h9{height:127.439813pt;}
.h14{height:131.062500pt;}
.h11{height:131.193562pt;}
.h1a{height:136.305000pt;}
.h1b{height:136.436062pt;}
.h5{height:145.875000pt;}
.ha{height:152.687812pt;}
.h1{height:166.297500pt;}
.h10{height:169.962187pt;}
.hf{height:170.089500pt;}
.h13{height:190.968750pt;}
.he{height:202.921875pt;}
.hb{height:223.762500pt;}
.h7{height:240.499687pt;}
.h3{height:318.408562pt;}
.h0{height:720.000000pt;}
.w3{width:370.466667pt;}
.w2{width:479.426667pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.679981pt;}
.xc{left:9.599981pt;}
.x1b{left:17.567981pt;}
.x9{left:22.879981pt;}
.x14{left:43.359981pt;}
.x23{left:53.951981pt;}
.xb{left:55.231981pt;}
.x21{left:57.119981pt;}
.x24{left:73.599981pt;}
.xa{left:78.623981pt;}
.x12{left:83.455981pt;}
.x2{left:92.703981pt;}
.xd{left:97.599981pt;}
.x13{left:100.479981pt;}
.x4{left:105.247981pt;}
.x1c{left:128.223981pt;}
.x17{left:154.906648pt;}
.x15{left:165.413314pt;}
.x1d{left:183.493314pt;}
.x6{left:186.106648pt;}
.x10{left:195.613314pt;}
.x26{left:321.279981pt;}
.x25{left:343.519981pt;}
.x1e{left:351.359981pt;}
.xf{left:372.773314pt;}
.x7{left:404.293314pt;}
.x3{left:415.679981pt;}
.x22{left:439.426648pt;}
.x20{left:446.626648pt;}
.x27{left:448.866667pt;}
.x1{left:526.786648pt;}
.x28{left:541.826667pt;}
.x11{left:545.119981pt;}
.x8{left:579.493314pt;}
.x1f{left:681.786648pt;}
.x18{left:949.093314pt;}
.x1a{left:964.706648pt;}
.x19{left:979.173314pt;}
.x16{left:1069.053314pt;}
.xe{left:1154.239981pt;}
}




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