
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_356c9ff070a02048d631a90b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_97068e4e11d1154266824264.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_93474263542c1e95b7f03fa7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_a54dbecba604bb510fab6abb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_25a75b3fba9b29085d744d66.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_ec8dbcbfc467620858c134ce.woff2')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_c8ecce1384bc3478da1b23ac.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_286eb1a9b8f58c117c469112.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls7{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.370200px;}
.ls9{letter-spacing:-0.326400px;}
.ls10{letter-spacing:-0.038880px;}
.ls12{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.010800px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.013200px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.211680px;}
.ls3{letter-spacing:0.336000px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.385800px;}
.ls4{letter-spacing:0.666720px;}
.lsf{letter-spacing:0.678000px;}
.ls0{letter-spacing:0.720000px;}
.lse{letter-spacing:64.026720px;}
.ls11{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb{word-spacing:-59.760000px;}
.wsa{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.572800px;}
.wsc{word-spacing:-13.825200px;}
.ws4{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.wse{word-spacing:-13.111200px;}
.wsd{word-spacing:-13.108320px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:2.552040px;}
._a{margin-left:-4.038720px;}
._1{margin-left:-2.230897px;}
._0{margin-left:-1.159200px;}
._2{width:1.106834px;}
._3{width:2.267898px;}
._6{width:3.410170px;}
._7{width:4.948080px;}
._12{width:5.962941px;}
._c{width:6.985888px;}
._d{width:8.019719px;}
._9{width:9.051087px;}
._8{width:10.338600px;}
._e{width:11.414399px;}
._4{width:14.461800px;}
._5{width:15.639765px;}
._13{width:17.657806px;}
._10{width:19.572674px;}
._f{width:20.645806px;}
._11{width:24.192720px;}
._b{width:28.565400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.296000px;}
.y28{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.y54{bottom:120.096000px;}
.y53{bottom:137.556000px;}
.y26{bottom:148.356000px;}
.yab{bottom:154.110000px;}
.y7d{bottom:158.970000px;}
.y25{bottom:165.990000px;}
.y52{bottom:173.190000px;}
.y7c{bottom:176.610000px;}
.y24{bottom:183.450000px;}
.yaa{bottom:189.750000px;}
.y51{bottom:190.830000px;}
.y7b{bottom:194.250000px;}
.y23{bottom:201.090000px;}
.ya9{bottom:207.390000px;}
.y50{bottom:208.290000px;}
.y7a{bottom:211.890000px;}
.ya8{bottom:224.850000px;}
.y4f{bottom:225.930000px;}
.y79{bottom:229.350000px;}
.y22{bottom:236.550000px;}
.ya7{bottom:242.490000px;}
.y4e{bottom:243.570000px;}
.y21{bottom:254.190000px;}
.y78{bottom:256.710000px;}
.y4d{bottom:270.210000px;}
.y20{bottom:271.830000px;}
.ya6{bottom:277.950000px;}
.y1f{bottom:289.470000px;}
.y77{bottom:292.350000px;}
.ya5{bottom:295.590000px;}
.y1e{bottom:307.110000px;}
.y76{bottom:310.035000px;}
.ya4{bottom:313.275000px;}
.y4c{bottom:318.675000px;}
.y1d{bottom:324.615000px;}
.y75{bottom:327.495000px;}
.ya3{bottom:330.915000px;}
.y4b{bottom:336.315000px;}
.y1c{bottom:351.255000px;}
.y4a{bottom:353.955000px;}
.y74{bottom:355.035000px;}
.ya2{bottom:366.375000px;}
.ya1{bottom:384.015000px;}
.y1b{bottom:386.715000px;}
.y49{bottom:389.415000px;}
.y73{bottom:390.495000px;}
.ya0{bottom:401.655000px;}
.y1a{bottom:404.355000px;}
.y48{bottom:407.055000px;}
.y72{bottom:408.135000px;}
.y9f{bottom:419.295000px;}
.y19{bottom:421.995000px;}
.y47{bottom:424.695000px;}
.y71{bottom:425.775000px;}
.y9e{bottom:436.755000px;}
.y18{bottom:439.635000px;}
.y46{bottom:442.335000px;}
.y70{bottom:443.235000px;}
.y9d{bottom:454.395000px;}
.y17{bottom:457.095000px;}
.y45{bottom:468.795000px;}
.y6f{bottom:470.775000px;}
.y9c{bottom:472.035000px;}
.y16{bottom:483.915000px;}
.y9b{bottom:498.675000px;}
.y44{bottom:504.435000px;}
.y6e{bottom:506.235000px;}
.y43{bottom:522.075000px;}
.y6d{bottom:523.875000px;}
.y15{bottom:532.335000px;}
.y42{bottom:539.535000px;}
.y9a{bottom:547.095000px;}
.y14{bottom:550.155000px;}
.y6c{bottom:550.515000px;}
.y41{bottom:557.175000px;}
.y99{bottom:565.635000px;}
.y98{bottom:583.125000px;}
.y40{bottom:583.665000px;}
.y6b{bottom:586.185000px;}
.y13{bottom:587.265000px;}
.y97{bottom:601.665000px;}
.y6a{bottom:603.825000px;}
.y12{bottom:604.905000px;}
.y96{bottom:619.125000px;}
.y3f{bottom:619.485000px;}
.y69{bottom:621.285000px;}
.y11{bottom:622.545000px;}
.y95{bottom:637.665000px;}
.y68{bottom:639.825000px;}
.y10{bottom:640.005000px;}
.y94{bottom:655.125000px;}
.y67{bottom:657.285000px;}
.yf{bottom:657.645000px;}
.y3e{bottom:667.905000px;}
.y66{bottom:674.745000px;}
.ye{bottom:675.285000px;}
.y93{bottom:682.845000px;}
.y3d{bottom:685.545000px;}
.yd{bottom:692.745000px;}
.y65{bottom:693.285000px;}
.y3c{bottom:703.185000px;}
.yc{bottom:710.385000px;}
.y64{bottom:710.925000px;}
.y92{bottom:719.925000px;}
.y3b{bottom:720.645000px;}
.yb{bottom:728.025000px;}
.y63{bottom:728.385000px;}
.y91{bottom:737.385000px;}
.y3a{bottom:738.285000px;}
.yb7{bottom:747.285000px;}
.ya{bottom:754.665000px;}
.y90{bottom:755.925000px;}
.y39{bottom:764.925000px;}
.y8f{bottom:773.385000px;}
.yb6{bottom:791.385000px;}
.y62{bottom:791.745000px;}
.y8e{bottom:791.925000px;}
.y38{bottom:800.385000px;}
.y9{bottom:803.085000px;}
.yb5{bottom:809.025000px;}
.y8d{bottom:809.385000px;}
.y37{bottom:818.025000px;}
.y36{bottom:835.665000px;}
.y8c{bottom:837.105000px;}
.y8{bottom:838.905000px;}
.y61{bottom:839.985000px;}
.y35{bottom:853.305000px;}
.y60{bottom:857.625000px;}
.y34{bottom:870.810000px;}
.y7{bottom:874.950000px;}
.y5f{bottom:875.310000px;}
.yb4{bottom:879.810000px;}
.y8b{bottom:885.570000px;}
.y5e{bottom:892.950000px;}
.y8a{bottom:903.030000px;}
.y33{bottom:906.450000px;}
.y5d{bottom:910.410000px;}
.y6{bottom:910.950000px;}
.y89{bottom:921.570000px;}
.y32{bottom:924.090000px;}
.y5c{bottom:937.050000px;}
.y88{bottom:939.030000px;}
.y31{bottom:941.550000px;}
.y5{bottom:947.130000px;}
.yb3{bottom:950.550000px;}
.y87{bottom:957.570000px;}
.y30{bottom:959.190000px;}
.yb2{bottom:968.190000px;}
.y5b{bottom:972.510000px;}
.y86{bottom:975.030000px;}
.y4{bottom:985.290000px;}
.y2f{bottom:986.010000px;}
.y5a{bottom:990.150000px;}
.y85{bottom:993.570000px;}
.yb1{bottom:994.830000px;}
.y59{bottom:1007.790000px;}
.y3{bottom:1009.950000px;}
.y84{bottom:1011.210000px;}
.yb0{bottom:1012.470000px;}
.y58{bottom:1025.430000px;}
.y83{bottom:1028.670000px;}
.y2e{bottom:1034.430000px;}
.yaf{bottom:1038.930000px;}
.y57{bottom:1043.070000px;}
.y82{bottom:1047.210000px;}
.y2d{bottom:1052.070000px;}
.yae{bottom:1056.570000px;}
.y81{bottom:1064.670000px;}
.y2c{bottom:1069.530000px;}
.y80{bottom:1082.310000px;}
.yad{bottom:1083.030000px;}
.y2b{bottom:1087.170000px;}
.y7f{bottom:1099.770000px;}
.yac{bottom:1100.670000px;}
.y56{bottom:1105.170000px;}
.y2a{bottom:1122.630000px;}
.y55{bottom:1122.810000px;}
.y7e{bottom:1127.490000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h2{height:29.717578px;}
.h3{height:38.405391px;}
.h6{height:50.597578px;}
.h5{height:56.084062px;}
.ha{height:59.614102px;}
.h9{height:61.423863px;}
.h7{height:62.211094px;}
.h8{height:68.956875px;}
.h4{height:71.324297px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:95.075987px;}
.x6{left:111.275987px;}
.x5{left:122.075987px;}
.x2{left:202.709987px;}
.x3{left:791.969987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls7{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.329067pt;}
.ls9{letter-spacing:-0.290133pt;}
.ls10{letter-spacing:-0.034560pt;}
.ls12{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.009600pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.011733pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.188160pt;}
.ls3{letter-spacing:0.298667pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.342933pt;}
.ls4{letter-spacing:0.592640pt;}
.lsf{letter-spacing:0.602667pt;}
.ls0{letter-spacing:0.640000pt;}
.lse{letter-spacing:56.912640pt;}
.ls11{letter-spacing:72.272640pt;}
.wsb{word-spacing:-53.120000pt;}
.wsa{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.289067pt;}
.ws4{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.wse{word-spacing:-11.654400pt;}
.wsd{word-spacing:-11.651840pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:2.268480pt;}
._a{margin-left:-3.589973pt;}
._1{margin-left:-1.983020pt;}
._0{margin-left:-1.030400pt;}
._2{width:0.983852pt;}
._3{width:2.015910pt;}
._6{width:3.031262pt;}
._7{width:4.398293pt;}
._12{width:5.300392pt;}
._c{width:6.209679pt;}
._d{width:7.128639pt;}
._9{width:8.045411pt;}
._8{width:9.189866pt;}
._e{width:10.146132pt;}
._4{width:12.854934pt;}
._5{width:13.902013pt;}
._13{width:15.695828pt;}
._10{width:17.397932pt;}
._f{width:18.351828pt;}
._11{width:21.504640pt;}
._b{width:25.391466pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.152000pt;}
.y28{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.y54{bottom:106.752000pt;}
.y53{bottom:122.272000pt;}
.y26{bottom:131.872000pt;}
.yab{bottom:136.986667pt;}
.y7d{bottom:141.306667pt;}
.y25{bottom:147.546667pt;}
.y52{bottom:153.946667pt;}
.y7c{bottom:156.986667pt;}
.y24{bottom:163.066667pt;}
.yaa{bottom:168.666667pt;}
.y51{bottom:169.626667pt;}
.y7b{bottom:172.666667pt;}
.y23{bottom:178.746667pt;}
.ya9{bottom:184.346667pt;}
.y50{bottom:185.146667pt;}
.y7a{bottom:188.346667pt;}
.ya8{bottom:199.866667pt;}
.y4f{bottom:200.826667pt;}
.y79{bottom:203.866667pt;}
.y22{bottom:210.266667pt;}
.ya7{bottom:215.546667pt;}
.y4e{bottom:216.506667pt;}
.y21{bottom:225.946667pt;}
.y78{bottom:228.186667pt;}
.y4d{bottom:240.186667pt;}
.y20{bottom:241.626667pt;}
.ya6{bottom:247.066667pt;}
.y1f{bottom:257.306667pt;}
.y77{bottom:259.866667pt;}
.ya5{bottom:262.746667pt;}
.y1e{bottom:272.986667pt;}
.y76{bottom:275.586667pt;}
.ya4{bottom:278.466667pt;}
.y4c{bottom:283.266667pt;}
.y1d{bottom:288.546667pt;}
.y75{bottom:291.106667pt;}
.ya3{bottom:294.146667pt;}
.y4b{bottom:298.946667pt;}
.y1c{bottom:312.226667pt;}
.y4a{bottom:314.626667pt;}
.y74{bottom:315.586667pt;}
.ya2{bottom:325.666667pt;}
.ya1{bottom:341.346667pt;}
.y1b{bottom:343.746667pt;}
.y49{bottom:346.146667pt;}
.y73{bottom:347.106667pt;}
.ya0{bottom:357.026667pt;}
.y1a{bottom:359.426667pt;}
.y48{bottom:361.826667pt;}
.y72{bottom:362.786667pt;}
.y9f{bottom:372.706667pt;}
.y19{bottom:375.106667pt;}
.y47{bottom:377.506667pt;}
.y71{bottom:378.466667pt;}
.y9e{bottom:388.226667pt;}
.y18{bottom:390.786667pt;}
.y46{bottom:393.186667pt;}
.y70{bottom:393.986667pt;}
.y9d{bottom:403.906667pt;}
.y17{bottom:406.306667pt;}
.y45{bottom:416.706667pt;}
.y6f{bottom:418.466667pt;}
.y9c{bottom:419.586667pt;}
.y16{bottom:430.146667pt;}
.y9b{bottom:443.266667pt;}
.y44{bottom:448.386667pt;}
.y6e{bottom:449.986667pt;}
.y43{bottom:464.066667pt;}
.y6d{bottom:465.666667pt;}
.y15{bottom:473.186667pt;}
.y42{bottom:479.586667pt;}
.y9a{bottom:486.306667pt;}
.y14{bottom:489.026667pt;}
.y6c{bottom:489.346667pt;}
.y41{bottom:495.266667pt;}
.y99{bottom:502.786667pt;}
.y98{bottom:518.333333pt;}
.y40{bottom:518.813333pt;}
.y6b{bottom:521.053333pt;}
.y13{bottom:522.013333pt;}
.y97{bottom:534.813333pt;}
.y6a{bottom:536.733333pt;}
.y12{bottom:537.693333pt;}
.y96{bottom:550.333333pt;}
.y3f{bottom:550.653333pt;}
.y69{bottom:552.253333pt;}
.y11{bottom:553.373333pt;}
.y95{bottom:566.813333pt;}
.y68{bottom:568.733333pt;}
.y10{bottom:568.893333pt;}
.y94{bottom:582.333333pt;}
.y67{bottom:584.253333pt;}
.yf{bottom:584.573333pt;}
.y3e{bottom:593.693333pt;}
.y66{bottom:599.773333pt;}
.ye{bottom:600.253333pt;}
.y93{bottom:606.973333pt;}
.y3d{bottom:609.373333pt;}
.yd{bottom:615.773333pt;}
.y65{bottom:616.253333pt;}
.y3c{bottom:625.053333pt;}
.yc{bottom:631.453333pt;}
.y64{bottom:631.933333pt;}
.y92{bottom:639.933333pt;}
.y3b{bottom:640.573333pt;}
.yb{bottom:647.133333pt;}
.y63{bottom:647.453333pt;}
.y91{bottom:655.453333pt;}
.y3a{bottom:656.253333pt;}
.yb7{bottom:664.253333pt;}
.ya{bottom:670.813333pt;}
.y90{bottom:671.933333pt;}
.y39{bottom:679.933333pt;}
.y8f{bottom:687.453333pt;}
.yb6{bottom:703.453333pt;}
.y62{bottom:703.773333pt;}
.y8e{bottom:703.933333pt;}
.y38{bottom:711.453333pt;}
.y9{bottom:713.853333pt;}
.yb5{bottom:719.133333pt;}
.y8d{bottom:719.453333pt;}
.y37{bottom:727.133333pt;}
.y36{bottom:742.813333pt;}
.y8c{bottom:744.093333pt;}
.y8{bottom:745.693333pt;}
.y61{bottom:746.653333pt;}
.y35{bottom:758.493333pt;}
.y60{bottom:762.333333pt;}
.y34{bottom:774.053333pt;}
.y7{bottom:777.733333pt;}
.y5f{bottom:778.053333pt;}
.yb4{bottom:782.053333pt;}
.y8b{bottom:787.173333pt;}
.y5e{bottom:793.733333pt;}
.y8a{bottom:802.693333pt;}
.y33{bottom:805.733333pt;}
.y5d{bottom:809.253333pt;}
.y6{bottom:809.733333pt;}
.y89{bottom:819.173333pt;}
.y32{bottom:821.413333pt;}
.y5c{bottom:832.933333pt;}
.y88{bottom:834.693333pt;}
.y31{bottom:836.933333pt;}
.y5{bottom:841.893333pt;}
.yb3{bottom:844.933333pt;}
.y87{bottom:851.173333pt;}
.y30{bottom:852.613333pt;}
.yb2{bottom:860.613333pt;}
.y5b{bottom:864.453333pt;}
.y86{bottom:866.693333pt;}
.y4{bottom:875.813333pt;}
.y2f{bottom:876.453333pt;}
.y5a{bottom:880.133333pt;}
.y85{bottom:883.173333pt;}
.yb1{bottom:884.293333pt;}
.y59{bottom:895.813333pt;}
.y3{bottom:897.733333pt;}
.y84{bottom:898.853333pt;}
.yb0{bottom:899.973333pt;}
.y58{bottom:911.493333pt;}
.y83{bottom:914.373333pt;}
.y2e{bottom:919.493333pt;}
.yaf{bottom:923.493333pt;}
.y57{bottom:927.173333pt;}
.y82{bottom:930.853333pt;}
.y2d{bottom:935.173333pt;}
.yae{bottom:939.173333pt;}
.y81{bottom:946.373333pt;}
.y2c{bottom:950.693333pt;}
.y80{bottom:962.053333pt;}
.yad{bottom:962.693333pt;}
.y2b{bottom:966.373333pt;}
.y7f{bottom:977.573333pt;}
.yac{bottom:978.373333pt;}
.y56{bottom:982.373333pt;}
.y2a{bottom:997.893333pt;}
.y55{bottom:998.053333pt;}
.y7e{bottom:1002.213333pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h2{height:26.415625pt;}
.h3{height:34.138125pt;}
.h6{height:44.975625pt;}
.h5{height:49.852500pt;}
.ha{height:52.990313pt;}
.h9{height:54.598989pt;}
.h7{height:55.298750pt;}
.h8{height:61.295000pt;}
.h4{height:63.399375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:84.511988pt;}
.x6{left:98.911988pt;}
.x5{left:108.511988pt;}
.x2{left:180.186655pt;}
.x3{left:703.973322pt;}
}




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