
    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_714bc4b7776e760d5dd5476a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c124766ef2c05de40931dfe6.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ce18e01ed91aa41155b19ad4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_b7b709a6e5a1da9fc2af5b48.woff')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_50d7b969040d32a3310143ba.woff')format("woff");}.ff5{font-family:ff5;line-height:0.897461;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_01f2f2fa5994ae34c3bab701.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_b523e4a70d81182114fa86c5.woff')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:30.240000px;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.262200px;}
.ls4{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.lsb{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:16.506720px;}
.ls1{letter-spacing:39.905280px;}
.lsd{letter-spacing:46.026720px;}
.ls9{letter-spacing:49.602720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.297800px;}
.ws8{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.wse{word-spacing:-15.146400px;}
.ws7{word-spacing:-15.120000px;}
.wsb{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.140000px;}
.wsa{word-spacing:-9.720000px;}
.ws3{word-spacing:-0.059760px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-8.267280px;}
._16{margin-left:-6.323280px;}
._15{margin-left:-5.011680px;}
._14{margin-left:-3.330240px;}
._2{margin-left:-1.263600px;}
._1{width:1.104000px;}
._4{width:2.362080px;}
._6{width:4.063680px;}
._5{width:5.318640px;}
._e{width:6.462960px;}
._7{width:7.468080px;}
._9{width:9.442080px;}
._8{width:10.995840px;}
._f{width:12.134400px;}
._3{width:13.206960px;}
._b{width:16.047120px;}
._a{width:18.047520px;}
._0{width:19.272000px;}
._10{width:20.296560px;}
._c{width:22.082880px;}
._d{width:23.334720px;}
._17{width:24.413520px;}
._11{width:32.421360px;}
._13{width:37.469520px;}
._12{width:38.844000px;}
.fc3{color:rgb(47,84,150);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y60{bottom:11.700000px;}
.y62{bottom:11.880000px;}
.y7a{bottom:11.925000px;}
.y68{bottom:15.660000px;}
.y89{bottom:16.560000px;}
.y91{bottom:20.700000px;}
.y83{bottom:25.200000px;}
.y77{bottom:27.180000px;}
.y90{bottom:29.340000px;}
.y67{bottom:41.400000px;}
.y5{bottom:57.780000px;}
.y66{bottom:67.320000px;}
.y69{bottom:69.660000px;}
.y4{bottom:78.516000px;}
.y65{bottom:93.240000px;}
.y3{bottom:99.216000px;}
.y25{bottom:133.776000px;}
.y41{bottom:136.476000px;}
.y81{bottom:137.376000px;}
.ya2{bottom:146.916000px;}
.yab{bottom:157.170000px;}
.y24{bottom:159.690000px;}
.ya1{bottom:161.670000px;}
.y40{bottom:162.210000px;}
.y80{bottom:163.110000px;}
.y5e{bottom:182.910000px;}
.y23{bottom:185.610000px;}
.y3f{bottom:188.130000px;}
.ya0{bottom:188.310000px;}
.y7f{bottom:189.030000px;}
.y5d{bottom:208.830000px;}
.y22{bottom:211.350000px;}
.y3e{bottom:214.050000px;}
.y7e{bottom:214.950000px;}
.y9f{bottom:226.830000px;}
.y5c{bottom:234.750000px;}
.y21{bottom:237.270000px;}
.y3d{bottom:239.790000px;}
.y7d{bottom:240.690000px;}
.y9e{bottom:252.750000px;}
.y5b{bottom:260.490000px;}
.y20{bottom:263.190000px;}
.y3c{bottom:265.710000px;}
.y7c{bottom:266.610000px;}
.y9d{bottom:278.490000px;}
.y7b{bottom:281.370000px;}
.y5a{bottom:286.410000px;}
.y1f{bottom:289.110000px;}
.y3b{bottom:291.630000px;}
.y9c{bottom:304.410000px;}
.y79{bottom:308.010000px;}
.y59{bottom:312.330000px;}
.y1e{bottom:314.895000px;}
.y3a{bottom:317.595000px;}
.y9b{bottom:330.375000px;}
.y78{bottom:334.695000px;}
.y58{bottom:338.295000px;}
.y1d{bottom:340.815000px;}
.y39{bottom:343.335000px;}
.y9a{bottom:356.295000px;}
.y76{bottom:361.335000px;}
.y57{bottom:364.035000px;}
.y1c{bottom:366.735000px;}
.y38{bottom:369.255000px;}
.y99{bottom:382.035000px;}
.y56{bottom:389.955000px;}
.y1b{bottom:392.655000px;}
.y37{bottom:395.175000px;}
.y98{bottom:407.955000px;}
.y55{bottom:415.875000px;}
.y35{bottom:418.395000px;}
.y1a{bottom:419.655000px;}
.y36{bottom:421.095000px;}
.y75{bottom:430.455000px;}
.y97{bottom:433.875000px;}
.y54{bottom:441.795000px;}
.y34{bottom:444.315000px;}
.y19{bottom:446.835000px;}
.y74{bottom:456.195000px;}
.y96{bottom:459.795000px;}
.yaa{bottom:467.535000px;}
.y53{bottom:468.795000px;}
.y33{bottom:470.235000px;}
.y18{bottom:472.755000px;}
.y73{bottom:482.115000px;}
.y95{bottom:485.535000px;}
.ya9{bottom:493.455000px;}
.y32{bottom:495.975000px;}
.y17{bottom:498.675000px;}
.y94{bottom:500.475000px;}
.y72{bottom:508.035000px;}
.ya8{bottom:519.375000px;}
.y31{bottom:521.895000px;}
.y16{bottom:524.595000px;}
.y93{bottom:526.935000px;}
.y71{bottom:533.955000px;}
.ya7{bottom:545.295000px;}
.y30{bottom:547.815000px;}
.y15{bottom:550.335000px;}
.y92{bottom:553.575000px;}
.y70{bottom:559.695000px;}
.ya6{bottom:571.065000px;}
.y52{bottom:573.765000px;}
.y2f{bottom:574.845000px;}
.y14{bottom:576.285000px;}
.y8f{bottom:580.245000px;}
.y6f{bottom:585.645000px;}
.ya5{bottom:596.985000px;}
.y51{bottom:599.505000px;}
.y13{bottom:602.205000px;}
.y6e{bottom:611.565000px;}
.ya4{bottom:623.985000px;}
.y50{bottom:625.425000px;}
.y12{bottom:628.125000px;}
.y8e{bottom:636.225000px;}
.y6d{bottom:637.485000px;}
.y8d{bottom:650.985000px;}
.y4f{bottom:651.345000px;}
.y11{bottom:653.865000px;}
.y6c{bottom:663.225000px;}
.y4e{bottom:677.265000px;}
.y8b{bottom:677.625000px;}
.y10{bottom:679.785000px;}
.y64{bottom:680.325000px;}
.y4d{bottom:703.005000px;}
.y8c{bottom:704.265000px;}
.yf{bottom:705.705000px;}
.y6b{bottom:709.125000px;}
.y4c{bottom:728.925000px;}
.ye{bottom:731.625000px;}
.y6a{bottom:738.105000px;}
.y8a{bottom:742.785000px;}
.y4b{bottom:754.845000px;}
.yd{bottom:757.365000px;}
.y88{bottom:757.545000px;}
.y63{bottom:765.465000px;}
.y4a{bottom:780.765000px;}
.y2e{bottom:783.285000px;}
.yc{bottom:784.365000px;}
.y87{bottom:793.545000px;}
.y61{bottom:794.265000px;}
.y49{bottom:806.505000px;}
.ya3{bottom:807.765000px;}
.yb{bottom:808.305000px;}
.y2d{bottom:809.205000px;}
.y86{bottom:820.230000px;}
.y5f{bottom:823.290000px;}
.ya{bottom:831.030000px;}
.y48{bottom:832.470000px;}
.y2c{bottom:834.990000px;}
.y85{bottom:846.870000px;}
.y47{bottom:858.390000px;}
.y9{bottom:859.470000px;}
.y2b{bottom:860.910000px;}
.y82{bottom:873.510000px;}
.y46{bottom:884.310000px;}
.y2a{bottom:886.830000px;}
.y8{bottom:891.510000px;}
.y84{bottom:900.150000px;}
.y45{bottom:910.050000px;}
.y29{bottom:912.750000px;}
.y7{bottom:932.370000px;}
.y44{bottom:935.970000px;}
.y28{bottom:938.490000px;}
.y43{bottom:961.890000px;}
.y27{bottom:964.410000px;}
.y6{bottom:978.990000px;}
.y42{bottom:988.890000px;}
.y26{bottom:990.330000px;}
.y2{bottom:1008.330000px;}
.y1{bottom:1025.070000px;}
.hd{height:25.740000px;}
.hf{height:25.920000px;}
.he{height:25.956000px;}
.h6{height:29.464453px;}
.h17{height:35.280000px;}
.hb{height:42.164648px;}
.h9{height:43.215117px;}
.h18{height:43.380000px;}
.h14{height:43.506914px;}
.h8{height:45.549492px;}
.hc{height:46.736719px;}
.h7{height:47.901094px;}
.ha{height:48.224531px;}
.h15{height:48.312422px;}
.h13{height:48.995859px;}
.h5{height:50.488594px;}
.h2{height:50.800781px;}
.h1{height:52.066406px;}
.h16{height:52.560000px;}
.h12{height:56.520000px;}
.h4{height:68.340586px;}
.h3{height:76.201172px;}
.h11{height:83.700000px;}
.h10{height:111.060000px;}
.h0{height:1188.000000px;}
.w3{width:53.100000px;}
.wf{width:111.960000px;}
.w12{width:111.996000px;}
.w13{width:145.476000px;}
.w9{width:147.996000px;}
.w15{width:148.140000px;}
.w14{width:158.430000px;}
.wa{width:158.790000px;}
.w17{width:180.030000px;}
.w6{width:185.430000px;}
.w16{width:190.695000px;}
.wb{width:199.110000px;}
.w8{width:200.910000px;}
.w7{width:215.670000px;}
.w11{width:258.375000px;}
.w5{width:294.735000px;}
.wc{width:318.270000px;}
.w18{width:329.295000px;}
.w10{width:337.395000px;}
.w19{width:371.055000px;}
.wd{width:390.165000px;}
.w4{width:401.115000px;}
.w2{width:701.790000px;}
.we{width:709.170000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x25{left:7.740000px;}
.x2e{left:12.600000px;}
.x28{left:20.880000px;}
.xb{left:26.460000px;}
.x31{left:29.520000px;}
.x3e{left:30.600000px;}
.x18{left:35.460000px;}
.x33{left:39.060000px;}
.x2c{left:40.140000px;}
.x38{left:41.400000px;}
.x16{left:45.720000px;}
.x1a{left:50.940000px;}
.x32{left:52.194000px;}
.x1e{left:56.514000px;}
.x1c{left:58.500000px;}
.x20{left:64.080000px;}
.xf{left:68.220000px;}
.x39{left:70.200000px;}
.x1b{left:72.174000px;}
.x1f{left:73.800000px;}
.x1d{left:79.380000px;}
.x21{left:84.240000px;}
.x3f{left:86.220000px;}
.x3b{left:90.000000px;}
.x3d{left:91.470000px;}
.x3a{left:95.250000px;}
.x14{left:100.296000px;}
.x42{left:102.234000px;}
.x2{left:108.035986px;}
.xc{left:109.476000px;}
.x2a{left:112.185000px;}
.x3c{left:114.120000px;}
.x4{left:126.935986px;}
.x10{left:130.365000px;}
.xa{left:134.634000px;}
.x7{left:140.795986px;}
.x11{left:143.505000px;}
.x41{left:147.999000px;}
.x8{left:155.909986px;}
.xd{left:159.879000px;}
.x43{left:168.525000px;}
.x27{left:169.589986px;}
.x26{left:181.875000px;}
.x24{left:191.235000px;}
.x29{left:212.970000px;}
.x13{left:223.409986px;}
.x6{left:239.069986px;}
.x35{left:259.455000px;}
.x34{left:261.254986px;}
.x22{left:265.754986px;}
.x40{left:268.994986px;}
.x5{left:271.154986px;}
.x12{left:294.915000px;}
.x15{left:302.115000px;}
.x2d{left:325.695000px;}
.x36{left:408.315000px;}
.x23{left:419.295000px;}
.x2f{left:438.405000px;}
.x17{left:450.825000px;}
.x9{left:459.104986px;}
.xe{left:513.645000px;}
.x2b{left:551.085000px;}
.x37{left:599.730000px;}
.x19{left:610.350000px;}
.x30{left:663.990000px;}
.x3{left:735.629986px;}
.x1{left:809.279986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:26.880000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.233067pt;}
.ls4{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.lsb{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:14.672640pt;}
.ls1{letter-spacing:35.471360pt;}
.lsd{letter-spacing:40.912640pt;}
.ls9{letter-spacing:44.091307pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.486933pt;}
.ws8{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.960000pt;}
.ws0{word-spacing:-11.680000pt;}
.wsa{word-spacing:-8.640000pt;}
.ws3{word-spacing:-0.053120pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-7.348693pt;}
._16{margin-left:-5.620693pt;}
._15{margin-left:-4.454827pt;}
._14{margin-left:-2.960213pt;}
._2{margin-left:-1.123200pt;}
._1{width:0.981333pt;}
._4{width:2.099627pt;}
._6{width:3.612160pt;}
._5{width:4.727680pt;}
._e{width:5.744853pt;}
._7{width:6.638293pt;}
._9{width:8.392960pt;}
._8{width:9.774080pt;}
._f{width:10.786133pt;}
._3{width:11.739520pt;}
._b{width:14.264107pt;}
._a{width:16.042240pt;}
._0{width:17.130667pt;}
._10{width:18.041387pt;}
._c{width:19.629227pt;}
._d{width:20.741973pt;}
._17{width:21.700907pt;}
._11{width:28.818987pt;}
._13{width:33.306240pt;}
._12{width:34.528000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:10.400000pt;}
.y62{bottom:10.560000pt;}
.y7a{bottom:10.600000pt;}
.y68{bottom:13.920000pt;}
.y89{bottom:14.720000pt;}
.y91{bottom:18.400000pt;}
.y83{bottom:22.400000pt;}
.y77{bottom:24.160000pt;}
.y90{bottom:26.080000pt;}
.y67{bottom:36.800000pt;}
.y5{bottom:51.360000pt;}
.y66{bottom:59.840000pt;}
.y69{bottom:61.920000pt;}
.y4{bottom:69.792000pt;}
.y65{bottom:82.880000pt;}
.y3{bottom:88.192000pt;}
.y25{bottom:118.912000pt;}
.y41{bottom:121.312000pt;}
.y81{bottom:122.112000pt;}
.ya2{bottom:130.592000pt;}
.yab{bottom:139.706667pt;}
.y24{bottom:141.946667pt;}
.ya1{bottom:143.706667pt;}
.y40{bottom:144.186667pt;}
.y80{bottom:144.986667pt;}
.y5e{bottom:162.586667pt;}
.y23{bottom:164.986667pt;}
.y3f{bottom:167.226667pt;}
.ya0{bottom:167.386667pt;}
.y7f{bottom:168.026667pt;}
.y5d{bottom:185.626667pt;}
.y22{bottom:187.866667pt;}
.y3e{bottom:190.266667pt;}
.y7e{bottom:191.066667pt;}
.y9f{bottom:201.626667pt;}
.y5c{bottom:208.666667pt;}
.y21{bottom:210.906667pt;}
.y3d{bottom:213.146667pt;}
.y7d{bottom:213.946667pt;}
.y9e{bottom:224.666667pt;}
.y5b{bottom:231.546667pt;}
.y20{bottom:233.946667pt;}
.y3c{bottom:236.186667pt;}
.y7c{bottom:236.986667pt;}
.y9d{bottom:247.546667pt;}
.y7b{bottom:250.106667pt;}
.y5a{bottom:254.586667pt;}
.y1f{bottom:256.986667pt;}
.y3b{bottom:259.226667pt;}
.y9c{bottom:270.586667pt;}
.y79{bottom:273.786667pt;}
.y59{bottom:277.626667pt;}
.y1e{bottom:279.906667pt;}
.y3a{bottom:282.306667pt;}
.y9b{bottom:293.666667pt;}
.y78{bottom:297.506667pt;}
.y58{bottom:300.706667pt;}
.y1d{bottom:302.946667pt;}
.y39{bottom:305.186667pt;}
.y9a{bottom:316.706667pt;}
.y76{bottom:321.186667pt;}
.y57{bottom:323.586667pt;}
.y1c{bottom:325.986667pt;}
.y38{bottom:328.226667pt;}
.y99{bottom:339.586667pt;}
.y56{bottom:346.626667pt;}
.y1b{bottom:349.026667pt;}
.y37{bottom:351.266667pt;}
.y98{bottom:362.626667pt;}
.y55{bottom:369.666667pt;}
.y35{bottom:371.906667pt;}
.y1a{bottom:373.026667pt;}
.y36{bottom:374.306667pt;}
.y75{bottom:382.626667pt;}
.y97{bottom:385.666667pt;}
.y54{bottom:392.706667pt;}
.y34{bottom:394.946667pt;}
.y19{bottom:397.186667pt;}
.y74{bottom:405.506667pt;}
.y96{bottom:408.706667pt;}
.yaa{bottom:415.586667pt;}
.y53{bottom:416.706667pt;}
.y33{bottom:417.986667pt;}
.y18{bottom:420.226667pt;}
.y73{bottom:428.546667pt;}
.y95{bottom:431.586667pt;}
.ya9{bottom:438.626667pt;}
.y32{bottom:440.866667pt;}
.y17{bottom:443.266667pt;}
.y94{bottom:444.866667pt;}
.y72{bottom:451.586667pt;}
.ya8{bottom:461.666667pt;}
.y31{bottom:463.906667pt;}
.y16{bottom:466.306667pt;}
.y93{bottom:468.386667pt;}
.y71{bottom:474.626667pt;}
.ya7{bottom:484.706667pt;}
.y30{bottom:486.946667pt;}
.y15{bottom:489.186667pt;}
.y92{bottom:492.066667pt;}
.y70{bottom:497.506667pt;}
.ya6{bottom:507.613333pt;}
.y52{bottom:510.013333pt;}
.y2f{bottom:510.973333pt;}
.y14{bottom:512.253333pt;}
.y8f{bottom:515.773333pt;}
.y6f{bottom:520.573333pt;}
.ya5{bottom:530.653333pt;}
.y51{bottom:532.893333pt;}
.y13{bottom:535.293333pt;}
.y6e{bottom:543.613333pt;}
.ya4{bottom:554.653333pt;}
.y50{bottom:555.933333pt;}
.y12{bottom:558.333333pt;}
.y8e{bottom:565.533333pt;}
.y6d{bottom:566.653333pt;}
.y8d{bottom:578.653333pt;}
.y4f{bottom:578.973333pt;}
.y11{bottom:581.213333pt;}
.y6c{bottom:589.533333pt;}
.y4e{bottom:602.013333pt;}
.y8b{bottom:602.333333pt;}
.y10{bottom:604.253333pt;}
.y64{bottom:604.733333pt;}
.y4d{bottom:624.893333pt;}
.y8c{bottom:626.013333pt;}
.yf{bottom:627.293333pt;}
.y6b{bottom:630.333333pt;}
.y4c{bottom:647.933333pt;}
.ye{bottom:650.333333pt;}
.y6a{bottom:656.093333pt;}
.y8a{bottom:660.253333pt;}
.y4b{bottom:670.973333pt;}
.yd{bottom:673.213333pt;}
.y88{bottom:673.373333pt;}
.y63{bottom:680.413333pt;}
.y4a{bottom:694.013333pt;}
.y2e{bottom:696.253333pt;}
.yc{bottom:697.213333pt;}
.y87{bottom:705.373333pt;}
.y61{bottom:706.013333pt;}
.y49{bottom:716.893333pt;}
.ya3{bottom:718.013333pt;}
.yb{bottom:718.493333pt;}
.y2d{bottom:719.293333pt;}
.y86{bottom:729.093333pt;}
.y5f{bottom:731.813333pt;}
.ya{bottom:738.693333pt;}
.y48{bottom:739.973333pt;}
.y2c{bottom:742.213333pt;}
.y85{bottom:752.773333pt;}
.y47{bottom:763.013333pt;}
.y9{bottom:763.973333pt;}
.y2b{bottom:765.253333pt;}
.y82{bottom:776.453333pt;}
.y46{bottom:786.053333pt;}
.y2a{bottom:788.293333pt;}
.y8{bottom:792.453333pt;}
.y84{bottom:800.133333pt;}
.y45{bottom:808.933333pt;}
.y29{bottom:811.333333pt;}
.y7{bottom:828.773333pt;}
.y44{bottom:831.973333pt;}
.y28{bottom:834.213333pt;}
.y43{bottom:855.013333pt;}
.y27{bottom:857.253333pt;}
.y6{bottom:870.213333pt;}
.y42{bottom:879.013333pt;}
.y26{bottom:880.293333pt;}
.y2{bottom:896.293333pt;}
.y1{bottom:911.173333pt;}
.hd{height:22.880000pt;}
.hf{height:23.040000pt;}
.he{height:23.072000pt;}
.h6{height:26.190625pt;}
.h17{height:31.360000pt;}
.hb{height:37.479688pt;}
.h9{height:38.413438pt;}
.h18{height:38.560000pt;}
.h14{height:38.672812pt;}
.h8{height:40.488438pt;}
.hc{height:41.543750pt;}
.h7{height:42.578750pt;}
.ha{height:42.866250pt;}
.h15{height:42.944375pt;}
.h13{height:43.551875pt;}
.h5{height:44.878750pt;}
.h2{height:45.156250pt;}
.h1{height:46.281250pt;}
.h16{height:46.720000pt;}
.h12{height:50.240000pt;}
.h4{height:60.747188pt;}
.h3{height:67.734375pt;}
.h11{height:74.400000pt;}
.h10{height:98.720000pt;}
.h0{height:1056.000000pt;}
.w3{width:47.200000pt;}
.wf{width:99.520000pt;}
.w12{width:99.552000pt;}
.w13{width:129.312000pt;}
.w9{width:131.552000pt;}
.w15{width:131.680000pt;}
.w14{width:140.826667pt;}
.wa{width:141.146667pt;}
.w17{width:160.026667pt;}
.w6{width:164.826667pt;}
.w16{width:169.506667pt;}
.wb{width:176.986667pt;}
.w8{width:178.586667pt;}
.w7{width:191.706667pt;}
.w11{width:229.666667pt;}
.w5{width:261.986667pt;}
.wc{width:282.906667pt;}
.w18{width:292.706667pt;}
.w10{width:299.906667pt;}
.w19{width:329.826667pt;}
.wd{width:346.813333pt;}
.w4{width:356.546667pt;}
.w2{width:623.813333pt;}
.we{width:630.373333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.880000pt;}
.x2e{left:11.200000pt;}
.x28{left:18.560000pt;}
.xb{left:23.520000pt;}
.x31{left:26.240000pt;}
.x3e{left:27.200000pt;}
.x18{left:31.520000pt;}
.x33{left:34.720000pt;}
.x2c{left:35.680000pt;}
.x38{left:36.800000pt;}
.x16{left:40.640000pt;}
.x1a{left:45.280000pt;}
.x32{left:46.394667pt;}
.x1e{left:50.234667pt;}
.x1c{left:52.000000pt;}
.x20{left:56.960000pt;}
.xf{left:60.640000pt;}
.x39{left:62.400000pt;}
.x1b{left:64.154667pt;}
.x1f{left:65.600000pt;}
.x1d{left:70.560000pt;}
.x21{left:74.880000pt;}
.x3f{left:76.640000pt;}
.x3b{left:80.000000pt;}
.x3d{left:81.306667pt;}
.x3a{left:84.666667pt;}
.x14{left:89.152000pt;}
.x42{left:90.874667pt;}
.x2{left:96.031988pt;}
.xc{left:97.312000pt;}
.x2a{left:99.720000pt;}
.x3c{left:101.440000pt;}
.x4{left:112.831988pt;}
.x10{left:115.880000pt;}
.xa{left:119.674667pt;}
.x7{left:125.151988pt;}
.x11{left:127.560000pt;}
.x41{left:131.554667pt;}
.x8{left:138.586655pt;}
.xd{left:142.114667pt;}
.x43{left:149.800000pt;}
.x27{left:150.746655pt;}
.x26{left:161.666667pt;}
.x24{left:169.986667pt;}
.x29{left:189.306667pt;}
.x13{left:198.586655pt;}
.x6{left:212.506655pt;}
.x35{left:230.626667pt;}
.x34{left:232.226655pt;}
.x22{left:236.226655pt;}
.x40{left:239.106655pt;}
.x5{left:241.026655pt;}
.x12{left:262.146667pt;}
.x15{left:268.546667pt;}
.x2d{left:289.506667pt;}
.x36{left:362.946667pt;}
.x23{left:372.706667pt;}
.x2f{left:389.693333pt;}
.x17{left:400.733333pt;}
.x9{left:408.093321pt;}
.xe{left:456.573333pt;}
.x2b{left:489.853333pt;}
.x37{left:533.093333pt;}
.x19{left:542.533333pt;}
.x30{left:590.213333pt;}
.x3{left:653.893321pt;}
.x1{left:719.359988pt;}
}




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