
    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_806d06ac4087279e7271c156.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c29b237a1fca48b376219823.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a308b8c989d7f449aa790471.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_016241aedb088c7c7da02447.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_88f747eefc550e05fda35ca5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897461;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_45bf79ef4c3fbf04a186311f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.900000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:0.000000px;}
._21{margin-left:-5.228640px;}
._3{margin-left:-4.176000px;}
._4{margin-left:-2.664000px;}
._2{margin-left:-1.179360px;}
._0{width:1.075680px;}
._1{width:2.766480px;}
._d{width:3.888000px;}
._6{width:5.040000px;}
._f{width:6.147360px;}
._a{width:7.272000px;}
._e{width:8.424000px;}
._8{width:10.152000px;}
._9{width:11.232000px;}
._11{width:12.424320px;}
._1e{width:13.531680px;}
._5{width:14.544000px;}
._12{width:15.683040px;}
._10{width:16.848000px;}
._7{width:19.080000px;}
._b{width:20.880000px;}
._c{width:22.032000px;}
._1b{width:23.688000px;}
._15{width:25.632000px;}
._16{width:27.432000px;}
._17{width:28.584960px;}
._1d{width:30.761280px;}
._1c{width:31.923360px;}
._22{width:33.462720px;}
._1a{width:34.632000px;}
._18{width:35.856000px;}
._19{width:37.064640px;}
._13{width:38.952000px;}
._14{width:40.215360px;}
._1f{width:61.200000px;}
._20{width:62.496000px;}
._23{width:63.648000px;}
._24{width:65.532000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.160000px;}
.y151{bottom:113.796000px;}
.y28{bottom:115.416000px;}
.y54{bottom:115.776000px;}
.y112{bottom:121.356000px;}
.y137{bottom:122.436000px;}
.ye6{bottom:124.596000px;}
.yd6{bottom:130.176000px;}
.yb8{bottom:131.616000px;}
.y150{bottom:134.496000px;}
.yf2{bottom:135.216000px;}
.y27{bottom:136.116000px;}
.y53{bottom:136.476000px;}
.y111{bottom:142.056000px;}
.y136{bottom:143.136000px;}
.ye5{bottom:145.296000px;}
.yd5{bottom:150.870000px;}
.yb7{bottom:152.310000px;}
.y14f{bottom:155.190000px;}
.yf1{bottom:155.910000px;}
.y26{bottom:156.810000px;}
.y52{bottom:157.170000px;}
.y7f{bottom:160.230000px;}
.y110{bottom:162.750000px;}
.y135{bottom:163.830000px;}
.ye4{bottom:165.990000px;}
.yd4{bottom:171.570000px;}
.yb6{bottom:173.010000px;}
.y14e{bottom:175.890000px;}
.yf0{bottom:176.610000px;}
.y51{bottom:177.870000px;}
.y7e{bottom:180.930000px;}
.y10f{bottom:183.450000px;}
.ye3{bottom:186.690000px;}
.yb5{bottom:193.710000px;}
.y25{bottom:195.510000px;}
.yef{bottom:197.310000px;}
.y50{bottom:198.570000px;}
.y134{bottom:199.650000px;}
.y7d{bottom:201.630000px;}
.y10e{bottom:204.150000px;}
.yd3{bottom:207.390000px;}
.y14d{bottom:211.530000px;}
.yb4{bottom:214.410000px;}
.y24{bottom:216.210000px;}
.y133{bottom:220.350000px;}
.y7c{bottom:222.330000px;}
.yd2{bottom:228.090000px;}
.yee{bottom:232.950000px;}
.y4f{bottom:234.390000px;}
.yb3{bottom:235.110000px;}
.y23{bottom:236.910000px;}
.y10d{bottom:240.150000px;}
.y132{bottom:241.050000px;}
.y7b{bottom:243.030000px;}
.y14c{bottom:247.170000px;}
.yd1{bottom:248.790000px;}
.yed{bottom:253.650000px;}
.y4e{bottom:255.090000px;}
.y22{bottom:257.610000px;}
.y131{bottom:261.750000px;}
.y7a{bottom:263.730000px;}
.yd0{bottom:269.490000px;}
.yb2{bottom:270.750000px;}
.yec{bottom:274.350000px;}
.y4d{bottom:275.790000px;}
.y21{bottom:278.310000px;}
.y130{bottom:282.450000px;}
.y14b{bottom:282.810000px;}
.y10c{bottom:283.350000px;}
.y95{bottom:284.430000px;}
.ycf{bottom:290.190000px;}
.yb1{bottom:291.450000px;}
.yeb{bottom:295.050000px;}
.y4c{bottom:296.490000px;}
.y20{bottom:299.010000px;}
.y79{bottom:299.370000px;}
.yab{bottom:302.970000px;}
.y12f{bottom:303.150000px;}
.y10b{bottom:304.050000px;}
.y94{bottom:305.130000px;}
.yce{bottom:310.890000px;}
.yb0{bottom:312.150000px;}
.yea{bottom:315.750000px;}
.y4b{bottom:317.190000px;}
.y14a{bottom:318.630000px;}
.y1f{bottom:319.710000px;}
.y78{bottom:320.070000px;}
.y12e{bottom:323.850000px;}
.y10a{bottom:324.750000px;}
.y93{bottom:325.830000px;}
.yaf{bottom:332.850000px;}
.ye9{bottom:336.495000px;}
.y4a{bottom:337.935000px;}
.y149{bottom:339.375000px;}
.y1e{bottom:340.455000px;}
.y77{bottom:340.815000px;}
.y12d{bottom:344.595000px;}
.y109{bottom:345.495000px;}
.y92{bottom:346.575000px;}
.yaa{bottom:353.595000px;}
.ye8{bottom:357.195000px;}
.y49{bottom:358.635000px;}
.y1d{bottom:361.155000px;}
.y76{bottom:361.515000px;}
.y108{bottom:366.195000px;}
.ycd{bottom:367.275000px;}
.ya9{bottom:374.295000px;}
.y148{bottom:375.015000px;}
.y12c{bottom:380.235000px;}
.y1c{bottom:381.855000px;}
.y75{bottom:382.215000px;}
.ycc{bottom:387.975000px;}
.ye7{bottom:393.195000px;}
.y48{bottom:394.275000px;}
.ya8{bottom:394.995000px;}
.y12b{bottom:400.935000px;}
.y107{bottom:401.835000px;}
.y1b{bottom:402.555000px;}
.y74{bottom:402.915000px;}
.ycb{bottom:408.675000px;}
.y147{bottom:410.655000px;}
.y47{bottom:414.975000px;}
.ya7{bottom:415.695000px;}
.y12a{bottom:421.635000px;}
.y106{bottom:422.535000px;}
.y1a{bottom:423.255000px;}
.y73{bottom:423.615000px;}
.ye2{bottom:427.215000px;}
.yca{bottom:429.375000px;}
.y46{bottom:435.675000px;}
.ya6{bottom:436.395000px;}
.y129{bottom:442.335000px;}
.y105{bottom:443.235000px;}
.y19{bottom:443.955000px;}
.y72{bottom:444.315000px;}
.y146{bottom:446.475000px;}
.yc9{bottom:450.075000px;}
.y45{bottom:456.375000px;}
.ya5{bottom:457.095000px;}
.y128{bottom:463.035000px;}
.y104{bottom:463.935000px;}
.y18{bottom:464.655000px;}
.y71{bottom:465.015000px;}
.yc8{bottom:470.775000px;}
.ya4{bottom:477.795000px;}
.y145{bottom:482.115000px;}
.y127{bottom:483.735000px;}
.y103{bottom:484.635000px;}
.y17{bottom:485.355000px;}
.y70{bottom:485.715000px;}
.yc7{bottom:491.475000px;}
.y44{bottom:492.015000px;}
.yae{bottom:492.735000px;}
.ye1{bottom:498.495000px;}
.y144{bottom:502.815000px;}
.y126{bottom:504.435000px;}
.y102{bottom:505.335000px;}
.y16{bottom:506.055000px;}
.y6f{bottom:506.415000px;}
.y43{bottom:512.715000px;}
.ya3{bottom:513.435000px;}
.ye0{bottom:519.195000px;}
.y101{bottom:526.035000px;}
.y15{bottom:526.755000px;}
.y6e{bottom:527.115000px;}
.y42{bottom:533.415000px;}
.ya2{bottom:534.135000px;}
.y143{bottom:538.455000px;}
.ydf{bottom:539.895000px;}
.y125{bottom:540.075000px;}
.y91{bottom:542.055000px;}
.y14{bottom:547.455000px;}
.y6d{bottom:547.815000px;}
.y162{bottom:552.675000px;}
.y41{bottom:554.115000px;}
.ya1{bottom:554.835000px;}
.yde{bottom:560.595000px;}
.y124{bottom:560.775000px;}
.y100{bottom:561.855000px;}
.y90{bottom:562.755000px;}
.y13{bottom:568.155000px;}
.yc6{bottom:568.515000px;}
.y161{bottom:573.375000px;}
.y142{bottom:574.275000px;}
.y40{bottom:574.815000px;}
.ya0{bottom:575.535000px;}
.ydd{bottom:581.295000px;}
.y123{bottom:581.475000px;}
.y6c{bottom:583.455000px;}
.y12{bottom:588.675000px;}
.yc5{bottom:589.215000px;}
.y141{bottom:594.975000px;}
.y3f{bottom:595.515000px;}
.y9f{bottom:596.235000px;}
.y122{bottom:602.175000px;}
.y6b{bottom:604.185000px;}
.yff{bottom:605.265000px;}
.y160{bottom:605.985000px;}
.y11{bottom:609.405000px;}
.yc4{bottom:609.945000px;}
.y140{bottom:615.705000px;}
.y9e{bottom:616.965000px;}
.y121{bottom:622.905000px;}
.y6a{bottom:624.885000px;}
.yfe{bottom:625.965000px;}
.y15f{bottom:626.685000px;}
.y10{bottom:630.105000px;}
.yc3{bottom:630.645000px;}
.y3e{bottom:631.185000px;}
.yad{bottom:632.085000px;}
.ydc{bottom:637.665000px;}
.y69{bottom:645.585000px;}
.yfd{bottom:646.665000px;}
.yf{bottom:650.805000px;}
.y13f{bottom:651.345000px;}
.y3d{bottom:651.885000px;}
.y9d{bottom:652.785000px;}
.ydb{bottom:658.365000px;}
.y15e{bottom:659.445000px;}
.y120{bottom:662.145000px;}
.y8f{bottom:664.125000px;}
.y68{bottom:666.285000px;}
.yfc{bottom:667.365000px;}
.ye{bottom:671.505000px;}
.y3c{bottom:672.585000px;}
.y9c{bottom:673.485000px;}
.yda{bottom:679.065000px;}
.y15d{bottom:680.145000px;}
.y67{bottom:686.985000px;}
.y13e{bottom:690.585000px;}
.yd{bottom:692.205000px;}
.y3b{bottom:693.285000px;}
.y9b{bottom:694.185000px;}
.yd9{bottom:699.765000px;}
.yfb{bottom:703.005000px;}
.y66{bottom:707.685000px;}
.y11f{bottom:712.725000px;}
.yc{bottom:712.905000px;}
.y3a{bottom:713.985000px;}
.y8e{bottom:714.885000px;}
.yd8{bottom:720.465000px;}
.yfa{bottom:723.705000px;}
.yc2{bottom:728.385000px;}
.y11e{bottom:733.425000px;}
.yb{bottom:733.605000px;}
.y39{bottom:734.685000px;}
.y8d{bottom:735.585000px;}
.y13d{bottom:741.165000px;}
.y65{bottom:743.505000px;}
.yf9{bottom:744.405000px;}
.yc1{bottom:749.085000px;}
.y11d{bottom:754.125000px;}
.y38{bottom:755.385000px;}
.yd7{bottom:756.105000px;}
.y8c{bottom:756.285000px;}
.y13c{bottom:761.865000px;}
.y64{bottom:764.205000px;}
.yf8{bottom:765.105000px;}
.y15c{bottom:766.185000px;}
.ya{bottom:773.025000px;}
.y11c{bottom:774.825000px;}
.y8b{bottom:776.805000px;}
.y13b{bottom:782.565000px;}
.y63{bottom:784.905000px;}
.yf7{bottom:785.805000px;}
.y15b{bottom:786.885000px;}
.yc0{bottom:788.325000px;}
.y37{bottom:791.205000px;}
.y11b{bottom:795.525000px;}
.y8a{bottom:797.505000px;}
.y13a{bottom:803.265000px;}
.y62{bottom:805.605000px;}
.yf6{bottom:806.505000px;}
.y36{bottom:811.905000px;}
.y9a{bottom:812.625000px;}
.y11a{bottom:816.225000px;}
.y89{bottom:818.205000px;}
.y15a{bottom:819.645000px;}
.y139{bottom:823.965000px;}
.y61{bottom:826.305000px;}
.y9{bottom:832.605000px;}
.y99{bottom:833.325000px;}
.y88{bottom:838.905000px;}
.y159{bottom:840.345000px;}
.yf5{bottom:842.325000px;}
.y138{bottom:844.665000px;}
.y60{bottom:847.005000px;}
.y119{bottom:852.045000px;}
.y35{bottom:853.305000px;}
.y98{bottom:854.025000px;}
.y87{bottom:859.605000px;}
.y5f{bottom:867.705000px;}
.y118{bottom:872.790000px;}
.y158{bottom:873.150000px;}
.y34{bottom:874.050000px;}
.y97{bottom:874.770000px;}
.ybf{bottom:880.350000px;}
.yf4{bottom:886.110000px;}
.y8{bottom:889.350000px;}
.y117{bottom:893.490000px;}
.y33{bottom:894.750000px;}
.y86{bottom:895.470000px;}
.ybe{bottom:901.050000px;}
.y5e{bottom:903.390000px;}
.y157{bottom:905.730000px;}
.y116{bottom:914.190000px;}
.y32{bottom:915.450000px;}
.y85{bottom:916.170000px;}
.ybd{bottom:921.750000px;}
.y5d{bottom:924.090000px;}
.y115{bottom:934.890000px;}
.y31{bottom:936.150000px;}
.y84{bottom:936.870000px;}
.y156{bottom:938.490000px;}
.ybc{bottom:942.450000px;}
.y5c{bottom:944.790000px;}
.y7{bottom:946.050000px;}
.y114{bottom:955.410000px;}
.y30{bottom:956.850000px;}
.y83{bottom:957.570000px;}
.y5b{bottom:965.490000px;}
.y155{bottom:971.250000px;}
.y82{bottom:978.270000px;}
.y113{bottom:991.410000px;}
.y154{bottom:991.950000px;}
.y2f{bottom:992.490000px;}
.y96{bottom:993.210000px;}
.yac{bottom:998.970000px;}
.y6{bottom:1002.750000px;}
.y5a{bottom:1004.730000px;}
.y2e{bottom:1013.190000px;}
.y81{bottom:1013.910000px;}
.ybb{bottom:1019.670000px;}
.y153{bottom:1031.010000px;}
.y5{bottom:1032.450000px;}
.y2d{bottom:1033.890000px;}
.y80{bottom:1034.610000px;}
.yba{bottom:1040.370000px;}
.y2c{bottom:1054.590000px;}
.y59{bottom:1055.310000px;}
.yb9{bottom:1061.070000px;}
.y2b{bottom:1075.290000px;}
.y58{bottom:1076.010000px;}
.yf3{bottom:1081.770000px;}
.y4{bottom:1089.690000px;}
.y2a{bottom:1095.990000px;}
.y57{bottom:1096.710000px;}
.y152{bottom:1102.470000px;}
.y56{bottom:1117.410000px;}
.y3{bottom:1132.530000px;}
.y29{bottom:1135.230000px;}
.y55{bottom:1138.140000px;}
.y1{bottom:1195.740000px;}
.h2{height:50.273438px;}
.h6{height:50.800781px;}
.h7{height:54.864844px;}
.h5{height:59.343750px;}
.h4{height:59.436914px;}
.h3{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:108.035987px;}
.x3{left:139.715987px;}
.xa{left:162.029987px;}
.x4{left:210.629987px;}
.x7{left:297.254987px;}
.x6{left:336.314987px;}
.x5{left:401.294987px;}
.x9{left:439.094987px;}
.x2{left:442.694987px;}
.x1{left:586.724987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.800000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:0.000000pt;}
._21{margin-left:-4.647680pt;}
._3{margin-left:-3.712000pt;}
._4{margin-left:-2.368000pt;}
._2{margin-left:-1.048320pt;}
._0{width:0.956160pt;}
._1{width:2.459093pt;}
._d{width:3.456000pt;}
._6{width:4.480000pt;}
._f{width:5.464320pt;}
._a{width:6.464000pt;}
._e{width:7.488000pt;}
._8{width:9.024000pt;}
._9{width:9.984000pt;}
._11{width:11.043840pt;}
._1e{width:12.028160pt;}
._5{width:12.928000pt;}
._12{width:13.940480pt;}
._10{width:14.976000pt;}
._7{width:16.960000pt;}
._b{width:18.560000pt;}
._c{width:19.584000pt;}
._1b{width:21.056000pt;}
._15{width:22.784000pt;}
._16{width:24.384000pt;}
._17{width:25.408853pt;}
._1d{width:27.343360pt;}
._1c{width:28.376320pt;}
._22{width:29.744640pt;}
._1a{width:30.784000pt;}
._18{width:31.872000pt;}
._19{width:32.946347pt;}
._13{width:34.624000pt;}
._14{width:35.746987pt;}
._1f{width:54.400000pt;}
._20{width:55.552000pt;}
._23{width:56.576000pt;}
._24{width:58.250667pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.920000pt;}
.y151{bottom:101.152000pt;}
.y28{bottom:102.592000pt;}
.y54{bottom:102.912000pt;}
.y112{bottom:107.872000pt;}
.y137{bottom:108.832000pt;}
.ye6{bottom:110.752000pt;}
.yd6{bottom:115.712000pt;}
.yb8{bottom:116.992000pt;}
.y150{bottom:119.552000pt;}
.yf2{bottom:120.192000pt;}
.y27{bottom:120.992000pt;}
.y53{bottom:121.312000pt;}
.y111{bottom:126.272000pt;}
.y136{bottom:127.232000pt;}
.ye5{bottom:129.152000pt;}
.yd5{bottom:134.106667pt;}
.yb7{bottom:135.386667pt;}
.y14f{bottom:137.946667pt;}
.yf1{bottom:138.586667pt;}
.y26{bottom:139.386667pt;}
.y52{bottom:139.706667pt;}
.y7f{bottom:142.426667pt;}
.y110{bottom:144.666667pt;}
.y135{bottom:145.626667pt;}
.ye4{bottom:147.546667pt;}
.yd4{bottom:152.506667pt;}
.yb6{bottom:153.786667pt;}
.y14e{bottom:156.346667pt;}
.yf0{bottom:156.986667pt;}
.y51{bottom:158.106667pt;}
.y7e{bottom:160.826667pt;}
.y10f{bottom:163.066667pt;}
.ye3{bottom:165.946667pt;}
.yb5{bottom:172.186667pt;}
.y25{bottom:173.786667pt;}
.yef{bottom:175.386667pt;}
.y50{bottom:176.506667pt;}
.y134{bottom:177.466667pt;}
.y7d{bottom:179.226667pt;}
.y10e{bottom:181.466667pt;}
.yd3{bottom:184.346667pt;}
.y14d{bottom:188.026667pt;}
.yb4{bottom:190.586667pt;}
.y24{bottom:192.186667pt;}
.y133{bottom:195.866667pt;}
.y7c{bottom:197.626667pt;}
.yd2{bottom:202.746667pt;}
.yee{bottom:207.066667pt;}
.y4f{bottom:208.346667pt;}
.yb3{bottom:208.986667pt;}
.y23{bottom:210.586667pt;}
.y10d{bottom:213.466667pt;}
.y132{bottom:214.266667pt;}
.y7b{bottom:216.026667pt;}
.y14c{bottom:219.706667pt;}
.yd1{bottom:221.146667pt;}
.yed{bottom:225.466667pt;}
.y4e{bottom:226.746667pt;}
.y22{bottom:228.986667pt;}
.y131{bottom:232.666667pt;}
.y7a{bottom:234.426667pt;}
.yd0{bottom:239.546667pt;}
.yb2{bottom:240.666667pt;}
.yec{bottom:243.866667pt;}
.y4d{bottom:245.146667pt;}
.y21{bottom:247.386667pt;}
.y130{bottom:251.066667pt;}
.y14b{bottom:251.386667pt;}
.y10c{bottom:251.866667pt;}
.y95{bottom:252.826667pt;}
.ycf{bottom:257.946667pt;}
.yb1{bottom:259.066667pt;}
.yeb{bottom:262.266667pt;}
.y4c{bottom:263.546667pt;}
.y20{bottom:265.786667pt;}
.y79{bottom:266.106667pt;}
.yab{bottom:269.306667pt;}
.y12f{bottom:269.466667pt;}
.y10b{bottom:270.266667pt;}
.y94{bottom:271.226667pt;}
.yce{bottom:276.346667pt;}
.yb0{bottom:277.466667pt;}
.yea{bottom:280.666667pt;}
.y4b{bottom:281.946667pt;}
.y14a{bottom:283.226667pt;}
.y1f{bottom:284.186667pt;}
.y78{bottom:284.506667pt;}
.y12e{bottom:287.866667pt;}
.y10a{bottom:288.666667pt;}
.y93{bottom:289.626667pt;}
.yaf{bottom:295.866667pt;}
.ye9{bottom:299.106667pt;}
.y4a{bottom:300.386667pt;}
.y149{bottom:301.666667pt;}
.y1e{bottom:302.626667pt;}
.y77{bottom:302.946667pt;}
.y12d{bottom:306.306667pt;}
.y109{bottom:307.106667pt;}
.y92{bottom:308.066667pt;}
.yaa{bottom:314.306667pt;}
.ye8{bottom:317.506667pt;}
.y49{bottom:318.786667pt;}
.y1d{bottom:321.026667pt;}
.y76{bottom:321.346667pt;}
.y108{bottom:325.506667pt;}
.ycd{bottom:326.466667pt;}
.ya9{bottom:332.706667pt;}
.y148{bottom:333.346667pt;}
.y12c{bottom:337.986667pt;}
.y1c{bottom:339.426667pt;}
.y75{bottom:339.746667pt;}
.ycc{bottom:344.866667pt;}
.ye7{bottom:349.506667pt;}
.y48{bottom:350.466667pt;}
.ya8{bottom:351.106667pt;}
.y12b{bottom:356.386667pt;}
.y107{bottom:357.186667pt;}
.y1b{bottom:357.826667pt;}
.y74{bottom:358.146667pt;}
.ycb{bottom:363.266667pt;}
.y147{bottom:365.026667pt;}
.y47{bottom:368.866667pt;}
.ya7{bottom:369.506667pt;}
.y12a{bottom:374.786667pt;}
.y106{bottom:375.586667pt;}
.y1a{bottom:376.226667pt;}
.y73{bottom:376.546667pt;}
.ye2{bottom:379.746667pt;}
.yca{bottom:381.666667pt;}
.y46{bottom:387.266667pt;}
.ya6{bottom:387.906667pt;}
.y129{bottom:393.186667pt;}
.y105{bottom:393.986667pt;}
.y19{bottom:394.626667pt;}
.y72{bottom:394.946667pt;}
.y146{bottom:396.866667pt;}
.yc9{bottom:400.066667pt;}
.y45{bottom:405.666667pt;}
.ya5{bottom:406.306667pt;}
.y128{bottom:411.586667pt;}
.y104{bottom:412.386667pt;}
.y18{bottom:413.026667pt;}
.y71{bottom:413.346667pt;}
.yc8{bottom:418.466667pt;}
.ya4{bottom:424.706667pt;}
.y145{bottom:428.546667pt;}
.y127{bottom:429.986667pt;}
.y103{bottom:430.786667pt;}
.y17{bottom:431.426667pt;}
.y70{bottom:431.746667pt;}
.yc7{bottom:436.866667pt;}
.y44{bottom:437.346667pt;}
.yae{bottom:437.986667pt;}
.ye1{bottom:443.106667pt;}
.y144{bottom:446.946667pt;}
.y126{bottom:448.386667pt;}
.y102{bottom:449.186667pt;}
.y16{bottom:449.826667pt;}
.y6f{bottom:450.146667pt;}
.y43{bottom:455.746667pt;}
.ya3{bottom:456.386667pt;}
.ye0{bottom:461.506667pt;}
.y101{bottom:467.586667pt;}
.y15{bottom:468.226667pt;}
.y6e{bottom:468.546667pt;}
.y42{bottom:474.146667pt;}
.ya2{bottom:474.786667pt;}
.y143{bottom:478.626667pt;}
.ydf{bottom:479.906667pt;}
.y125{bottom:480.066667pt;}
.y91{bottom:481.826667pt;}
.y14{bottom:486.626667pt;}
.y6d{bottom:486.946667pt;}
.y162{bottom:491.266667pt;}
.y41{bottom:492.546667pt;}
.ya1{bottom:493.186667pt;}
.yde{bottom:498.306667pt;}
.y124{bottom:498.466667pt;}
.y100{bottom:499.426667pt;}
.y90{bottom:500.226667pt;}
.y13{bottom:505.026667pt;}
.yc6{bottom:505.346667pt;}
.y161{bottom:509.666667pt;}
.y142{bottom:510.466667pt;}
.y40{bottom:510.946667pt;}
.ya0{bottom:511.586667pt;}
.ydd{bottom:516.706667pt;}
.y123{bottom:516.866667pt;}
.y6c{bottom:518.626667pt;}
.y12{bottom:523.266667pt;}
.yc5{bottom:523.746667pt;}
.y141{bottom:528.866667pt;}
.y3f{bottom:529.346667pt;}
.y9f{bottom:529.986667pt;}
.y122{bottom:535.266667pt;}
.y6b{bottom:537.053333pt;}
.yff{bottom:538.013333pt;}
.y160{bottom:538.653333pt;}
.y11{bottom:541.693333pt;}
.yc4{bottom:542.173333pt;}
.y140{bottom:547.293333pt;}
.y9e{bottom:548.413333pt;}
.y121{bottom:553.693333pt;}
.y6a{bottom:555.453333pt;}
.yfe{bottom:556.413333pt;}
.y15f{bottom:557.053333pt;}
.y10{bottom:560.093333pt;}
.yc3{bottom:560.573333pt;}
.y3e{bottom:561.053333pt;}
.yad{bottom:561.853333pt;}
.ydc{bottom:566.813333pt;}
.y69{bottom:573.853333pt;}
.yfd{bottom:574.813333pt;}
.yf{bottom:578.493333pt;}
.y13f{bottom:578.973333pt;}
.y3d{bottom:579.453333pt;}
.y9d{bottom:580.253333pt;}
.ydb{bottom:585.213333pt;}
.y15e{bottom:586.173333pt;}
.y120{bottom:588.573333pt;}
.y8f{bottom:590.333333pt;}
.y68{bottom:592.253333pt;}
.yfc{bottom:593.213333pt;}
.ye{bottom:596.893333pt;}
.y3c{bottom:597.853333pt;}
.y9c{bottom:598.653333pt;}
.yda{bottom:603.613333pt;}
.y15d{bottom:604.573333pt;}
.y67{bottom:610.653333pt;}
.y13e{bottom:613.853333pt;}
.yd{bottom:615.293333pt;}
.y3b{bottom:616.253333pt;}
.y9b{bottom:617.053333pt;}
.yd9{bottom:622.013333pt;}
.yfb{bottom:624.893333pt;}
.y66{bottom:629.053333pt;}
.y11f{bottom:633.533333pt;}
.yc{bottom:633.693333pt;}
.y3a{bottom:634.653333pt;}
.y8e{bottom:635.453333pt;}
.yd8{bottom:640.413333pt;}
.yfa{bottom:643.293333pt;}
.yc2{bottom:647.453333pt;}
.y11e{bottom:651.933333pt;}
.yb{bottom:652.093333pt;}
.y39{bottom:653.053333pt;}
.y8d{bottom:653.853333pt;}
.y13d{bottom:658.813333pt;}
.y65{bottom:660.893333pt;}
.yf9{bottom:661.693333pt;}
.yc1{bottom:665.853333pt;}
.y11d{bottom:670.333333pt;}
.y38{bottom:671.453333pt;}
.yd7{bottom:672.093333pt;}
.y8c{bottom:672.253333pt;}
.y13c{bottom:677.213333pt;}
.y64{bottom:679.293333pt;}
.yf8{bottom:680.093333pt;}
.y15c{bottom:681.053333pt;}
.ya{bottom:687.133333pt;}
.y11c{bottom:688.733333pt;}
.y8b{bottom:690.493333pt;}
.y13b{bottom:695.613333pt;}
.y63{bottom:697.693333pt;}
.yf7{bottom:698.493333pt;}
.y15b{bottom:699.453333pt;}
.yc0{bottom:700.733333pt;}
.y37{bottom:703.293333pt;}
.y11b{bottom:707.133333pt;}
.y8a{bottom:708.893333pt;}
.y13a{bottom:714.013333pt;}
.y62{bottom:716.093333pt;}
.yf6{bottom:716.893333pt;}
.y36{bottom:721.693333pt;}
.y9a{bottom:722.333333pt;}
.y11a{bottom:725.533333pt;}
.y89{bottom:727.293333pt;}
.y15a{bottom:728.573333pt;}
.y139{bottom:732.413333pt;}
.y61{bottom:734.493333pt;}
.y9{bottom:740.093333pt;}
.y99{bottom:740.733333pt;}
.y88{bottom:745.693333pt;}
.y159{bottom:746.973333pt;}
.yf5{bottom:748.733333pt;}
.y138{bottom:750.813333pt;}
.y60{bottom:752.893333pt;}
.y119{bottom:757.373333pt;}
.y35{bottom:758.493333pt;}
.y98{bottom:759.133333pt;}
.y87{bottom:764.093333pt;}
.y5f{bottom:771.293333pt;}
.y118{bottom:775.813333pt;}
.y158{bottom:776.133333pt;}
.y34{bottom:776.933333pt;}
.y97{bottom:777.573333pt;}
.ybf{bottom:782.533333pt;}
.yf4{bottom:787.653333pt;}
.y8{bottom:790.533333pt;}
.y117{bottom:794.213333pt;}
.y33{bottom:795.333333pt;}
.y86{bottom:795.973333pt;}
.ybe{bottom:800.933333pt;}
.y5e{bottom:803.013333pt;}
.y157{bottom:805.093333pt;}
.y116{bottom:812.613333pt;}
.y32{bottom:813.733333pt;}
.y85{bottom:814.373333pt;}
.ybd{bottom:819.333333pt;}
.y5d{bottom:821.413333pt;}
.y115{bottom:831.013333pt;}
.y31{bottom:832.133333pt;}
.y84{bottom:832.773333pt;}
.y156{bottom:834.213333pt;}
.ybc{bottom:837.733333pt;}
.y5c{bottom:839.813333pt;}
.y7{bottom:840.933333pt;}
.y114{bottom:849.253333pt;}
.y30{bottom:850.533333pt;}
.y83{bottom:851.173333pt;}
.y5b{bottom:858.213333pt;}
.y155{bottom:863.333333pt;}
.y82{bottom:869.573333pt;}
.y113{bottom:881.253333pt;}
.y154{bottom:881.733333pt;}
.y2f{bottom:882.213333pt;}
.y96{bottom:882.853333pt;}
.yac{bottom:887.973333pt;}
.y6{bottom:891.333333pt;}
.y5a{bottom:893.093333pt;}
.y2e{bottom:900.613333pt;}
.y81{bottom:901.253333pt;}
.ybb{bottom:906.373333pt;}
.y153{bottom:916.453333pt;}
.y5{bottom:917.733333pt;}
.y2d{bottom:919.013333pt;}
.y80{bottom:919.653333pt;}
.yba{bottom:924.773333pt;}
.y2c{bottom:937.413333pt;}
.y59{bottom:938.053333pt;}
.yb9{bottom:943.173333pt;}
.y2b{bottom:955.813333pt;}
.y58{bottom:956.453333pt;}
.yf3{bottom:961.573333pt;}
.y4{bottom:968.613333pt;}
.y2a{bottom:974.213333pt;}
.y57{bottom:974.853333pt;}
.y152{bottom:979.973333pt;}
.y56{bottom:993.253333pt;}
.y3{bottom:1006.693333pt;}
.y29{bottom:1009.093333pt;}
.y55{bottom:1011.680000pt;}
.y1{bottom:1062.880000pt;}
.h2{height:44.687500pt;}
.h6{height:45.156250pt;}
.h7{height:48.768750pt;}
.h5{height:52.750000pt;}
.h4{height:52.832812pt;}
.h3{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.031988pt;}
.x3{left:124.191988pt;}
.xa{left:144.026655pt;}
.x4{left:187.226655pt;}
.x7{left:264.226655pt;}
.x6{left:298.946655pt;}
.x5{left:356.706655pt;}
.x9{left:390.306655pt;}
.x2{left:393.506655pt;}
.x1{left:521.533322pt;}
}




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