
    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_c5efc3535c5c07f7c361e7c8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_80ce0ec4330173e3214aaa78.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_772e83852ada26e40677ddd9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_ab483b4141e015701250fd15.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_9fa6e46538210ec949a6ec0b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_cf0ee0f528001cab425a3fc8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_8069d4029967776d9084b805.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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;}
.ls6{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.306600px;}
.ls15{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.066720px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.264000px;}
.lsb{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.324000px;}
.ls19{letter-spacing:0.413280px;}
.ls1d{letter-spacing:0.413400px;}
.ls1f{letter-spacing:0.612000px;}
.ls1{letter-spacing:0.613440px;}
.ls5{letter-spacing:0.648000px;}
.ls1a{letter-spacing:0.666720px;}
.ls11{letter-spacing:0.864000px;}
.lsf{letter-spacing:3.744000px;}
.ls14{letter-spacing:5.184000px;}
.ls18{letter-spacing:7.344000px;}
.lsc{letter-spacing:8.784000px;}
.ls12{letter-spacing:15.264000px;}
.ls10{letter-spacing:17.424000px;}
.ls16{letter-spacing:21.744000px;}
.lsd{letter-spacing:25.344000px;}
.ls7{letter-spacing:33.984000px;}
.ls17{letter-spacing:36.144000px;}
.ls2{letter-spacing:38.304000px;}
.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;}
}
.ws0{word-spacing:-26.621280px;}
.ws4{word-spacing:-20.664000px;}
.ws5{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.232000px;}
.ws7{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.wsa{word-spacing:-19.800000px;}
.ws8{word-spacing:-19.584000px;}
.ws6{word-spacing:-18.414720px;}
.wse{word-spacing:-17.225280px;}
.wsc{word-spacing:-17.026680px;}
.ws1{word-spacing:-16.613280px;}
.wsb{word-spacing:-16.506480px;}
.wsd{word-spacing:-16.306680px;}
.ws3{word-spacing:0.000000px;}
._16{margin-left:-5.153760px;}
._b{margin-left:-3.953040px;}
._2{margin-left:-2.700480px;}
._1{margin-left:-1.662000px;}
._0{width:1.044000px;}
._3{width:2.080560px;}
._13{width:3.090000px;}
._6{width:4.134480px;}
._7{width:5.410080px;}
._a{width:6.516480px;}
._4{width:8.007840px;}
._5{width:9.376080px;}
._8{width:10.454640px;}
._f{width:11.592000px;}
._12{width:12.828000px;}
._26{width:13.896000px;}
._18{width:14.904000px;}
._e{width:15.912000px;}
._9{width:17.863200px;}
._17{width:18.936000px;}
._19{width:21.024000px;}
._11{width:22.374000px;}
._10{width:23.472000px;}
._1e{width:25.200000px;}
._1a{width:26.208000px;}
._1d{width:27.840480px;}
._22{width:29.748000px;}
._21{width:30.936000px;}
._1f{width:32.532000px;}
._1c{width:33.708000px;}
._1b{width:35.280000px;}
._20{width:36.648000px;}
._d{width:37.818000px;}
._c{width:38.952000px;}
._15{width:40.392000px;}
._14{width:41.760000px;}
._27{width:42.768000px;}
._23{width:55.488000px;}
._24{width:63.408000px;}
._25{width:2166.360000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(26,26,26);}
.fc2{color:rgb(33,33,33);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:2.880000px;}
.y4{bottom:52.560000px;}
.y3{bottom:57.600000px;}
.y2{bottom:76.680000px;}
.y8b{bottom:118.116000px;}
.y33{bottom:135.216000px;}
.y8a{bottom:135.396000px;}
.y59{bottom:135.756000px;}
.y89{bottom:152.670000px;}
.y32{bottom:162.210000px;}
.y58{bottom:162.750000px;}
.y88{bottom:169.950000px;}
.y87{bottom:187.050000px;}
.y31{bottom:189.210000px;}
.y57{bottom:189.750000px;}
.y86{bottom:204.510000px;}
.y30{bottom:216.210000px;}
.y56{bottom:216.750000px;}
.y85{bottom:221.790000px;}
.y84{bottom:238.890000px;}
.y2f{bottom:243.210000px;}
.y55{bottom:243.750000px;}
.y83{bottom:256.170000px;}
.y2e{bottom:270.210000px;}
.y54{bottom:270.750000px;}
.y82{bottom:273.270000px;}
.y81{bottom:290.730000px;}
.y2d{bottom:297.210000px;}
.y53{bottom:297.750000px;}
.y80{bottom:307.830000px;}
.y2c{bottom:324.210000px;}
.y52{bottom:324.750000px;}
.y7f{bottom:325.290000px;}
.y7e{bottom:342.570000px;}
.y2b{bottom:351.210000px;}
.y51{bottom:351.750000px;}
.y7d{bottom:359.535000px;}
.y7c{bottom:376.995000px;}
.y2a{bottom:378.255000px;}
.y50{bottom:378.795000px;}
.y7b{bottom:394.095000px;}
.y29{bottom:405.255000px;}
.y4f{bottom:405.795000px;}
.y7a{bottom:411.375000px;}
.y79{bottom:428.835000px;}
.y28{bottom:432.255000px;}
.y4e{bottom:432.795000px;}
.y78{bottom:445.935000px;}
.y27{bottom:453.855000px;}
.y4d{bottom:459.795000px;}
.y77{bottom:463.035000px;}
.y26{bottom:480.495000px;}
.y4c{bottom:486.795000px;}
.y76{bottom:497.775000px;}
.y25{bottom:500.475000px;}
.y4b{bottom:513.795000px;}
.y75{bottom:514.875000px;}
.y24{bottom:517.935000px;}
.y74{bottom:532.335000px;}
.y23{bottom:535.215000px;}
.y4a{bottom:540.795000px;}
.y73{bottom:549.615000px;}
.y22{bottom:552.135000px;}
.y72{bottom:566.535000px;}
.y49{bottom:567.795000px;}
.y21{bottom:569.415000px;}
.y71{bottom:583.815000px;}
.y20{bottom:586.695000px;}
.y48{bottom:594.795000px;}
.y70{bottom:601.275000px;}
.y1f{bottom:603.975000px;}
.y6f{bottom:618.585000px;}
.y1e{bottom:621.285000px;}
.y47{bottom:621.825000px;}
.y6e{bottom:635.685000px;}
.y1d{bottom:638.565000px;}
.y46{bottom:648.825000px;}
.y6d{bottom:652.965000px;}
.y1c{bottom:655.665000px;}
.y6c{bottom:670.245000px;}
.y1b{bottom:673.125000px;}
.y45{bottom:675.825000px;}
.y6b{bottom:687.345000px;}
.y1a{bottom:690.405000px;}
.ya6{bottom:694.185000px;}
.y44{bottom:702.825000px;}
.y6a{bottom:704.625000px;}
.y19{bottom:707.505000px;}
.ya5{bottom:711.645000px;}
.y69{bottom:722.085000px;}
.y18{bottom:724.785000px;}
.ya4{bottom:728.565000px;}
.y43{bottom:729.825000px;}
.y68{bottom:739.185000px;}
.y17{bottom:741.885000px;}
.ya3{bottom:746.025000px;}
.y67{bottom:756.285000px;}
.y42{bottom:756.825000px;}
.y16{bottom:759.165000px;}
.ya2{bottom:763.305000px;}
.y66{bottom:773.745000px;}
.y15{bottom:776.445000px;}
.ya1{bottom:780.405000px;}
.y41{bottom:783.825000px;}
.y65{bottom:790.845000px;}
.y14{bottom:793.725000px;}
.ya0{bottom:797.685000px;}
.y64{bottom:808.305000px;}
.y40{bottom:810.825000px;}
.y13{bottom:811.185000px;}
.y9f{bottom:814.785000px;}
.y63{bottom:825.585000px;}
.y12{bottom:828.465000px;}
.y9e{bottom:832.065000px;}
.y3f{bottom:837.825000px;}
.y62{bottom:842.865000px;}
.y11{bottom:845.565000px;}
.y9d{bottom:849.525000px;}
.y10{bottom:859.245000px;}
.y61{bottom:859.965000px;}
.y3e{bottom:864.825000px;}
.y9c{bottom:866.625000px;}
.y60{bottom:877.110000px;}
.y9b{bottom:883.950000px;}
.yf{bottom:885.930000px;}
.y3d{bottom:891.870000px;}
.y5f{bottom:894.570000px;}
.y9a{bottom:901.410000px;}
.ye{bottom:906.630000px;}
.y5e{bottom:911.670000px;}
.y99{bottom:918.330000px;}
.y3c{bottom:918.870000px;}
.yd{bottom:928.770000px;}
.y5d{bottom:928.950000px;}
.y98{bottom:935.610000px;}
.y3b{bottom:945.870000px;}
.y5c{bottom:946.230000px;}
.y97{bottom:953.070000px;}
.yc{bottom:956.310000px;}
.y5b{bottom:963.330000px;}
.y96{bottom:970.170000px;}
.y3a{bottom:972.870000px;}
.y5a{bottom:980.790000px;}
.yb{bottom:982.590000px;}
.y95{bottom:987.630000px;}
.y39{bottom:999.870000px;}
.ya{bottom:1003.830000px;}
.y94{bottom:1004.730000px;}
.y93{bottom:1021.830000px;}
.y38{bottom:1026.870000px;}
.y9{bottom:1027.950000px;}
.y92{bottom:1039.290000px;}
.y8{bottom:1052.250000px;}
.y37{bottom:1053.870000px;}
.y91{bottom:1056.390000px;}
.y90{bottom:1073.670000px;}
.y7{bottom:1076.370000px;}
.y36{bottom:1080.870000px;}
.y8f{bottom:1090.950000px;}
.y6{bottom:1095.810000px;}
.y35{bottom:1107.870000px;}
.y8e{bottom:1108.230000px;}
.y8d{bottom:1125.510000px;}
.y34{bottom:1134.900000px;}
.y8c{bottom:1142.820000px;}
.y1{bottom:1192.680000px;}
.h3{height:15.300000px;}
.h8{height:53.573906px;}
.hb{height:59.383125px;}
.h7{height:62.327813px;}
.h9{height:64.546875px;}
.ha{height:69.086250px;}
.h6{height:69.715898px;}
.h2{height:74.004654px;}
.h4{height:75.093750px;}
.h5{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:37.656000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.416000px;}
.x7{left:148.896000px;}
.x2{left:229.530000px;}
.x3{left:281.595000px;}
.x5{left:362.955000px;}
.x4{left:430.455000px;}
.x6{left:786.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.272533pt;}
.ls15{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.059307pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.234667pt;}
.lsb{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.288000pt;}
.ls19{letter-spacing:0.367360pt;}
.ls1d{letter-spacing:0.367467pt;}
.ls1f{letter-spacing:0.544000pt;}
.ls1{letter-spacing:0.545280pt;}
.ls5{letter-spacing:0.576000pt;}
.ls1a{letter-spacing:0.592640pt;}
.ls11{letter-spacing:0.768000pt;}
.lsf{letter-spacing:3.328000pt;}
.ls14{letter-spacing:4.608000pt;}
.ls18{letter-spacing:6.528000pt;}
.lsc{letter-spacing:7.808000pt;}
.ls12{letter-spacing:13.568000pt;}
.ls10{letter-spacing:15.488000pt;}
.ls16{letter-spacing:19.328000pt;}
.lsd{letter-spacing:22.528000pt;}
.ls7{letter-spacing:30.208000pt;}
.ls17{letter-spacing:32.128000pt;}
.ls2{letter-spacing:34.048000pt;}
.ws0{word-spacing:-23.663360pt;}
.ws4{word-spacing:-18.368000pt;}
.ws5{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.wsa{word-spacing:-17.600000pt;}
.ws8{word-spacing:-17.408000pt;}
.ws6{word-spacing:-16.368640pt;}
.wse{word-spacing:-15.311360pt;}
.wsc{word-spacing:-15.134827pt;}
.ws1{word-spacing:-14.767360pt;}
.wsb{word-spacing:-14.672427pt;}
.wsd{word-spacing:-14.494827pt;}
.ws3{word-spacing:0.000000pt;}
._16{margin-left:-4.581120pt;}
._b{margin-left:-3.513813pt;}
._2{margin-left:-2.400427pt;}
._1{margin-left:-1.477333pt;}
._0{width:0.928000pt;}
._3{width:1.849387pt;}
._13{width:2.746667pt;}
._6{width:3.675093pt;}
._7{width:4.808960pt;}
._a{width:5.792427pt;}
._4{width:7.118080pt;}
._5{width:8.334293pt;}
._8{width:9.293013pt;}
._f{width:10.304000pt;}
._12{width:11.402667pt;}
._26{width:12.352000pt;}
._18{width:13.248000pt;}
._e{width:14.144000pt;}
._9{width:15.878400pt;}
._17{width:16.832000pt;}
._19{width:18.688000pt;}
._11{width:19.888000pt;}
._10{width:20.864000pt;}
._1e{width:22.400000pt;}
._1a{width:23.296000pt;}
._1d{width:24.747093pt;}
._22{width:26.442667pt;}
._21{width:27.498667pt;}
._1f{width:28.917333pt;}
._1c{width:29.962667pt;}
._1b{width:31.360000pt;}
._20{width:32.576000pt;}
._d{width:33.616000pt;}
._c{width:34.624000pt;}
._15{width:35.904000pt;}
._14{width:37.120000pt;}
._27{width:38.016000pt;}
._23{width:49.322667pt;}
._24{width:56.362667pt;}
._25{width:1925.653333pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:2.560000pt;}
.y4{bottom:46.720000pt;}
.y3{bottom:51.200000pt;}
.y2{bottom:68.160000pt;}
.y8b{bottom:104.992000pt;}
.y33{bottom:120.192000pt;}
.y8a{bottom:120.352000pt;}
.y59{bottom:120.672000pt;}
.y89{bottom:135.706667pt;}
.y32{bottom:144.186667pt;}
.y58{bottom:144.666667pt;}
.y88{bottom:151.066667pt;}
.y87{bottom:166.266667pt;}
.y31{bottom:168.186667pt;}
.y57{bottom:168.666667pt;}
.y86{bottom:181.786667pt;}
.y30{bottom:192.186667pt;}
.y56{bottom:192.666667pt;}
.y85{bottom:197.146667pt;}
.y84{bottom:212.346667pt;}
.y2f{bottom:216.186667pt;}
.y55{bottom:216.666667pt;}
.y83{bottom:227.706667pt;}
.y2e{bottom:240.186667pt;}
.y54{bottom:240.666667pt;}
.y82{bottom:242.906667pt;}
.y81{bottom:258.426667pt;}
.y2d{bottom:264.186667pt;}
.y53{bottom:264.666667pt;}
.y80{bottom:273.626667pt;}
.y2c{bottom:288.186667pt;}
.y52{bottom:288.666667pt;}
.y7f{bottom:289.146667pt;}
.y7e{bottom:304.506667pt;}
.y2b{bottom:312.186667pt;}
.y51{bottom:312.666667pt;}
.y7d{bottom:319.586667pt;}
.y7c{bottom:335.106667pt;}
.y2a{bottom:336.226667pt;}
.y50{bottom:336.706667pt;}
.y7b{bottom:350.306667pt;}
.y29{bottom:360.226667pt;}
.y4f{bottom:360.706667pt;}
.y7a{bottom:365.666667pt;}
.y79{bottom:381.186667pt;}
.y28{bottom:384.226667pt;}
.y4e{bottom:384.706667pt;}
.y78{bottom:396.386667pt;}
.y27{bottom:403.426667pt;}
.y4d{bottom:408.706667pt;}
.y77{bottom:411.586667pt;}
.y26{bottom:427.106667pt;}
.y4c{bottom:432.706667pt;}
.y76{bottom:442.466667pt;}
.y25{bottom:444.866667pt;}
.y4b{bottom:456.706667pt;}
.y75{bottom:457.666667pt;}
.y24{bottom:460.386667pt;}
.y74{bottom:473.186667pt;}
.y23{bottom:475.746667pt;}
.y4a{bottom:480.706667pt;}
.y73{bottom:488.546667pt;}
.y22{bottom:490.786667pt;}
.y72{bottom:503.586667pt;}
.y49{bottom:504.706667pt;}
.y21{bottom:506.146667pt;}
.y71{bottom:518.946667pt;}
.y20{bottom:521.506667pt;}
.y48{bottom:528.706667pt;}
.y70{bottom:534.466667pt;}
.y1f{bottom:536.866667pt;}
.y6f{bottom:549.853333pt;}
.y1e{bottom:552.253333pt;}
.y47{bottom:552.733333pt;}
.y6e{bottom:565.053333pt;}
.y1d{bottom:567.613333pt;}
.y46{bottom:576.733333pt;}
.y6d{bottom:580.413333pt;}
.y1c{bottom:582.813333pt;}
.y6c{bottom:595.773333pt;}
.y1b{bottom:598.333333pt;}
.y45{bottom:600.733333pt;}
.y6b{bottom:610.973333pt;}
.y1a{bottom:613.693333pt;}
.ya6{bottom:617.053333pt;}
.y44{bottom:624.733333pt;}
.y6a{bottom:626.333333pt;}
.y19{bottom:628.893333pt;}
.ya5{bottom:632.573333pt;}
.y69{bottom:641.853333pt;}
.y18{bottom:644.253333pt;}
.ya4{bottom:647.613333pt;}
.y43{bottom:648.733333pt;}
.y68{bottom:657.053333pt;}
.y17{bottom:659.453333pt;}
.ya3{bottom:663.133333pt;}
.y67{bottom:672.253333pt;}
.y42{bottom:672.733333pt;}
.y16{bottom:674.813333pt;}
.ya2{bottom:678.493333pt;}
.y66{bottom:687.773333pt;}
.y15{bottom:690.173333pt;}
.ya1{bottom:693.693333pt;}
.y41{bottom:696.733333pt;}
.y65{bottom:702.973333pt;}
.y14{bottom:705.533333pt;}
.ya0{bottom:709.053333pt;}
.y64{bottom:718.493333pt;}
.y40{bottom:720.733333pt;}
.y13{bottom:721.053333pt;}
.y9f{bottom:724.253333pt;}
.y63{bottom:733.853333pt;}
.y12{bottom:736.413333pt;}
.y9e{bottom:739.613333pt;}
.y3f{bottom:744.733333pt;}
.y62{bottom:749.213333pt;}
.y11{bottom:751.613333pt;}
.y9d{bottom:755.133333pt;}
.y10{bottom:763.773333pt;}
.y61{bottom:764.413333pt;}
.y3e{bottom:768.733333pt;}
.y9c{bottom:770.333333pt;}
.y60{bottom:779.653333pt;}
.y9b{bottom:785.733333pt;}
.yf{bottom:787.493333pt;}
.y3d{bottom:792.773333pt;}
.y5f{bottom:795.173333pt;}
.y9a{bottom:801.253333pt;}
.ye{bottom:805.893333pt;}
.y5e{bottom:810.373333pt;}
.y99{bottom:816.293333pt;}
.y3c{bottom:816.773333pt;}
.yd{bottom:825.573333pt;}
.y5d{bottom:825.733333pt;}
.y98{bottom:831.653333pt;}
.y3b{bottom:840.773333pt;}
.y5c{bottom:841.093333pt;}
.y97{bottom:847.173333pt;}
.yc{bottom:850.053333pt;}
.y5b{bottom:856.293333pt;}
.y96{bottom:862.373333pt;}
.y3a{bottom:864.773333pt;}
.y5a{bottom:871.813333pt;}
.yb{bottom:873.413333pt;}
.y95{bottom:877.893333pt;}
.y39{bottom:888.773333pt;}
.ya{bottom:892.293333pt;}
.y94{bottom:893.093333pt;}
.y93{bottom:908.293333pt;}
.y38{bottom:912.773333pt;}
.y9{bottom:913.733333pt;}
.y92{bottom:923.813333pt;}
.y8{bottom:935.333333pt;}
.y37{bottom:936.773333pt;}
.y91{bottom:939.013333pt;}
.y90{bottom:954.373333pt;}
.y7{bottom:956.773333pt;}
.y36{bottom:960.773333pt;}
.y8f{bottom:969.733333pt;}
.y6{bottom:974.053333pt;}
.y35{bottom:984.773333pt;}
.y8e{bottom:985.093333pt;}
.y8d{bottom:1000.453333pt;}
.y34{bottom:1008.800000pt;}
.y8c{bottom:1015.840000pt;}
.y1{bottom:1060.160000pt;}
.h3{height:13.600000pt;}
.h8{height:47.621250pt;}
.hb{height:52.785000pt;}
.h7{height:55.402500pt;}
.h9{height:57.375000pt;}
.ha{height:61.410000pt;}
.h6{height:61.969687pt;}
.h2{height:65.781915pt;}
.h4{height:66.750000pt;}
.h5{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:33.472000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.592000pt;}
.x7{left:132.352000pt;}
.x2{left:204.026667pt;}
.x3{left:250.306667pt;}
.x5{left:322.626667pt;}
.x4{left:382.626667pt;}
.x6{left:699.333333pt;}
}




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