
    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_5771758ba9c65ed9d9977e52.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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_97aacbd82959f501f32bd360.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_84e3b21dc8d1958dc58c0fe3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9f3a773dbd4a64e020d9cdfa.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_5c761e711e8b95239ac1b30f.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_4ea549b51af697c907fe948e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_01ce8cbd34e42b9a86a59126.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_87cbc623e76e6d63e6e09328.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-0.900000px;}
.ls1a{letter-spacing:-0.428400px;}
.ls16{letter-spacing:-0.378600px;}
.ls28{letter-spacing:-0.360000px;}
.ls2f{letter-spacing:-0.341400px;}
.ls5{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.000001px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.004080px;}
.lse{letter-spacing:0.028080px;}
.ls17{letter-spacing:0.037440px;}
.ls2c{letter-spacing:0.129600px;}
.ls2e{letter-spacing:0.172080px;}
.ls12{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.378600px;}
.ls27{letter-spacing:0.540000px;}
.ls20{letter-spacing:1.980000px;}
.lsa{letter-spacing:2.700000px;}
.ls21{letter-spacing:3.420000px;}
.ls24{letter-spacing:8.460000px;}
.lsd{letter-spacing:9.180000px;}
.ls31{letter-spacing:10.620000px;}
.ls23{letter-spacing:14.940000px;}
.ls25{letter-spacing:15.660000px;}
.ls29{letter-spacing:16.380000px;}
.ls1c{letter-spacing:21.420000px;}
.ls1b{letter-spacing:25.020000px;}
.ls2b{letter-spacing:27.180000px;}
.ls2d{letter-spacing:31.476000px;}
.lsb{letter-spacing:32.220000px;}
.ls22{letter-spacing:36.540000px;}
.lsc{letter-spacing:37.260000px;}
.ls7{letter-spacing:37.980000px;}
.ls2{letter-spacing:42.480000px;}
.ls1f{letter-spacing:43.020000px;}
.ls6{letter-spacing:48.036000px;}
.ls11{letter-spacing:49.500000px;}
.ls1{letter-spacing:50.940000px;}
.ls26{letter-spacing:58.860000px;}
.ls1d{letter-spacing:61.740000px;}
.lsf{letter-spacing:66.060000px;}
.ls2a{letter-spacing:75.420000px;}
.ls8{letter-spacing:77.580000px;}
.ls18{letter-spacing:79.020000px;}
.ls9{letter-spacing:99.360000px;}
.ls1e{letter-spacing:171.180000px;}
.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:-24.300000px;}
.wsa{word-spacing:-21.438600px;}
.ws5{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws9{word-spacing:-20.718600px;}
.ws7{word-spacing:-20.700000px;}
.ws6{word-spacing:-20.631600px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.712000px;}
.ws8{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._45{margin-left:-20.496000px;}
._42{margin-left:-9.018720px;}
._40{margin-left:-5.812560px;}
._a{margin-left:-4.401120px;}
._9{margin-left:-3.137520px;}
._2{margin-left:-1.158720px;}
._1{width:1.104000px;}
._0{width:2.208000px;}
._2c{width:3.258720px;}
._17{width:4.278480px;}
._27{width:5.323200px;}
._26{width:6.702480px;}
._1b{width:7.796640px;}
._19{width:9.414240px;}
._1a{width:10.549440px;}
._32{width:11.769360px;}
._2b{width:12.808080px;}
._24{width:14.405040px;}
._11{width:15.627360px;}
._10{width:16.932240px;}
._33{width:18.008400px;}
._2f{width:19.038240px;}
._23{width:22.302960px;}
._2e{width:23.755680px;}
._37{width:25.041600px;}
._15{width:26.198640px;}
._16{width:27.252480px;}
._14{width:29.100480px;}
._12{width:30.242160px;}
._13{width:31.926960px;}
._25{width:33.190560px;}
._1f{width:34.208880px;}
._1e{width:35.315280px;}
._20{width:36.534000px;}
._c{width:38.392800px;}
._d{width:39.979680px;}
._3{width:41.268240px;}
._6{width:42.288480px;}
._3b{width:44.251440px;}
._3a{width:45.317760px;}
._38{width:46.515360px;}
._b{width:47.651760px;}
._2d{width:49.534800px;}
._4{width:50.965200px;}
._5{width:52.331280px;}
._30{width:56.693520px;}
._31{width:57.952800px;}
._3d{width:59.372880px;}
._34{width:60.884880px;}
._36{width:62.148480px;}
._35{width:63.159360px;}
._29{width:65.044080px;}
._28{width:66.064080px;}
._21{width:68.065920px;}
._22{width:69.229200px;}
._39{width:71.871600px;}
._1c{width:75.142080px;}
._e{width:77.248080px;}
._18{width:78.848640px;}
._1d{width:80.617680px;}
._8{width:82.281840px;}
._7{width:83.545440px;}
._3c{width:92.285760px;}
._43{width:93.674880px;}
._44{width:94.833600px;}
._f{width:98.645040px;}
._46{width:103.089120px;}
._3e{width:104.942400px;}
._41{width:122.464320px;}
._2a{width:131.646480px;}
._47{width:142.968480px;}
._3f{width:435.554640px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.ya{bottom:5.220000px;}
.y9{bottom:7.380000px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y2{bottom:24.660000px;}
.y8{bottom:44.640000px;}
.y3b{bottom:88.236000px;}
.y3e{bottom:93.456000px;}
.y31{bottom:95.256000px;}
.y3a{bottom:105.336000px;}
.y3d{bottom:106.776000px;}
.y39{bottom:110.556000px;}
.y38{bottom:122.616000px;}
.y30{bottom:122.976000px;}
.y6b{bottom:123.876000px;}
.y46{bottom:127.836000px;}
.y45{bottom:141.156000px;}
.y2f{bottom:150.870000px;}
.y37{bottom:153.210000px;}
.y6a{bottom:173.190000px;}
.y44{bottom:174.990000px;}
.y36{bottom:177.330000px;}
.y2e{bottom:178.590000px;}
.y35{bottom:182.550000px;}
.y69{bottom:200.910000px;}
.y34{bottom:201.450000px;}
.y43{bottom:202.710000px;}
.y2d{bottom:206.310000px;}
.y68{bottom:228.630000px;}
.y42{bottom:230.790000px;}
.y2c{bottom:234.030000px;}
.y67{bottom:256.350000px;}
.y41{bottom:260.130000px;}
.y2b{bottom:261.930000px;}
.y66{bottom:284.250000px;}
.y40{bottom:288.210000px;}
.y2a{bottom:289.650000px;}
.y65{bottom:311.970000px;}
.y29{bottom:317.370000px;}
.y64{bottom:339.735000px;}
.y28{bottom:345.135000px;}
.y63{bottom:367.455000px;}
.y27{bottom:373.035000px;}
.y3c{bottom:380.595000px;}
.y62{bottom:395.355000px;}
.y26{bottom:400.755000px;}
.y61{bottom:423.075000px;}
.y25{bottom:428.475000px;}
.y60{bottom:450.795000px;}
.y24{bottom:456.375000px;}
.y5f{bottom:478.695000px;}
.y23{bottom:484.095000px;}
.y3f{bottom:491.655000px;}
.y5e{bottom:506.415000px;}
.y22{bottom:511.815000px;}
.y5d{bottom:534.135000px;}
.y21{bottom:539.535000px;}
.y5c{bottom:561.855000px;}
.y20{bottom:567.435000px;}
.y5b{bottom:589.755000px;}
.y1f{bottom:595.155000px;}
.y5a{bottom:617.505000px;}
.y1e{bottom:622.905000px;}
.y59{bottom:645.225000px;}
.y1d{bottom:650.805000px;}
.y58{bottom:673.125000px;}
.y1c{bottom:678.525000px;}
.y57{bottom:700.845000px;}
.y1b{bottom:706.245000px;}
.y56{bottom:728.565000px;}
.y1a{bottom:733.965000px;}
.y33{bottom:741.525000px;}
.y55{bottom:756.285000px;}
.y19{bottom:761.865000px;}
.y54{bottom:784.185000px;}
.y18{bottom:789.585000px;}
.y53{bottom:811.905000px;}
.y17{bottom:817.305000px;}
.y52{bottom:839.625000px;}
.y16{bottom:845.025000px;}
.y51{bottom:867.525000px;}
.y15{bottom:872.970000px;}
.y50{bottom:895.290000px;}
.y14{bottom:900.690000px;}
.y4f{bottom:923.010000px;}
.y13{bottom:928.410000px;}
.y4e{bottom:950.730000px;}
.y12{bottom:956.310000px;}
.y4d{bottom:978.630000px;}
.y11{bottom:984.030000px;}
.y4c{bottom:1006.350000px;}
.y10{bottom:1011.750000px;}
.y4b{bottom:1034.070000px;}
.yf{bottom:1039.470000px;}
.y49{bottom:1062.330000px;}
.ye{bottom:1067.370000px;}
.y4a{bottom:1069.890000px;}
.y48{bottom:1091.850000px;}
.yd{bottom:1095.090000px;}
.y32{bottom:1102.650000px;}
.y47{bottom:1121.370000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h7{height:27.576000px;}
.h10{height:38.158594px;}
.h2{height:41.400000px;}
.hf{height:52.998047px;}
.h4{height:53.709961px;}
.h11{height:58.651172px;}
.h6{height:66.757500px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hc{height:72.846211px;}
.he{height:74.244727px;}
.hd{height:82.635820px;}
.ha{height:82.676953px;}
.hb{height:84.898125px;}
.h12{height:86.585445px;}
.h9{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w7{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.xa{left:13.860000px;}
.x8{left:17.460000px;}
.x1{left:31.860000px;}
.x2{left:44.460000px;}
.x5{left:59.970000px;}
.x7{left:84.959987px;}
.x26{left:89.855987px;}
.xb{left:110.735987px;}
.x1a{left:124.235987px;}
.x14{left:127.475987px;}
.x16{left:132.875987px;}
.xc{left:135.755987px;}
.x19{left:149.795987px;}
.x15{left:151.589987px;}
.x18{left:178.769987px;}
.xf{left:232.949987px;}
.x12{left:248.429987px;}
.x11{left:250.049987px;}
.x1c{left:255.629987px;}
.x10{left:259.409987px;}
.x1e{left:264.809987px;}
.x17{left:270.389987px;}
.x1f{left:272.369987px;}
.x1d{left:286.274987px;}
.x25{left:301.034987px;}
.x27{left:303.734973px;}
.x28{left:310.574987px;}
.xd{left:368.354987px;}
.x13{left:375.914987px;}
.x1b{left:384.554987px;}
.x20{left:389.234987px;}
.xe{left:446.474987px;}
.x23{left:450.794973px;}
.x24{left:457.634987px;}
.x3{left:521.205000px;}
.x29{left:643.604973px;}
.x2a{left:650.444987px;}
.x21{left:681.989973px;}
.x22{left:688.829987px;}
.x2b{left:741.749973px;}
.x2c{left:748.589987px;}
.x4{left:792.690000px;}
.x9{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.800000pt;}
.ls1a{letter-spacing:-0.380800pt;}
.ls16{letter-spacing:-0.336533pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls2f{letter-spacing:-0.303467pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.000001pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.003627pt;}
.lse{letter-spacing:0.024960pt;}
.ls17{letter-spacing:0.033280pt;}
.ls2c{letter-spacing:0.115200pt;}
.ls2e{letter-spacing:0.152960pt;}
.ls12{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.336533pt;}
.ls27{letter-spacing:0.480000pt;}
.ls20{letter-spacing:1.760000pt;}
.lsa{letter-spacing:2.400000pt;}
.ls21{letter-spacing:3.040000pt;}
.ls24{letter-spacing:7.520000pt;}
.lsd{letter-spacing:8.160000pt;}
.ls31{letter-spacing:9.440000pt;}
.ls23{letter-spacing:13.280000pt;}
.ls25{letter-spacing:13.920000pt;}
.ls29{letter-spacing:14.560000pt;}
.ls1c{letter-spacing:19.040000pt;}
.ls1b{letter-spacing:22.240000pt;}
.ls2b{letter-spacing:24.160000pt;}
.ls2d{letter-spacing:27.978667pt;}
.lsb{letter-spacing:28.640000pt;}
.ls22{letter-spacing:32.480000pt;}
.lsc{letter-spacing:33.120000pt;}
.ls7{letter-spacing:33.760000pt;}
.ls2{letter-spacing:37.760000pt;}
.ls1f{letter-spacing:38.240000pt;}
.ls6{letter-spacing:42.698667pt;}
.ls11{letter-spacing:44.000000pt;}
.ls1{letter-spacing:45.280000pt;}
.ls26{letter-spacing:52.320000pt;}
.ls1d{letter-spacing:54.880000pt;}
.lsf{letter-spacing:58.720000pt;}
.ls2a{letter-spacing:67.040000pt;}
.ls8{letter-spacing:68.960000pt;}
.ls18{letter-spacing:70.240000pt;}
.ls9{letter-spacing:88.320000pt;}
.ls1e{letter-spacing:152.160000pt;}
.ws2{word-spacing:-21.600000pt;}
.wsa{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.416533pt;}
.ws7{word-spacing:-18.400000pt;}
.ws6{word-spacing:-18.339200pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._45{margin-left:-18.218667pt;}
._42{margin-left:-8.016640pt;}
._40{margin-left:-5.166720pt;}
._a{margin-left:-3.912107pt;}
._9{margin-left:-2.788907pt;}
._2{margin-left:-1.029973pt;}
._1{width:0.981333pt;}
._0{width:1.962667pt;}
._2c{width:2.896640pt;}
._17{width:3.803093pt;}
._27{width:4.731733pt;}
._26{width:5.957760pt;}
._1b{width:6.930347pt;}
._19{width:8.368213pt;}
._1a{width:9.377280pt;}
._32{width:10.461653pt;}
._2b{width:11.384960pt;}
._24{width:12.804480pt;}
._11{width:13.890987pt;}
._10{width:15.050880pt;}
._33{width:16.007467pt;}
._2f{width:16.922880pt;}
._23{width:19.824853pt;}
._2e{width:21.116160pt;}
._37{width:22.259200pt;}
._15{width:23.287680pt;}
._16{width:24.224427pt;}
._14{width:25.867093pt;}
._12{width:26.881920pt;}
._13{width:28.379520pt;}
._25{width:29.502720pt;}
._1f{width:30.407893pt;}
._1e{width:31.391360pt;}
._20{width:32.474667pt;}
._c{width:34.126933pt;}
._d{width:35.537493pt;}
._3{width:36.682880pt;}
._6{width:37.589760pt;}
._3b{width:39.334613pt;}
._3a{width:40.282453pt;}
._38{width:41.346987pt;}
._b{width:42.357120pt;}
._2d{width:44.030933pt;}
._4{width:45.302400pt;}
._5{width:46.516693pt;}
._30{width:50.394240pt;}
._31{width:51.513600pt;}
._3d{width:52.775893pt;}
._34{width:54.119893pt;}
._36{width:55.243093pt;}
._35{width:56.141653pt;}
._29{width:57.816960pt;}
._28{width:58.723627pt;}
._21{width:60.503040pt;}
._22{width:61.537067pt;}
._39{width:63.885867pt;}
._1c{width:66.792960pt;}
._e{width:68.664960pt;}
._18{width:70.087680pt;}
._1d{width:71.660160pt;}
._8{width:73.139413pt;}
._7{width:74.262613pt;}
._3c{width:82.031787pt;}
._43{width:83.266560pt;}
._44{width:84.296533pt;}
._f{width:87.684480pt;}
._46{width:91.634773pt;}
._3e{width:93.282133pt;}
._41{width:108.857173pt;}
._2a{width:117.019093pt;}
._47{width:127.083093pt;}
._3f{width:387.159680pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.ya{bottom:4.640000pt;}
.y9{bottom:6.560000pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y2{bottom:21.920000pt;}
.y8{bottom:39.680000pt;}
.y3b{bottom:78.432000pt;}
.y3e{bottom:83.072000pt;}
.y31{bottom:84.672000pt;}
.y3a{bottom:93.632000pt;}
.y3d{bottom:94.912000pt;}
.y39{bottom:98.272000pt;}
.y38{bottom:108.992000pt;}
.y30{bottom:109.312000pt;}
.y6b{bottom:110.112000pt;}
.y46{bottom:113.632000pt;}
.y45{bottom:125.472000pt;}
.y2f{bottom:134.106667pt;}
.y37{bottom:136.186667pt;}
.y6a{bottom:153.946667pt;}
.y44{bottom:155.546667pt;}
.y36{bottom:157.626667pt;}
.y2e{bottom:158.746667pt;}
.y35{bottom:162.266667pt;}
.y69{bottom:178.586667pt;}
.y34{bottom:179.066667pt;}
.y43{bottom:180.186667pt;}
.y2d{bottom:183.386667pt;}
.y68{bottom:203.226667pt;}
.y42{bottom:205.146667pt;}
.y2c{bottom:208.026667pt;}
.y67{bottom:227.866667pt;}
.y41{bottom:231.226667pt;}
.y2b{bottom:232.826667pt;}
.y66{bottom:252.666667pt;}
.y40{bottom:256.186667pt;}
.y2a{bottom:257.466667pt;}
.y65{bottom:277.306667pt;}
.y29{bottom:282.106667pt;}
.y64{bottom:301.986667pt;}
.y28{bottom:306.786667pt;}
.y63{bottom:326.626667pt;}
.y27{bottom:331.586667pt;}
.y3c{bottom:338.306667pt;}
.y62{bottom:351.426667pt;}
.y26{bottom:356.226667pt;}
.y61{bottom:376.066667pt;}
.y25{bottom:380.866667pt;}
.y60{bottom:400.706667pt;}
.y24{bottom:405.666667pt;}
.y5f{bottom:425.506667pt;}
.y23{bottom:430.306667pt;}
.y3f{bottom:437.026667pt;}
.y5e{bottom:450.146667pt;}
.y22{bottom:454.946667pt;}
.y5d{bottom:474.786667pt;}
.y21{bottom:479.586667pt;}
.y5c{bottom:499.426667pt;}
.y20{bottom:504.386667pt;}
.y5b{bottom:524.226667pt;}
.y1f{bottom:529.026667pt;}
.y5a{bottom:548.893333pt;}
.y1e{bottom:553.693333pt;}
.y59{bottom:573.533333pt;}
.y1d{bottom:578.493333pt;}
.y58{bottom:598.333333pt;}
.y1c{bottom:603.133333pt;}
.y57{bottom:622.973333pt;}
.y1b{bottom:627.773333pt;}
.y56{bottom:647.613333pt;}
.y1a{bottom:652.413333pt;}
.y33{bottom:659.133333pt;}
.y55{bottom:672.253333pt;}
.y19{bottom:677.213333pt;}
.y54{bottom:697.053333pt;}
.y18{bottom:701.853333pt;}
.y53{bottom:721.693333pt;}
.y17{bottom:726.493333pt;}
.y52{bottom:746.333333pt;}
.y16{bottom:751.133333pt;}
.y51{bottom:771.133333pt;}
.y15{bottom:775.973333pt;}
.y50{bottom:795.813333pt;}
.y14{bottom:800.613333pt;}
.y4f{bottom:820.453333pt;}
.y13{bottom:825.253333pt;}
.y4e{bottom:845.093333pt;}
.y12{bottom:850.053333pt;}
.y4d{bottom:869.893333pt;}
.y11{bottom:874.693333pt;}
.y4c{bottom:894.533333pt;}
.y10{bottom:899.333333pt;}
.y4b{bottom:919.173333pt;}
.yf{bottom:923.973333pt;}
.y49{bottom:944.293333pt;}
.ye{bottom:948.773333pt;}
.y4a{bottom:951.013333pt;}
.y48{bottom:970.533333pt;}
.yd{bottom:973.413333pt;}
.y32{bottom:980.133333pt;}
.y47{bottom:996.773333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h7{height:24.512000pt;}
.h10{height:33.918750pt;}
.h2{height:36.800000pt;}
.hf{height:47.109375pt;}
.h4{height:47.742188pt;}
.h11{height:52.134375pt;}
.h6{height:59.340000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hc{height:64.752187pt;}
.he{height:65.995312pt;}
.hd{height:73.454062pt;}
.ha{height:73.490625pt;}
.hb{height:75.465000pt;}
.h12{height:76.964840pt;}
.h9{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w7{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.xa{left:12.320000pt;}
.x8{left:15.520000pt;}
.x1{left:28.320000pt;}
.x2{left:39.520000pt;}
.x5{left:53.306667pt;}
.x7{left:75.519988pt;}
.x26{left:79.871988pt;}
.xb{left:98.431988pt;}
.x1a{left:110.431988pt;}
.x14{left:113.311988pt;}
.x16{left:118.111988pt;}
.xc{left:120.671988pt;}
.x19{left:133.151988pt;}
.x15{left:134.746655pt;}
.x18{left:158.906655pt;}
.xf{left:207.066655pt;}
.x12{left:220.826655pt;}
.x11{left:222.266655pt;}
.x1c{left:227.226655pt;}
.x10{left:230.586655pt;}
.x1e{left:235.386655pt;}
.x17{left:240.346655pt;}
.x1f{left:242.106655pt;}
.x1d{left:254.466655pt;}
.x25{left:267.586655pt;}
.x27{left:269.986643pt;}
.x28{left:276.066655pt;}
.xd{left:327.426655pt;}
.x13{left:334.146655pt;}
.x1b{left:341.826655pt;}
.x20{left:345.986655pt;}
.xe{left:396.866655pt;}
.x23{left:400.706643pt;}
.x24{left:406.786655pt;}
.x3{left:463.293333pt;}
.x29{left:572.093310pt;}
.x2a{left:578.173322pt;}
.x21{left:606.213310pt;}
.x22{left:612.293322pt;}
.x2b{left:659.333310pt;}
.x2c{left:665.413322pt;}
.x4{left:704.613333pt;}
.x9{left:708.933333pt;}
}




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