
    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_bb926e5c55f2e7299dca1a37.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2767aaf69870d958aefec920.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_bea982c4c806be206ad8126a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_e7b9312c5801d24f50b845f5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.163086;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_4cf491de02a1b681c2f73955.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_9dbbaf160701ea49175e922d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ea99609b3b755a240c20101f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_b4feb020e884746ba36338c3.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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff9{font-family:ff9;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;}
.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(0.250356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.440000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.720000px;}
.ls6{letter-spacing:1.343999px;}
.ls7{letter-spacing:1.421999px;}
.ls8{letter-spacing:54.144000px;}
.ls2{letter-spacing:77.309760px;}
.ls1{letter-spacing:111.029760px;}
.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:-23.940000px;}
.ws6{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.305688px;}
.ws3{word-spacing:-12.060000px;}
.ws4{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:155.249845px;}
.ws8{word-spacing:186.887963px;}
._17{margin-left:-2.156999px;}
._1{margin-left:-1.008000px;}
._0{width:1.068000px;}
._2{width:2.496000px;}
._b{width:3.960000px;}
._c{width:5.004000px;}
._f{width:6.192000px;}
._e{width:7.272000px;}
._7{width:8.280000px;}
._6{width:9.768000px;}
._5{width:10.872000px;}
._9{width:12.096000px;}
._13{width:13.248000px;}
._d{width:14.904000px;}
._8{width:16.344000px;}
._15{width:19.656000px;}
._16{width:21.456000px;}
._14{width:23.112000px;}
._10{width:24.192000px;}
._a{width:25.920000px;}
._3{width:27.360000px;}
._4{width:28.596000px;}
._1a{width:32.328000px;}
._11{width:44.208000px;}
._12{width:45.516000px;}
._19{width:116.340479px;}
._18{width:185.543664px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc6{color:rgb(51,51,51);}
.fc5{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(48,88,236);}
.fs3{font-size:5.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:54.299946px;}
.fs6{font-size:54.449946px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y75{bottom:6.660000px;}
.y74{bottom:7.020000px;}
.y77{bottom:7.200000px;}
.y4{bottom:10.260000px;}
.y5{bottom:11.340000px;}
.yac{bottom:17.212995px;}
.y6{bottom:55.440000px;}
.y3{bottom:57.600000px;}
.ya4{bottom:66.187962px;}
.yab{bottom:81.037943px;}
.ya2{bottom:91.116000px;}
.ya5{bottom:98.700428px;}
.y5f{bottom:102.996000px;}
.y32{bottom:110.916000px;}
.ya1{bottom:114.876000px;}
.y5e{bottom:126.756000px;}
.ya6{bottom:131.175397px;}
.y31{bottom:134.676000px;}
.ya0{bottom:138.816000px;}
.y5d{bottom:150.510000px;}
.y30{bottom:158.430000px;}
.y9f{bottom:162.570000px;}
.ya7{bottom:163.693864px;}
.y5c{bottom:174.450000px;}
.y2f{bottom:182.370000px;}
.y9e{bottom:186.330000px;}
.ya8{bottom:196.198832px;}
.y5b{bottom:198.210000px;}
.y2e{bottom:206.130000px;}
.y9d{bottom:210.090000px;}
.y5a{bottom:221.970000px;}
.ya9{bottom:228.718799px;}
.y2d{bottom:229.890000px;}
.y9c{bottom:234.030000px;}
.y59{bottom:245.730000px;}
.y2c{bottom:253.650000px;}
.y9b{bottom:257.790000px;}
.yaa{bottom:261.223767px;}
.y58{bottom:269.490000px;}
.y2b{bottom:277.590000px;}
.y9a{bottom:281.550000px;}
.y81{bottom:282.270000px;}
.y57{bottom:293.430000px;}
.y2a{bottom:301.350000px;}
.y99{bottom:305.310000px;}
.y80{bottom:306.030000px;}
.y56{bottom:317.190000px;}
.y29{bottom:325.110000px;}
.y98{bottom:329.250000px;}
.y7f{bottom:329.790000px;}
.y55{bottom:340.995000px;}
.y28{bottom:348.915000px;}
.y97{bottom:353.055000px;}
.y7e{bottom:353.775000px;}
.y54{bottom:364.755000px;}
.y27{bottom:372.855000px;}
.y96{bottom:376.815000px;}
.y7d{bottom:377.535000px;}
.y53{bottom:388.695000px;}
.y7c{bottom:396.435000px;}
.y26{bottom:396.615000px;}
.y95{bottom:400.575000px;}
.y52{bottom:412.455000px;}
.y7b{bottom:420.195000px;}
.y25{bottom:420.375000px;}
.y94{bottom:424.515000px;}
.y51{bottom:436.215000px;}
.y24{bottom:444.135000px;}
.y93{bottom:448.275000px;}
.y50{bottom:459.975000px;}
.y23{bottom:467.895000px;}
.y92{bottom:472.035000px;}
.y4f{bottom:483.915000px;}
.y7a{bottom:491.655000px;}
.y22{bottom:491.835000px;}
.y91{bottom:495.795000px;}
.y4e{bottom:507.675000px;}
.y79{bottom:515.415000px;}
.y21{bottom:515.595000px;}
.y90{bottom:519.555000px;}
.y4d{bottom:531.435000px;}
.y20{bottom:539.355000px;}
.y8f{bottom:543.495000px;}
.y4c{bottom:555.195000px;}
.y1f{bottom:563.115000px;}
.y8e{bottom:567.255000px;}
.y4b{bottom:579.135000px;}
.y78{bottom:586.875000px;}
.y1e{bottom:587.055000px;}
.y8d{bottom:591.015000px;}
.y4a{bottom:602.895000px;}
.y76{bottom:610.665000px;}
.y1d{bottom:610.845000px;}
.y8c{bottom:614.805000px;}
.y49{bottom:626.685000px;}
.y1c{bottom:634.605000px;}
.y8b{bottom:638.745000px;}
.y48{bottom:650.445000px;}
.y1b{bottom:658.365000px;}
.y73{bottom:659.085000px;}
.y8a{bottom:662.505000px;}
.y47{bottom:674.385000px;}
.y1a{bottom:682.305000px;}
.y89{bottom:686.265000px;}
.y72{bottom:692.205000px;}
.y46{bottom:698.145000px;}
.y19{bottom:706.065000px;}
.y88{bottom:710.025000px;}
.y71{bottom:715.965000px;}
.y45{bottom:721.905000px;}
.y18{bottom:729.825000px;}
.y87{bottom:733.965000px;}
.y70{bottom:739.905000px;}
.y44{bottom:745.665000px;}
.y17{bottom:753.585000px;}
.y86{bottom:757.725000px;}
.y6f{bottom:763.665000px;}
.y43{bottom:769.605000px;}
.y16{bottom:777.525000px;}
.y85{bottom:781.485000px;}
.y6e{bottom:787.425000px;}
.y42{bottom:793.365000px;}
.y15{bottom:801.285000px;}
.y84{bottom:805.245000px;}
.y6d{bottom:811.185000px;}
.y41{bottom:817.125000px;}
.y14{bottom:825.045000px;}
.y83{bottom:829.185000px;}
.y6c{bottom:834.945000px;}
.y40{bottom:840.885000px;}
.y13{bottom:848.805000px;}
.y82{bottom:852.945000px;}
.y6b{bottom:858.885000px;}
.y3f{bottom:864.645000px;}
.y12{bottom:872.790000px;}
.ya3{bottom:875.940963px;}
.y6a{bottom:882.690000px;}
.y3e{bottom:888.630000px;}
.y11{bottom:896.550000px;}
.y69{bottom:906.450000px;}
.y3d{bottom:912.390000px;}
.y10{bottom:920.310000px;}
.y68{bottom:930.210000px;}
.y3c{bottom:936.150000px;}
.yf{bottom:944.070000px;}
.y67{bottom:954.150000px;}
.y3b{bottom:959.910000px;}
.ye{bottom:968.010000px;}
.y66{bottom:977.910000px;}
.y3a{bottom:983.850000px;}
.yd{bottom:998.610000px;}
.y65{bottom:1001.670000px;}
.y39{bottom:1007.610000px;}
.yc{bottom:1015.530000px;}
.y64{bottom:1025.430000px;}
.y38{bottom:1031.370000px;}
.yb{bottom:1046.130000px;}
.y63{bottom:1049.370000px;}
.y37{bottom:1055.130000px;}
.ya{bottom:1063.050000px;}
.y62{bottom:1073.130000px;}
.y36{bottom:1079.070000px;}
.y9{bottom:1086.990000px;}
.y61{bottom:1096.890000px;}
.y35{bottom:1102.830000px;}
.y8{bottom:1113.090000px;}
.y60{bottom:1116.690000px;}
.y34{bottom:1126.590000px;}
.y7{bottom:1144.800000px;}
.y33{bottom:1150.380000px;}
.y2{bottom:1194.120000px;}
.y1{bottom:1211.940000px;}
.h6{height:4.021875px;}
.hd{height:23.760000px;}
.h10{height:23.796000px;}
.hf{height:23.940000px;}
.h3{height:27.036000px;}
.h9{height:33.683203px;}
.h2{height:38.100586px;}
.h4{height:50.273438px;}
.hc{height:50.800781px;}
.he{height:51.713438px;}
.hb{height:52.417969px;}
.h13{height:54.008296px;}
.h12{height:54.157490px;}
.ha{height:54.878906px;}
.h8{height:57.796523px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.h11{height:278.999800px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:79.380000px;}
.wa{width:84.816000px;}
.w9{width:102.780000px;}
.w4{width:105.516000px;}
.w8{width:115.596000px;}
.w7{width:122.940000px;}
.w6{width:218.190000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.wd{width:506.519002px;}
.wc{width:723.705000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x2e{left:10.852916px;}
.x1a{left:17.640000px;}
.x23{left:19.125000px;}
.x24{left:20.880000px;}
.x25{left:22.185000px;}
.x1e{left:23.220000px;}
.x1c{left:27.405000px;}
.x29{left:30.780000px;}
.x28{left:33.345000px;}
.x22{left:35.640000px;}
.x18{left:37.290000px;}
.x27{left:39.780000px;}
.x21{left:41.970000px;}
.x16{left:46.980000px;}
.x20{left:52.380000px;}
.x2b{left:59.574000px;}
.x14{left:77.934000px;}
.x3{left:87.660000px;}
.x8{left:95.795987px;}
.x9{left:97.235987px;}
.x1{left:98.675987px;}
.xd{left:110.555987px;}
.x2f{left:127.835987px;}
.x12{left:138.275987px;}
.x11{left:148.895987px;}
.xf{left:168.329987px;}
.xa{left:190.109987px;}
.x2d{left:205.973935px;}
.x2c{left:211.529987px;}
.x26{left:277.419000px;}
.x1f{left:281.019000px;}
.x2a{left:292.539000px;}
.x10{left:295.814987px;}
.x4{left:297.795000px;}
.x15{left:313.275000px;}
.xc{left:324.434987px;}
.x2{left:379.514987px;}
.x5{left:393.915000px;}
.xe{left:405.614987px;}
.x17{left:436.215000px;}
.xb{left:446.474987px;}
.x7{left:500.145000px;}
.x19{left:551.805000px;}
.x1b{left:654.585000px;}
.x1d{left:739.410000px;}
.x13{left:815.009987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.280000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls6{letter-spacing:1.194665pt;}
.ls7{letter-spacing:1.263999pt;}
.ls8{letter-spacing:48.128000pt;}
.ls2{letter-spacing:68.719787pt;}
.ls1{letter-spacing:98.693120pt;}
.ws2{word-spacing:-21.280000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws7{word-spacing:-10.938389pt;}
.ws3{word-spacing:-10.720000pt;}
.ws4{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:137.999862pt;}
.ws8{word-spacing:166.122634pt;}
._17{margin-left:-1.917332pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.949333pt;}
._2{width:2.218667pt;}
._b{width:3.520000pt;}
._c{width:4.448000pt;}
._f{width:5.504000pt;}
._e{width:6.464000pt;}
._7{width:7.360000pt;}
._6{width:8.682667pt;}
._5{width:9.664000pt;}
._9{width:10.752000pt;}
._13{width:11.776000pt;}
._d{width:13.248000pt;}
._8{width:14.528000pt;}
._15{width:17.472000pt;}
._16{width:19.072000pt;}
._14{width:20.544000pt;}
._10{width:21.504000pt;}
._a{width:23.040000pt;}
._3{width:24.320000pt;}
._4{width:25.418667pt;}
._1a{width:28.736000pt;}
._11{width:39.296000pt;}
._12{width:40.458667pt;}
._19{width:103.413759pt;}
._18{width:164.927702pt;}
.fs3{font-size:5.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:48.266618pt;}
.fs6{font-size:48.399952pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:5.920000pt;}
.y74{bottom:6.240000pt;}
.y77{bottom:6.400000pt;}
.y4{bottom:9.120000pt;}
.y5{bottom:10.080000pt;}
.yac{bottom:15.300440pt;}
.y6{bottom:49.280000pt;}
.y3{bottom:51.200000pt;}
.ya4{bottom:58.833744pt;}
.yab{bottom:72.033727pt;}
.ya2{bottom:80.992000pt;}
.ya5{bottom:87.733714pt;}
.y5f{bottom:91.552000pt;}
.y32{bottom:98.592000pt;}
.ya1{bottom:102.112000pt;}
.y5e{bottom:112.672000pt;}
.ya6{bottom:116.600353pt;}
.y31{bottom:119.712000pt;}
.ya0{bottom:123.392000pt;}
.y5d{bottom:133.786667pt;}
.y30{bottom:140.826667pt;}
.y9f{bottom:144.506667pt;}
.ya7{bottom:145.505657pt;}
.y5c{bottom:155.066667pt;}
.y2f{bottom:162.106667pt;}
.y9e{bottom:165.626667pt;}
.ya8{bottom:174.398961pt;}
.y5b{bottom:176.186667pt;}
.y2e{bottom:183.226667pt;}
.y9d{bottom:186.746667pt;}
.y5a{bottom:197.306667pt;}
.ya9{bottom:203.305599pt;}
.y2d{bottom:204.346667pt;}
.y9c{bottom:208.026667pt;}
.y59{bottom:218.426667pt;}
.y2c{bottom:225.466667pt;}
.y9b{bottom:229.146667pt;}
.yaa{bottom:232.198904pt;}
.y58{bottom:239.546667pt;}
.y2b{bottom:246.746667pt;}
.y9a{bottom:250.266667pt;}
.y81{bottom:250.906667pt;}
.y57{bottom:260.826667pt;}
.y2a{bottom:267.866667pt;}
.y99{bottom:271.386667pt;}
.y80{bottom:272.026667pt;}
.y56{bottom:281.946667pt;}
.y29{bottom:288.986667pt;}
.y98{bottom:292.666667pt;}
.y7f{bottom:293.146667pt;}
.y55{bottom:303.106667pt;}
.y28{bottom:310.146667pt;}
.y97{bottom:313.826667pt;}
.y7e{bottom:314.466667pt;}
.y54{bottom:324.226667pt;}
.y27{bottom:331.426667pt;}
.y96{bottom:334.946667pt;}
.y7d{bottom:335.586667pt;}
.y53{bottom:345.506667pt;}
.y7c{bottom:352.386667pt;}
.y26{bottom:352.546667pt;}
.y95{bottom:356.066667pt;}
.y52{bottom:366.626667pt;}
.y7b{bottom:373.506667pt;}
.y25{bottom:373.666667pt;}
.y94{bottom:377.346667pt;}
.y51{bottom:387.746667pt;}
.y24{bottom:394.786667pt;}
.y93{bottom:398.466667pt;}
.y50{bottom:408.866667pt;}
.y23{bottom:415.906667pt;}
.y92{bottom:419.586667pt;}
.y4f{bottom:430.146667pt;}
.y7a{bottom:437.026667pt;}
.y22{bottom:437.186667pt;}
.y91{bottom:440.706667pt;}
.y4e{bottom:451.266667pt;}
.y79{bottom:458.146667pt;}
.y21{bottom:458.306667pt;}
.y90{bottom:461.826667pt;}
.y4d{bottom:472.386667pt;}
.y20{bottom:479.426667pt;}
.y8f{bottom:483.106667pt;}
.y4c{bottom:493.506667pt;}
.y1f{bottom:500.546667pt;}
.y8e{bottom:504.226667pt;}
.y4b{bottom:514.786667pt;}
.y78{bottom:521.666667pt;}
.y1e{bottom:521.826667pt;}
.y8d{bottom:525.346667pt;}
.y4a{bottom:535.906667pt;}
.y76{bottom:542.813333pt;}
.y1d{bottom:542.973333pt;}
.y8c{bottom:546.493333pt;}
.y49{bottom:557.053333pt;}
.y1c{bottom:564.093333pt;}
.y8b{bottom:567.773333pt;}
.y48{bottom:578.173333pt;}
.y1b{bottom:585.213333pt;}
.y73{bottom:585.853333pt;}
.y8a{bottom:588.893333pt;}
.y47{bottom:599.453333pt;}
.y1a{bottom:606.493333pt;}
.y89{bottom:610.013333pt;}
.y72{bottom:615.293333pt;}
.y46{bottom:620.573333pt;}
.y19{bottom:627.613333pt;}
.y88{bottom:631.133333pt;}
.y71{bottom:636.413333pt;}
.y45{bottom:641.693333pt;}
.y18{bottom:648.733333pt;}
.y87{bottom:652.413333pt;}
.y70{bottom:657.693333pt;}
.y44{bottom:662.813333pt;}
.y17{bottom:669.853333pt;}
.y86{bottom:673.533333pt;}
.y6f{bottom:678.813333pt;}
.y43{bottom:684.093333pt;}
.y16{bottom:691.133333pt;}
.y85{bottom:694.653333pt;}
.y6e{bottom:699.933333pt;}
.y42{bottom:705.213333pt;}
.y15{bottom:712.253333pt;}
.y84{bottom:715.773333pt;}
.y6d{bottom:721.053333pt;}
.y41{bottom:726.333333pt;}
.y14{bottom:733.373333pt;}
.y83{bottom:737.053333pt;}
.y6c{bottom:742.173333pt;}
.y40{bottom:747.453333pt;}
.y13{bottom:754.493333pt;}
.y82{bottom:758.173333pt;}
.y6b{bottom:763.453333pt;}
.y3f{bottom:768.573333pt;}
.y12{bottom:775.813333pt;}
.ya3{bottom:778.614190pt;}
.y6a{bottom:784.613333pt;}
.y3e{bottom:789.893333pt;}
.y11{bottom:796.933333pt;}
.y69{bottom:805.733333pt;}
.y3d{bottom:811.013333pt;}
.y10{bottom:818.053333pt;}
.y68{bottom:826.853333pt;}
.y3c{bottom:832.133333pt;}
.yf{bottom:839.173333pt;}
.y67{bottom:848.133333pt;}
.y3b{bottom:853.253333pt;}
.ye{bottom:860.453333pt;}
.y66{bottom:869.253333pt;}
.y3a{bottom:874.533333pt;}
.yd{bottom:887.653333pt;}
.y65{bottom:890.373333pt;}
.y39{bottom:895.653333pt;}
.yc{bottom:902.693333pt;}
.y64{bottom:911.493333pt;}
.y38{bottom:916.773333pt;}
.yb{bottom:929.893333pt;}
.y63{bottom:932.773333pt;}
.y37{bottom:937.893333pt;}
.ya{bottom:944.933333pt;}
.y62{bottom:953.893333pt;}
.y36{bottom:959.173333pt;}
.y9{bottom:966.213333pt;}
.y61{bottom:975.013333pt;}
.y35{bottom:980.293333pt;}
.y8{bottom:989.413333pt;}
.y60{bottom:992.613333pt;}
.y34{bottom:1001.413333pt;}
.y7{bottom:1017.600000pt;}
.y33{bottom:1022.560000pt;}
.y2{bottom:1061.440000pt;}
.y1{bottom:1077.280000pt;}
.h6{height:3.575000pt;}
.hd{height:21.120000pt;}
.h10{height:21.152000pt;}
.hf{height:21.280000pt;}
.h3{height:24.032000pt;}
.h9{height:29.940625pt;}
.h2{height:33.867188pt;}
.h4{height:44.687500pt;}
.hc{height:45.156250pt;}
.he{height:45.967500pt;}
.hb{height:46.593750pt;}
.h13{height:48.007374pt;}
.h12{height:48.139991pt;}
.ha{height:48.781250pt;}
.h8{height:51.374687pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.h11{height:247.999823pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:70.560000pt;}
.wa{width:75.392000pt;}
.w9{width:91.360000pt;}
.w4{width:93.792000pt;}
.w8{width:102.752000pt;}
.w7{width:109.280000pt;}
.w6{width:193.946667pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.wd{width:450.239113pt;}
.wc{width:643.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x2e{left:9.647036pt;}
.x1a{left:15.680000pt;}
.x23{left:17.000000pt;}
.x24{left:18.560000pt;}
.x25{left:19.720000pt;}
.x1e{left:20.640000pt;}
.x1c{left:24.360000pt;}
.x29{left:27.360000pt;}
.x28{left:29.640000pt;}
.x22{left:31.680000pt;}
.x18{left:33.146667pt;}
.x27{left:35.360000pt;}
.x21{left:37.306667pt;}
.x16{left:41.760000pt;}
.x20{left:46.560000pt;}
.x2b{left:52.954667pt;}
.x14{left:69.274667pt;}
.x3{left:77.920000pt;}
.x8{left:85.151988pt;}
.x9{left:86.431988pt;}
.x1{left:87.711988pt;}
.xd{left:98.271988pt;}
.x2f{left:113.631988pt;}
.x12{left:122.911988pt;}
.x11{left:132.351988pt;}
.xf{left:149.626655pt;}
.xa{left:168.986655pt;}
.x2d{left:183.087943pt;}
.x2c{left:188.026655pt;}
.x26{left:246.594667pt;}
.x1f{left:249.794667pt;}
.x2a{left:260.034667pt;}
.x10{left:262.946655pt;}
.x4{left:264.706667pt;}
.x15{left:278.466667pt;}
.xc{left:288.386655pt;}
.x2{left:337.346655pt;}
.x5{left:350.146667pt;}
.xe{left:360.546655pt;}
.x17{left:387.746667pt;}
.xb{left:396.866655pt;}
.x7{left:444.573333pt;}
.x19{left:490.493333pt;}
.x1b{left:581.853333pt;}
.x1d{left:657.253333pt;}
.x13{left:724.453322pt;}
}




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