
    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_4945561f8506ed29e11e963a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_77123b57e80ce82422f5cd12.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_8586065bd301ef9f85bcaa3b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_78ad2a1a63e0e1007694b6b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.188965;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_e8d06b7e73be438818666069.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_eccf3e85582184384fc65870.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_ee1f38728ebb91ec0135f9ee.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_1d2602dc8a8026d24219f153.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_affc530695f17f3d0210afe8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_55f987f0b1aa4f51bb1f4798.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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:ffb;src:url('chunks/assets/font_a0e4026b85470336c886eda8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.922852;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:ffc;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.690918;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:ffd;src:url('chunks/assets/font_6d14e095ba3a36d45c594415.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v3{vertical-align:-38.880000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.880000px;}
.ls6{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.028080px;}
.ls7{letter-spacing:0.037440px;}
.ls9{letter-spacing:0.129600px;}
.ls3{letter-spacing:0.150000px;}
.ls8{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:45.701280px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws7{word-spacing:-84.240000px;}
.ws9{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.970240px;}
.ws5{word-spacing:-9.720000px;}
.ws0{word-spacing:-0.066240px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._1b{margin-left:-12.817920px;}
._24{margin-left:-5.940000px;}
._e{margin-left:-2.212560px;}
._1{margin-left:-1.126080px;}
._3{width:1.213680px;}
._6{width:3.116880px;}
._5{width:4.242960px;}
._c{width:5.956320px;}
._d{width:7.624080px;}
._21{width:8.718480px;}
._1f{width:9.718560px;}
._20{width:11.150640px;}
._12{width:12.467520px;}
._13{width:13.718640px;}
._10{width:15.078960px;}
._f{width:16.089840px;}
._11{width:17.586960px;}
._25{width:18.605040px;}
._7{width:19.627920px;}
._14{width:22.829040px;}
._15{width:24.077280px;}
._1e{width:25.218720px;}
._1d{width:27.324720px;}
._1c{width:28.755120px;}
._a{width:30.157920px;}
._b{width:31.368240px;}
._8{width:32.516640px;}
._9{width:34.063920px;}
._18{width:36.928080px;}
._4{width:42.201120px;}
._17{width:48.522240px;}
._26{width:54.701040px;}
._23{width:56.093520px;}
._22{width:57.186960px;}
._16{width:58.744800px;}
._1a{width:69.432720px;}
._19{width:71.151840px;}
._2{width:638.842080px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y55{bottom:11.700000px;}
.y52{bottom:13.680000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.y5a{bottom:30.240000px;}
.y57{bottom:49.284000px;}
.y64{bottom:51.624000px;}
.y56{bottom:67.644000px;}
.y51{bottom:78.120000px;}
.y59{bottom:81.000000px;}
.y2b{bottom:84.960000px;}
.y5f{bottom:88.560000px;}
.y63{bottom:93.240000px;}
.y58{bottom:99.360000px;}
.y2a{bottom:102.240000px;}
.y54{bottom:114.660000px;}
.y5c{bottom:114.696000px;}
.y62{bottom:118.332000px;}
.y29{bottom:119.340000px;}
.y5e{bottom:121.500000px;}
.y50{bottom:130.716000px;}
.y53{bottom:133.020000px;}
.y5b{bottom:133.050000px;}
.y61{bottom:134.892000px;}
.y28{bottom:136.656000px;}
.y27{bottom:147.996000px;}
.y5d{bottom:152.280000px;}
.y4f{bottom:163.110000px;}
.y26{bottom:169.230000px;}
.y60{bottom:176.505000px;}
.y86{bottom:182.910000px;}
.y4e{bottom:191.010000px;}
.y25{bottom:193.350000px;}
.y85{bottom:207.030000px;}
.y24{bottom:217.470000px;}
.y4d{bottom:218.730000px;}
.y84{bottom:231.330000px;}
.y23{bottom:241.590000px;}
.y4c{bottom:246.450000px;}
.y83{bottom:255.450000px;}
.y22{bottom:265.890000px;}
.y4b{bottom:274.350000px;}
.y82{bottom:279.570000px;}
.y4a{bottom:302.070000px;}
.y81{bottom:303.690000px;}
.y21{bottom:311.070000px;}
.y80{bottom:327.990000px;}
.y49{bottom:329.790000px;}
.y20{bottom:335.190000px;}
.y48{bottom:357.510000px;}
.y1f{bottom:359.310000px;}
.y7f{bottom:376.590000px;}
.y1e{bottom:383.475000px;}
.y47{bottom:402.915000px;}
.y7e{bottom:404.355000px;}
.y1d{bottom:407.595000px;}
.y46{bottom:426.495000px;}
.y1c{bottom:431.715000px;}
.y7d{bottom:432.255000px;}
.y45{bottom:450.795000px;}
.y1b{bottom:455.835000px;}
.y7c{bottom:459.975000px;}
.y44{bottom:474.915000px;}
.y1a{bottom:480.135000px;}
.y7b{bottom:487.695000px;}
.y43{bottom:499.035000px;}
.y19{bottom:504.255000px;}
.y7a{bottom:515.595000px;}
.y42{bottom:523.155000px;}
.y18{bottom:528.375000px;}
.y79{bottom:543.315000px;}
.y41{bottom:547.275000px;}
.y17{bottom:552.495000px;}
.y78{bottom:571.035000px;}
.y40{bottom:571.395000px;}
.y3f{bottom:595.695000px;}
.y77{bottom:598.755000px;}
.y16{bottom:601.275000px;}
.y3e{bottom:619.815000px;}
.y95{bottom:623.595000px;}
.y76{bottom:626.655000px;}
.y15{bottom:628.995000px;}
.y75{bottom:654.405000px;}
.y14{bottom:665.205000px;}
.y3d{bottom:665.385000px;}
.y94{bottom:668.445000px;}
.y74{bottom:682.125000px;}
.y3c{bottom:689.505000px;}
.y13{bottom:701.565000px;}
.y73{bottom:709.845000px;}
.y3b{bottom:713.625000px;}
.y93{bottom:713.985000px;}
.y12{bottom:737.745000px;}
.y92{bottom:739.545000px;}
.y3a{bottom:761.865000px;}
.y91{bottom:763.665000px;}
.y72{bottom:765.465000px;}
.y11{bottom:773.925000px;}
.y39{bottom:785.985000px;}
.y90{bottom:789.405000px;}
.y71{bottom:793.185000px;}
.y10{bottom:810.105000px;}
.y8f{bottom:814.965000px;}
.y70{bottom:821.085000px;}
.y38{bottom:834.405000px;}
.yf{bottom:846.465000px;}
.y6f{bottom:848.805000px;}
.y37{bottom:858.525000px;}
.y8e{bottom:861.405000px;}
.y6e{bottom:876.525000px;}
.ye{bottom:882.645000px;}
.y36{bottom:906.810000px;}
.y8d{bottom:906.990000px;}
.yd{bottom:918.870000px;}
.y6d{bottom:919.410000px;}
.y8c{bottom:930.930000px;}
.y6c{bottom:947.130000px;}
.y35{bottom:952.170000px;}
.yc{bottom:955.050000px;}
.y6b{bottom:974.850000px;}
.y34{bottom:976.110000px;}
.y8b{bottom:979.170000px;}
.yb{bottom:991.410000px;}
.y33{bottom:1000.230000px;}
.y6a{bottom:1002.750000px;}
.y8a{bottom:1003.470000px;}
.y32{bottom:1024.350000px;}
.ya{bottom:1027.590000px;}
.y69{bottom:1030.470000px;}
.y31{bottom:1048.470000px;}
.y89{bottom:1051.710000px;}
.y68{bottom:1058.190000px;}
.y9{bottom:1063.770000px;}
.y30{bottom:1072.770000px;}
.y88{bottom:1075.830000px;}
.y67{bottom:1085.910000px;}
.y2f{bottom:1096.890000px;}
.y8{bottom:1099.410000px;}
.y66{bottom:1113.810000px;}
.y2e{bottom:1121.010000px;}
.y87{bottom:1121.190000px;}
.y65{bottom:1141.560000px;}
.y7{bottom:1144.980000px;}
.y2d{bottom:1145.160000px;}
.y6{bottom:1168.920000px;}
.y2c{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.hb{height:38.158594px;}
.h10{height:45.140977px;}
.h17{height:53.709961px;}
.hd{height:58.490859px;}
.he{height:58.651172px;}
.h11{height:61.189805px;}
.h1a{height:64.620000px;}
.h2{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:69.432187px;}
.h3{height:70.628906px;}
.h7{height:82.635820px;}
.h9{height:82.676953px;}
.h12{height:84.240000px;}
.h6{height:84.898125px;}
.h1b{height:86.585445px;}
.ha{height:91.878047px;}
.hc{height:92.058047px;}
.h19{height:106.200000px;}
.h15{height:110.583984px;}
.h13{height:115.920000px;}
.h18{height:147.780000px;}
.hf{height:149.580000px;}
.h14{height:149.760000px;}
.h16{height:189.540000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w6{width:94.140000px;}
.w5{width:100.980000px;}
.w3{width:103.140000px;}
.w8{width:108.360000px;}
.w7{width:113.760000px;}
.w4{width:314.820000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.355000px;}
.x17{left:16.635000px;}
.xe{left:18.615000px;}
.x4{left:20.550000px;}
.x13{left:32.970000px;}
.xf{left:49.245000px;}
.x1{left:95.796000px;}
.x2{left:111.636000px;}
.x18{left:122.796000px;}
.x11{left:134.820000px;}
.xa{left:138.276000px;}
.x19{left:149.796000px;}
.x12{left:151.920000px;}
.x6{left:153.210000px;}
.x5{left:166.890000px;}
.x10{left:186.660000px;}
.xd{left:220.860000px;}
.x16{left:362.700000px;}
.x14{left:370.980000px;}
.x9{left:388.875000px;}
.x3{left:438.915000px;}
.xb{left:480.525000px;}
.x8{left:496.185000px;}
.xc{left:505.185000px;}
.x7{left:597.705000px;}
@media print{
.v3{vertical-align:-34.560000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024960pt;}
.ls7{letter-spacing:0.033280pt;}
.ls9{letter-spacing:0.115200pt;}
.ls3{letter-spacing:0.133333pt;}
.ls8{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:40.623360pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws7{word-spacing:-74.880000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws5{word-spacing:-8.640000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._1b{margin-left:-11.393707pt;}
._24{margin-left:-5.280000pt;}
._e{margin-left:-1.966720pt;}
._1{margin-left:-1.000960pt;}
._3{width:1.078827pt;}
._6{width:2.770560pt;}
._5{width:3.771520pt;}
._c{width:5.294507pt;}
._d{width:6.776960pt;}
._21{width:7.749760pt;}
._1f{width:8.638720pt;}
._20{width:9.911680pt;}
._12{width:11.082240pt;}
._13{width:12.194347pt;}
._10{width:13.403520pt;}
._f{width:14.302080pt;}
._11{width:15.632853pt;}
._25{width:16.537813pt;}
._7{width:17.447040pt;}
._14{width:20.292480pt;}
._15{width:21.402027pt;}
._1e{width:22.416640pt;}
._1d{width:24.288640pt;}
._1c{width:25.560107pt;}
._a{width:26.807040pt;}
._b{width:27.882880pt;}
._8{width:28.903680pt;}
._9{width:30.279040pt;}
._18{width:32.824960pt;}
._4{width:37.512107pt;}
._17{width:43.130880pt;}
._26{width:48.623147pt;}
._23{width:49.860907pt;}
._22{width:50.832853pt;}
._16{width:52.217600pt;}
._1a{width:61.717973pt;}
._19{width:63.246080pt;}
._2{width:567.859627pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y55{bottom:10.400000pt;}
.y52{bottom:12.160000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.y5a{bottom:26.880000pt;}
.y57{bottom:43.808000pt;}
.y64{bottom:45.888000pt;}
.y56{bottom:60.128000pt;}
.y51{bottom:69.440000pt;}
.y59{bottom:72.000000pt;}
.y2b{bottom:75.520000pt;}
.y5f{bottom:78.720000pt;}
.y63{bottom:82.880000pt;}
.y58{bottom:88.320000pt;}
.y2a{bottom:90.880000pt;}
.y54{bottom:101.920000pt;}
.y5c{bottom:101.952000pt;}
.y62{bottom:105.184000pt;}
.y29{bottom:106.080000pt;}
.y5e{bottom:108.000000pt;}
.y50{bottom:116.192000pt;}
.y53{bottom:118.240000pt;}
.y5b{bottom:118.266667pt;}
.y61{bottom:119.904000pt;}
.y28{bottom:121.472000pt;}
.y27{bottom:131.552000pt;}
.y5d{bottom:135.360000pt;}
.y4f{bottom:144.986667pt;}
.y26{bottom:150.426667pt;}
.y60{bottom:156.893333pt;}
.y86{bottom:162.586667pt;}
.y4e{bottom:169.786667pt;}
.y25{bottom:171.866667pt;}
.y85{bottom:184.026667pt;}
.y24{bottom:193.306667pt;}
.y4d{bottom:194.426667pt;}
.y84{bottom:205.626667pt;}
.y23{bottom:214.746667pt;}
.y4c{bottom:219.066667pt;}
.y83{bottom:227.066667pt;}
.y22{bottom:236.346667pt;}
.y4b{bottom:243.866667pt;}
.y82{bottom:248.506667pt;}
.y4a{bottom:268.506667pt;}
.y81{bottom:269.946667pt;}
.y21{bottom:276.506667pt;}
.y80{bottom:291.546667pt;}
.y49{bottom:293.146667pt;}
.y20{bottom:297.946667pt;}
.y48{bottom:317.786667pt;}
.y1f{bottom:319.386667pt;}
.y7f{bottom:334.746667pt;}
.y1e{bottom:340.866667pt;}
.y47{bottom:358.146667pt;}
.y7e{bottom:359.426667pt;}
.y1d{bottom:362.306667pt;}
.y46{bottom:379.106667pt;}
.y1c{bottom:383.746667pt;}
.y7d{bottom:384.226667pt;}
.y45{bottom:400.706667pt;}
.y1b{bottom:405.186667pt;}
.y7c{bottom:408.866667pt;}
.y44{bottom:422.146667pt;}
.y1a{bottom:426.786667pt;}
.y7b{bottom:433.506667pt;}
.y43{bottom:443.586667pt;}
.y19{bottom:448.226667pt;}
.y7a{bottom:458.306667pt;}
.y42{bottom:465.026667pt;}
.y18{bottom:469.666667pt;}
.y79{bottom:482.946667pt;}
.y41{bottom:486.466667pt;}
.y17{bottom:491.106667pt;}
.y78{bottom:507.586667pt;}
.y40{bottom:507.906667pt;}
.y3f{bottom:529.506667pt;}
.y77{bottom:532.226667pt;}
.y16{bottom:534.466667pt;}
.y3e{bottom:550.946667pt;}
.y95{bottom:554.306667pt;}
.y76{bottom:557.026667pt;}
.y15{bottom:559.106667pt;}
.y75{bottom:581.693333pt;}
.y14{bottom:591.293333pt;}
.y3d{bottom:591.453333pt;}
.y94{bottom:594.173333pt;}
.y74{bottom:606.333333pt;}
.y3c{bottom:612.893333pt;}
.y13{bottom:623.613333pt;}
.y73{bottom:630.973333pt;}
.y3b{bottom:634.333333pt;}
.y93{bottom:634.653333pt;}
.y12{bottom:655.773333pt;}
.y92{bottom:657.373333pt;}
.y3a{bottom:677.213333pt;}
.y91{bottom:678.813333pt;}
.y72{bottom:680.413333pt;}
.y11{bottom:687.933333pt;}
.y39{bottom:698.653333pt;}
.y90{bottom:701.693333pt;}
.y71{bottom:705.053333pt;}
.y10{bottom:720.093333pt;}
.y8f{bottom:724.413333pt;}
.y70{bottom:729.853333pt;}
.y38{bottom:741.693333pt;}
.yf{bottom:752.413333pt;}
.y6f{bottom:754.493333pt;}
.y37{bottom:763.133333pt;}
.y8e{bottom:765.693333pt;}
.y6e{bottom:779.133333pt;}
.ye{bottom:784.573333pt;}
.y36{bottom:806.053333pt;}
.y8d{bottom:806.213333pt;}
.yd{bottom:816.773333pt;}
.y6d{bottom:817.253333pt;}
.y8c{bottom:827.493333pt;}
.y6c{bottom:841.893333pt;}
.y35{bottom:846.373333pt;}
.yc{bottom:848.933333pt;}
.y6b{bottom:866.533333pt;}
.y34{bottom:867.653333pt;}
.y8b{bottom:870.373333pt;}
.yb{bottom:881.253333pt;}
.y33{bottom:889.093333pt;}
.y6a{bottom:891.333333pt;}
.y8a{bottom:891.973333pt;}
.y32{bottom:910.533333pt;}
.ya{bottom:913.413333pt;}
.y69{bottom:915.973333pt;}
.y31{bottom:931.973333pt;}
.y89{bottom:934.853333pt;}
.y68{bottom:940.613333pt;}
.y9{bottom:945.573333pt;}
.y30{bottom:953.573333pt;}
.y88{bottom:956.293333pt;}
.y67{bottom:965.253333pt;}
.y2f{bottom:975.013333pt;}
.y8{bottom:977.253333pt;}
.y66{bottom:990.053333pt;}
.y2e{bottom:996.453333pt;}
.y87{bottom:996.613333pt;}
.y65{bottom:1014.720000pt;}
.y7{bottom:1017.760000pt;}
.y2d{bottom:1017.920000pt;}
.y6{bottom:1039.040000pt;}
.y2c{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.hb{height:33.918750pt;}
.h10{height:40.125312pt;}
.h17{height:47.742188pt;}
.hd{height:51.991875pt;}
.he{height:52.134375pt;}
.h11{height:54.390938pt;}
.h1a{height:57.440000pt;}
.h2{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:61.717500pt;}
.h3{height:62.781250pt;}
.h7{height:73.454062pt;}
.h9{height:73.490625pt;}
.h12{height:74.880000pt;}
.h6{height:75.465000pt;}
.h1b{height:76.964840pt;}
.ha{height:81.669375pt;}
.hc{height:81.829375pt;}
.h19{height:94.400000pt;}
.h15{height:98.296875pt;}
.h13{height:103.040000pt;}
.h18{height:131.360000pt;}
.hf{height:132.960000pt;}
.h14{height:133.120000pt;}
.h16{height:168.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w6{width:83.680000pt;}
.w5{width:89.760000pt;}
.w3{width:91.680000pt;}
.w8{width:96.320000pt;}
.w7{width:101.120000pt;}
.w4{width:279.840000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.426667pt;}
.x17{left:14.786667pt;}
.xe{left:16.546667pt;}
.x4{left:18.266667pt;}
.x13{left:29.306667pt;}
.xf{left:43.773333pt;}
.x1{left:85.152000pt;}
.x2{left:99.232000pt;}
.x18{left:109.152000pt;}
.x11{left:119.840000pt;}
.xa{left:122.912000pt;}
.x19{left:133.152000pt;}
.x12{left:135.040000pt;}
.x6{left:136.186667pt;}
.x5{left:148.346667pt;}
.x10{left:165.920000pt;}
.xd{left:196.320000pt;}
.x16{left:322.400000pt;}
.x14{left:329.760000pt;}
.x9{left:345.666667pt;}
.x3{left:390.146667pt;}
.xb{left:427.133333pt;}
.x8{left:441.053333pt;}
.xc{left:449.053333pt;}
.x7{left:531.293333pt;}
}




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