
    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_9996ea4dc904d9cce0af9d50.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_582c3e076b70dc82b94e323c.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_7ec1d406b2d02a14cbd49bf0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0833955c7e361953b8c0e5d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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_106d1c008f1a3951372d024b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_1ac0056eb8f1ca25c6735787.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_6aa581555815cc5f38c4fbbb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-92.160000px;}
.v4{vertical-align:-84.240000px;}
.v3{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.ls1f{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.648000px;}
.ls1d{letter-spacing:-0.450600px;}
.ls6{letter-spacing:-0.414600px;}
.lsd{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.216000px;}
.lse{letter-spacing:0.269400px;}
.ls1c{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.864000px;}
.ls1b{letter-spacing:0.936000px;}
.ls12{letter-spacing:1.440000px;}
.ls15{letter-spacing:1.584000px;}
.lsf{letter-spacing:3.060000px;}
.lsa{letter-spacing:10.080000px;}
.lsb{letter-spacing:10.800000px;}
.ls14{letter-spacing:12.240000px;}
.ls20{letter-spacing:21.600000px;}
.ls21{letter-spacing:658.236000px;}
.ls3{letter-spacing:1009.596000px;}
.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;}
}
.ws2{word-spacing:-27.000000px;}
.ws1{word-spacing:-26.964000px;}
.wsb{word-spacing:-19.584000px;}
.ws9{word-spacing:-19.440000px;}
.wse{word-spacing:-18.936000px;}
.wsa{word-spacing:-18.864000px;}
.ws12{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.280000px;}
.ws3{word-spacing:-16.560000px;}
.ws8{word-spacing:-12.329400px;}
.ws10{word-spacing:-11.609400px;}
.ws0{word-spacing:0.000000px;}
._1b{margin-left:-2.987520px;}
._3{margin-left:-1.347840px;}
._1{width:1.015920px;}
._2{width:2.919840px;}
._b{width:4.209360px;}
._c{width:5.209920px;}
._8{width:6.713280px;}
._4{width:7.882560px;}
._9{width:8.919360px;}
._f{width:10.025280px;}
._5{width:11.062080px;}
._6{width:12.234240px;}
._15{width:13.253520px;}
._12{width:14.259840px;}
._a{width:15.413760px;}
._1a{width:16.464000px;}
._7{width:18.348480px;}
._14{width:20.016000px;}
._d{width:21.528000px;}
._e{width:22.608000px;}
._17{width:23.688000px;}
._13{width:24.708000px;}
._16{width:25.848000px;}
._18{width:27.144000px;}
._19{width:28.200000px;}
._1e{width:29.232000px;}
._1c{width:30.384000px;}
._1d{width:31.599840px;}
._1f{width:33.720000px;}
._10{width:35.688000px;}
._11{width:36.792000px;}
._20{width:37.800000px;}
._21{width:39.948000px;}
._22{width:42.192000px;}
._23{width:45.000000px;}
._0{width:1342.956000px;}
.fc1{color:transparent;}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:4.492500px;}
.y20{bottom:55.123500px;}
.y1f{bottom:59.616000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y52{bottom:110.016000px;}
.y84{bottom:126.036000px;}
.y51{bottom:127.296000px;}
.y50{bottom:134.136000px;}
.y1d{bottom:139.264499px;}
.y4f{bottom:145.296000px;}
.y83{bottom:146.736000px;}
.y82{bottom:167.430000px;}
.y81{bottom:188.130000px;}
.y14{bottom:196.933500px;}
.y80{bottom:208.830000px;}
.y1c{bottom:209.518500px;}
.y13{bottom:209.533503px;}
.y1b{bottom:222.118502px;}
.y12{bottom:222.133505px;}
.y7f{bottom:229.530000px;}
.y1a{bottom:234.718504px;}
.y11{bottom:234.733496px;}
.y4e{bottom:237.990000px;}
.y7e{bottom:250.230000px;}
.y4d{bottom:256.530000px;}
.y19{bottom:259.918497px;}
.y10{bottom:259.933500px;}
.y7d{bottom:270.930000px;}
.y18{bottom:272.518500px;}
.yf{bottom:272.533503px;}
.y4c{bottom:274.575000px;}
.y17{bottom:285.118502px;}
.ye{bottom:285.133499px;}
.y7c{bottom:291.675000px;}
.y4b{bottom:292.575000px;}
.y16{bottom:310.318501px;}
.yd{bottom:310.333501px;}
.y4a{bottom:310.575000px;}
.y7b{bottom:312.375000px;}
.y15{bottom:322.918500px;}
.yc{bottom:322.933500px;}
.y49{bottom:329.115000px;}
.y7a{bottom:333.075000px;}
.y48{bottom:348.015000px;}
.yb{bottom:348.133500px;}
.y79{bottom:353.775000px;}
.y47{bottom:367.095000px;}
.y78{bottom:374.475000px;}
.y46{bottom:385.995000px;}
.ya{bottom:386.785499px;}
.y77{bottom:395.175000px;}
.y45{bottom:404.895000px;}
.y9{bottom:408.044999px;}
.y76{bottom:415.875000px;}
.y44{bottom:423.975000px;}
.y75{bottom:436.395000px;}
.y43{bottom:442.875000px;}
.y74{bottom:457.095000px;}
.y42{bottom:461.955000px;}
.y73{bottom:477.795000px;}
.y41{bottom:480.855000px;}
.y72{bottom:498.495000px;}
.y40{bottom:499.755000px;}
.y3f{bottom:518.835000px;}
.y71{bottom:519.195000px;}
.y8{bottom:520.864502px;}
.y3e{bottom:537.735000px;}
.y7{bottom:538.864499px;}
.y8b{bottom:539.535000px;}
.y70{bottom:539.895000px;}
.y3d{bottom:556.845000px;}
.y6{bottom:556.864499px;}
.y8a{bottom:560.265000px;}
.y6f{bottom:560.625000px;}
.y3c{bottom:575.745000px;}
.y89{bottom:580.965000px;}
.y6e{bottom:581.325000px;}
.y3b{bottom:594.825000px;}
.y6d{bottom:602.025000px;}
.y3a{bottom:613.725000px;}
.y6c{bottom:622.725000px;}
.y39{bottom:632.625000px;}
.y6b{bottom:643.425000px;}
.y38{bottom:651.705000px;}
.y6a{bottom:664.125000px;}
.y37{bottom:670.605000px;}
.y69{bottom:684.825000px;}
.y36{bottom:689.685000px;}
.y68{bottom:705.525000px;}
.y35{bottom:708.585000px;}
.y67{bottom:726.225000px;}
.y34{bottom:727.485000px;}
.y33{bottom:746.565000px;}
.y66{bottom:746.925000px;}
.y3{bottom:752.599495px;}
.y32{bottom:765.465000px;}
.y65{bottom:767.625000px;}
.y31{bottom:784.545000px;}
.y64{bottom:788.325000px;}
.y30{bottom:804.525000px;}
.y88{bottom:808.665000px;}
.y63{bottom:809.025000px;}
.y2f{bottom:814.245000px;}
.y2e{bottom:827.565000px;}
.y87{bottom:829.365000px;}
.y62{bottom:829.725000px;}
.y2d{bottom:846.690000px;}
.y8c{bottom:850.110000px;}
.y61{bottom:850.470000px;}
.y2c{bottom:865.590000px;}
.y60{bottom:871.170000px;}
.y2{bottom:879.369000px;}
.y2b{bottom:887.010000px;}
.y5f{bottom:891.510000px;}
.y86{bottom:891.870000px;}
.y5e{bottom:912.210000px;}
.y85{bottom:912.570000px;}
.y2a{bottom:916.890000px;}
.y5d{bottom:933.270000px;}
.y29{bottom:944.430000px;}
.y5c{bottom:953.970000px;}
.y1{bottom:966.726000px;}
.y28{bottom:972.870000px;}
.y5b{bottom:974.670000px;}
.y5a{bottom:995.370000px;}
.y27{bottom:1003.830000px;}
.y59{bottom:1016.070000px;}
.y26{bottom:1034.970000px;}
.y58{bottom:1036.770000px;}
.y57{bottom:1057.470000px;}
.y25{bottom:1065.930000px;}
.y56{bottom:1078.170000px;}
.y24{bottom:1097.070000px;}
.y55{bottom:1098.870000px;}
.y54{bottom:1119.570000px;}
.y23{bottom:1125.720000px;}
.y53{bottom:1140.300000px;}
.y22{bottom:1143.000000px;}
.y1e{bottom:1172.340000px;}
.ha{height:20.692500px;}
.h7{height:32.130000px;}
.h15{height:38.158594px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h17{height:52.066406px;}
.h11{height:52.998047px;}
.h2{height:55.080000px;}
.hb{height:58.651172px;}
.hf{height:65.010937px;}
.h13{height:66.757500px;}
.h9{height:70.664062px;}
.h14{height:72.562500px;}
.h5{height:78.030000px;}
.h16{height:80.464922px;}
.h12{height:82.676953px;}
.hd{height:96.508125px;}
.he{height:105.996094px;}
.hc{height:108.843750px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h10{height:1262.877945px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:9.180000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.978125px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:127.656000px;}
.xd{left:132.516000px;}
.xe{left:181.650000px;}
.x4{left:203.484001px;}
.x9{left:277.590000px;}
.xc{left:343.695000px;}
.x8{left:376.815000px;}
.x6{left:441.975000px;}
.x7{left:446.475000px;}
.x3{left:454.959000px;}
.xa{left:502.123125px;}
.xb{left:508.965000px;}
@media print{
.v1{vertical-align:-81.920000pt;}
.v4{vertical-align:-74.880000pt;}
.v3{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.ls1f{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls1d{letter-spacing:-0.400533pt;}
.ls6{letter-spacing:-0.368533pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.239467pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.832000pt;}
.ls12{letter-spacing:1.280000pt;}
.ls15{letter-spacing:1.408000pt;}
.lsf{letter-spacing:2.720000pt;}
.lsa{letter-spacing:8.960000pt;}
.lsb{letter-spacing:9.600000pt;}
.ls14{letter-spacing:10.880000pt;}
.ls20{letter-spacing:19.200000pt;}
.ls21{letter-spacing:585.098667pt;}
.ls3{letter-spacing:897.418667pt;}
.ws2{word-spacing:-24.000000pt;}
.ws1{word-spacing:-23.968000pt;}
.wsb{word-spacing:-17.408000pt;}
.ws9{word-spacing:-17.280000pt;}
.wse{word-spacing:-16.832000pt;}
.wsa{word-spacing:-16.768000pt;}
.ws12{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.360000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws8{word-spacing:-10.959467pt;}
.ws10{word-spacing:-10.319467pt;}
.ws0{word-spacing:0.000000pt;}
._1b{margin-left:-2.655573pt;}
._3{margin-left:-1.198080pt;}
._1{width:0.903040pt;}
._2{width:2.595413pt;}
._b{width:3.741653pt;}
._c{width:4.631040pt;}
._8{width:5.967360pt;}
._4{width:7.006720pt;}
._9{width:7.928320pt;}
._f{width:8.911360pt;}
._5{width:9.832960pt;}
._6{width:10.874880pt;}
._15{width:11.780907pt;}
._12{width:12.675413pt;}
._a{width:13.701120pt;}
._1a{width:14.634667pt;}
._7{width:16.309760pt;}
._14{width:17.792000pt;}
._d{width:19.136000pt;}
._e{width:20.096000pt;}
._17{width:21.056000pt;}
._13{width:21.962667pt;}
._16{width:22.976000pt;}
._18{width:24.128000pt;}
._19{width:25.066667pt;}
._1e{width:25.984000pt;}
._1c{width:27.008000pt;}
._1d{width:28.088747pt;}
._1f{width:29.973333pt;}
._10{width:31.722667pt;}
._11{width:32.704000pt;}
._20{width:33.600000pt;}
._21{width:35.509333pt;}
._22{width:37.504000pt;}
._23{width:40.000000pt;}
._0{width:1193.738667pt;}
.fsb{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:3.993333pt;}
.y20{bottom:48.998667pt;}
.y1f{bottom:52.992000pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y52{bottom:97.792000pt;}
.y84{bottom:112.032000pt;}
.y51{bottom:113.152000pt;}
.y50{bottom:119.232000pt;}
.y1d{bottom:123.790666pt;}
.y4f{bottom:129.152000pt;}
.y83{bottom:130.432000pt;}
.y82{bottom:148.826667pt;}
.y81{bottom:167.226667pt;}
.y14{bottom:175.052000pt;}
.y80{bottom:185.626667pt;}
.y1c{bottom:186.238666pt;}
.y13{bottom:186.252002pt;}
.y1b{bottom:197.438668pt;}
.y12{bottom:197.452004pt;}
.y7f{bottom:204.026667pt;}
.y1a{bottom:208.638670pt;}
.y11{bottom:208.651996pt;}
.y4e{bottom:211.546667pt;}
.y7e{bottom:222.426667pt;}
.y4d{bottom:228.026667pt;}
.y19{bottom:231.038664pt;}
.y10{bottom:231.052000pt;}
.y7d{bottom:240.826667pt;}
.y18{bottom:242.238666pt;}
.yf{bottom:242.252002pt;}
.y4c{bottom:244.066667pt;}
.y17{bottom:253.438668pt;}
.ye{bottom:253.451999pt;}
.y7c{bottom:259.266667pt;}
.y4b{bottom:260.066667pt;}
.y16{bottom:275.838667pt;}
.yd{bottom:275.852001pt;}
.y4a{bottom:276.066667pt;}
.y7b{bottom:277.666667pt;}
.y15{bottom:287.038667pt;}
.yc{bottom:287.052000pt;}
.y49{bottom:292.546667pt;}
.y7a{bottom:296.066667pt;}
.y48{bottom:309.346667pt;}
.yb{bottom:309.452000pt;}
.y79{bottom:314.466667pt;}
.y47{bottom:326.306667pt;}
.y78{bottom:332.866667pt;}
.y46{bottom:343.106667pt;}
.ya{bottom:343.809333pt;}
.y77{bottom:351.266667pt;}
.y45{bottom:359.906667pt;}
.y9{bottom:362.706666pt;}
.y76{bottom:369.666667pt;}
.y44{bottom:376.866667pt;}
.y75{bottom:387.906667pt;}
.y43{bottom:393.666667pt;}
.y74{bottom:406.306667pt;}
.y42{bottom:410.626667pt;}
.y73{bottom:424.706667pt;}
.y41{bottom:427.426667pt;}
.y72{bottom:443.106667pt;}
.y40{bottom:444.226667pt;}
.y3f{bottom:461.186667pt;}
.y71{bottom:461.506667pt;}
.y8{bottom:462.990669pt;}
.y3e{bottom:477.986667pt;}
.y7{bottom:478.990666pt;}
.y8b{bottom:479.586667pt;}
.y70{bottom:479.906667pt;}
.y3d{bottom:494.973333pt;}
.y6{bottom:494.990666pt;}
.y8a{bottom:498.013333pt;}
.y6f{bottom:498.333333pt;}
.y3c{bottom:511.773333pt;}
.y89{bottom:516.413333pt;}
.y6e{bottom:516.733333pt;}
.y3b{bottom:528.733333pt;}
.y6d{bottom:535.133333pt;}
.y3a{bottom:545.533333pt;}
.y6c{bottom:553.533333pt;}
.y39{bottom:562.333333pt;}
.y6b{bottom:571.933333pt;}
.y38{bottom:579.293333pt;}
.y6a{bottom:590.333333pt;}
.y37{bottom:596.093333pt;}
.y69{bottom:608.733333pt;}
.y36{bottom:613.053333pt;}
.y68{bottom:627.133333pt;}
.y35{bottom:629.853333pt;}
.y67{bottom:645.533333pt;}
.y34{bottom:646.653333pt;}
.y33{bottom:663.613333pt;}
.y66{bottom:663.933333pt;}
.y3{bottom:668.977329pt;}
.y32{bottom:680.413333pt;}
.y65{bottom:682.333333pt;}
.y31{bottom:697.373333pt;}
.y64{bottom:700.733333pt;}
.y30{bottom:715.133333pt;}
.y88{bottom:718.813333pt;}
.y63{bottom:719.133333pt;}
.y2f{bottom:723.773333pt;}
.y2e{bottom:735.613333pt;}
.y87{bottom:737.213333pt;}
.y62{bottom:737.533333pt;}
.y2d{bottom:752.613333pt;}
.y8c{bottom:755.653333pt;}
.y61{bottom:755.973333pt;}
.y2c{bottom:769.413333pt;}
.y60{bottom:774.373333pt;}
.y2{bottom:781.661334pt;}
.y2b{bottom:788.453333pt;}
.y5f{bottom:792.453333pt;}
.y86{bottom:792.773333pt;}
.y5e{bottom:810.853333pt;}
.y85{bottom:811.173333pt;}
.y2a{bottom:815.013333pt;}
.y5d{bottom:829.573333pt;}
.y29{bottom:839.493333pt;}
.y5c{bottom:847.973333pt;}
.y1{bottom:859.312000pt;}
.y28{bottom:864.773333pt;}
.y5b{bottom:866.373333pt;}
.y5a{bottom:884.773333pt;}
.y27{bottom:892.293333pt;}
.y59{bottom:903.173333pt;}
.y26{bottom:919.973333pt;}
.y58{bottom:921.573333pt;}
.y57{bottom:939.973333pt;}
.y25{bottom:947.493333pt;}
.y56{bottom:958.373333pt;}
.y24{bottom:975.173333pt;}
.y55{bottom:976.773333pt;}
.y54{bottom:995.173333pt;}
.y23{bottom:1000.640000pt;}
.y53{bottom:1013.600000pt;}
.y22{bottom:1016.000000pt;}
.y1e{bottom:1042.080000pt;}
.ha{height:18.393333pt;}
.h7{height:28.560000pt;}
.h15{height:33.918750pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h17{height:46.281250pt;}
.h11{height:47.109375pt;}
.h2{height:48.960000pt;}
.hb{height:52.134375pt;}
.hf{height:57.787500pt;}
.h13{height:59.340000pt;}
.h9{height:62.812500pt;}
.h14{height:64.500000pt;}
.h5{height:69.360000pt;}
.h16{height:71.524375pt;}
.h12{height:73.490625pt;}
.hd{height:85.785000pt;}
.he{height:94.218750pt;}
.hc{height:96.750000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h10{height:1122.558173pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:8.160000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.758333pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:113.472000pt;}
.xd{left:117.792000pt;}
.xe{left:161.466667pt;}
.x4{left:180.874667pt;}
.x9{left:246.746667pt;}
.xc{left:305.506667pt;}
.x8{left:334.946667pt;}
.x6{left:392.866667pt;}
.x7{left:396.866667pt;}
.x3{left:404.408000pt;}
.xa{left:446.331667pt;}
.xb{left:452.413333pt;}
}




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