
    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_9d74074b7d1f4caad170950b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937988;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_724e42e475d033a118fa5542.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945801;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_5318b7ecc941b85ca8552c13.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.048000;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_36f475df7ee32339dec0ed6f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942871;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_3bb27aeb673794f3091f97cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.780000;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_51deafd330e12931fee9964a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.920898;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_4949986cc030607928446017.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.909668;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_5ab7990702211678f044effa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.681641;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);}
.v2{vertical-align:-26.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.400000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012000px;}
.ls5{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.084000px;}
.ls6{letter-spacing:0.150000px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.192000px;}
.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:-78.525000px;}
.ws4{word-spacing:-75.384000px;}
.ws9{word-spacing:-65.961000px;}
.ws7{word-spacing:-43.974000px;}
.ws0{word-spacing:-24.000000px;}
.ws1{word-spacing:-18.000000px;}
.wsa{word-spacing:-15.750000px;}
.ws6{word-spacing:-15.000000px;}
.ws3{word-spacing:-10.500000px;}
.ws8{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-1784.160000px;}
._13{margin-left:-24.672000px;}
._4{margin-left:-9.000000px;}
._5{margin-left:-7.728000px;}
._d{margin-left:-6.600000px;}
._6{margin-left:-5.280000px;}
._1{margin-left:-4.032000px;}
._8{margin-left:-2.664000px;}
._7{margin-left:-1.656000px;}
._3{width:1.308000px;}
._12{width:2.340000px;}
._0{width:3.456000px;}
._2{width:5.328000px;}
._19{width:9.408000px;}
._18{width:10.488000px;}
._1a{width:11.652000px;}
._16{width:42.000000px;}
._17{width:44.664000px;}
._11{width:72.000000px;}
._b{width:114.948000px;}
._e{width:120.048000px;}
._9{width:169.440000px;}
._c{width:552.912000px;}
._f{width:1478.076000px;}
._a{width:1500.096000px;}
._10{width:1544.112000px;}
._15{width:1736.928000px;}
.fc1{color:rgb(0,0,128);}
.fc4{color:rgb(85,85,85);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1f{bottom:89.658000px;}
.y1e{bottom:130.908000px;}
.y1d{bottom:148.233000px;}
.y1c{bottom:165.558000px;}
.y85{bottom:182.583000px;}
.y4c{bottom:182.883000px;}
.yca{bottom:197.058000px;}
.y68{bottom:200.208000px;}
.y4b{bottom:200.283000px;}
.y84{bottom:200.433000px;}
.yc9{bottom:214.983000px;}
.y67{bottom:217.533000px;}
.y83{bottom:220.533000px;}
.y4a{bottom:230.658000px;}
.y1b{bottom:232.908000px;}
.y66{bottom:234.858000px;}
.y82{bottom:237.858000px;}
.y49{bottom:250.533000px;}
.y65{bottom:252.183000px;}
.y1a{bottom:253.458000px;}
.yc8{bottom:259.383000px;}
.y64{bottom:269.508000px;}
.y48{bottom:270.408000px;}
.y19{bottom:274.008000px;}
.yc7{bottom:277.308000px;}
.y81{bottom:282.033000px;}
.y63{bottom:286.833000px;}
.y47{bottom:290.283000px;}
.y18{bottom:295.308000px;}
.y80{bottom:302.583000px;}
.y62{bottom:304.158000px;}
.y46{bottom:310.158000px;}
.yc6{bottom:313.158000px;}
.y17{bottom:319.983000px;}
.y9a{bottom:321.483000px;}
.y7f{bottom:323.133000px;}
.y45{bottom:330.033000px;}
.yc5{bottom:331.083000px;}
.y99{bottom:338.808000px;}
.y61{bottom:340.158000px;}
.y7e{bottom:343.683000px;}
.yc4{bottom:349.008000px;}
.y44{bottom:350.583000px;}
.y98{bottom:356.133000px;}
.y60{bottom:360.708000px;}
.y7d{bottom:364.233000px;}
.y43{bottom:370.608000px;}
.y16{bottom:373.233000px;}
.y97{bottom:373.458000px;}
.y5f{bottom:381.258000px;}
.yc3{bottom:384.858000px;}
.y7c{bottom:386.283000px;}
.y42{bottom:387.933000px;}
.y96{bottom:390.783000px;}
.y15{bottom:393.783000px;}
.y5e{bottom:401.808000px;}
.yc2{bottom:402.783000px;}
.y41{bottom:405.258000px;}
.y7b{bottom:413.658000px;}
.y14{bottom:414.333000px;}
.yc1{bottom:420.708000px;}
.y5d{bottom:422.358000px;}
.y40{bottom:422.583000px;}
.y95{bottom:429.183000px;}
.y13{bottom:434.883000px;}
.yc0{bottom:438.933000px;}
.y3f{bottom:439.908000px;}
.y5c{bottom:442.908000px;}
.y94{bottom:449.733000px;}
.y12{bottom:455.433000px;}
.y3e{bottom:457.233000px;}
.y5b{bottom:463.458000px;}
.y7a{bottom:466.908000px;}
.y93{bottom:470.283000px;}
.y11{bottom:475.983000px;}
.ybf{bottom:483.333000px;}
.y5a{bottom:484.008000px;}
.y79{bottom:487.458000px;}
.y3d{bottom:490.008000px;}
.y92{bottom:490.833000px;}
.y10{bottom:496.533000px;}
.ybe{bottom:501.258000px;}
.y59{bottom:504.558000px;}
.y78{bottom:508.008000px;}
.y3c{bottom:510.558000px;}
.y91{bottom:511.383000px;}
.yf{bottom:518.583000px;}
.y58{bottom:525.108000px;}
.y77{bottom:528.558000px;}
.y3b{bottom:531.108000px;}
.y90{bottom:531.933000px;}
.y57{bottom:545.658000px;}
.ye{bottom:545.958000px;}
.y76{bottom:549.108000px;}
.y3a{bottom:551.658000px;}
.y8f{bottom:552.483000px;}
.ybd{bottom:563.583000px;}
.y56{bottom:566.208000px;}
.y75{bottom:569.658000px;}
.y39{bottom:572.208000px;}
.y8e{bottom:573.033000px;}
.ybc{bottom:581.508000px;}
.y55{bottom:586.758000px;}
.y74{bottom:590.208000px;}
.y38{bottom:592.758000px;}
.y8d{bottom:593.583000px;}
.ybb{bottom:599.433000px;}
.y54{bottom:607.308000px;}
.y73{bottom:610.758000px;}
.y37{bottom:613.308000px;}
.y8c{bottom:614.133000px;}
.yd{bottom:614.658000px;}
.yba{bottom:617.358000px;}
.y53{bottom:627.858000px;}
.y72{bottom:631.308000px;}
.y36{bottom:633.858000px;}
.y8b{bottom:634.683000px;}
.yc{bottom:638.583000px;}
.y52{bottom:648.408000px;}
.y71{bottom:651.858000px;}
.y35{bottom:654.408000px;}
.y8a{bottom:655.233000px;}
.yb9{bottom:661.758000px;}
.yb{bottom:662.508000px;}
.y51{bottom:668.958000px;}
.y70{bottom:672.408000px;}
.y34{bottom:674.958000px;}
.y89{bottom:675.783000px;}
.ya{bottom:686.433000px;}
.y50{bottom:689.508000px;}
.y6f{bottom:692.958000px;}
.y33{bottom:695.508000px;}
.y88{bottom:696.333000px;}
.y4f{bottom:710.058000px;}
.y9{bottom:710.358000px;}
.yb8{bottom:710.433000px;}
.y6e{bottom:713.508000px;}
.y32{bottom:716.058000px;}
.y87{bottom:716.883000px;}
.yab{bottom:726.933000px;}
.yb7{bottom:728.358000px;}
.y4e{bottom:730.608000px;}
.y6d{bottom:734.058000px;}
.y8{bottom:734.283000px;}
.y31{bottom:736.758000px;}
.y86{bottom:737.433000px;}
.yaa{bottom:745.758000px;}
.y4d{bottom:752.658000px;}
.y6c{bottom:754.608000px;}
.y30{bottom:757.983000px;}
.ya9{bottom:764.583000px;}
.y6b{bottom:775.158000px;}
.yb6{bottom:777.033000px;}
.y2f{bottom:778.533000px;}
.ya8{bottom:783.408000px;}
.y6a{bottom:795.708000px;}
.y2e{bottom:799.083000px;}
.yb5{bottom:799.233000px;}
.ya7{bottom:802.233000px;}
.y7{bottom:810.183000px;}
.y69{bottom:817.008000px;}
.yb4{bottom:817.158000px;}
.y2d{bottom:819.633000px;}
.ya6{bottom:821.058000px;}
.ya5{bottom:839.883000px;}
.y2c{bottom:840.183000px;}
.y6{bottom:851.433000px;}
.y2b{bottom:860.733000px;}
.yb3{bottom:870.108000px;}
.y5{bottom:875.358000px;}
.ya4{bottom:877.908000px;}
.y2a{bottom:881.283000px;}
.yb2{bottom:896.583000px;}
.ya3{bottom:898.458000px;}
.y29{bottom:901.833000px;}
.ya2{bottom:919.008000px;}
.y28{bottom:922.383000px;}
.yb1{bottom:923.058000px;}
.y4{bottom:935.658000px;}
.ya1{bottom:939.558000px;}
.y27{bottom:942.933000px;}
.yb0{bottom:949.533000px;}
.y26{bottom:963.483000px;}
.ya0{bottom:980.658000px;}
.ycf{bottom:981.258000px;}
.y25{bottom:984.033000px;}
.y3{bottom:997.833000px;}
.yaf{bottom:998.208000px;}
.yce{bottom:999.183000px;}
.y9f{bottom:1001.208000px;}
.y24{bottom:1004.583000px;}
.yae{bottom:1016.133000px;}
.y9e{bottom:1021.758000px;}
.y23{bottom:1025.133000px;}
.yad{bottom:1034.058000px;}
.y2{bottom:1038.858000px;}
.y9d{bottom:1042.308000px;}
.y22{bottom:1045.683000px;}
.ycd{bottom:1052.958000px;}
.y9c{bottom:1062.858000px;}
.y21{bottom:1066.233000px;}
.ycc{bottom:1070.883000px;}
.yac{bottom:1081.458000px;}
.y9b{bottom:1084.158000px;}
.y20{bottom:1086.783000px;}
.ycb{bottom:1088.808000px;}
.hc{height:42.304688px;}
.hf{height:42.480469px;}
.h13{height:44.419922px;}
.h12{height:44.604492px;}
.h11{height:46.728516px;}
.h10{height:50.414062px;}
.h5{height:50.765625px;}
.ha{height:50.976562px;}
.he{height:53.100586px;}
.h6{height:54.576000px;}
.hd{height:56.013281px;}
.hb{height:56.136328px;}
.h7{height:58.816406px;}
.h8{height:59.472656px;}
.h9{height:67.218750px;}
.h3{height:67.968750px;}
.h4{height:70.848000px;}
.h2{height:100.828125px;}
.h1{height:1187.956500px;}
.h0{height:1188.000000px;}
.w1{width:917.956500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:85.200000px;}
.xa{left:110.700000px;}
.x1{left:123.975000px;}
.x9{left:138.375000px;}
.xe{left:191.550000px;}
.x2{left:197.175000px;}
.x5{left:232.725000px;}
.x6{left:327.675000px;}
.x4{left:361.200000px;}
.x3{left:380.100000px;}
.xd{left:399.600000px;}
.x7{left:413.250000px;}
.xc{left:422.625000px;}
.xb{left:454.650000px;}
@media print{
.v2{vertical-align:-23.466667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.466667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.010667pt;}
.ls5{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.074667pt;}
.ls6{letter-spacing:0.133333pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.170667pt;}
.ws5{word-spacing:-69.800000pt;}
.ws4{word-spacing:-67.008000pt;}
.ws9{word-spacing:-58.632000pt;}
.ws7{word-spacing:-39.088000pt;}
.ws0{word-spacing:-21.333333pt;}
.ws1{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.000000pt;}
.ws6{word-spacing:-13.333333pt;}
.ws3{word-spacing:-9.333333pt;}
.ws8{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-1585.920000pt;}
._13{margin-left:-21.930667pt;}
._4{margin-left:-8.000000pt;}
._5{margin-left:-6.869333pt;}
._d{margin-left:-5.866667pt;}
._6{margin-left:-4.693333pt;}
._1{margin-left:-3.584000pt;}
._8{margin-left:-2.368000pt;}
._7{margin-left:-1.472000pt;}
._3{width:1.162667pt;}
._12{width:2.080000pt;}
._0{width:3.072000pt;}
._2{width:4.736000pt;}
._19{width:8.362667pt;}
._18{width:9.322667pt;}
._1a{width:10.357333pt;}
._16{width:37.333333pt;}
._17{width:39.701333pt;}
._11{width:64.000000pt;}
._b{width:102.176000pt;}
._e{width:106.709333pt;}
._9{width:150.613333pt;}
._c{width:491.477333pt;}
._f{width:1313.845333pt;}
._a{width:1333.418667pt;}
._10{width:1372.544000pt;}
._15{width:1543.936000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1f{bottom:79.696000pt;}
.y1e{bottom:116.362667pt;}
.y1d{bottom:131.762667pt;}
.y1c{bottom:147.162667pt;}
.y85{bottom:162.296000pt;}
.y4c{bottom:162.562667pt;}
.yca{bottom:175.162667pt;}
.y68{bottom:177.962667pt;}
.y4b{bottom:178.029333pt;}
.y84{bottom:178.162667pt;}
.yc9{bottom:191.096000pt;}
.y67{bottom:193.362667pt;}
.y83{bottom:196.029333pt;}
.y4a{bottom:205.029333pt;}
.y1b{bottom:207.029333pt;}
.y66{bottom:208.762667pt;}
.y82{bottom:211.429333pt;}
.y49{bottom:222.696000pt;}
.y65{bottom:224.162667pt;}
.y1a{bottom:225.296000pt;}
.yc8{bottom:230.562667pt;}
.y64{bottom:239.562667pt;}
.y48{bottom:240.362667pt;}
.y19{bottom:243.562667pt;}
.yc7{bottom:246.496000pt;}
.y81{bottom:250.696000pt;}
.y63{bottom:254.962667pt;}
.y47{bottom:258.029333pt;}
.y18{bottom:262.496000pt;}
.y80{bottom:268.962667pt;}
.y62{bottom:270.362667pt;}
.y46{bottom:275.696000pt;}
.yc6{bottom:278.362667pt;}
.y17{bottom:284.429333pt;}
.y9a{bottom:285.762667pt;}
.y7f{bottom:287.229333pt;}
.y45{bottom:293.362667pt;}
.yc5{bottom:294.296000pt;}
.y99{bottom:301.162667pt;}
.y61{bottom:302.362667pt;}
.y7e{bottom:305.496000pt;}
.yc4{bottom:310.229333pt;}
.y44{bottom:311.629333pt;}
.y98{bottom:316.562667pt;}
.y60{bottom:320.629333pt;}
.y7d{bottom:323.762667pt;}
.y43{bottom:329.429333pt;}
.y16{bottom:331.762667pt;}
.y97{bottom:331.962667pt;}
.y5f{bottom:338.896000pt;}
.yc3{bottom:342.096000pt;}
.y7c{bottom:343.362667pt;}
.y42{bottom:344.829333pt;}
.y96{bottom:347.362667pt;}
.y15{bottom:350.029333pt;}
.y5e{bottom:357.162667pt;}
.yc2{bottom:358.029333pt;}
.y41{bottom:360.229333pt;}
.y7b{bottom:367.696000pt;}
.y14{bottom:368.296000pt;}
.yc1{bottom:373.962667pt;}
.y5d{bottom:375.429333pt;}
.y40{bottom:375.629333pt;}
.y95{bottom:381.496000pt;}
.y13{bottom:386.562667pt;}
.yc0{bottom:390.162667pt;}
.y3f{bottom:391.029333pt;}
.y5c{bottom:393.696000pt;}
.y94{bottom:399.762667pt;}
.y12{bottom:404.829333pt;}
.y3e{bottom:406.429333pt;}
.y5b{bottom:411.962667pt;}
.y7a{bottom:415.029333pt;}
.y93{bottom:418.029333pt;}
.y11{bottom:423.096000pt;}
.ybf{bottom:429.629333pt;}
.y5a{bottom:430.229333pt;}
.y79{bottom:433.296000pt;}
.y3d{bottom:435.562667pt;}
.y92{bottom:436.296000pt;}
.y10{bottom:441.362667pt;}
.ybe{bottom:445.562667pt;}
.y59{bottom:448.496000pt;}
.y78{bottom:451.562667pt;}
.y3c{bottom:453.829333pt;}
.y91{bottom:454.562667pt;}
.yf{bottom:460.962667pt;}
.y58{bottom:466.762667pt;}
.y77{bottom:469.829333pt;}
.y3b{bottom:472.096000pt;}
.y90{bottom:472.829333pt;}
.y57{bottom:485.029333pt;}
.ye{bottom:485.296000pt;}
.y76{bottom:488.096000pt;}
.y3a{bottom:490.362667pt;}
.y8f{bottom:491.096000pt;}
.ybd{bottom:500.962667pt;}
.y56{bottom:503.296000pt;}
.y75{bottom:506.362667pt;}
.y39{bottom:508.629333pt;}
.y8e{bottom:509.362667pt;}
.ybc{bottom:516.896000pt;}
.y55{bottom:521.562667pt;}
.y74{bottom:524.629333pt;}
.y38{bottom:526.896000pt;}
.y8d{bottom:527.629333pt;}
.ybb{bottom:532.829333pt;}
.y54{bottom:539.829333pt;}
.y73{bottom:542.896000pt;}
.y37{bottom:545.162667pt;}
.y8c{bottom:545.896000pt;}
.yd{bottom:546.362667pt;}
.yba{bottom:548.762667pt;}
.y53{bottom:558.096000pt;}
.y72{bottom:561.162667pt;}
.y36{bottom:563.429333pt;}
.y8b{bottom:564.162667pt;}
.yc{bottom:567.629333pt;}
.y52{bottom:576.362667pt;}
.y71{bottom:579.429333pt;}
.y35{bottom:581.696000pt;}
.y8a{bottom:582.429333pt;}
.yb9{bottom:588.229333pt;}
.yb{bottom:588.896000pt;}
.y51{bottom:594.629333pt;}
.y70{bottom:597.696000pt;}
.y34{bottom:599.962667pt;}
.y89{bottom:600.696000pt;}
.ya{bottom:610.162667pt;}
.y50{bottom:612.896000pt;}
.y6f{bottom:615.962667pt;}
.y33{bottom:618.229333pt;}
.y88{bottom:618.962667pt;}
.y4f{bottom:631.162667pt;}
.y9{bottom:631.429333pt;}
.yb8{bottom:631.496000pt;}
.y6e{bottom:634.229333pt;}
.y32{bottom:636.496000pt;}
.y87{bottom:637.229333pt;}
.yab{bottom:646.162667pt;}
.yb7{bottom:647.429333pt;}
.y4e{bottom:649.429333pt;}
.y6d{bottom:652.496000pt;}
.y8{bottom:652.696000pt;}
.y31{bottom:654.896000pt;}
.y86{bottom:655.496000pt;}
.yaa{bottom:662.896000pt;}
.y4d{bottom:669.029333pt;}
.y6c{bottom:670.762667pt;}
.y30{bottom:673.762667pt;}
.ya9{bottom:679.629333pt;}
.y6b{bottom:689.029333pt;}
.yb6{bottom:690.696000pt;}
.y2f{bottom:692.029333pt;}
.ya8{bottom:696.362667pt;}
.y6a{bottom:707.296000pt;}
.y2e{bottom:710.296000pt;}
.yb5{bottom:710.429333pt;}
.ya7{bottom:713.096000pt;}
.y7{bottom:720.162667pt;}
.y69{bottom:726.229333pt;}
.yb4{bottom:726.362667pt;}
.y2d{bottom:728.562667pt;}
.ya6{bottom:729.829333pt;}
.ya5{bottom:746.562667pt;}
.y2c{bottom:746.829333pt;}
.y6{bottom:756.829333pt;}
.y2b{bottom:765.096000pt;}
.yb3{bottom:773.429333pt;}
.y5{bottom:778.096000pt;}
.ya4{bottom:780.362667pt;}
.y2a{bottom:783.362667pt;}
.yb2{bottom:796.962667pt;}
.ya3{bottom:798.629333pt;}
.y29{bottom:801.629333pt;}
.ya2{bottom:816.896000pt;}
.y28{bottom:819.896000pt;}
.yb1{bottom:820.496000pt;}
.y4{bottom:831.696000pt;}
.ya1{bottom:835.162667pt;}
.y27{bottom:838.162667pt;}
.yb0{bottom:844.029333pt;}
.y26{bottom:856.429333pt;}
.ya0{bottom:871.696000pt;}
.ycf{bottom:872.229333pt;}
.y25{bottom:874.696000pt;}
.y3{bottom:886.962667pt;}
.yaf{bottom:887.296000pt;}
.yce{bottom:888.162667pt;}
.y9f{bottom:889.962667pt;}
.y24{bottom:892.962667pt;}
.yae{bottom:903.229333pt;}
.y9e{bottom:908.229333pt;}
.y23{bottom:911.229333pt;}
.yad{bottom:919.162667pt;}
.y2{bottom:923.429333pt;}
.y9d{bottom:926.496000pt;}
.y22{bottom:929.496000pt;}
.ycd{bottom:935.962667pt;}
.y9c{bottom:944.762667pt;}
.y21{bottom:947.762667pt;}
.ycc{bottom:951.896000pt;}
.yac{bottom:961.296000pt;}
.y9b{bottom:963.696000pt;}
.y20{bottom:966.029333pt;}
.ycb{bottom:967.829333pt;}
.hc{height:37.604167pt;}
.hf{height:37.760417pt;}
.h13{height:39.484375pt;}
.h12{height:39.648438pt;}
.h11{height:41.536458pt;}
.h10{height:44.812500pt;}
.h5{height:45.125000pt;}
.ha{height:45.312500pt;}
.he{height:47.200521pt;}
.h6{height:48.512000pt;}
.hd{height:49.789583pt;}
.hb{height:49.898958pt;}
.h7{height:52.281250pt;}
.h8{height:52.864583pt;}
.h9{height:59.750000pt;}
.h3{height:60.416667pt;}
.h4{height:62.976000pt;}
.h2{height:89.625000pt;}
.h1{height:1055.961333pt;}
.h0{height:1056.000000pt;}
.w1{width:815.961333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:75.733333pt;}
.xa{left:98.400000pt;}
.x1{left:110.200000pt;}
.x9{left:123.000000pt;}
.xe{left:170.266667pt;}
.x2{left:175.266667pt;}
.x5{left:206.866667pt;}
.x6{left:291.266667pt;}
.x4{left:321.066667pt;}
.x3{left:337.866667pt;}
.xd{left:355.200000pt;}
.x7{left:367.333333pt;}
.xc{left:375.666667pt;}
.xb{left:404.133333pt;}
}




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