
    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_575894f3da041dce6fec97ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_8df427a9de52264b2dbed03e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.965820;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_e67b79b4c06041cc736f69f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.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:ff4;src:url('chunks/assets/font_54e71c63ed7b53969132224a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.994141;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_92dd8cd9f06164bfb6f1a939.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.975586;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_d5da394c25daa0d3f242437d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008301;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_0cc5247270a9943468c75506.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.010254;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_599a585213d2e165a3939b69.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_4a89c55465307ed0cc1dd427.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010254;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_88e119d34e60fd09becafca7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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);}
.v1{vertical-align:-5.760936px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000960px;}
.ls7{letter-spacing:0.035160px;}
.ls3{letter-spacing:0.142620px;}
.ls2{letter-spacing:0.144960px;}
.ls6{letter-spacing:0.287520px;}
.ls5{letter-spacing:0.504480px;}
.ls4{letter-spacing:0.624000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-15.983868px;}
._4{margin-left:-11.016000px;}
._3{margin-left:-3.960000px;}
._0{margin-left:-1.025830px;}
._1{width:1.037830px;}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc0{color:rgb(46,116,181);}
.fs4{font-size:2.880000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:9.000000px;}
.y4{bottom:17.820000px;}
.yc0{bottom:96.515850px;}
.y77{bottom:110.375850px;}
.y29{bottom:114.335700px;}
.ybf{bottom:122.075550px;}
.y99{bottom:135.935700px;}
.y52{bottom:136.116150px;}
.y28{bottom:140.076000px;}
.ybe{bottom:147.815850px;}
.ye0{bottom:159.330000px;}
.y98{bottom:161.490000px;}
.y76{bottom:161.850000px;}
.y51{bottom:161.851200px;}
.y27{bottom:165.809700px;}
.ybd{bottom:173.549700px;}
.y97{bottom:187.229700px;}
.y75{bottom:187.590000px;}
.y50{bottom:187.590900px;}
.y26{bottom:191.550000px;}
.ybc{bottom:199.290000px;}
.ydf{bottom:200.370300px;}
.y74{bottom:212.970000px;}
.y4f{bottom:213.330600px;}
.y25{bottom:217.290000px;}
.ybb{bottom:225.029700px;}
.y73{bottom:237.990000px;}
.y96{bottom:238.710000px;}
.y4e{bottom:238.890900px;}
.yde{bottom:241.410000px;}
.y24{bottom:243.030300px;}
.yba{bottom:250.770000px;}
.y72{bottom:263.190000px;}
.y95{bottom:264.090000px;}
.y4d{bottom:264.630600px;}
.ydd{bottom:264.990000px;}
.y23{bottom:268.770000px;}
.yb9{bottom:274.350000px;}
.y71{bottom:288.929700px;}
.y94{bottom:289.470000px;}
.y4c{bottom:290.370300px;}
.ydc{bottom:290.550000px;}
.y22{bottom:294.509700px;}
.yb8{bottom:298.110000px;}
.y70{bottom:314.670000px;}
.y93{bottom:315.209700px;}
.y4b{bottom:316.110000px;}
.ydb{bottom:317.730000px;}
.y21{bottom:320.067450px;}
.yb7{bottom:321.150000px;}
.y6f{bottom:340.455000px;}
.y4a{bottom:340.995000px;}
.yda{bottom:341.895000px;}
.yb6{bottom:345.135000px;}
.y20{bottom:345.852150px;}
.y49{bottom:364.575000px;}
.y6e{bottom:365.835000px;}
.y92{bottom:366.554700px;}
.yd9{bottom:367.635000px;}
.yb5{bottom:370.875000px;}
.y1f{bottom:371.592450px;}
.y48{bottom:389.775000px;}
.y6d{bottom:391.035000px;}
.yd8{bottom:391.395000px;}
.y91{bottom:392.295000px;}
.yb4{bottom:396.615000px;}
.y1e{bottom:397.332750px;}
.yd7{bottom:414.975000px;}
.y47{bottom:415.515000px;}
.y6c{bottom:416.775000px;}
.y90{bottom:418.035000px;}
.yb3{bottom:422.355000px;}
.y1d{bottom:423.073050px;}
.yd6{bottom:440.175000px;}
.y46{bottom:441.254700px;}
.y6b{bottom:442.515000px;}
.y8f{bottom:443.773350px;}
.yb2{bottom:448.095000px;}
.y1c{bottom:448.813350px;}
.yf2{bottom:464.655000px;}
.yd5{bottom:465.915000px;}
.y45{bottom:466.995000px;}
.y6a{bottom:468.255000px;}
.y8e{bottom:469.513650px;}
.yb1{bottom:473.655000px;}
.y1b{bottom:474.553650px;}
.yd4{bottom:491.655000px;}
.y44{bottom:492.554700px;}
.y69{bottom:493.635000px;}
.y8d{bottom:495.253950px;}
.yb0{bottom:499.395000px;}
.y1a{bottom:500.293950px;}
.yf1{bottom:505.695300px;}
.yd3{bottom:517.395000px;}
.y43{bottom:518.295000px;}
.y68{bottom:518.835000px;}
.y8c{bottom:520.994250px;}
.yaf{bottom:525.135000px;}
.y19{bottom:526.034250px;}
.yd2{bottom:543.134400px;}
.y42{bottom:544.034700px;}
.y67{bottom:544.575000px;}
.y8b{bottom:546.734550px;}
.yf0{bottom:546.734700px;}
.yae{bottom:550.875000px;}
.y18{bottom:551.774550px;}
.yd1{bottom:568.874700px;}
.y41{bottom:569.774250px;}
.y66{bottom:570.313350px;}
.y8a{bottom:572.474850px;}
.yad{bottom:576.615000px;}
.y17{bottom:577.514850px;}
.yef{bottom:587.775000px;}
.yd0{bottom:594.615300px;}
.y40{bottom:595.514550px;}
.y65{bottom:596.053050px;}
.y89{bottom:598.215150px;}
.yac{bottom:602.355000px;}
.y16{bottom:603.074550px;}
.ycf{bottom:620.205900px;}
.y3f{bottom:621.284100px;}
.y64{bottom:621.823200px;}
.y88{bottom:623.984700px;}
.yab{bottom:628.125000px;}
.y15{bottom:628.844700px;}
.yee{bottom:628.845000px;}
.yce{bottom:645.945600px;}
.y3e{bottom:647.024400px;}
.y63{bottom:647.563500px;}
.y87{bottom:649.546200px;}
.yaa{bottom:653.865000px;}
.y14{bottom:654.585000px;}
.yed{bottom:669.884700px;}
.ycd{bottom:671.685300px;}
.y3d{bottom:672.764700px;}
.y62{bottom:673.303800px;}
.y86{bottom:675.285900px;}
.ya9{bottom:676.185000px;}
.y13{bottom:679.425000px;}
.ycc{bottom:697.425600px;}
.y3c{bottom:698.505000px;}
.y61{bottom:699.044100px;}
.y85{bottom:701.025600px;}
.y12{bottom:703.905000px;}
.yec{bottom:710.745000px;}
.ya8{bottom:721.005000px;}
.ycb{bottom:723.165300px;}
.y3b{bottom:724.245300px;}
.y60{bottom:724.784400px;}
.y84{bottom:726.765300px;}
.y11{bottom:730.185000px;}
.ya7{bottom:743.325000px;}
.yca{bottom:748.905000px;}
.y3a{bottom:749.805600px;}
.y5f{bottom:750.524700px;}
.yeb{bottom:751.784700px;}
.y83{bottom:752.505000px;}
.y10{bottom:755.925000px;}
.ya6{bottom:765.645000px;}
.yc9{bottom:774.645000px;}
.y39{bottom:775.545300px;}
.y5e{bottom:776.085000px;}
.y82{bottom:777.345000px;}
.yf{bottom:781.664400px;}
.ya5{bottom:787.965000px;}
.yea{bottom:792.825000px;}
.yc8{bottom:800.385300px;}
.y81{bottom:800.925000px;}
.y38{bottom:801.285000px;}
.y5d{bottom:801.825000px;}
.ye{bottom:807.404700px;}
.ya4{bottom:810.465000px;}
.y80{bottom:826.125000px;}
.y37{bottom:826.845000px;}
.y5c{bottom:827.385000px;}
.ya3{bottom:832.785000px;}
.yd{bottom:833.145000px;}
.ye9{bottom:833.865000px;}
.y36{bottom:851.865000px;}
.yc7{bottom:851.865300px;}
.y5b{bottom:852.585000px;}
.ya2{bottom:855.105000px;}
.yc{bottom:857.985000px;}
.ye8{bottom:874.949700px;}
.y35{bottom:876.750000px;}
.y7f{bottom:877.646850px;}
.ya1{bottom:877.650000px;}
.y5a{bottom:878.370000px;}
.yb{bottom:882.330000px;}
.y34{bottom:902.490000px;}
.y7e{bottom:903.207150px;}
.ya0{bottom:903.210000px;}
.yc6{bottom:903.210300px;}
.y59{bottom:904.109400px;}
.ya{bottom:909.510000px;}
.ye7{bottom:915.990000px;}
.y7d{bottom:928.947450px;}
.y9f{bottom:928.949100px;}
.y33{bottom:928.950000px;}
.y58{bottom:929.849700px;}
.y9{bottom:949.830000px;}
.y7c{bottom:954.687750px;}
.y9e{bottom:954.689400px;}
.y32{bottom:954.690000px;}
.y57{bottom:955.590000px;}
.ye6{bottom:956.850000px;}
.y7b{bottom:980.428050px;}
.yc5{bottom:980.428650px;}
.y31{bottom:980.429100px;}
.y9d{bottom:980.429700px;}
.y56{bottom:981.150000px;}
.y8{bottom:987.630000px;}
.ye5{bottom:997.890300px;}
.y7a{bottom:1006.168350px;}
.yc4{bottom:1006.168950px;}
.y30{bottom:1006.169400px;}
.y9c{bottom:1006.170000px;}
.y55{bottom:1006.710000px;}
.y7{bottom:1025.610000px;}
.y79{bottom:1031.908650px;}
.yc3{bottom:1031.909250px;}
.y2f{bottom:1031.909700px;}
.y54{bottom:1031.910000px;}
.ye4{bottom:1038.930000px;}
.y78{bottom:1057.648950px;}
.yc2{bottom:1057.649550px;}
.y2e{bottom:1057.650000px;}
.y6{bottom:1063.410000px;}
.y3{bottom:1078.890000px;}
.ye3{bottom:1079.969700px;}
.y53{bottom:1083.389250px;}
.yc1{bottom:1083.389850px;}
.y2d{bottom:1083.390000px;}
.y2c{bottom:1109.129550px;}
.y9b{bottom:1109.130000px;}
.y2{bottom:1118.490000px;}
.ye2{bottom:1121.010450px;}
.y2b{bottom:1134.869850px;}
.y9a{bottom:1134.870000px;}
.y1{bottom:1149.840000px;}
.y2a{bottom:1160.640000px;}
.ye1{bottom:1162.080000px;}
.h6{height:0.000000px;}
.h4{height:31.500000px;}
.h5{height:41.291016px;}
.h11{height:44.149219px;}
.h13{height:48.224531px;}
.h15{height:48.225731px;}
.h7{height:48.289219px;}
.h9{height:48.353906px;}
.ha{height:52.417969px;}
.hc{height:52.419769px;}
.h12{height:52.420369px;}
.hf{height:52.420969px;}
.hd{height:52.421569px;}
.hb{height:52.428169px;}
.h10{height:52.488281px;}
.he{height:52.558594px;}
.h3{height:56.146289px;}
.h8{height:56.763281px;}
.h14{height:61.493555px;}
.h2{height:80.140430px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:204.510000px;}
.w2{width:500.655000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:13.500000px;}
.x4{left:110.205000px;}
.x1{left:127.655850px;}
.x9{left:154.650000px;}
.x7{left:169.410000px;}
.xa{left:181.650033px;}
.x6{left:422.535000px;}
.x8{left:426.855000px;}
.x5{left:478.545000px;}
.x3{left:628.305000px;}
@media print{
.v1{vertical-align:-5.120832pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000853pt;}
.ls7{letter-spacing:0.031253pt;}
.ls3{letter-spacing:0.126773pt;}
.ls2{letter-spacing:0.128853pt;}
.ls6{letter-spacing:0.255573pt;}
.ls5{letter-spacing:0.448427pt;}
.ls4{letter-spacing:0.554667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-14.207883pt;}
._4{margin-left:-9.792000pt;}
._3{margin-left:-3.520000pt;}
._0{margin-left:-0.911849pt;}
._1{width:0.922515pt;}
.fs4{font-size:2.560000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:8.000000pt;}
.y4{bottom:15.840000pt;}
.yc0{bottom:85.791867pt;}
.y77{bottom:98.111867pt;}
.y29{bottom:101.631733pt;}
.ybf{bottom:108.511600pt;}
.y99{bottom:120.831733pt;}
.y52{bottom:120.992133pt;}
.y28{bottom:124.512000pt;}
.ybe{bottom:131.391867pt;}
.ye0{bottom:141.626667pt;}
.y98{bottom:143.546667pt;}
.y76{bottom:143.866667pt;}
.y51{bottom:143.867733pt;}
.y27{bottom:147.386400pt;}
.ybd{bottom:154.266400pt;}
.y97{bottom:166.426400pt;}
.y75{bottom:166.746667pt;}
.y50{bottom:166.747467pt;}
.y26{bottom:170.266667pt;}
.ybc{bottom:177.146667pt;}
.ydf{bottom:178.106933pt;}
.y74{bottom:189.306667pt;}
.y4f{bottom:189.627200pt;}
.y25{bottom:193.146667pt;}
.ybb{bottom:200.026400pt;}
.y73{bottom:211.546667pt;}
.y96{bottom:212.186667pt;}
.y4e{bottom:212.347467pt;}
.yde{bottom:214.586667pt;}
.y24{bottom:216.026933pt;}
.yba{bottom:222.906667pt;}
.y72{bottom:233.946667pt;}
.y95{bottom:234.746667pt;}
.y4d{bottom:235.227200pt;}
.ydd{bottom:235.546667pt;}
.y23{bottom:238.906667pt;}
.yb9{bottom:243.866667pt;}
.y71{bottom:256.826400pt;}
.y94{bottom:257.306667pt;}
.y4c{bottom:258.106933pt;}
.ydc{bottom:258.266667pt;}
.y22{bottom:261.786400pt;}
.yb8{bottom:264.986667pt;}
.y70{bottom:279.706667pt;}
.y93{bottom:280.186400pt;}
.y4b{bottom:280.986667pt;}
.ydb{bottom:282.426667pt;}
.y21{bottom:284.504400pt;}
.yb7{bottom:285.466667pt;}
.y6f{bottom:302.626667pt;}
.y4a{bottom:303.106667pt;}
.yda{bottom:303.906667pt;}
.yb6{bottom:306.786667pt;}
.y20{bottom:307.424133pt;}
.y49{bottom:324.066667pt;}
.y6e{bottom:325.186667pt;}
.y92{bottom:325.826400pt;}
.yd9{bottom:326.786667pt;}
.yb5{bottom:329.666667pt;}
.y1f{bottom:330.304400pt;}
.y48{bottom:346.466667pt;}
.y6d{bottom:347.586667pt;}
.yd8{bottom:347.906667pt;}
.y91{bottom:348.706667pt;}
.yb4{bottom:352.546667pt;}
.y1e{bottom:353.184667pt;}
.yd7{bottom:368.866667pt;}
.y47{bottom:369.346667pt;}
.y6c{bottom:370.466667pt;}
.y90{bottom:371.586667pt;}
.yb3{bottom:375.426667pt;}
.y1d{bottom:376.064933pt;}
.yd6{bottom:391.266667pt;}
.y46{bottom:392.226400pt;}
.y6b{bottom:393.346667pt;}
.y8f{bottom:394.465200pt;}
.yb2{bottom:398.306667pt;}
.y1c{bottom:398.945200pt;}
.yf2{bottom:413.026667pt;}
.yd5{bottom:414.146667pt;}
.y45{bottom:415.106667pt;}
.y6a{bottom:416.226667pt;}
.y8e{bottom:417.345467pt;}
.yb1{bottom:421.026667pt;}
.y1b{bottom:421.825467pt;}
.yd4{bottom:437.026667pt;}
.y44{bottom:437.826400pt;}
.y69{bottom:438.786667pt;}
.y8d{bottom:440.225733pt;}
.yb0{bottom:443.906667pt;}
.y1a{bottom:444.705733pt;}
.yf1{bottom:449.506933pt;}
.yd3{bottom:459.906667pt;}
.y43{bottom:460.706667pt;}
.y68{bottom:461.186667pt;}
.y8c{bottom:463.106000pt;}
.yaf{bottom:466.786667pt;}
.y19{bottom:467.586000pt;}
.yd2{bottom:482.786133pt;}
.y42{bottom:483.586400pt;}
.y67{bottom:484.066667pt;}
.y8b{bottom:485.986267pt;}
.yf0{bottom:485.986400pt;}
.yae{bottom:489.666667pt;}
.y18{bottom:490.466267pt;}
.yd1{bottom:505.666400pt;}
.y41{bottom:506.466000pt;}
.y66{bottom:506.945200pt;}
.y8a{bottom:508.866533pt;}
.yad{bottom:512.546667pt;}
.y17{bottom:513.346533pt;}
.yef{bottom:522.466667pt;}
.yd0{bottom:528.546933pt;}
.y40{bottom:529.346267pt;}
.y65{bottom:529.824933pt;}
.y89{bottom:531.746800pt;}
.yac{bottom:535.426667pt;}
.y16{bottom:536.066267pt;}
.ycf{bottom:551.294133pt;}
.y3f{bottom:552.252533pt;}
.y64{bottom:552.731733pt;}
.y88{bottom:554.653067pt;}
.yab{bottom:558.333333pt;}
.y15{bottom:558.973067pt;}
.yee{bottom:558.973333pt;}
.yce{bottom:574.173867pt;}
.y3e{bottom:575.132800pt;}
.y63{bottom:575.612000pt;}
.y87{bottom:577.374400pt;}
.yaa{bottom:581.213333pt;}
.y14{bottom:581.853333pt;}
.yed{bottom:595.453067pt;}
.ycd{bottom:597.053600pt;}
.y3d{bottom:598.013067pt;}
.y62{bottom:598.492267pt;}
.y86{bottom:600.254133pt;}
.ya9{bottom:601.053333pt;}
.y13{bottom:603.933333pt;}
.ycc{bottom:619.933867pt;}
.y3c{bottom:620.893333pt;}
.y61{bottom:621.372533pt;}
.y85{bottom:623.133867pt;}
.y12{bottom:625.693333pt;}
.yec{bottom:631.773333pt;}
.ya8{bottom:640.893333pt;}
.ycb{bottom:642.813600pt;}
.y3b{bottom:643.773600pt;}
.y60{bottom:644.252800pt;}
.y84{bottom:646.013600pt;}
.y11{bottom:649.053333pt;}
.ya7{bottom:660.733333pt;}
.yca{bottom:665.693333pt;}
.y3a{bottom:666.493867pt;}
.y5f{bottom:667.133067pt;}
.yeb{bottom:668.253067pt;}
.y83{bottom:668.893333pt;}
.y10{bottom:671.933333pt;}
.ya6{bottom:680.573333pt;}
.yc9{bottom:688.573333pt;}
.y39{bottom:689.373600pt;}
.y5e{bottom:689.853333pt;}
.y82{bottom:690.973333pt;}
.yf{bottom:694.812800pt;}
.ya5{bottom:700.413333pt;}
.yea{bottom:704.733333pt;}
.yc8{bottom:711.453600pt;}
.y81{bottom:711.933333pt;}
.y38{bottom:712.253333pt;}
.y5d{bottom:712.733333pt;}
.ye{bottom:717.693067pt;}
.ya4{bottom:720.413333pt;}
.y80{bottom:734.333333pt;}
.y37{bottom:734.973333pt;}
.y5c{bottom:735.453333pt;}
.ya3{bottom:740.253333pt;}
.yd{bottom:740.573333pt;}
.ye9{bottom:741.213333pt;}
.y36{bottom:757.213333pt;}
.yc7{bottom:757.213600pt;}
.y5b{bottom:757.853333pt;}
.ya2{bottom:760.093333pt;}
.yc{bottom:762.653333pt;}
.ye8{bottom:777.733067pt;}
.y35{bottom:779.333333pt;}
.y7f{bottom:780.130533pt;}
.ya1{bottom:780.133333pt;}
.y5a{bottom:780.773333pt;}
.yb{bottom:784.293333pt;}
.y34{bottom:802.213333pt;}
.y7e{bottom:802.850800pt;}
.ya0{bottom:802.853333pt;}
.yc6{bottom:802.853600pt;}
.y59{bottom:803.652800pt;}
.ya{bottom:808.453333pt;}
.ye7{bottom:814.213333pt;}
.y7d{bottom:825.731067pt;}
.y9f{bottom:825.732533pt;}
.y33{bottom:825.733333pt;}
.y58{bottom:826.533067pt;}
.y9{bottom:844.293333pt;}
.y7c{bottom:848.611333pt;}
.y9e{bottom:848.612800pt;}
.y32{bottom:848.613333pt;}
.y57{bottom:849.413333pt;}
.ye6{bottom:850.533333pt;}
.y7b{bottom:871.491600pt;}
.yc5{bottom:871.492133pt;}
.y31{bottom:871.492533pt;}
.y9d{bottom:871.493067pt;}
.y56{bottom:872.133333pt;}
.y8{bottom:877.893333pt;}
.ye5{bottom:887.013600pt;}
.y7a{bottom:894.371867pt;}
.yc4{bottom:894.372400pt;}
.y30{bottom:894.372800pt;}
.y9c{bottom:894.373333pt;}
.y55{bottom:894.853333pt;}
.y7{bottom:911.653333pt;}
.y79{bottom:917.252133pt;}
.yc3{bottom:917.252667pt;}
.y2f{bottom:917.253067pt;}
.y54{bottom:917.253333pt;}
.ye4{bottom:923.493333pt;}
.y78{bottom:940.132400pt;}
.yc2{bottom:940.132933pt;}
.y2e{bottom:940.133333pt;}
.y6{bottom:945.253333pt;}
.y3{bottom:959.013333pt;}
.ye3{bottom:959.973067pt;}
.y53{bottom:963.012667pt;}
.yc1{bottom:963.013200pt;}
.y2d{bottom:963.013333pt;}
.y2c{bottom:985.892933pt;}
.y9b{bottom:985.893333pt;}
.y2{bottom:994.213333pt;}
.ye2{bottom:996.453733pt;}
.y2b{bottom:1008.773200pt;}
.y9a{bottom:1008.773333pt;}
.y1{bottom:1022.080000pt;}
.y2a{bottom:1031.680000pt;}
.ye1{bottom:1032.960000pt;}
.h6{height:0.000000pt;}
.h4{height:28.000000pt;}
.h5{height:36.703125pt;}
.h11{height:39.243750pt;}
.h13{height:42.866250pt;}
.h15{height:42.867317pt;}
.h7{height:42.923750pt;}
.h9{height:42.981250pt;}
.ha{height:46.593750pt;}
.hc{height:46.595350pt;}
.h12{height:46.595883pt;}
.hf{height:46.596417pt;}
.hd{height:46.596950pt;}
.hb{height:46.602817pt;}
.h10{height:46.656250pt;}
.he{height:46.718750pt;}
.h3{height:49.907812pt;}
.h8{height:50.456250pt;}
.h14{height:54.660938pt;}
.h2{height:71.235937pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:181.786667pt;}
.w2{width:445.026667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:12.000000pt;}
.x4{left:97.960000pt;}
.x1{left:113.471867pt;}
.x9{left:137.466667pt;}
.x7{left:150.586667pt;}
.xa{left:161.466696pt;}
.x6{left:375.586667pt;}
.x8{left:379.426667pt;}
.x5{left:425.373333pt;}
.x3{left:558.493333pt;}
}




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