
    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_bd20015eb7b4b1eac91f8258.woff')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_ca805179d937d8a8ea4829f6.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e0916fa9877311b29d0104d2.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_92a840718f5b69fcc66e23aa.woff')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_749e2215a7718f498cbd658f.woff')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_c8e7eca69730032e22ace942.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_63cd94f469514d1cbaadd32f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.706543;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_1f7d44f77b643aa05ff2e2bc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.691406;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_a95ad1a76d14a8497e52ebf4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_7684fd961e87d57ba34feef5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.895020;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_4f6b2caad4b0a90bce9a5a5c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.694336;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_eff09f4d87267bf5c865d091.woff')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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.926000px;}
.lsc{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.486600px;}
.ls8{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.364291px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.020160px;}
.ls1{letter-spacing:0.152400px;}
.ls6{letter-spacing:0.720000px;}
.ls2{letter-spacing:8.400960px;}
.ls0{letter-spacing:9.538560px;}
.ls5{letter-spacing:9.840960px;}
.lsd{letter-spacing:20.770560px;}
.ls4{letter-spacing:25.200000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-23.760000px;}
.ws2{word-spacing:-16.712400px;}
.ws3{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.140160px;}
.ws4{word-spacing:-15.120000px;}
.ws1{word-spacing:-14.633400px;}
.ws6{word-spacing:0.000000px;}
._1a{margin-left:-6.930720px;}
._16{margin-left:-5.463720px;}
._6{margin-left:-3.768000px;}
._9{margin-left:-2.501280px;}
._0{margin-left:-1.224000px;}
._1{width:1.440000px;}
._2{width:3.156000px;}
._b{width:5.127840px;}
._c{width:6.243840px;}
._7{width:8.245920px;}
._8{width:9.517920px;}
._17{width:10.785600px;}
._e{width:11.975040px;}
._f{width:13.039200px;}
._4{width:16.992000px;}
._3{width:19.008000px;}
._5{width:20.520000px;}
._11{width:21.772800px;}
._10{width:22.996800px;}
._1d{width:24.675840px;}
._18{width:25.704000px;}
._19{width:27.482400px;}
._1f{width:28.787040px;}
._22{width:29.862720px;}
._1c{width:31.150080px;}
._1b{width:32.276160px;}
._12{width:34.229760px;}
._13{width:36.167040px;}
._23{width:38.229120px;}
._20{width:42.297120px;}
._24{width:45.676800px;}
._a{width:50.561280px;}
._1e{width:51.863040px;}
._29{width:55.676160px;}
._21{width:56.710080px;}
._d{width:57.758400px;}
._15{width:61.837920px;}
._14{width:63.987840px;}
._28{width:65.401920px;}
._27{width:67.066560px;}
._25{width:112.452480px;}
._26{width:113.610240px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs6{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs5{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:108.000000px;}
.y1b{bottom:-523.950000px;}
.y1a{bottom:-500.190000px;}
.y19{bottom:-476.430000px;}
.y18{bottom:-452.640000px;}
.y17{bottom:-428.880000px;}
.y16{bottom:-405.120000px;}
.y15{bottom:-381.360000px;}
.y14{bottom:-357.600000px;}
.y13{bottom:-333.795000px;}
.y12{bottom:-309.675000px;}
.y11{bottom:-285.915000px;}
.y10{bottom:-262.155000px;}
.yf{bottom:-238.395000px;}
.ye{bottom:-214.605000px;}
.yd{bottom:-190.845000px;}
.yc{bottom:-167.085000px;}
.yb{bottom:-143.325000px;}
.ya{bottom:-119.205000px;}
.y20{bottom:-106.956000px;}
.y9{bottom:-95.400000px;}
.y8{bottom:-71.640000px;}
.y1f{bottom:-70.236000px;}
.y7{bottom:-47.880000px;}
.y1e{bottom:-33.516000px;}
.y6{bottom:-24.120000px;}
.y5{bottom:-0.720000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:3.960000px;}
.y4{bottom:23.040000px;}
.y1c{bottom:94.356000px;}
.y2{bottom:107.316000px;}
.y73{bottom:132.876000px;}
.y4f{bottom:136.836000px;}
.y72{bottom:152.670000px;}
.y4e{bottom:156.630000px;}
.y71{bottom:173.190000px;}
.y4d{bottom:176.790000px;}
.y70{bottom:192.990000px;}
.y4c{bottom:196.950000px;}
.y6f{bottom:212.835000px;}
.y4b{bottom:216.795000px;}
.y6e{bottom:232.995000px;}
.y4a{bottom:236.955000px;}
.y6d{bottom:252.795000px;}
.y49{bottom:256.755000px;}
.y6c{bottom:272.595000px;}
.y48{bottom:276.555000px;}
.y6b{bottom:293.115000px;}
.y95{bottom:294.555000px;}
.y47{bottom:296.355000px;}
.y94{bottom:313.995000px;}
.y6a{bottom:315.075000px;}
.y46{bottom:316.515000px;}
.y69{bottom:335.265000px;}
.y45{bottom:337.065000px;}
.y93{bottom:348.945000px;}
.y68{bottom:355.425000px;}
.y44{bottom:358.305000px;}
.y92{bottom:368.745000px;}
.y67{bottom:375.585000px;}
.y43{bottom:378.105000px;}
.y66{bottom:395.385000px;}
.y42{bottom:397.905000px;}
.y91{bottom:403.665000px;}
.y65{bottom:415.185000px;}
.y41{bottom:417.705000px;}
.y90{bottom:423.105000px;}
.y64{bottom:434.985000px;}
.y40{bottom:438.225000px;}
.y63{bottom:455.190000px;}
.y3f{bottom:458.070000px;}
.y8f{bottom:458.430000px;}
.y62{bottom:474.990000px;}
.y3e{bottom:477.870000px;}
.y61{bottom:494.790000px;}
.y3d{bottom:497.670000px;}
.y60{bottom:514.590000px;}
.y3c{bottom:517.470000px;}
.y8e{bottom:532.950000px;}
.y5f{bottom:535.110000px;}
.y3b{bottom:537.270000px;}
.y8d{bottom:552.390000px;}
.y5e{bottom:555.270000px;}
.y3a{bottom:557.070000px;}
.y8c{bottom:572.190000px;}
.y5d{bottom:575.070000px;}
.y39{bottom:576.900000px;}
.y5c{bottom:594.900000px;}
.y38{bottom:596.700000px;}
.y8b{bottom:607.500000px;}
.y5b{bottom:614.700000px;}
.y37{bottom:616.500000px;}
.y8a{bottom:626.940000px;}
.y5a{bottom:634.500000px;}
.y36{bottom:636.660000px;}
.y89{bottom:646.740000px;}
.y59{bottom:654.660000px;}
.y35{bottom:656.460000px;}
.y88{bottom:666.540000px;}
.y58{bottom:674.100000px;}
.y34{bottom:676.260000px;}
.y57{bottom:694.620000px;}
.y33{bottom:696.060000px;}
.y87{bottom:701.850000px;}
.y56{bottom:714.450000px;}
.y32{bottom:715.890000px;}
.y86{bottom:721.290000px;}
.y55{bottom:734.610000px;}
.y31{bottom:735.690000px;}
.y85{bottom:741.090000px;}
.y54{bottom:754.410000px;}
.y30{bottom:755.490000px;}
.y84{bottom:760.890000px;}
.y53{bottom:774.570000px;}
.y2f{bottom:775.290000px;}
.y83{bottom:781.050000px;}
.y52{bottom:794.730000px;}
.y2e{bottom:795.090000px;}
.y2d{bottom:814.890000px;}
.y82{bottom:815.970000px;}
.y2c{bottom:835.095000px;}
.y51{bottom:835.455000px;}
.y2b{bottom:855.255000px;}
.y50{bottom:856.695000px;}
.y81{bottom:870.735000px;}
.y2a{bottom:877.575000px;}
.y80{bottom:890.175000px;}
.y29{bottom:897.735000px;}
.y7f{bottom:908.895000px;}
.y7e{bottom:925.455000px;}
.y28{bottom:941.655000px;}
.y7d{bottom:946.335000px;}
.y27{bottom:961.485000px;}
.y7c{bottom:966.525000px;}
.y26{bottom:981.645000px;}
.y7b{bottom:986.325000px;}
.y25{bottom:1001.805000px;}
.y7a{bottom:1006.125000px;}
.y24{bottom:1022.685000px;}
.y79{bottom:1026.285000px;}
.y23{bottom:1043.565000px;}
.y78{bottom:1046.445000px;}
.y22{bottom:1065.885000px;}
.y77{bottom:1066.245000px;}
.y76{bottom:1086.090000px;}
.y75{bottom:1105.890000px;}
.y21{bottom:1113.810000px;}
.y74{bottom:1125.690000px;}
.y1{bottom:1161.690000px;}
.y3{bottom:1171.410000px;}
.h6{height:20.160000px;}
.h15{height:28.526484px;}
.h3{height:39.636000px;}
.h13{height:41.077969px;}
.he{height:41.255156px;}
.h14{height:42.022969px;}
.h11{height:42.259219px;}
.hd{height:44.544682px;}
.h2{height:45.184219px;}
.hb{height:59.328281px;}
.h10{height:59.357813px;}
.h12{height:60.952500px;}
.h16{height:62.163910px;}
.hc{height:64.978594px;}
.h8{height:65.010937px;}
.hf{height:66.757500px;}
.h4{height:70.628906px;}
.h5{height:70.664062px;}
.h7{height:72.562500px;}
.ha{height:81.970312px;}
.h9{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:121.716000px;}
.w3{width:548.130000px;}
.w2{width:679.935000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x3{left:18.000000px;}
.x9{left:51.870000px;}
.x1{left:108.036000px;}
.x2{left:109.836000px;}
.x3e{left:121.716000px;}
.x4{left:144.429000px;}
.x3f{left:148.752000px;}
.xa{left:157.395000px;}
.x13{left:162.075000px;}
.x16{left:169.995000px;}
.x12{left:192.675000px;}
.x3d{left:222.555000px;}
.x14{left:257.865000px;}
.x15{left:268.305000px;}
.x1a{left:277.305000px;}
.x17{left:279.105000px;}
.x1b{left:288.105000px;}
.xc{left:307.545000px;}
.x3c{left:319.065000px;}
.xb{left:323.745000px;}
.x18{left:338.910000px;}
.x6{left:339.984000px;}
.x19{left:349.350000px;}
.xd{left:446.580000px;}
.xe{left:448.020000px;}
.xf{left:458.460000px;}
.x20{left:462.780000px;}
.x2b{left:473.580000px;}
.x21{left:474.660000px;}
.x1d{left:480.420000px;}
.x22{left:485.460000px;}
.x30{left:490.860000px;}
.x2e{left:515.700000px;}
.x1c{left:516.810000px;}
.x23{left:519.690000px;}
.x2f{left:526.530000px;}
.x24{left:530.490000px;}
.x7{left:537.339000px;}
.x25{left:552.810000px;}
.x26{left:566.850000px;}
.x39{left:576.930000px;}
.x37{left:608.970000px;}
.x3a{left:618.735000px;}
.x38{left:619.815000px;}
.x3b{left:629.535000px;}
.x2c{left:632.055000px;}
.x2d{left:642.495000px;}
.x27{left:645.375000px;}
.x31{left:656.535000px;}
.x28{left:659.415000px;}
.x10{left:660.855000px;}
.x8{left:663.015000px;}
.x32{left:667.335000px;}
.x11{left:671.655000px;}
.x29{left:681.375000px;}
.x1e{left:695.055000px;}
.x2a{left:698.655000px;}
.x1f{left:705.885000px;}
.x33{left:751.605000px;}
.x34{left:762.765000px;}
.x35{left:770.685000px;}
.x36{left:781.485000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.712000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.432533pt;}
.ls8{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.323814pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.017920pt;}
.ls1{letter-spacing:0.135467pt;}
.ls6{letter-spacing:0.640000pt;}
.ls2{letter-spacing:7.467520pt;}
.ls0{letter-spacing:8.478720pt;}
.ls5{letter-spacing:8.747520pt;}
.lsd{letter-spacing:18.462720pt;}
.ls4{letter-spacing:22.400000pt;}
.ws0{word-spacing:-21.120000pt;}
.ws2{word-spacing:-14.855467pt;}
.ws3{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.457920pt;}
.ws4{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.007467pt;}
.ws6{word-spacing:0.000000pt;}
._1a{margin-left:-6.160640pt;}
._16{margin-left:-4.856640pt;}
._6{margin-left:-3.349333pt;}
._9{margin-left:-2.223360pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.280000pt;}
._2{width:2.805333pt;}
._b{width:4.558080pt;}
._c{width:5.550080pt;}
._7{width:7.329707pt;}
._8{width:8.460373pt;}
._17{width:9.587200pt;}
._e{width:10.644480pt;}
._f{width:11.590400pt;}
._4{width:15.104000pt;}
._3{width:16.896000pt;}
._5{width:18.240000pt;}
._11{width:19.353600pt;}
._10{width:20.441600pt;}
._1d{width:21.934080pt;}
._18{width:22.848000pt;}
._19{width:24.428800pt;}
._1f{width:25.588480pt;}
._22{width:26.544640pt;}
._1c{width:27.688960pt;}
._1b{width:28.689920pt;}
._12{width:30.426453pt;}
._13{width:32.148480pt;}
._23{width:33.981440pt;}
._20{width:37.597440pt;}
._24{width:40.601600pt;}
._a{width:44.943360pt;}
._1e{width:46.100480pt;}
._29{width:49.489920pt;}
._21{width:50.408960pt;}
._d{width:51.340800pt;}
._15{width:54.967040pt;}
._14{width:56.878080pt;}
._28{width:58.135040pt;}
._27{width:59.614720pt;}
._25{width:99.957760pt;}
._26{width:100.986880pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs5{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:96.000000pt;}
.y1b{bottom:-465.733333pt;}
.y1a{bottom:-444.613333pt;}
.y19{bottom:-423.493333pt;}
.y18{bottom:-402.346667pt;}
.y17{bottom:-381.226667pt;}
.y16{bottom:-360.106667pt;}
.y15{bottom:-338.986667pt;}
.y14{bottom:-317.866667pt;}
.y13{bottom:-296.706667pt;}
.y12{bottom:-275.266667pt;}
.y11{bottom:-254.146667pt;}
.y10{bottom:-233.026667pt;}
.yf{bottom:-211.906667pt;}
.ye{bottom:-190.760000pt;}
.yd{bottom:-169.640000pt;}
.yc{bottom:-148.520000pt;}
.yb{bottom:-127.400000pt;}
.ya{bottom:-105.960000pt;}
.y20{bottom:-95.072000pt;}
.y9{bottom:-84.800000pt;}
.y8{bottom:-63.680000pt;}
.y1f{bottom:-62.432000pt;}
.y7{bottom:-42.560000pt;}
.y1e{bottom:-29.792000pt;}
.y6{bottom:-21.440000pt;}
.y5{bottom:-0.640000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:3.520000pt;}
.y4{bottom:20.480000pt;}
.y1c{bottom:83.872000pt;}
.y2{bottom:95.392000pt;}
.y73{bottom:118.112000pt;}
.y4f{bottom:121.632000pt;}
.y72{bottom:135.706667pt;}
.y4e{bottom:139.226667pt;}
.y71{bottom:153.946667pt;}
.y4d{bottom:157.146667pt;}
.y70{bottom:171.546667pt;}
.y4c{bottom:175.066667pt;}
.y6f{bottom:189.186667pt;}
.y4b{bottom:192.706667pt;}
.y6e{bottom:207.106667pt;}
.y4a{bottom:210.626667pt;}
.y6d{bottom:224.706667pt;}
.y49{bottom:228.226667pt;}
.y6c{bottom:242.306667pt;}
.y48{bottom:245.826667pt;}
.y6b{bottom:260.546667pt;}
.y95{bottom:261.826667pt;}
.y47{bottom:263.426667pt;}
.y94{bottom:279.106667pt;}
.y6a{bottom:280.066667pt;}
.y46{bottom:281.346667pt;}
.y69{bottom:298.013333pt;}
.y45{bottom:299.613333pt;}
.y93{bottom:310.173333pt;}
.y68{bottom:315.933333pt;}
.y44{bottom:318.493333pt;}
.y92{bottom:327.773333pt;}
.y67{bottom:333.853333pt;}
.y43{bottom:336.093333pt;}
.y66{bottom:351.453333pt;}
.y42{bottom:353.693333pt;}
.y91{bottom:358.813333pt;}
.y65{bottom:369.053333pt;}
.y41{bottom:371.293333pt;}
.y90{bottom:376.093333pt;}
.y64{bottom:386.653333pt;}
.y40{bottom:389.533333pt;}
.y63{bottom:404.613333pt;}
.y3f{bottom:407.173333pt;}
.y8f{bottom:407.493333pt;}
.y62{bottom:422.213333pt;}
.y3e{bottom:424.773333pt;}
.y61{bottom:439.813333pt;}
.y3d{bottom:442.373333pt;}
.y60{bottom:457.413333pt;}
.y3c{bottom:459.973333pt;}
.y8e{bottom:473.733333pt;}
.y5f{bottom:475.653333pt;}
.y3b{bottom:477.573333pt;}
.y8d{bottom:491.013333pt;}
.y5e{bottom:493.573333pt;}
.y3a{bottom:495.173333pt;}
.y8c{bottom:508.613333pt;}
.y5d{bottom:511.173333pt;}
.y39{bottom:512.800000pt;}
.y5c{bottom:528.800000pt;}
.y38{bottom:530.400000pt;}
.y8b{bottom:540.000000pt;}
.y5b{bottom:546.400000pt;}
.y37{bottom:548.000000pt;}
.y8a{bottom:557.280000pt;}
.y5a{bottom:564.000000pt;}
.y36{bottom:565.920000pt;}
.y89{bottom:574.880000pt;}
.y59{bottom:581.920000pt;}
.y35{bottom:583.520000pt;}
.y88{bottom:592.480000pt;}
.y58{bottom:599.200000pt;}
.y34{bottom:601.120000pt;}
.y57{bottom:617.440000pt;}
.y33{bottom:618.720000pt;}
.y87{bottom:623.866667pt;}
.y56{bottom:635.066667pt;}
.y32{bottom:636.346667pt;}
.y86{bottom:641.146667pt;}
.y55{bottom:652.986667pt;}
.y31{bottom:653.946667pt;}
.y85{bottom:658.746667pt;}
.y54{bottom:670.586667pt;}
.y30{bottom:671.546667pt;}
.y84{bottom:676.346667pt;}
.y53{bottom:688.506667pt;}
.y2f{bottom:689.146667pt;}
.y83{bottom:694.266667pt;}
.y52{bottom:706.426667pt;}
.y2e{bottom:706.746667pt;}
.y2d{bottom:724.346667pt;}
.y82{bottom:725.306667pt;}
.y2c{bottom:742.306667pt;}
.y51{bottom:742.626667pt;}
.y2b{bottom:760.226667pt;}
.y50{bottom:761.506667pt;}
.y81{bottom:773.986667pt;}
.y2a{bottom:780.066667pt;}
.y80{bottom:791.266667pt;}
.y29{bottom:797.986667pt;}
.y7f{bottom:807.906667pt;}
.y7e{bottom:822.626667pt;}
.y28{bottom:837.026667pt;}
.y7d{bottom:841.186667pt;}
.y27{bottom:854.653333pt;}
.y7c{bottom:859.133333pt;}
.y26{bottom:872.573333pt;}
.y7b{bottom:876.733333pt;}
.y25{bottom:890.493333pt;}
.y7a{bottom:894.333333pt;}
.y24{bottom:909.053333pt;}
.y79{bottom:912.253333pt;}
.y23{bottom:927.613333pt;}
.y78{bottom:930.173333pt;}
.y22{bottom:947.453333pt;}
.y77{bottom:947.773333pt;}
.y76{bottom:965.413333pt;}
.y75{bottom:983.013333pt;}
.y21{bottom:990.053333pt;}
.y74{bottom:1000.613333pt;}
.y1{bottom:1032.613333pt;}
.y3{bottom:1041.253333pt;}
.h6{height:17.920000pt;}
.h15{height:25.356875pt;}
.h3{height:35.232000pt;}
.h13{height:36.513750pt;}
.he{height:36.671250pt;}
.h14{height:37.353750pt;}
.h11{height:37.563750pt;}
.hd{height:39.595273pt;}
.h2{height:40.163750pt;}
.hb{height:52.736250pt;}
.h10{height:52.762500pt;}
.h12{height:54.180000pt;}
.h16{height:55.256809pt;}
.hc{height:57.758750pt;}
.h8{height:57.787500pt;}
.hf{height:59.340000pt;}
.h4{height:62.781250pt;}
.h5{height:62.812500pt;}
.h7{height:64.500000pt;}
.ha{height:72.862500pt;}
.h9{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:108.192000pt;}
.w3{width:487.226667pt;}
.w2{width:604.386667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x3{left:16.000000pt;}
.x9{left:46.106667pt;}
.x1{left:96.032000pt;}
.x2{left:97.632000pt;}
.x3e{left:108.192000pt;}
.x4{left:128.381333pt;}
.x3f{left:132.224000pt;}
.xa{left:139.906667pt;}
.x13{left:144.066667pt;}
.x16{left:151.106667pt;}
.x12{left:171.266667pt;}
.x3d{left:197.826667pt;}
.x14{left:229.213333pt;}
.x15{left:238.493333pt;}
.x1a{left:246.493333pt;}
.x17{left:248.093333pt;}
.x1b{left:256.093333pt;}
.xc{left:273.373333pt;}
.x3c{left:283.613333pt;}
.xb{left:287.773333pt;}
.x18{left:301.253333pt;}
.x6{left:302.208000pt;}
.x19{left:310.533333pt;}
.xd{left:396.960000pt;}
.xe{left:398.240000pt;}
.xf{left:407.520000pt;}
.x20{left:411.360000pt;}
.x2b{left:420.960000pt;}
.x21{left:421.920000pt;}
.x1d{left:427.040000pt;}
.x22{left:431.520000pt;}
.x30{left:436.320000pt;}
.x2e{left:458.400000pt;}
.x1c{left:459.386667pt;}
.x23{left:461.946667pt;}
.x2f{left:468.026667pt;}
.x24{left:471.546667pt;}
.x7{left:477.634667pt;}
.x25{left:491.386667pt;}
.x26{left:503.866667pt;}
.x39{left:512.826667pt;}
.x37{left:541.306667pt;}
.x3a{left:549.986667pt;}
.x38{left:550.946667pt;}
.x3b{left:559.586667pt;}
.x2c{left:561.826667pt;}
.x2d{left:571.106667pt;}
.x27{left:573.666667pt;}
.x31{left:583.586667pt;}
.x28{left:586.146667pt;}
.x10{left:587.426667pt;}
.x8{left:589.346667pt;}
.x32{left:593.186667pt;}
.x11{left:597.026667pt;}
.x29{left:605.666667pt;}
.x1e{left:617.826667pt;}
.x2a{left:621.026667pt;}
.x1f{left:627.453333pt;}
.x33{left:668.093333pt;}
.x34{left:678.013333pt;}
.x35{left:685.053333pt;}
.x36{left:694.653333pt;}
}




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