
    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_81c24aa1aedad1b386d29580.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_de4dbe8eff50242e5f0d9dea.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9d50c95bb823d2057551a4ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_18c03ec587a497f146602ec5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_462c2c75047e737f79a69f3a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2a75e5cfd04879cbe9c959f7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c5dd87109dfedc6e783f93a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.037440px;}
.ls3{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.ls5{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.480000px;}
.lse{letter-spacing:3.420000px;}
.ls8{letter-spacing:4.860000px;}
.ls7{letter-spacing:5.580000px;}
.lsf{letter-spacing:8.460000px;}
.ls10{letter-spacing:9.900000px;}
.ls11{letter-spacing:14.220000px;}
.ls9{letter-spacing:16.380000px;}
.ls4{letter-spacing:21.221280px;}
.lsd{letter-spacing:26.460000px;}
.ls6{letter-spacing:37.260000px;}
.lsc{letter-spacing:64.026720px;}
.ls2{letter-spacing:77.580000px;}
.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:-59.760000px;}
.ws3{word-spacing:-21.420000px;}
.ws0{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws4{word-spacing:-21.022560px;}
.ws1{word-spacing:0.000000px;}
._35{margin-left:-19.657920px;}
._13{margin-left:-5.812560px;}
._15{margin-left:-4.493520px;}
._26{margin-left:-3.259920px;}
._0{margin-left:-2.140800px;}
._2{margin-left:-1.133280px;}
._1{width:1.158720px;}
._14{width:2.169840px;}
._b{width:3.173760px;}
._f{width:4.229280px;}
._27{width:5.307360px;}
._25{width:6.899520px;}
._24{width:8.588640px;}
._23{width:9.975120px;}
._c{width:11.512080px;}
._d{width:12.693600px;}
._16{width:14.068080px;}
._21{width:15.976800px;}
._5{width:17.016480px;}
._6{width:18.570960px;}
._a{width:19.915440px;}
._10{width:22.109040px;}
._32{width:23.162640px;}
._1c{width:24.881280px;}
._1b{width:26.198640px;}
._22{width:27.254880px;}
._9{width:28.304640px;}
._2b{width:29.365920px;}
._1d{width:31.000320px;}
._1e{width:32.171760px;}
._2a{width:33.730800px;}
._17{width:35.453760px;}
._e{width:37.402560px;}
._7{width:39.209760px;}
._8{width:41.293920px;}
._11{width:43.636320px;}
._12{width:44.815680px;}
._30{width:46.594080px;}
._2f{width:47.679840px;}
._2c{width:48.981600px;}
._31{width:50.376960px;}
._19{width:51.891840px;}
._1a{width:53.283840px;}
._28{width:54.581520px;}
._29{width:55.712160px;}
._2e{width:60.841920px;}
._2d{width:61.866960px;}
._34{width:65.117520px;}
._20{width:77.248080px;}
._33{width:78.318480px;}
._18{width:97.247760px;}
._1f{width:135.710640px;}
._3{width:138.271200px;}
._4{width:194.400000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,0);}
.fs3{font-size:5.760000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:144.000000px;}
.y2{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y6{bottom:6.300000px;}
.yc{bottom:11.700000px;}
.y4{bottom:13.140000px;}
.yb{bottom:27.720000px;}
.y5{bottom:36.360000px;}
.ya{bottom:57.060000px;}
.y9{bottom:72.180000px;}
.y26{bottom:97.380000px;}
.yb0{bottom:105.660000px;}
.y81{bottom:114.876000px;}
.y3f{bottom:120.996000px;}
.y25{bottom:133.596000px;}
.y93{bottom:136.296000px;}
.y62{bottom:142.056000px;}
.ya2{bottom:151.410000px;}
.y3e{bottom:157.170000px;}
.y53{bottom:168.870000px;}
.y24{bottom:169.770000px;}
.y80{bottom:172.470000px;}
.yaf{bottom:178.230000px;}
.y3d{bottom:193.350000px;}
.y61{bottom:199.290000px;}
.y52{bottom:205.050000px;}
.y23{bottom:205.950000px;}
.y92{bottom:208.650000px;}
.ya1{bottom:208.830000px;}
.y6f{bottom:214.230000px;}
.yae{bottom:214.410000px;}
.y7f{bottom:229.890000px;}
.y51{bottom:241.230000px;}
.y91{bottom:244.830000px;}
.y3c{bottom:250.410000px;}
.yad{bottom:250.590000px;}
.y60{bottom:256.530000px;}
.y22{bottom:263.010000px;}
.y7e{bottom:265.890000px;}
.y6e{bottom:271.650000px;}
.y50{bottom:277.410000px;}
.y90{bottom:281.010000px;}
.yac{bottom:286.950000px;}
.y5f{bottom:292.710000px;}
.y7d{bottom:302.070000px;}
.ya0{bottom:302.250000px;}
.y3b{bottom:307.830000px;}
.y4f{bottom:313.590000px;}
.y8f{bottom:317.370000px;}
.y21{bottom:320.610000px;}
.yab{bottom:323.130000px;}
.y5e{bottom:328.890000px;}
.y6d{bottom:329.070000px;}
.y9f{bottom:338.250000px;}
.y4e{bottom:349.950000px;}
.y20{bottom:356.610000px;}
.yaa{bottom:359.310000px;}
.y7c{bottom:359.490000px;}
.y6c{bottom:365.070000px;}
.y3a{bottom:365.250000px;}
.y9e{bottom:374.655000px;}
.y8e{bottom:374.835000px;}
.y5d{bottom:386.355000px;}
.y7b{bottom:395.535000px;}
.y39{bottom:401.295000px;}
.y4d{bottom:407.235000px;}
.y8d{bottom:410.835000px;}
.y1f{bottom:414.075000px;}
.y5c{bottom:422.355000px;}
.y7a{bottom:431.715000px;}
.y38{bottom:437.655000px;}
.y4c{bottom:443.415000px;}
.y9d{bottom:447.015000px;}
.y1e{bottom:450.075000px;}
.ya9{bottom:452.595000px;}
.y5b{bottom:458.535000px;}
.y6b{bottom:458.715000px;}
.y8c{bottom:467.895000px;}
.y79{bottom:468.075000px;}
.y4b{bottom:479.595000px;}
.y9c{bottom:483.195000px;}
.y1d{bottom:486.435000px;}
.y5a{bottom:494.715000px;}
.y37{bottom:494.895000px;}
.y78{bottom:504.255000px;}
.ya8{bottom:510.195000px;}
.y4a{bottom:515.775000px;}
.y1c{bottom:522.615000px;}
.y8b{bottom:525.495000px;}
.y36{bottom:531.075000px;}
.y9b{bottom:540.615000px;}
.ya7{bottom:546.195000px;}
.y49{bottom:551.955000px;}
.y59{bottom:552.135000px;}
.y1b{bottom:558.795000px;}
.y77{bottom:561.315000px;}
.y8a{bottom:561.495000px;}
.y35{bottom:567.255000px;}
.y9a{bottom:576.615000px;}
.ya6{bottom:582.375000px;}
.y48{bottom:588.315000px;}
.y1a{bottom:594.975000px;}
.y89{bottom:597.675000px;}
.y34{bottom:603.435000px;}
.ya5{bottom:618.735000px;}
.y76{bottom:618.915000px;}
.y47{bottom:624.495000px;}
.y19{bottom:631.365000px;}
.y99{bottom:633.705000px;}
.y88{bottom:633.885000px;}
.y33{bottom:639.645000px;}
.y75{bottom:654.945000px;}
.y46{bottom:660.705000px;}
.y18{bottom:667.545000px;}
.y32{bottom:676.005000px;}
.y58{bottom:681.945000px;}
.y87{bottom:690.945000px;}
.y74{bottom:691.125000px;}
.y17{bottom:703.725000px;}
.y31{bottom:712.185000px;}
.y57{bottom:717.945000px;}
.y45{bottom:718.125000px;}
.y73{bottom:727.305000px;}
.y16{bottom:739.905000px;}
.y30{bottom:748.365000px;}
.y86{bottom:748.545000px;}
.y44{bottom:754.125000px;}
.y72{bottom:763.665000px;}
.y2f{bottom:784.545000px;}
.y43{bottom:790.305000px;}
.y15{bottom:796.965000px;}
.y71{bottom:820.725000px;}
.y6a{bottom:820.905000px;}
.y42{bottom:826.665000px;}
.y2e{bottom:841.605000px;}
.y14{bottom:842.505000px;}
.y85{bottom:857.085000px;}
.y41{bottom:862.845000px;}
.y69{bottom:878.145000px;}
.y13{bottom:887.370000px;}
.ya4{bottom:893.310000px;}
.y40{bottom:899.070000px;}
.y2d{bottom:899.250000px;}
.y98{bottom:914.190000px;}
.y68{bottom:914.370000px;}
.y84{bottom:914.550000px;}
.y56{bottom:920.310000px;}
.y12{bottom:932.550000px;}
.y2c{bottom:935.250000px;}
.ya3{bottom:950.370000px;}
.y67{bottom:950.550000px;}
.y55{bottom:956.310000px;}
.y97{bottom:971.790000px;}
.y11{bottom:978.090000px;}
.y66{bottom:986.730000px;}
.y54{bottom:992.490000px;}
.y2b{bottom:992.670000px;}
.y83{bottom:1007.610000px;}
.y96{bottom:1007.790000px;}
.y65{bottom:1022.910000px;}
.y10{bottom:1023.090000px;}
.y2a{bottom:1028.670000px;}
.y95{bottom:1043.970000px;}
.y29{bottom:1065.030000px;}
.y82{bottom:1065.210000px;}
.yf{bottom:1067.910000px;}
.y64{bottom:1079.970000px;}
.y94{bottom:1080.150000px;}
.y28{bottom:1101.210000px;}
.yb1{bottom:1101.390000px;}
.ye{bottom:1113.090000px;}
.yd{bottom:1137.030000px;}
.y63{bottom:1137.210000px;}
.y27{bottom:1137.390000px;}
.y70{bottom:1137.570000px;}
.y3{bottom:1180.080000px;}
.y1{bottom:1193.040000px;}
.y8{bottom:1193.760000px;}
.y7{bottom:1209.060000px;}
.h9{height:5.653125px;}
.h2{height:15.840000px;}
.h5{height:23.760000px;}
.ha{height:28.620000px;}
.h4{height:29.700000px;}
.h7{height:58.651172px;}
.he{height:59.066719px;}
.h8{height:65.010937px;}
.h3{height:66.757500px;}
.h6{height:70.664062px;}
.hc{height:82.676953px;}
.hb{height:84.898125px;}
.hf{height:86.585445px;}
.hd{height:145.125000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:121.500000px;}
.w3{width:221.250000px;}
.w4{width:484.275000px;}
.w2{width:518.145000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x7{left:83.700000px;}
.x5{left:127.655987px;}
.x1{left:144.036000px;}
.x4{left:149.616000px;}
.x8{left:150.869987px;}
.x10{left:154.649987px;}
.xf{left:155.909987px;}
.x11{left:181.649987px;}
.xc{left:203.249987px;}
.xb{left:268.949987px;}
.x9{left:285.014987px;}
.xa{left:337.394987px;}
.xd{left:367.994987px;}
.xe{left:409.394987px;}
.x3{left:593.205000px;}
.x6{left:659.850000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.033280pt;}
.ls3{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.ls5{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.426667pt;}
.lse{letter-spacing:3.040000pt;}
.ls8{letter-spacing:4.320000pt;}
.ls7{letter-spacing:4.960000pt;}
.lsf{letter-spacing:7.520000pt;}
.ls10{letter-spacing:8.800000pt;}
.ls11{letter-spacing:12.640000pt;}
.ls9{letter-spacing:14.560000pt;}
.ls4{letter-spacing:18.863360pt;}
.lsd{letter-spacing:23.520000pt;}
.ls6{letter-spacing:33.120000pt;}
.lsc{letter-spacing:56.912640pt;}
.ls2{letter-spacing:68.960000pt;}
.ws5{word-spacing:-53.120000pt;}
.ws3{word-spacing:-19.040000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws4{word-spacing:-18.686720pt;}
.ws1{word-spacing:0.000000pt;}
._35{margin-left:-17.473707pt;}
._13{margin-left:-5.166720pt;}
._15{margin-left:-3.994240pt;}
._26{margin-left:-2.897707pt;}
._0{margin-left:-1.902933pt;}
._2{margin-left:-1.007360pt;}
._1{width:1.029973pt;}
._14{width:1.928747pt;}
._b{width:2.821120pt;}
._f{width:3.759360pt;}
._27{width:4.717653pt;}
._25{width:6.132907pt;}
._24{width:7.634347pt;}
._23{width:8.866773pt;}
._c{width:10.232960pt;}
._d{width:11.283200pt;}
._16{width:12.504960pt;}
._21{width:14.201600pt;}
._5{width:15.125760pt;}
._6{width:16.507520pt;}
._a{width:17.702613pt;}
._10{width:19.652480pt;}
._32{width:20.589013pt;}
._1c{width:22.116693pt;}
._1b{width:23.287680pt;}
._22{width:24.226560pt;}
._9{width:25.159680pt;}
._2b{width:26.103040pt;}
._1d{width:27.555840pt;}
._1e{width:28.597120pt;}
._2a{width:29.982933pt;}
._17{width:31.514453pt;}
._e{width:33.246720pt;}
._7{width:34.853120pt;}
._8{width:36.705707pt;}
._11{width:38.787840pt;}
._12{width:39.836160pt;}
._30{width:41.416960pt;}
._2f{width:42.382080pt;}
._2c{width:43.539200pt;}
._31{width:44.779520pt;}
._19{width:46.126080pt;}
._1a{width:47.363413pt;}
._28{width:48.516907pt;}
._29{width:49.521920pt;}
._2e{width:54.081707pt;}
._2d{width:54.992853pt;}
._34{width:57.882240pt;}
._20{width:68.664960pt;}
._33{width:69.616427pt;}
._18{width:86.442453pt;}
._1f{width:120.631680pt;}
._3{width:122.907733pt;}
._4{width:172.800000pt;}
.fs3{font-size:5.120000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:128.000000pt;}
.y2{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:5.600000pt;}
.yc{bottom:10.400000pt;}
.y4{bottom:11.680000pt;}
.yb{bottom:24.640000pt;}
.y5{bottom:32.320000pt;}
.ya{bottom:50.720000pt;}
.y9{bottom:64.160000pt;}
.y26{bottom:86.560000pt;}
.yb0{bottom:93.920000pt;}
.y81{bottom:102.112000pt;}
.y3f{bottom:107.552000pt;}
.y25{bottom:118.752000pt;}
.y93{bottom:121.152000pt;}
.y62{bottom:126.272000pt;}
.ya2{bottom:134.586667pt;}
.y3e{bottom:139.706667pt;}
.y53{bottom:150.106667pt;}
.y24{bottom:150.906667pt;}
.y80{bottom:153.306667pt;}
.yaf{bottom:158.426667pt;}
.y3d{bottom:171.866667pt;}
.y61{bottom:177.146667pt;}
.y52{bottom:182.266667pt;}
.y23{bottom:183.066667pt;}
.y92{bottom:185.466667pt;}
.ya1{bottom:185.626667pt;}
.y6f{bottom:190.426667pt;}
.yae{bottom:190.586667pt;}
.y7f{bottom:204.346667pt;}
.y51{bottom:214.426667pt;}
.y91{bottom:217.626667pt;}
.y3c{bottom:222.586667pt;}
.yad{bottom:222.746667pt;}
.y60{bottom:228.026667pt;}
.y22{bottom:233.786667pt;}
.y7e{bottom:236.346667pt;}
.y6e{bottom:241.466667pt;}
.y50{bottom:246.586667pt;}
.y90{bottom:249.786667pt;}
.yac{bottom:255.066667pt;}
.y5f{bottom:260.186667pt;}
.y7d{bottom:268.506667pt;}
.ya0{bottom:268.666667pt;}
.y3b{bottom:273.626667pt;}
.y4f{bottom:278.746667pt;}
.y8f{bottom:282.106667pt;}
.y21{bottom:284.986667pt;}
.yab{bottom:287.226667pt;}
.y5e{bottom:292.346667pt;}
.y6d{bottom:292.506667pt;}
.y9f{bottom:300.666667pt;}
.y4e{bottom:311.066667pt;}
.y20{bottom:316.986667pt;}
.yaa{bottom:319.386667pt;}
.y7c{bottom:319.546667pt;}
.y6c{bottom:324.506667pt;}
.y3a{bottom:324.666667pt;}
.y9e{bottom:333.026667pt;}
.y8e{bottom:333.186667pt;}
.y5d{bottom:343.426667pt;}
.y7b{bottom:351.586667pt;}
.y39{bottom:356.706667pt;}
.y4d{bottom:361.986667pt;}
.y8d{bottom:365.186667pt;}
.y1f{bottom:368.066667pt;}
.y5c{bottom:375.426667pt;}
.y7a{bottom:383.746667pt;}
.y38{bottom:389.026667pt;}
.y4c{bottom:394.146667pt;}
.y9d{bottom:397.346667pt;}
.y1e{bottom:400.066667pt;}
.ya9{bottom:402.306667pt;}
.y5b{bottom:407.586667pt;}
.y6b{bottom:407.746667pt;}
.y8c{bottom:415.906667pt;}
.y79{bottom:416.066667pt;}
.y4b{bottom:426.306667pt;}
.y9c{bottom:429.506667pt;}
.y1d{bottom:432.386667pt;}
.y5a{bottom:439.746667pt;}
.y37{bottom:439.906667pt;}
.y78{bottom:448.226667pt;}
.ya8{bottom:453.506667pt;}
.y4a{bottom:458.466667pt;}
.y1c{bottom:464.546667pt;}
.y8b{bottom:467.106667pt;}
.y36{bottom:472.066667pt;}
.y9b{bottom:480.546667pt;}
.ya7{bottom:485.506667pt;}
.y49{bottom:490.626667pt;}
.y59{bottom:490.786667pt;}
.y1b{bottom:496.706667pt;}
.y77{bottom:498.946667pt;}
.y8a{bottom:499.106667pt;}
.y35{bottom:504.226667pt;}
.y9a{bottom:512.546667pt;}
.ya6{bottom:517.666667pt;}
.y48{bottom:522.946667pt;}
.y1a{bottom:528.866667pt;}
.y89{bottom:531.266667pt;}
.y34{bottom:536.386667pt;}
.ya5{bottom:549.986667pt;}
.y76{bottom:550.146667pt;}
.y47{bottom:555.106667pt;}
.y19{bottom:561.213333pt;}
.y99{bottom:563.293333pt;}
.y88{bottom:563.453333pt;}
.y33{bottom:568.573333pt;}
.y75{bottom:582.173333pt;}
.y46{bottom:587.293333pt;}
.y18{bottom:593.373333pt;}
.y32{bottom:600.893333pt;}
.y58{bottom:606.173333pt;}
.y87{bottom:614.173333pt;}
.y74{bottom:614.333333pt;}
.y17{bottom:625.533333pt;}
.y31{bottom:633.053333pt;}
.y57{bottom:638.173333pt;}
.y45{bottom:638.333333pt;}
.y73{bottom:646.493333pt;}
.y16{bottom:657.693333pt;}
.y30{bottom:665.213333pt;}
.y86{bottom:665.373333pt;}
.y44{bottom:670.333333pt;}
.y72{bottom:678.813333pt;}
.y2f{bottom:697.373333pt;}
.y43{bottom:702.493333pt;}
.y15{bottom:708.413333pt;}
.y71{bottom:729.533333pt;}
.y6a{bottom:729.693333pt;}
.y42{bottom:734.813333pt;}
.y2e{bottom:748.093333pt;}
.y14{bottom:748.893333pt;}
.y85{bottom:761.853333pt;}
.y41{bottom:766.973333pt;}
.y69{bottom:780.573333pt;}
.y13{bottom:788.773333pt;}
.ya4{bottom:794.053333pt;}
.y40{bottom:799.173333pt;}
.y2d{bottom:799.333333pt;}
.y98{bottom:812.613333pt;}
.y68{bottom:812.773333pt;}
.y84{bottom:812.933333pt;}
.y56{bottom:818.053333pt;}
.y12{bottom:828.933333pt;}
.y2c{bottom:831.333333pt;}
.ya3{bottom:844.773333pt;}
.y67{bottom:844.933333pt;}
.y55{bottom:850.053333pt;}
.y97{bottom:863.813333pt;}
.y11{bottom:869.413333pt;}
.y66{bottom:877.093333pt;}
.y54{bottom:882.213333pt;}
.y2b{bottom:882.373333pt;}
.y83{bottom:895.653333pt;}
.y96{bottom:895.813333pt;}
.y65{bottom:909.253333pt;}
.y10{bottom:909.413333pt;}
.y2a{bottom:914.373333pt;}
.y95{bottom:927.973333pt;}
.y29{bottom:946.693333pt;}
.y82{bottom:946.853333pt;}
.yf{bottom:949.253333pt;}
.y64{bottom:959.973333pt;}
.y94{bottom:960.133333pt;}
.y28{bottom:978.853333pt;}
.yb1{bottom:979.013333pt;}
.ye{bottom:989.413333pt;}
.yd{bottom:1010.693333pt;}
.y63{bottom:1010.853333pt;}
.y27{bottom:1011.013333pt;}
.y70{bottom:1011.173333pt;}
.y3{bottom:1048.960000pt;}
.y1{bottom:1060.480000pt;}
.y8{bottom:1061.120000pt;}
.y7{bottom:1074.720000pt;}
.h9{height:5.025000pt;}
.h2{height:14.080000pt;}
.h5{height:21.120000pt;}
.ha{height:25.440000pt;}
.h4{height:26.400000pt;}
.h7{height:52.134375pt;}
.he{height:52.503750pt;}
.h8{height:57.787500pt;}
.h3{height:59.340000pt;}
.h6{height:62.812500pt;}
.hc{height:73.490625pt;}
.hb{height:75.465000pt;}
.hf{height:76.964840pt;}
.hd{height:129.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:108.000000pt;}
.w3{width:196.666667pt;}
.w4{width:430.466667pt;}
.w2{width:460.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x7{left:74.400000pt;}
.x5{left:113.471988pt;}
.x1{left:128.032000pt;}
.x4{left:132.992000pt;}
.x8{left:134.106655pt;}
.x10{left:137.466655pt;}
.xf{left:138.586655pt;}
.x11{left:161.466655pt;}
.xc{left:180.666655pt;}
.xb{left:239.066655pt;}
.x9{left:253.346655pt;}
.xa{left:299.906655pt;}
.xd{left:327.106655pt;}
.xe{left:363.906655pt;}
.x3{left:527.293333pt;}
.x6{left:586.533333pt;}
}




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