
    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_e123d175ab4f7ed23c1e1747.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e7bcf7e4cb8009f061848f04.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.924805;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_63823a8c10b4c6af48a6596a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.120605;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_7e3af8f0ad1089997b575bb0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ff56341a8afcff71faf6bdc8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_ff5d579b37c2e36f16667ccf.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4aaeb2a73d8f17938c82b904.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_323cae106ee5e9b0df75330d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.041016;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:ffc;src:url('chunks/assets/font_b19a2e3d396ab3a39e77d861.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.ls2{letter-spacing:-7.860000px;}
.ls8{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.ls7{letter-spacing:1.008000px;}
.ls9{letter-spacing:33.984000px;}
.ls5{letter-spacing:194.376000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws7{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:-7.080000px;}
.ws6{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-5.079600px;}
._13{margin-left:-4.064400px;}
._c{margin-left:-3.048000px;}
._3{margin-left:-1.075680px;}
._2{width:1.015920px;}
._1{width:2.988000px;}
._7{width:4.428240px;}
._6{width:6.182880px;}
._5{width:7.190400px;}
._4{width:8.213280px;}
._8{width:9.858720px;}
._e{width:11.021280px;}
._d{width:12.245280px;}
._a{width:13.968000px;}
._b{width:15.876000px;}
._10{width:19.131120px;}
._f{width:20.376000px;}
._16{width:21.856080px;}
._1b{width:22.896000px;}
._1d{width:24.040080px;}
._11{width:25.488000px;}
._12{width:26.496000px;}
._22{width:27.864000px;}
._21{width:29.088000px;}
._14{width:30.672000px;}
._15{width:32.112000px;}
._18{width:35.783760px;}
._19{width:36.936960px;}
._1a{width:39.383520px;}
._17{width:44.976000px;}
._1e{width:68.328000px;}
._9{width:194.376000px;}
._1c{width:204.120000px;}
._20{width:224.772000px;}
._1f{width:225.804000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y29{bottom:57.600000px;}
.y5{bottom:66.525004px;}
.y28{bottom:77.760000px;}
.y4{bottom:97.125005px;}
.y80{bottom:114.840000px;}
.yae{bottom:125.820000px;}
.y53{bottom:135.540000px;}
.y7f{bottom:138.600000px;}
.y23{bottom:139.264499px;}
.yad{bottom:149.616000px;}
.y52{bottom:159.330000px;}
.y7e{bottom:162.390000px;}
.yac{bottom:173.370000px;}
.y51{bottom:183.090000px;}
.y7d{bottom:186.150000px;}
.y1a{bottom:196.933500px;}
.yab{bottom:197.130000px;}
.y50{bottom:206.850000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y7c{bottom:210.090000px;}
.yaa{bottom:221.070000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y4f{bottom:230.790000px;}
.y7b{bottom:233.850000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.ya9{bottom:244.830000px;}
.y4e{bottom:254.190000px;}
.y7a{bottom:257.610000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.ya8{bottom:268.590000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y4d{bottom:278.310000px;}
.y79{bottom:281.370000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.ya7{bottom:292.350000px;}
.y4c{bottom:302.070000px;}
.y78{bottom:305.310000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.ya6{bottom:316.290000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y4b{bottom:326.010000px;}
.y77{bottom:329.070000px;}
.ya5{bottom:340.050000px;}
.y11{bottom:348.133500px;}
.y4a{bottom:349.770000px;}
.y76{bottom:352.830000px;}
.yb2{bottom:363.450000px;}
.ya4{bottom:363.810000px;}
.y49{bottom:373.530000px;}
.y75{bottom:376.590000px;}
.y10{bottom:386.785499px;}
.ya3{bottom:387.570000px;}
.y48{bottom:397.335000px;}
.y74{bottom:400.575000px;}
.yf{bottom:408.044999px;}
.ya2{bottom:411.375000px;}
.y47{bottom:421.275000px;}
.y73{bottom:424.335000px;}
.ya1{bottom:435.315000px;}
.y46{bottom:445.035000px;}
.y72{bottom:448.095000px;}
.ya0{bottom:459.075000px;}
.y45{bottom:468.795000px;}
.y71{bottom:471.855000px;}
.y9f{bottom:482.835000px;}
.ye{bottom:484.864502px;}
.y44{bottom:492.555000px;}
.y70{bottom:495.795000px;}
.yd{bottom:502.864502px;}
.y9e{bottom:506.595000px;}
.y43{bottom:516.495000px;}
.y6f{bottom:519.555000px;}
.yc{bottom:520.864502px;}
.y9d{bottom:530.535000px;}
.yb{bottom:538.864499px;}
.y42{bottom:540.255000px;}
.y6e{bottom:543.315000px;}
.y9c{bottom:554.295000px;}
.ya{bottom:556.864499px;}
.y41{bottom:564.015000px;}
.y6d{bottom:567.075000px;}
.y9b{bottom:578.055000px;}
.y40{bottom:587.775000px;}
.y6c{bottom:591.015000px;}
.y9a{bottom:601.815000px;}
.y3f{bottom:611.715000px;}
.y6b{bottom:614.775000px;}
.y99{bottom:625.755000px;}
.y3e{bottom:635.475000px;}
.y6a{bottom:638.535000px;}
.y9{bottom:645.510000px;}
.yb0{bottom:649.185000px;}
.y98{bottom:649.545000px;}
.y3d{bottom:658.905000px;}
.y69{bottom:662.325000px;}
.y8{bottom:666.771000px;}
.y97{bottom:673.305000px;}
.y3c{bottom:683.025000px;}
.y68{bottom:686.085000px;}
.y96{bottom:697.065000px;}
.y3b{bottom:706.785000px;}
.y67{bottom:710.025000px;}
.y95{bottom:721.005000px;}
.y7{bottom:726.298500px;}
.y3a{bottom:730.725000px;}
.y66{bottom:733.785000px;}
.y94{bottom:744.765000px;}
.y3{bottom:752.599495px;}
.y39{bottom:754.485000px;}
.y65{bottom:757.545000px;}
.y93{bottom:768.525000px;}
.y38{bottom:778.245000px;}
.yaf{bottom:780.945000px;}
.y64{bottom:781.305000px;}
.y92{bottom:792.285000px;}
.y37{bottom:802.005000px;}
.y63{bottom:805.245000px;}
.y91{bottom:816.225000px;}
.y36{bottom:825.945000px;}
.y62{bottom:829.005000px;}
.y90{bottom:839.985000px;}
.y35{bottom:849.705000px;}
.y61{bottom:852.765000px;}
.y8f{bottom:863.745000px;}
.y34{bottom:873.465000px;}
.y60{bottom:876.525000px;}
.y2{bottom:879.369000px;}
.y8e{bottom:887.505000px;}
.y33{bottom:897.270000px;}
.y5f{bottom:900.510000px;}
.y8d{bottom:911.310000px;}
.y32{bottom:921.210000px;}
.y5e{bottom:924.270000px;}
.y8c{bottom:935.250000px;}
.y31{bottom:944.970000px;}
.y5d{bottom:948.030000px;}
.y8b{bottom:959.010000px;}
.y1{bottom:966.726000px;}
.y30{bottom:968.370000px;}
.yb1{bottom:971.430000px;}
.y5c{bottom:971.790000px;}
.y8a{bottom:982.770000px;}
.y2f{bottom:992.130000px;}
.y5b{bottom:995.730000px;}
.y89{bottom:1006.530000px;}
.y2e{bottom:1016.070000px;}
.y5a{bottom:1019.490000px;}
.y88{bottom:1030.470000px;}
.y2d{bottom:1039.290000px;}
.y59{bottom:1043.250000px;}
.y87{bottom:1054.230000px;}
.y2c{bottom:1062.870000px;}
.y58{bottom:1067.010000px;}
.y86{bottom:1077.990000px;}
.y2b{bottom:1090.590000px;}
.y57{bottom:1090.950000px;}
.y85{bottom:1101.750000px;}
.y56{bottom:1114.710000px;}
.y2a{bottom:1118.490000px;}
.y84{bottom:1125.690000px;}
.y55{bottom:1138.470000px;}
.y27{bottom:1142.640000px;}
.y83{bottom:1146.780000px;}
.y26{bottom:1161.720000px;}
.y82{bottom:1169.640000px;}
.y25{bottom:1179.000000px;}
.y81{bottom:1193.400000px;}
.y54{bottom:1193.580000px;}
.y24{bottom:1196.280000px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.h9{height:58.651172px;}
.ha{height:65.884219px;}
.hc{height:66.757500px;}
.hf{height:70.628906px;}
.he{height:70.664062px;}
.h10{height:71.613281px;}
.hd{height:72.562500px;}
.h11{height:74.004654px;}
.h5{height:78.030000px;}
.hb{height:84.898125px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:108.035987px;}
.x7{left:122.975987px;}
.xe{left:129.995987px;}
.x8{left:137.555987px;}
.xc{left:161.129987px;}
.xf{left:165.989987px;}
.x4{left:203.484001px;}
.x9{left:312.554987px;}
.xd{left:344.054987px;}
.xb{left:366.734987px;}
.x6{left:434.054987px;}
.xa{left:446.474987px;}
.x3{left:454.959000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-6.986667pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.896000pt;}
.ls9{letter-spacing:30.208000pt;}
.ls5{letter-spacing:172.778667pt;}
.ws4{word-spacing:-64.000000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:-6.293333pt;}
.ws6{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-4.515200pt;}
._13{margin-left:-3.612800pt;}
._c{margin-left:-2.709333pt;}
._3{margin-left:-0.956160pt;}
._2{width:0.903040pt;}
._1{width:2.656000pt;}
._7{width:3.936213pt;}
._6{width:5.495893pt;}
._5{width:6.391467pt;}
._4{width:7.300693pt;}
._8{width:8.763307pt;}
._e{width:9.796693pt;}
._d{width:10.884693pt;}
._a{width:12.416000pt;}
._b{width:14.112000pt;}
._10{width:17.005440pt;}
._f{width:18.112000pt;}
._16{width:19.427627pt;}
._1b{width:20.352000pt;}
._1d{width:21.368960pt;}
._11{width:22.656000pt;}
._12{width:23.552000pt;}
._22{width:24.768000pt;}
._21{width:25.856000pt;}
._14{width:27.264000pt;}
._15{width:28.544000pt;}
._18{width:31.807787pt;}
._19{width:32.832853pt;}
._1a{width:35.007573pt;}
._17{width:39.978667pt;}
._1e{width:60.736000pt;}
._9{width:172.778667pt;}
._1c{width:181.440000pt;}
._20{width:199.797333pt;}
._1f{width:200.714667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y29{bottom:51.200000pt;}
.y5{bottom:59.133337pt;}
.y28{bottom:69.120000pt;}
.y4{bottom:86.333337pt;}
.y80{bottom:102.080000pt;}
.yae{bottom:111.840000pt;}
.y53{bottom:120.480000pt;}
.y7f{bottom:123.200000pt;}
.y23{bottom:123.790666pt;}
.yad{bottom:132.992000pt;}
.y52{bottom:141.626667pt;}
.y7e{bottom:144.346667pt;}
.yac{bottom:154.106667pt;}
.y51{bottom:162.746667pt;}
.y7d{bottom:165.466667pt;}
.y1a{bottom:175.052000pt;}
.yab{bottom:175.226667pt;}
.y50{bottom:183.866667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y7c{bottom:186.746667pt;}
.yaa{bottom:196.506667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y4f{bottom:205.146667pt;}
.y7b{bottom:207.866667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.ya9{bottom:217.626667pt;}
.y4e{bottom:225.946667pt;}
.y7a{bottom:228.986667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.ya8{bottom:238.746667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y4d{bottom:247.386667pt;}
.y79{bottom:250.106667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.ya7{bottom:259.866667pt;}
.y4c{bottom:268.506667pt;}
.y78{bottom:271.386667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.ya6{bottom:281.146667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y4b{bottom:289.786667pt;}
.y77{bottom:292.506667pt;}
.ya5{bottom:302.266667pt;}
.y11{bottom:309.452000pt;}
.y4a{bottom:310.906667pt;}
.y76{bottom:313.626667pt;}
.yb2{bottom:323.066667pt;}
.ya4{bottom:323.386667pt;}
.y49{bottom:332.026667pt;}
.y75{bottom:334.746667pt;}
.y10{bottom:343.809333pt;}
.ya3{bottom:344.506667pt;}
.y48{bottom:353.186667pt;}
.y74{bottom:356.066667pt;}
.yf{bottom:362.706666pt;}
.ya2{bottom:365.666667pt;}
.y47{bottom:374.466667pt;}
.y73{bottom:377.186667pt;}
.ya1{bottom:386.946667pt;}
.y46{bottom:395.586667pt;}
.y72{bottom:398.306667pt;}
.ya0{bottom:408.066667pt;}
.y45{bottom:416.706667pt;}
.y71{bottom:419.426667pt;}
.y9f{bottom:429.186667pt;}
.ye{bottom:430.990669pt;}
.y44{bottom:437.826667pt;}
.y70{bottom:440.706667pt;}
.yd{bottom:446.990669pt;}
.y9e{bottom:450.306667pt;}
.y43{bottom:459.106667pt;}
.y6f{bottom:461.826667pt;}
.yc{bottom:462.990669pt;}
.y9d{bottom:471.586667pt;}
.yb{bottom:478.990666pt;}
.y42{bottom:480.226667pt;}
.y6e{bottom:482.946667pt;}
.y9c{bottom:492.706667pt;}
.ya{bottom:494.990666pt;}
.y41{bottom:501.346667pt;}
.y6d{bottom:504.066667pt;}
.y9b{bottom:513.826667pt;}
.y40{bottom:522.466667pt;}
.y6c{bottom:525.346667pt;}
.y9a{bottom:534.946667pt;}
.y3f{bottom:543.746667pt;}
.y6b{bottom:546.466667pt;}
.y99{bottom:556.226667pt;}
.y3e{bottom:564.866667pt;}
.y6a{bottom:567.586667pt;}
.y9{bottom:573.786667pt;}
.yb0{bottom:577.053333pt;}
.y98{bottom:577.373333pt;}
.y3d{bottom:585.693333pt;}
.y69{bottom:588.733333pt;}
.y8{bottom:592.685334pt;}
.y97{bottom:598.493333pt;}
.y3c{bottom:607.133333pt;}
.y68{bottom:609.853333pt;}
.y96{bottom:619.613333pt;}
.y3b{bottom:628.253333pt;}
.y67{bottom:631.133333pt;}
.y95{bottom:640.893333pt;}
.y7{bottom:645.598667pt;}
.y3a{bottom:649.533333pt;}
.y66{bottom:652.253333pt;}
.y94{bottom:662.013333pt;}
.y3{bottom:668.977329pt;}
.y39{bottom:670.653333pt;}
.y65{bottom:673.373333pt;}
.y93{bottom:683.133333pt;}
.y38{bottom:691.773333pt;}
.yaf{bottom:694.173333pt;}
.y64{bottom:694.493333pt;}
.y92{bottom:704.253333pt;}
.y37{bottom:712.893333pt;}
.y63{bottom:715.773333pt;}
.y91{bottom:725.533333pt;}
.y36{bottom:734.173333pt;}
.y62{bottom:736.893333pt;}
.y90{bottom:746.653333pt;}
.y35{bottom:755.293333pt;}
.y61{bottom:758.013333pt;}
.y8f{bottom:767.773333pt;}
.y34{bottom:776.413333pt;}
.y60{bottom:779.133333pt;}
.y2{bottom:781.661334pt;}
.y8e{bottom:788.893333pt;}
.y33{bottom:797.573333pt;}
.y5f{bottom:800.453333pt;}
.y8d{bottom:810.053333pt;}
.y32{bottom:818.853333pt;}
.y5e{bottom:821.573333pt;}
.y8c{bottom:831.333333pt;}
.y31{bottom:839.973333pt;}
.y5d{bottom:842.693333pt;}
.y8b{bottom:852.453333pt;}
.y1{bottom:859.312000pt;}
.y30{bottom:860.773333pt;}
.yb1{bottom:863.493333pt;}
.y5c{bottom:863.813333pt;}
.y8a{bottom:873.573333pt;}
.y2f{bottom:881.893333pt;}
.y5b{bottom:885.093333pt;}
.y89{bottom:894.693333pt;}
.y2e{bottom:903.173333pt;}
.y5a{bottom:906.213333pt;}
.y88{bottom:915.973333pt;}
.y2d{bottom:923.813333pt;}
.y59{bottom:927.333333pt;}
.y87{bottom:937.093333pt;}
.y2c{bottom:944.773333pt;}
.y58{bottom:948.453333pt;}
.y86{bottom:958.213333pt;}
.y2b{bottom:969.413333pt;}
.y57{bottom:969.733333pt;}
.y85{bottom:979.333333pt;}
.y56{bottom:990.853333pt;}
.y2a{bottom:994.213333pt;}
.y84{bottom:1000.613333pt;}
.y55{bottom:1011.973333pt;}
.y27{bottom:1015.680000pt;}
.y83{bottom:1019.360000pt;}
.y26{bottom:1032.640000pt;}
.y82{bottom:1039.680000pt;}
.y25{bottom:1048.000000pt;}
.y81{bottom:1060.800000pt;}
.y54{bottom:1060.960000pt;}
.y24{bottom:1063.360000pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.h9{height:52.134375pt;}
.ha{height:58.563750pt;}
.hc{height:59.340000pt;}
.hf{height:62.781250pt;}
.he{height:62.812500pt;}
.h10{height:63.656250pt;}
.hd{height:64.500000pt;}
.h11{height:65.781915pt;}
.h5{height:69.360000pt;}
.hb{height:75.465000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:96.031988pt;}
.x7{left:109.311988pt;}
.xe{left:115.551988pt;}
.x8{left:122.271988pt;}
.xc{left:143.226655pt;}
.xf{left:147.546655pt;}
.x4{left:180.874667pt;}
.x9{left:277.826655pt;}
.xd{left:305.826655pt;}
.xb{left:325.986655pt;}
.x6{left:385.826655pt;}
.xa{left:396.866655pt;}
.x3{left:404.408000pt;}
}




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