
    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_a0e5d91bf64d3f442ac742e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c04f78436a22f8987f703573.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_02a2449e78e674aa8fb69c3b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_17f16ee7dfee9220d1b1d1ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2d6795a5e602498af80e1c68.woff2')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_aa1550138a65935aa5050344.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6d42a52feb127ed2e8350869.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e8de52b5bfc19ce0e147736c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e3f10da70991b4f5e0858b9d.woff2')format("woff");}.ff9{font-family:ff9;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);}
.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);}
.v3{vertical-align:-97.920000px;}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls19{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.810000px;}
.ls1f{letter-spacing:-0.750000px;}
.ls21{letter-spacing:-0.732000px;}
.ls2d{letter-spacing:-0.690000px;}
.ls18{letter-spacing:-0.684000px;}
.lsa{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.341400px;}
.ls9{letter-spacing:-0.180000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.037440px;}
.ls8{letter-spacing:-0.028080px;}
.ls7{letter-spacing:-0.018720px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.037440px;}
.ls22{letter-spacing:0.048000px;}
.ls1d{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.118200px;}
.ls17{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.252720px;}
.ls1e{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.291600px;}
.ls13{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.540000px;}
.ls23{letter-spacing:0.648000px;}
.ls24{letter-spacing:4.140000px;}
.ls25{letter-spacing:4.320000px;}
.ls16{letter-spacing:17.820000px;}
.ls15{letter-spacing:20.700000px;}
.ls2c{letter-spacing:21.221280px;}
.lsc{letter-spacing:22.140000px;}
.ls28{letter-spacing:23.580000px;}
.ls29{letter-spacing:27.180000px;}
.ls2a{letter-spacing:27.900000px;}
.ls11{letter-spacing:29.340000px;}
.ls27{letter-spacing:39.420000px;}
.ls26{letter-spacing:40.140000px;}
.ls1{letter-spacing:45.300000px;}
.ls10{letter-spacing:45.900000px;}
.ls0{letter-spacing:53.820000px;}
.lse{letter-spacing:55.260000px;}
.ls5{letter-spacing:99.180000px;}
.ls3{letter-spacing:614.100000px;}
.ls2b{letter-spacing:680.376000px;}
.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;}
}
.ws9{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.351600px;}
.wsb{word-spacing:-21.178200px;}
.ws3{word-spacing:-21.097440px;}
.ws7{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws1{word-spacing:-21.041280px;}
.ws2{word-spacing:-21.031920px;}
.ws13{word-spacing:-21.022560px;}
.ws8{word-spacing:-20.718600px;}
.ws15{word-spacing:-20.370000px;}
.ws14{word-spacing:-20.328000px;}
.ws12{word-spacing:-20.310000px;}
.ws4{word-spacing:-20.250000px;}
.wsa{word-spacing:-19.980000px;}
.ws10{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.216000px;}
.wse{word-spacing:-18.072000px;}
.wsf{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.ws11{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
._1f{margin-left:-6.594000px;}
._12{margin-left:-5.559840px;}
._f{margin-left:-3.819600px;}
._0{margin-left:-2.140800px;}
._2{margin-left:-1.107360px;}
._1{width:1.158720px;}
._7{width:2.787840px;}
._17{width:3.879360px;}
._20{width:5.445840px;}
._28{width:7.109040px;}
._2e{width:8.258400px;}
._e{width:9.689760px;}
._d{width:11.045520px;}
._c{width:12.249600px;}
._1e{width:13.441200px;}
._14{width:15.000720px;}
._13{width:16.679520px;}
._27{width:17.745840px;}
._25{width:19.456800px;}
._11{width:22.576320px;}
._10{width:23.893200px;}
._29{width:25.033920px;}
._18{width:26.042400px;}
._19{width:27.304080px;}
._15{width:28.781280px;}
._16{width:29.964960px;}
._1c{width:31.084560px;}
._2a{width:32.317440px;}
._1a{width:34.791120px;}
._9{width:36.122400px;}
._30{width:37.172640px;}
._31{width:38.824800px;}
._37{width:40.608960px;}
._1b{width:43.215120px;}
._a{width:44.438880px;}
._b{width:45.474480px;}
._6{width:48.534480px;}
._8{width:50.026320px;}
._2f{width:51.554640px;}
._5{width:52.723920px;}
._26{width:54.788160px;}
._24{width:56.106480px;}
._23{width:57.380160px;}
._32{width:58.968000px;}
._33{width:60.517200px;}
._2b{width:78.764400px;}
._21{width:79.955040px;}
._22{width:82.976400px;}
._2c{width:90.276480px;}
._2d{width:91.357200px;}
._1d{width:98.997120px;}
._34{width:109.398960px;}
._35{width:110.796000px;}
._3{width:138.271200px;}
._36{width:170.256000px;}
._4{width:194.400000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,0);}
.fs3{font-size:5.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y2{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y42{bottom:4.140000px;}
.y6{bottom:6.300000px;}
.yc{bottom:11.700000px;}
.y4{bottom:13.140000px;}
.y3f{bottom:14.220000px;}
.y50{bottom:14.400000px;}
.y46{bottom:14.580000px;}
.y57{bottom:14.625000px;}
.y44{bottom:14.760000px;}
.y41{bottom:24.840000px;}
.yb{bottom:27.720000px;}
.y5{bottom:36.360000px;}
.ya{bottom:57.060000px;}
.y9{bottom:72.180000px;}
.y4e{bottom:94.680000px;}
.y37{bottom:98.820000px;}
.y4d{bottom:118.836000px;}
.y36{bottom:123.156000px;}
.y4c{bottom:142.956000px;}
.y35{bottom:147.276000px;}
.y4b{bottom:167.070000px;}
.y34{bottom:171.390000px;}
.y6f{bottom:189.750000px;}
.y33{bottom:195.510000px;}
.y4a{bottom:203.250000px;}
.y32{bottom:219.630000px;}
.y49{bottom:223.230000px;}
.y31{bottom:243.750000px;}
.y6e{bottom:246.810000px;}
.y48{bottom:254.910000px;}
.y30{bottom:268.050000px;}
.y6d{bottom:282.990000px;}
.y47{bottom:286.770000px;}
.y2f{bottom:292.170000px;}
.y6c{bottom:307.110000px;}
.y2e{bottom:316.290000px;}
.y45{bottom:318.630000px;}
.y6b{bottom:335.010000px;}
.y2d{bottom:340.410000px;}
.y43{bottom:350.310000px;}
.y6a{bottom:362.730000px;}
.y2c{bottom:364.530000px;}
.y40{bottom:382.215000px;}
.y2b{bottom:388.695000px;}
.y69{bottom:390.495000px;}
.y2a{bottom:412.995000px;}
.y68{bottom:418.215000px;}
.y3e{bottom:424.335000px;}
.y29{bottom:437.115000px;}
.y67{bottom:446.115000px;}
.y28{bottom:460.875000px;}
.y3d{bottom:461.235000px;}
.y66{bottom:473.835000px;}
.y27{bottom:485.355000px;}
.y65{bottom:501.555000px;}
.y26{bottom:509.475000px;}
.y64{bottom:529.455000px;}
.y25{bottom:533.595000px;}
.y24{bottom:557.715000px;}
.y63{bottom:577.695000px;}
.y23{bottom:582.015000px;}
.y62{bottom:601.815000px;}
.y22{bottom:606.135000px;}
.y61{bottom:625.965000px;}
.y21{bottom:630.285000px;}
.y60{bottom:650.085000px;}
.y20{bottom:654.405000px;}
.y5f{bottom:674.205000px;}
.y1f{bottom:678.525000px;}
.y5e{bottom:698.505000px;}
.y1e{bottom:702.645000px;}
.y5d{bottom:722.625000px;}
.y1d{bottom:726.585000px;}
.y3c{bottom:726.945000px;}
.y5c{bottom:746.745000px;}
.y1c{bottom:750.705000px;}
.y3b{bottom:751.065000px;}
.y5b{bottom:770.865000px;}
.y3a{bottom:775.185000px;}
.y5a{bottom:794.985000px;}
.y1b{bottom:799.305000px;}
.y59{bottom:819.105000px;}
.y1a{bottom:823.425000px;}
.y19{bottom:847.545000px;}
.y58{bottom:855.465000px;}
.y18{bottom:871.665000px;}
.y56{bottom:875.265000px;}
.y17{bottom:896.010000px;}
.y55{bottom:906.990000px;}
.y16{bottom:920.130000px;}
.y54{bottom:938.850000px;}
.y15{bottom:944.250000px;}
.y14{bottom:968.370000px;}
.y53{bottom:970.710000px;}
.y13{bottom:992.490000px;}
.y52{bottom:1002.390000px;}
.y12{bottom:1016.610000px;}
.y51{bottom:1034.250000px;}
.y11{bottom:1040.910000px;}
.y10{bottom:1065.030000px;}
.y4f{bottom:1076.370000px;}
.yf{bottom:1089.150000px;}
.ye{bottom:1112.910000px;}
.y39{bottom:1113.270000px;}
.yd{bottom:1137.030000px;}
.y38{bottom:1137.390000px;}
.y3{bottom:1180.080000px;}
.y1{bottom:1193.040000px;}
.y8{bottom:1193.760000px;}
.y7{bottom:1209.060000px;}
.h9{height:5.653125px;}
.h2{height:15.840000px;}
.h5{height:23.760000px;}
.ha{height:28.620000px;}
.h4{height:29.700000px;}
.h11{height:30.960000px;}
.h18{height:30.996000px;}
.h17{height:31.140000px;}
.h16{height:31.176000px;}
.h13{height:41.400000px;}
.h7{height:58.651172px;}
.he{height:59.066719px;}
.hf{height:61.575820px;}
.h14{height:62.261719px;}
.h8{height:65.010937px;}
.h3{height:66.757500px;}
.h12{height:70.628906px;}
.h6{height:70.664062px;}
.h15{height:72.562500px;}
.hb{height:72.846211px;}
.h10{height:82.635820px;}
.hd{height:82.676953px;}
.hc{height:84.898125px;}
.h19{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:86.076000px;}
.wf{width:91.800000px;}
.wb{width:105.516000px;}
.wa{width:105.660000px;}
.w10{width:106.596000px;}
.w8{width:108.180000px;}
.w9{width:114.336000px;}
.w11{width:116.280000px;}
.wc{width:116.316000px;}
.wd{width:116.820000px;}
.w6{width:121.500000px;}
.w7{width:126.216000px;}
.w3{width:221.250000px;}
.w4{width:484.275000px;}
.w2{width:518.145000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x1c{left:7.740000px;}
.x22{left:32.580000px;}
.x24{left:35.820000px;}
.x19{left:42.840000px;}
.x15{left:44.460000px;}
.x17{left:46.620000px;}
.x20{left:48.960000px;}
.x13{left:54.720000px;}
.x7{left:92.700000px;}
.x5{left:127.655987px;}
.xd{left:133.415987px;}
.x1{left:144.036000px;}
.x4{left:149.616000px;}
.xf{left:154.649987px;}
.x1e{left:157.710000px;}
.x27{left:165.269987px;}
.x12{left:168.330000px;}
.xa{left:180.029987px;}
.xc{left:181.649987px;}
.x8{left:211.349987px;}
.x9{left:245.549987px;}
.x1f{left:284.655000px;}
.x14{left:295.275000px;}
.xb{left:354.134987px;}
.xe{left:397.334987px;}
.x21{left:402.375000px;}
.x16{left:404.175000px;}
.x23{left:489.345000px;}
.x10{left:505.364987px;}
.x18{left:519.225000px;}
.x25{left:582.045000px;}
.x3{left:593.205000px;}
.x1a{left:625.605000px;}
.x6{left:659.850000px;}
.x26{left:689.370000px;}
.x1b{left:731.850000px;}
.x11{left:740.129987px;}
.x1d{left:829.259987px;}
@media print{
.v3{vertical-align:-87.040000pt;}
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls19{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.720000pt;}
.ls1f{letter-spacing:-0.666667pt;}
.ls21{letter-spacing:-0.650667pt;}
.ls2d{letter-spacing:-0.613333pt;}
.ls18{letter-spacing:-0.608000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.303467pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.033280pt;}
.ls8{letter-spacing:-0.024960pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.033280pt;}
.ls22{letter-spacing:0.042667pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.105067pt;}
.ls17{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.224640pt;}
.ls1e{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.259200pt;}
.ls13{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.480000pt;}
.ls23{letter-spacing:0.576000pt;}
.ls24{letter-spacing:3.680000pt;}
.ls25{letter-spacing:3.840000pt;}
.ls16{letter-spacing:15.840000pt;}
.ls15{letter-spacing:18.400000pt;}
.ls2c{letter-spacing:18.863360pt;}
.lsc{letter-spacing:19.680000pt;}
.ls28{letter-spacing:20.960000pt;}
.ls29{letter-spacing:24.160000pt;}
.ls2a{letter-spacing:24.800000pt;}
.ls11{letter-spacing:26.080000pt;}
.ls27{letter-spacing:35.040000pt;}
.ls26{letter-spacing:35.680000pt;}
.ls1{letter-spacing:40.266667pt;}
.ls10{letter-spacing:40.800000pt;}
.ls0{letter-spacing:47.840000pt;}
.lse{letter-spacing:49.120000pt;}
.ls5{letter-spacing:88.160000pt;}
.ls3{letter-spacing:545.866667pt;}
.ls2b{letter-spacing:604.778667pt;}
.ws9{word-spacing:-19.040000pt;}
.ws6{word-spacing:-18.979200pt;}
.wsb{word-spacing:-18.825067pt;}
.ws3{word-spacing:-18.753280pt;}
.ws7{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:-18.703360pt;}
.ws2{word-spacing:-18.695040pt;}
.ws13{word-spacing:-18.686720pt;}
.ws8{word-spacing:-18.416533pt;}
.ws15{word-spacing:-18.106667pt;}
.ws14{word-spacing:-18.069333pt;}
.ws12{word-spacing:-18.053333pt;}
.ws4{word-spacing:-18.000000pt;}
.wsa{word-spacing:-17.760000pt;}
.ws10{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.192000pt;}
.wse{word-spacing:-16.064000pt;}
.wsf{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.ws11{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
._1f{margin-left:-5.861333pt;}
._12{margin-left:-4.942080pt;}
._f{margin-left:-3.395200pt;}
._0{margin-left:-1.902933pt;}
._2{margin-left:-0.984320pt;}
._1{width:1.029973pt;}
._7{width:2.478080pt;}
._17{width:3.448320pt;}
._20{width:4.840747pt;}
._28{width:6.319147pt;}
._2e{width:7.340800pt;}
._e{width:8.613120pt;}
._d{width:9.818240pt;}
._c{width:10.888533pt;}
._1e{width:11.947733pt;}
._14{width:13.333973pt;}
._13{width:14.826240pt;}
._27{width:15.774080pt;}
._25{width:17.294933pt;}
._11{width:20.067840pt;}
._10{width:21.238400pt;}
._29{width:22.252373pt;}
._18{width:23.148800pt;}
._19{width:24.270293pt;}
._15{width:25.583360pt;}
._16{width:26.635520pt;}
._1c{width:27.630720pt;}
._2a{width:28.726613pt;}
._1a{width:30.925440pt;}
._9{width:32.108800pt;}
._30{width:33.042347pt;}
._31{width:34.510933pt;}
._37{width:36.096853pt;}
._1b{width:38.413440pt;}
._a{width:39.501227pt;}
._b{width:40.421760pt;}
._6{width:43.141760pt;}
._8{width:44.467840pt;}
._2f{width:45.826347pt;}
._5{width:46.865707pt;}
._26{width:48.700587pt;}
._24{width:49.872427pt;}
._23{width:51.004587pt;}
._32{width:52.416000pt;}
._33{width:53.793067pt;}
._2b{width:70.012800pt;}
._21{width:71.071147pt;}
._22{width:73.756800pt;}
._2c{width:80.245760pt;}
._2d{width:81.206400pt;}
._1d{width:87.997440pt;}
._34{width:97.243520pt;}
._35{width:98.485333pt;}
._3{width:122.907733pt;}
._36{width:151.338667pt;}
._4{width:172.800000pt;}
.fs3{font-size:5.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y2{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:3.680000pt;}
.y6{bottom:5.600000pt;}
.yc{bottom:10.400000pt;}
.y4{bottom:11.680000pt;}
.y3f{bottom:12.640000pt;}
.y50{bottom:12.800000pt;}
.y46{bottom:12.960000pt;}
.y57{bottom:13.000000pt;}
.y44{bottom:13.120000pt;}
.y41{bottom:22.080000pt;}
.yb{bottom:24.640000pt;}
.y5{bottom:32.320000pt;}
.ya{bottom:50.720000pt;}
.y9{bottom:64.160000pt;}
.y4e{bottom:84.160000pt;}
.y37{bottom:87.840000pt;}
.y4d{bottom:105.632000pt;}
.y36{bottom:109.472000pt;}
.y4c{bottom:127.072000pt;}
.y35{bottom:130.912000pt;}
.y4b{bottom:148.506667pt;}
.y34{bottom:152.346667pt;}
.y6f{bottom:168.666667pt;}
.y33{bottom:173.786667pt;}
.y4a{bottom:180.666667pt;}
.y32{bottom:195.226667pt;}
.y49{bottom:198.426667pt;}
.y31{bottom:216.666667pt;}
.y6e{bottom:219.386667pt;}
.y48{bottom:226.586667pt;}
.y30{bottom:238.266667pt;}
.y6d{bottom:251.546667pt;}
.y47{bottom:254.906667pt;}
.y2f{bottom:259.706667pt;}
.y6c{bottom:272.986667pt;}
.y2e{bottom:281.146667pt;}
.y45{bottom:283.226667pt;}
.y6b{bottom:297.786667pt;}
.y2d{bottom:302.586667pt;}
.y43{bottom:311.386667pt;}
.y6a{bottom:322.426667pt;}
.y2c{bottom:324.026667pt;}
.y40{bottom:339.746667pt;}
.y2b{bottom:345.506667pt;}
.y69{bottom:347.106667pt;}
.y2a{bottom:367.106667pt;}
.y68{bottom:371.746667pt;}
.y3e{bottom:377.186667pt;}
.y29{bottom:388.546667pt;}
.y67{bottom:396.546667pt;}
.y28{bottom:409.666667pt;}
.y3d{bottom:409.986667pt;}
.y66{bottom:421.186667pt;}
.y27{bottom:431.426667pt;}
.y65{bottom:445.826667pt;}
.y26{bottom:452.866667pt;}
.y64{bottom:470.626667pt;}
.y25{bottom:474.306667pt;}
.y24{bottom:495.746667pt;}
.y63{bottom:513.506667pt;}
.y23{bottom:517.346667pt;}
.y62{bottom:534.946667pt;}
.y22{bottom:538.786667pt;}
.y61{bottom:556.413333pt;}
.y21{bottom:560.253333pt;}
.y60{bottom:577.853333pt;}
.y20{bottom:581.693333pt;}
.y5f{bottom:599.293333pt;}
.y1f{bottom:603.133333pt;}
.y5e{bottom:620.893333pt;}
.y1e{bottom:624.573333pt;}
.y5d{bottom:642.333333pt;}
.y1d{bottom:645.853333pt;}
.y3c{bottom:646.173333pt;}
.y5c{bottom:663.773333pt;}
.y1c{bottom:667.293333pt;}
.y3b{bottom:667.613333pt;}
.y5b{bottom:685.213333pt;}
.y3a{bottom:689.053333pt;}
.y5a{bottom:706.653333pt;}
.y1b{bottom:710.493333pt;}
.y59{bottom:728.093333pt;}
.y1a{bottom:731.933333pt;}
.y19{bottom:753.373333pt;}
.y58{bottom:760.413333pt;}
.y18{bottom:774.813333pt;}
.y56{bottom:778.013333pt;}
.y17{bottom:796.453333pt;}
.y55{bottom:806.213333pt;}
.y16{bottom:817.893333pt;}
.y54{bottom:834.533333pt;}
.y15{bottom:839.333333pt;}
.y14{bottom:860.773333pt;}
.y53{bottom:862.853333pt;}
.y13{bottom:882.213333pt;}
.y52{bottom:891.013333pt;}
.y12{bottom:903.653333pt;}
.y51{bottom:919.333333pt;}
.y11{bottom:925.253333pt;}
.y10{bottom:946.693333pt;}
.y4f{bottom:956.773333pt;}
.yf{bottom:968.133333pt;}
.ye{bottom:989.253333pt;}
.y39{bottom:989.573333pt;}
.yd{bottom:1010.693333pt;}
.y38{bottom:1011.013333pt;}
.y3{bottom:1048.960000pt;}
.y1{bottom:1060.480000pt;}
.y8{bottom:1061.120000pt;}
.y7{bottom:1074.720000pt;}
.h9{height:5.025000pt;}
.h2{height:14.080000pt;}
.h5{height:21.120000pt;}
.ha{height:25.440000pt;}
.h4{height:26.400000pt;}
.h11{height:27.520000pt;}
.h18{height:27.552000pt;}
.h17{height:27.680000pt;}
.h16{height:27.712000pt;}
.h13{height:36.800000pt;}
.h7{height:52.134375pt;}
.he{height:52.503750pt;}
.hf{height:54.734062pt;}
.h14{height:55.343750pt;}
.h8{height:57.787500pt;}
.h3{height:59.340000pt;}
.h12{height:62.781250pt;}
.h6{height:62.812500pt;}
.h15{height:64.500000pt;}
.hb{height:64.752187pt;}
.h10{height:73.454062pt;}
.hd{height:73.490625pt;}
.hc{height:75.465000pt;}
.h19{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:76.512000pt;}
.wf{width:81.600000pt;}
.wb{width:93.792000pt;}
.wa{width:93.920000pt;}
.w10{width:94.752000pt;}
.w8{width:96.160000pt;}
.w9{width:101.632000pt;}
.w11{width:103.360000pt;}
.wc{width:103.392000pt;}
.wd{width:103.840000pt;}
.w6{width:108.000000pt;}
.w7{width:112.192000pt;}
.w3{width:196.666667pt;}
.w4{width:430.466667pt;}
.w2{width:460.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x1c{left:6.880000pt;}
.x22{left:28.960000pt;}
.x24{left:31.840000pt;}
.x19{left:38.080000pt;}
.x15{left:39.520000pt;}
.x17{left:41.440000pt;}
.x20{left:43.520000pt;}
.x13{left:48.640000pt;}
.x7{left:82.400000pt;}
.x5{left:113.471988pt;}
.xd{left:118.591988pt;}
.x1{left:128.032000pt;}
.x4{left:132.992000pt;}
.xf{left:137.466655pt;}
.x1e{left:140.186667pt;}
.x27{left:146.906655pt;}
.x12{left:149.626667pt;}
.xa{left:160.026655pt;}
.xc{left:161.466655pt;}
.x8{left:187.866655pt;}
.x9{left:218.266655pt;}
.x1f{left:253.026667pt;}
.x14{left:262.466667pt;}
.xb{left:314.786655pt;}
.xe{left:353.186655pt;}
.x21{left:357.666667pt;}
.x16{left:359.266667pt;}
.x23{left:434.973333pt;}
.x10{left:449.213322pt;}
.x18{left:461.533333pt;}
.x25{left:517.373333pt;}
.x3{left:527.293333pt;}
.x1a{left:556.093333pt;}
.x6{left:586.533333pt;}
.x26{left:612.773333pt;}
.x1b{left:650.533333pt;}
.x11{left:657.893322pt;}
.x1d{left:737.119988pt;}
}




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