
    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_db7f23c336606c6e8d213268.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_8f319b2cde3a22e6a73ad70a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_655b260bc1513991d855b2ea.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_e6ae7f5051b863d979d50546.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e8830a42948cc0e4e7782016.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_7e5a9a32ddd3a6569405fddc.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_32c2c6ac2d327f97127c933d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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;}
.lsc{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.440000px;}
.lsa{letter-spacing:6.480000px;}
.ls8{letter-spacing:33.984000px;}
.ls6{letter-spacing:54.840000px;}
.ls0{letter-spacing:675.540000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws3{word-spacing:-19.440000px;}
.ws2{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.064000px;}
.ws0{word-spacing:0.000000px;}
._f{margin-left:-2.119200px;}
._0{margin-left:-1.080000px;}
._1{width:1.008000px;}
._2{width:2.057280px;}
._b{width:3.356160px;}
._e{width:4.752000px;}
._10{width:6.480000px;}
._11{width:7.632000px;}
._5{width:9.216000px;}
._6{width:10.584000px;}
._14{width:12.216000px;}
._d{width:13.752000px;}
._c{width:14.904000px;}
._17{width:15.912000px;}
._13{width:16.927200px;}
._8{width:19.800000px;}
._7{width:20.880000px;}
._3{width:22.536000px;}
._4{width:23.616000px;}
._12{width:25.303200px;}
._18{width:26.462400px;}
._9{width:28.440000px;}
._a{width:29.520000px;}
._16{width:30.743520px;}
._15{width:31.813920px;}
._19{width:33.552000px;}
._27{width:35.136000px;}
._28{width:36.360000px;}
._1e{width:37.368000px;}
._20{width:38.510400px;}
._1d{width:39.991200px;}
._1b{width:41.112000px;}
._1c{width:42.264000px;}
._1a{width:44.208000px;}
._2d{width:45.216000px;}
._22{width:47.992800px;}
._21{width:49.423200px;}
._2c{width:53.472000px;}
._2f{width:72.607200px;}
._30{width:74.056800px;}
._29{width:100.080000px;}
._2e{width:156.199200px;}
._2b{width:166.320000px;}
._24{width:216.000000px;}
._25{width:217.224000px;}
._1f{width:235.399200px;}
._23{width:405.360000px;}
._26{width:479.047200px;}
._2a{width:989.496000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.600000px;}
.y4{bottom:77.616000px;}
.y117{bottom:124.056000px;}
.ydd{bottom:124.236000px;}
.y7f{bottom:126.036000px;}
.yf4{bottom:127.116000px;}
.ya7{bottom:127.836000px;}
.ybf{bottom:128.016000px;}
.y9f{bottom:128.196000px;}
.y57{bottom:133.236000px;}
.y25{bottom:135.396000px;}
.y71{bottom:138.096000px;}
.y42{bottom:151.770000px;}
.y116{bottom:155.010000px;}
.ydc{bottom:156.990000px;}
.y7e{bottom:157.170000px;}
.yf3{bottom:158.250000px;}
.ybe{bottom:158.970000px;}
.y11a{bottom:159.150000px;}
.y109{bottom:162.030000px;}
.y56{bottom:164.190000px;}
.y24{bottom:166.350000px;}
.y70{bottom:169.230000px;}
.ya6{bottom:170.850000px;}
.y9e{bottom:171.210000px;}
.y115{bottom:186.150000px;}
.ydb{bottom:187.950000px;}
.y7d{bottom:188.130000px;}
.yf2{bottom:189.210000px;}
.ybd{bottom:190.110000px;}
.y108{bottom:193.170000px;}
.y41{bottom:194.790000px;}
.y55{bottom:195.150000px;}
.y23{bottom:197.490000px;}
.y6f{bottom:200.190000px;}
.y9d{bottom:202.350000px;}
.ya5{bottom:213.870000px;}
.y114{bottom:217.110000px;}
.yda{bottom:219.090000px;}
.y7c{bottom:219.270000px;}
.yf1{bottom:220.350000px;}
.ybc{bottom:221.070000px;}
.y107{bottom:224.130000px;}
.y54{bottom:226.290000px;}
.y22{bottom:228.450000px;}
.y6e{bottom:231.150000px;}
.y9c{bottom:233.310000px;}
.y40{bottom:238.350000px;}
.y119{bottom:245.370000px;}
.y113{bottom:248.250000px;}
.yd9{bottom:250.050000px;}
.y7b{bottom:250.230000px;}
.yf0{bottom:251.310000px;}
.ybb{bottom:252.210000px;}
.y106{bottom:255.270000px;}
.y53{bottom:257.250000px;}
.y21{bottom:259.590000px;}
.y6d{bottom:262.290000px;}
.y9b{bottom:264.450000px;}
.y3f{bottom:269.310000px;}
.y112{bottom:279.210000px;}
.yd8{bottom:281.190000px;}
.y7a{bottom:281.370000px;}
.yef{bottom:282.450000px;}
.yba{bottom:283.170000px;}
.y105{bottom:286.230000px;}
.y52{bottom:288.390000px;}
.y20{bottom:290.550000px;}
.y86{bottom:293.250000px;}
.y3e{bottom:300.450000px;}
.y6c{bottom:305.310000px;}
.y9a{bottom:307.470000px;}
.y111{bottom:310.350000px;}
.yd7{bottom:312.150000px;}
.y8b{bottom:312.330000px;}
.yee{bottom:313.410000px;}
.yb9{bottom:313.950000px;}
.y104{bottom:317.370000px;}
.ya4{bottom:319.350000px;}
.y1f{bottom:321.690000px;}
.y79{bottom:324.390000px;}
.y51{bottom:331.095000px;}
.y3d{bottom:331.455000px;}
.y6b{bottom:336.495000px;}
.y99{bottom:338.475000px;}
.y110{bottom:341.355000px;}
.yd6{bottom:342.975000px;}
.y8a{bottom:343.515000px;}
.yed{bottom:344.235000px;}
.y103{bottom:348.375000px;}
.y1e{bottom:352.695000px;}
.y85{bottom:355.395000px;}
.yb8{bottom:358.275000px;}
.y3c{bottom:362.595000px;}
.y6a{bottom:367.455000px;}
.y10f{bottom:372.495000px;}
.y50{bottom:374.475000px;}
.yd5{bottom:375.555000px;}
.yec{bottom:376.815000px;}
.y102{bottom:379.515000px;}
.y98{bottom:381.495000px;}
.y1d{bottom:383.835000px;}
.y89{bottom:386.175000px;}
.y84{bottom:386.535000px;}
.y69{bottom:398.595000px;}
.yb7{bottom:401.655000px;}
.y10e{bottom:403.455000px;}
.y3b{bottom:405.615000px;}
.yd4{bottom:406.695000px;}
.yeb{bottom:407.955000px;}
.y101{bottom:410.475000px;}
.y1c{bottom:414.795000px;}
.y83{bottom:417.495000px;}
.y97{bottom:424.695000px;}
.y88{bottom:429.195000px;}
.y68{bottom:429.555000px;}
.yb6{bottom:432.795000px;}
.y10d{bottom:434.595000px;}
.y3a{bottom:436.575000px;}
.yd3{bottom:437.655000px;}
.yea{bottom:438.915000px;}
.y100{bottom:441.615000px;}
.y1b{bottom:445.935000px;}
.y96{bottom:455.655000px;}
.y67{bottom:460.695000px;}
.yb5{bottom:463.755000px;}
.y10c{bottom:465.555000px;}
.y39{bottom:467.715000px;}
.yd2{bottom:468.795000px;}
.ye9{bottom:470.055000px;}
.y87{bottom:472.575000px;}
.y4f{bottom:479.595000px;}
.yff{bottom:484.275000px;}
.y95{bottom:486.795000px;}
.y1a{bottom:488.955000px;}
.y66{bottom:491.655000px;}
.yb4{bottom:494.535000px;}
.y10b{bottom:496.695000px;}
.y38{bottom:498.675000px;}
.yd1{bottom:499.755000px;}
.ye8{bottom:501.015000px;}
.y82{bottom:503.715000px;}
.y4e{bottom:510.735000px;}
.y94{bottom:517.755000px;}
.y19{bottom:519.915000px;}
.y78{bottom:522.795000px;}
.yb3{bottom:527.115000px;}
.yfe{bottom:527.295000px;}
.y10a{bottom:527.655000px;}
.y37{bottom:529.815000px;}
.yd0{bottom:530.895000px;}
.ye7{bottom:532.155000px;}
.y65{bottom:534.675000px;}
.y4d{bottom:541.695000px;}
.y118{bottom:546.375000px;}
.y93{bottom:548.715000px;}
.y18{bottom:551.055000px;}
.y77{bottom:553.755000px;}
.yb2{bottom:558.255000px;}
.yfd{bottom:558.795000px;}
.y36{bottom:560.775000px;}
.ycf{bottom:561.495000px;}
.ye6{bottom:562.755000px;}
.y64{bottom:565.815000px;}
.y92{bottom:579.855000px;}
.y17{bottom:582.015000px;}
.y4c{bottom:584.715000px;}
.yb1{bottom:589.215000px;}
.yfc{bottom:589.755000px;}
.ye5{bottom:595.545000px;}
.y63{bottom:596.805000px;}
.y35{bottom:603.465000px;}
.yce{bottom:605.805000px;}
.y91{bottom:610.845000px;}
.y16{bottom:613.185000px;}
.y4b{bottom:615.885000px;}
.yb0{bottom:620.025000px;}
.yfb{bottom:620.745000px;}
.ye4{bottom:626.505000px;}
.y62{bottom:627.945000px;}
.y15{bottom:644.145000px;}
.y34{bottom:646.845000px;}
.ycd{bottom:649.365000px;}
.yfa{bottom:651.885000px;}
.yaf{bottom:652.605000px;}
.y90{bottom:654.045000px;}
.ye3{bottom:657.645000px;}
.y61{bottom:658.905000px;}
.y14{bottom:675.285000px;}
.y33{bottom:677.985000px;}
.ycc{bottom:680.325000px;}
.yf9{bottom:682.845000px;}
.yae{bottom:683.745000px;}
.y8f{bottom:685.005000px;}
.ye2{bottom:688.605000px;}
.y60{bottom:690.045000px;}
.y76{bottom:701.925000px;}
.y13{bottom:706.245000px;}
.y32{bottom:708.945000px;}
.ycb{bottom:711.465000px;}
.yf8{bottom:713.985000px;}
.yad{bottom:714.525000px;}
.y8e{bottom:716.145000px;}
.ye1{bottom:719.745000px;}
.y5f{bottom:721.005000px;}
.y75{bottom:733.065000px;}
.y31{bottom:740.085000px;}
.yca{bottom:742.425000px;}
.yf7{bottom:744.945000px;}
.y12{bottom:749.265000px;}
.ye0{bottom:750.705000px;}
.y5e{bottom:752.145000px;}
.yac{bottom:758.805000px;}
.y8d{bottom:759.165000px;}
.y74{bottom:764.025000px;}
.y4a{bottom:771.045000px;}
.yc9{bottom:773.565000px;}
.yf6{bottom:776.085000px;}
.y11{bottom:780.405000px;}
.ydf{bottom:781.485000px;}
.y30{bottom:783.105000px;}
.y5d{bottom:795.165000px;}
.y8c{bottom:801.825000px;}
.ya3{bottom:802.185000px;}
.yc8{bottom:804.525000px;}
.yf5{bottom:807.045000px;}
.y10{bottom:811.365000px;}
.y49{bottom:813.885000px;}
.y2f{bottom:814.245000px;}
.yde{bottom:825.765000px;}
.y73{bottom:826.125000px;}
.ya2{bottom:833.145000px;}
.yc7{bottom:835.665000px;}
.y5c{bottom:838.185000px;}
.yf{bottom:842.505000px;}
.y2e{bottom:845.205000px;}
.y48{bottom:857.265000px;}
.yab{bottom:864.330000px;}
.yc6{bottom:866.310000px;}
.y5b{bottom:869.190000px;}
.ye{bottom:873.510000px;}
.ya1{bottom:876.030000px;}
.y2d{bottom:876.390000px;}
.y47{bottom:888.270000px;}
.yaa{bottom:895.290000px;}
.yc5{bottom:899.070000px;}
.y5a{bottom:900.330000px;}
.yd{bottom:904.650000px;}
.y2c{bottom:907.350000px;}
.y46{bottom:919.410000px;}
.ya9{bottom:926.430000px;}
.yc4{bottom:930.030000px;}
.y59{bottom:931.290000px;}
.yc{bottom:935.610000px;}
.y2b{bottom:938.310000px;}
.y45{bottom:950.370000px;}
.yc3{bottom:961.170000px;}
.y58{bottom:962.430000px;}
.ya8{bottom:969.090000px;}
.y2a{bottom:969.450000px;}
.yb{bottom:978.270000px;}
.y72{bottom:981.510000px;}
.yc2{bottom:992.130000px;}
.y44{bottom:993.390000px;}
.y29{bottom:1012.110000px;}
.y81{bottom:1012.470000px;}
.ya{bottom:1014.270000px;}
.yc1{bottom:1023.270000px;}
.y43{bottom:1024.530000px;}
.y9{bottom:1038.210000px;}
.y80{bottom:1043.610000px;}
.yc0{bottom:1053.870000px;}
.y28{bottom:1055.490000px;}
.y8{bottom:1061.790000px;}
.ya0{bottom:1074.570000px;}
.y27{bottom:1086.630000px;}
.y7{bottom:1086.810000px;}
.y6{bottom:1114.530000px;}
.y26{bottom:1117.590000px;}
.y3{bottom:1151.820000px;}
.y2{bottom:1172.880000px;}
.y1{bottom:1193.220000px;}
.h6{height:64.546875px;}
.h4{height:65.884219px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h7{height:74.004654px;}
.h5{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:108.036000px;}
.x6{left:128.736000px;}
.xb{left:135.036000px;}
.x9{left:150.690000px;}
.xa{left:162.030000px;}
.x2{left:224.310000px;}
.x3{left:247.575000px;}
.x7{left:288.615000px;}
.x1{left:350.175000px;}
.x8{left:385.275000px;}
.x4{left:433.005000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls4{letter-spacing:1.280000pt;}
.lsa{letter-spacing:5.760000pt;}
.ls8{letter-spacing:30.208000pt;}
.ls6{letter-spacing:48.746667pt;}
.ls0{letter-spacing:600.480000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws3{word-spacing:-17.280000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.168000pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-1.883733pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.896000pt;}
._2{width:1.828693pt;}
._b{width:2.983253pt;}
._e{width:4.224000pt;}
._10{width:5.760000pt;}
._11{width:6.784000pt;}
._5{width:8.192000pt;}
._6{width:9.408000pt;}
._14{width:10.858667pt;}
._d{width:12.224000pt;}
._c{width:13.248000pt;}
._17{width:14.144000pt;}
._13{width:15.046400pt;}
._8{width:17.600000pt;}
._7{width:18.560000pt;}
._3{width:20.032000pt;}
._4{width:20.992000pt;}
._12{width:22.491733pt;}
._18{width:23.522133pt;}
._9{width:25.280000pt;}
._a{width:26.240000pt;}
._16{width:27.327573pt;}
._15{width:28.279040pt;}
._19{width:29.824000pt;}
._27{width:31.232000pt;}
._28{width:32.320000pt;}
._1e{width:33.216000pt;}
._20{width:34.231467pt;}
._1d{width:35.547733pt;}
._1b{width:36.544000pt;}
._1c{width:37.568000pt;}
._1a{width:39.296000pt;}
._2d{width:40.192000pt;}
._22{width:42.660267pt;}
._21{width:43.931733pt;}
._2c{width:47.530667pt;}
._2f{width:64.539733pt;}
._30{width:65.828267pt;}
._29{width:88.960000pt;}
._2e{width:138.843733pt;}
._2b{width:147.840000pt;}
._24{width:192.000000pt;}
._25{width:193.088000pt;}
._1f{width:209.243733pt;}
._23{width:360.320000pt;}
._26{width:425.819733pt;}
._2a{width:879.552000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.200000pt;}
.y4{bottom:68.992000pt;}
.y117{bottom:110.272000pt;}
.ydd{bottom:110.432000pt;}
.y7f{bottom:112.032000pt;}
.yf4{bottom:112.992000pt;}
.ya7{bottom:113.632000pt;}
.ybf{bottom:113.792000pt;}
.y9f{bottom:113.952000pt;}
.y57{bottom:118.432000pt;}
.y25{bottom:120.352000pt;}
.y71{bottom:122.752000pt;}
.y42{bottom:134.906667pt;}
.y116{bottom:137.786667pt;}
.ydc{bottom:139.546667pt;}
.y7e{bottom:139.706667pt;}
.yf3{bottom:140.666667pt;}
.ybe{bottom:141.306667pt;}
.y11a{bottom:141.466667pt;}
.y109{bottom:144.026667pt;}
.y56{bottom:145.946667pt;}
.y24{bottom:147.866667pt;}
.y70{bottom:150.426667pt;}
.ya6{bottom:151.866667pt;}
.y9e{bottom:152.186667pt;}
.y115{bottom:165.466667pt;}
.ydb{bottom:167.066667pt;}
.y7d{bottom:167.226667pt;}
.yf2{bottom:168.186667pt;}
.ybd{bottom:168.986667pt;}
.y108{bottom:171.706667pt;}
.y41{bottom:173.146667pt;}
.y55{bottom:173.466667pt;}
.y23{bottom:175.546667pt;}
.y6f{bottom:177.946667pt;}
.y9d{bottom:179.866667pt;}
.ya5{bottom:190.106667pt;}
.y114{bottom:192.986667pt;}
.yda{bottom:194.746667pt;}
.y7c{bottom:194.906667pt;}
.yf1{bottom:195.866667pt;}
.ybc{bottom:196.506667pt;}
.y107{bottom:199.226667pt;}
.y54{bottom:201.146667pt;}
.y22{bottom:203.066667pt;}
.y6e{bottom:205.466667pt;}
.y9c{bottom:207.386667pt;}
.y40{bottom:211.866667pt;}
.y119{bottom:218.106667pt;}
.y113{bottom:220.666667pt;}
.yd9{bottom:222.266667pt;}
.y7b{bottom:222.426667pt;}
.yf0{bottom:223.386667pt;}
.ybb{bottom:224.186667pt;}
.y106{bottom:226.906667pt;}
.y53{bottom:228.666667pt;}
.y21{bottom:230.746667pt;}
.y6d{bottom:233.146667pt;}
.y9b{bottom:235.066667pt;}
.y3f{bottom:239.386667pt;}
.y112{bottom:248.186667pt;}
.yd8{bottom:249.946667pt;}
.y7a{bottom:250.106667pt;}
.yef{bottom:251.066667pt;}
.yba{bottom:251.706667pt;}
.y105{bottom:254.426667pt;}
.y52{bottom:256.346667pt;}
.y20{bottom:258.266667pt;}
.y86{bottom:260.666667pt;}
.y3e{bottom:267.066667pt;}
.y6c{bottom:271.386667pt;}
.y9a{bottom:273.306667pt;}
.y111{bottom:275.866667pt;}
.yd7{bottom:277.466667pt;}
.y8b{bottom:277.626667pt;}
.yee{bottom:278.586667pt;}
.yb9{bottom:279.066667pt;}
.y104{bottom:282.106667pt;}
.ya4{bottom:283.866667pt;}
.y1f{bottom:285.946667pt;}
.y79{bottom:288.346667pt;}
.y51{bottom:294.306667pt;}
.y3d{bottom:294.626667pt;}
.y6b{bottom:299.106667pt;}
.y99{bottom:300.866667pt;}
.y110{bottom:303.426667pt;}
.yd6{bottom:304.866667pt;}
.y8a{bottom:305.346667pt;}
.yed{bottom:305.986667pt;}
.y103{bottom:309.666667pt;}
.y1e{bottom:313.506667pt;}
.y85{bottom:315.906667pt;}
.yb8{bottom:318.466667pt;}
.y3c{bottom:322.306667pt;}
.y6a{bottom:326.626667pt;}
.y10f{bottom:331.106667pt;}
.y50{bottom:332.866667pt;}
.yd5{bottom:333.826667pt;}
.yec{bottom:334.946667pt;}
.y102{bottom:337.346667pt;}
.y98{bottom:339.106667pt;}
.y1d{bottom:341.186667pt;}
.y89{bottom:343.266667pt;}
.y84{bottom:343.586667pt;}
.y69{bottom:354.306667pt;}
.yb7{bottom:357.026667pt;}
.y10e{bottom:358.626667pt;}
.y3b{bottom:360.546667pt;}
.yd4{bottom:361.506667pt;}
.yeb{bottom:362.626667pt;}
.y101{bottom:364.866667pt;}
.y1c{bottom:368.706667pt;}
.y83{bottom:371.106667pt;}
.y97{bottom:377.506667pt;}
.y88{bottom:381.506667pt;}
.y68{bottom:381.826667pt;}
.yb6{bottom:384.706667pt;}
.y10d{bottom:386.306667pt;}
.y3a{bottom:388.066667pt;}
.yd3{bottom:389.026667pt;}
.yea{bottom:390.146667pt;}
.y100{bottom:392.546667pt;}
.y1b{bottom:396.386667pt;}
.y96{bottom:405.026667pt;}
.y67{bottom:409.506667pt;}
.yb5{bottom:412.226667pt;}
.y10c{bottom:413.826667pt;}
.y39{bottom:415.746667pt;}
.yd2{bottom:416.706667pt;}
.ye9{bottom:417.826667pt;}
.y87{bottom:420.066667pt;}
.y4f{bottom:426.306667pt;}
.yff{bottom:430.466667pt;}
.y95{bottom:432.706667pt;}
.y1a{bottom:434.626667pt;}
.y66{bottom:437.026667pt;}
.yb4{bottom:439.586667pt;}
.y10b{bottom:441.506667pt;}
.y38{bottom:443.266667pt;}
.yd1{bottom:444.226667pt;}
.ye8{bottom:445.346667pt;}
.y82{bottom:447.746667pt;}
.y4e{bottom:453.986667pt;}
.y94{bottom:460.226667pt;}
.y19{bottom:462.146667pt;}
.y78{bottom:464.706667pt;}
.yb3{bottom:468.546667pt;}
.yfe{bottom:468.706667pt;}
.y10a{bottom:469.026667pt;}
.y37{bottom:470.946667pt;}
.yd0{bottom:471.906667pt;}
.ye7{bottom:473.026667pt;}
.y65{bottom:475.266667pt;}
.y4d{bottom:481.506667pt;}
.y118{bottom:485.666667pt;}
.y93{bottom:487.746667pt;}
.y18{bottom:489.826667pt;}
.y77{bottom:492.226667pt;}
.yb2{bottom:496.226667pt;}
.yfd{bottom:496.706667pt;}
.y36{bottom:498.466667pt;}
.ycf{bottom:499.106667pt;}
.ye6{bottom:500.226667pt;}
.y64{bottom:502.946667pt;}
.y92{bottom:515.426667pt;}
.y17{bottom:517.346667pt;}
.y4c{bottom:519.746667pt;}
.yb1{bottom:523.746667pt;}
.yfc{bottom:524.226667pt;}
.ye5{bottom:529.373333pt;}
.y63{bottom:530.493333pt;}
.y35{bottom:536.413333pt;}
.yce{bottom:538.493333pt;}
.y91{bottom:542.973333pt;}
.y16{bottom:545.053333pt;}
.y4b{bottom:547.453333pt;}
.yb0{bottom:551.133333pt;}
.yfb{bottom:551.773333pt;}
.ye4{bottom:556.893333pt;}
.y62{bottom:558.173333pt;}
.y15{bottom:572.573333pt;}
.y34{bottom:574.973333pt;}
.ycd{bottom:577.213333pt;}
.yfa{bottom:579.453333pt;}
.yaf{bottom:580.093333pt;}
.y90{bottom:581.373333pt;}
.ye3{bottom:584.573333pt;}
.y61{bottom:585.693333pt;}
.y14{bottom:600.253333pt;}
.y33{bottom:602.653333pt;}
.ycc{bottom:604.733333pt;}
.yf9{bottom:606.973333pt;}
.yae{bottom:607.773333pt;}
.y8f{bottom:608.893333pt;}
.ye2{bottom:612.093333pt;}
.y60{bottom:613.373333pt;}
.y76{bottom:623.933333pt;}
.y13{bottom:627.773333pt;}
.y32{bottom:630.173333pt;}
.ycb{bottom:632.413333pt;}
.yf8{bottom:634.653333pt;}
.yad{bottom:635.133333pt;}
.y8e{bottom:636.573333pt;}
.ye1{bottom:639.773333pt;}
.y5f{bottom:640.893333pt;}
.y75{bottom:651.613333pt;}
.y31{bottom:657.853333pt;}
.yca{bottom:659.933333pt;}
.yf7{bottom:662.173333pt;}
.y12{bottom:666.013333pt;}
.ye0{bottom:667.293333pt;}
.y5e{bottom:668.573333pt;}
.yac{bottom:674.493333pt;}
.y8d{bottom:674.813333pt;}
.y74{bottom:679.133333pt;}
.y4a{bottom:685.373333pt;}
.yc9{bottom:687.613333pt;}
.yf6{bottom:689.853333pt;}
.y11{bottom:693.693333pt;}
.ydf{bottom:694.653333pt;}
.y30{bottom:696.093333pt;}
.y5d{bottom:706.813333pt;}
.y8c{bottom:712.733333pt;}
.ya3{bottom:713.053333pt;}
.yc8{bottom:715.133333pt;}
.yf5{bottom:717.373333pt;}
.y10{bottom:721.213333pt;}
.y49{bottom:723.453333pt;}
.y2f{bottom:723.773333pt;}
.yde{bottom:734.013333pt;}
.y73{bottom:734.333333pt;}
.ya2{bottom:740.573333pt;}
.yc7{bottom:742.813333pt;}
.y5c{bottom:745.053333pt;}
.yf{bottom:748.893333pt;}
.y2e{bottom:751.293333pt;}
.y48{bottom:762.013333pt;}
.yab{bottom:768.293333pt;}
.yc6{bottom:770.053333pt;}
.y5b{bottom:772.613333pt;}
.ye{bottom:776.453333pt;}
.ya1{bottom:778.693333pt;}
.y2d{bottom:779.013333pt;}
.y47{bottom:789.573333pt;}
.yaa{bottom:795.813333pt;}
.yc5{bottom:799.173333pt;}
.y5a{bottom:800.293333pt;}
.yd{bottom:804.133333pt;}
.y2c{bottom:806.533333pt;}
.y46{bottom:817.253333pt;}
.ya9{bottom:823.493333pt;}
.yc4{bottom:826.693333pt;}
.y59{bottom:827.813333pt;}
.yc{bottom:831.653333pt;}
.y2b{bottom:834.053333pt;}
.y45{bottom:844.773333pt;}
.yc3{bottom:854.373333pt;}
.y58{bottom:855.493333pt;}
.ya8{bottom:861.413333pt;}
.y2a{bottom:861.733333pt;}
.yb{bottom:869.573333pt;}
.y72{bottom:872.453333pt;}
.yc2{bottom:881.893333pt;}
.y44{bottom:883.013333pt;}
.y29{bottom:899.653333pt;}
.y81{bottom:899.973333pt;}
.ya{bottom:901.573333pt;}
.yc1{bottom:909.573333pt;}
.y43{bottom:910.693333pt;}
.y9{bottom:922.853333pt;}
.y80{bottom:927.653333pt;}
.yc0{bottom:936.773333pt;}
.y28{bottom:938.213333pt;}
.y8{bottom:943.813333pt;}
.ya0{bottom:955.173333pt;}
.y27{bottom:965.893333pt;}
.y7{bottom:966.053333pt;}
.y6{bottom:990.693333pt;}
.y26{bottom:993.413333pt;}
.y3{bottom:1023.840000pt;}
.y2{bottom:1042.560000pt;}
.y1{bottom:1060.640000pt;}
.h6{height:57.375000pt;}
.h4{height:58.563750pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h7{height:65.781915pt;}
.h5{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.032000pt;}
.x6{left:114.432000pt;}
.xb{left:120.032000pt;}
.x9{left:133.946667pt;}
.xa{left:144.026667pt;}
.x2{left:199.386667pt;}
.x3{left:220.066667pt;}
.x7{left:256.546667pt;}
.x1{left:311.266667pt;}
.x8{left:342.466667pt;}
.x4{left:384.893333pt;}
}




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