
    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_15f5a743b358a70b88de1f87.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fd969ab0c827502123f40b9b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.768555;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_1c12b1311f7ddfc9ae3db44d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f62ac5c0ca77b03ea54f6e1d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_893fd4bcbee49426c826f954.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_18e84775892df15fc03ae066.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_8b08db5ca7d614e83d1318e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_49d29ff7d13871957248495d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.044922;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_e877896109896735704b59a4.woff2')format("woff");}.ff9{font-family:ff9;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;}
.ls8{letter-spacing:-0.463800px;}
.ls2{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.720000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws8{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.506440px;}
.ws0{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.192320px;}
._1{width:1.347600px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(31,78,121);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516000px;}
.ybf{bottom:111.816000px;}
.y30{bottom:117.936000px;}
.y68{bottom:120.096000px;}
.ydb{bottom:120.456000px;}
.ya7{bottom:120.636000px;}
.yd5{bottom:128.556000px;}
.y90{bottom:129.096000px;}
.y63{bottom:129.276000px;}
.y5e{bottom:131.616000px;}
.ybe{bottom:132.516000px;}
.y77{bottom:132.696000px;}
.y67{bottom:137.376000px;}
.y2f{bottom:138.636000px;}
.yda{bottom:140.436000px;}
.ya6{bottom:141.336000px;}
.yd4{bottom:149.256000px;}
.y8f{bottom:149.796000px;}
.y62{bottom:149.976000px;}
.y5d{bottom:152.310000px;}
.ybd{bottom:153.210000px;}
.y76{bottom:153.390000px;}
.y66{bottom:154.470000px;}
.yd9{bottom:157.710000px;}
.y2e{bottom:159.330000px;}
.ya5{bottom:162.030000px;}
.y61{bottom:169.950000px;}
.y8e{bottom:170.490000px;}
.y65{bottom:172.470000px;}
.y5c{bottom:173.010000px;}
.ybc{bottom:173.910000px;}
.y75{bottom:174.090000px;}
.yd8{bottom:174.810000px;}
.y2d{bottom:180.030000px;}
.ya4{bottom:182.730000px;}
.y60{bottom:187.950000px;}
.y64{bottom:189.210000px;}
.yd3{bottom:190.650000px;}
.y8d{bottom:191.190000px;}
.yd7{bottom:192.810000px;}
.y5b{bottom:193.710000px;}
.ybb{bottom:194.610000px;}
.y74{bottom:194.790000px;}
.y2c{bottom:200.730000px;}
.ya3{bottom:203.430000px;}
.y5f{bottom:204.690000px;}
.yd6{bottom:209.550000px;}
.yd2{bottom:211.350000px;}
.y8c{bottom:211.890000px;}
.y5a{bottom:214.410000px;}
.yba{bottom:215.310000px;}
.y73{bottom:215.490000px;}
.y2b{bottom:221.430000px;}
.ya2{bottom:223.950000px;}
.yd1{bottom:232.050000px;}
.y8b{bottom:232.590000px;}
.y59{bottom:235.110000px;}
.yb9{bottom:236.010000px;}
.y72{bottom:236.190000px;}
.y2a{bottom:242.130000px;}
.ya1{bottom:244.650000px;}
.yd0{bottom:252.750000px;}
.y8a{bottom:253.290000px;}
.y58{bottom:255.810000px;}
.yb8{bottom:256.710000px;}
.y71{bottom:256.890000px;}
.y29{bottom:262.830000px;}
.ya0{bottom:265.350000px;}
.ycf{bottom:273.450000px;}
.y89{bottom:273.990000px;}
.y57{bottom:276.510000px;}
.yb7{bottom:277.410000px;}
.y70{bottom:277.590000px;}
.y28{bottom:283.530000px;}
.y9f{bottom:286.050000px;}
.yce{bottom:294.150000px;}
.y88{bottom:294.690000px;}
.y56{bottom:297.210000px;}
.yb6{bottom:298.110000px;}
.y6f{bottom:298.290000px;}
.y27{bottom:304.230000px;}
.y9e{bottom:306.750000px;}
.ycd{bottom:314.850000px;}
.y87{bottom:315.390000px;}
.y55{bottom:317.955000px;}
.y6e{bottom:318.315000px;}
.yb5{bottom:318.855000px;}
.y26{bottom:324.975000px;}
.y9d{bottom:327.495000px;}
.y6d{bottom:335.415000px;}
.ycc{bottom:335.595000px;}
.y86{bottom:336.135000px;}
.y54{bottom:338.655000px;}
.yb4{bottom:339.555000px;}
.y25{bottom:345.675000px;}
.y9c{bottom:348.195000px;}
.y6c{bottom:352.695000px;}
.ycb{bottom:356.295000px;}
.y85{bottom:356.835000px;}
.y53{bottom:359.355000px;}
.yb3{bottom:360.255000px;}
.y24{bottom:366.375000px;}
.y9b{bottom:368.895000px;}
.y6b{bottom:369.975000px;}
.yc4{bottom:376.815000px;}
.yca{bottom:376.995000px;}
.y84{bottom:377.535000px;}
.y52{bottom:380.055000px;}
.yb2{bottom:380.955000px;}
.y23{bottom:387.075000px;}
.y6a{bottom:387.975000px;}
.y9a{bottom:389.595000px;}
.yc3{bottom:394.095000px;}
.yc9{bottom:396.975000px;}
.ye7{bottom:397.695000px;}
.y83{bottom:398.235000px;}
.y51{bottom:400.755000px;}
.yb1{bottom:401.655000px;}
.y69{bottom:404.715000px;}
.y22{bottom:407.775000px;}
.y99{bottom:410.295000px;}
.yc2{bottom:411.375000px;}
.yc8{bottom:414.075000px;}
.ye6{bottom:418.395000px;}
.y82{bottom:418.935000px;}
.y50{bottom:421.455000px;}
.yb0{bottom:422.355000px;}
.y21{bottom:428.475000px;}
.yc1{bottom:429.375000px;}
.y98{bottom:430.995000px;}
.yc7{bottom:431.355000px;}
.ye5{bottom:439.095000px;}
.y81{bottom:439.635000px;}
.y4f{bottom:442.155000px;}
.yaf{bottom:443.055000px;}
.yc0{bottom:446.115000px;}
.y20{bottom:449.175000px;}
.yc6{bottom:449.355000px;}
.y97{bottom:451.695000px;}
.ye4{bottom:459.795000px;}
.y80{bottom:460.335000px;}
.y4e{bottom:462.855000px;}
.yae{bottom:463.755000px;}
.yc5{bottom:466.095000px;}
.y1f{bottom:469.875000px;}
.y96{bottom:472.395000px;}
.ye3{bottom:480.495000px;}
.y7f{bottom:481.035000px;}
.y4d{bottom:483.555000px;}
.yad{bottom:484.455000px;}
.y1e{bottom:490.575000px;}
.y95{bottom:492.375000px;}
.ye2{bottom:501.195000px;}
.y7e{bottom:501.735000px;}
.y4c{bottom:504.255000px;}
.yac{bottom:504.435000px;}
.y94{bottom:509.655000px;}
.y1d{bottom:511.275000px;}
.yab{bottom:521.715000px;}
.ye1{bottom:521.895000px;}
.y7d{bottom:522.435000px;}
.y4b{bottom:524.955000px;}
.y93{bottom:526.935000px;}
.y1c{bottom:531.975000px;}
.yaa{bottom:538.995000px;}
.ye0{bottom:541.875000px;}
.y7c{bottom:542.415000px;}
.y92{bottom:544.935000px;}
.y4a{bottom:545.655000px;}
.y1b{bottom:552.675000px;}
.ya9{bottom:556.995000px;}
.ydf{bottom:558.975000px;}
.y7b{bottom:559.695000px;}
.y91{bottom:561.675000px;}
.y49{bottom:566.355000px;}
.y1a{bottom:573.405000px;}
.ya8{bottom:573.585000px;}
.yde{bottom:576.285000px;}
.y7a{bottom:577.005000px;}
.y48{bottom:587.085000px;}
.y19{bottom:594.105000px;}
.ydd{bottom:594.285000px;}
.y79{bottom:595.005000px;}
.y47{bottom:607.785000px;}
.ydc{bottom:611.025000px;}
.y78{bottom:611.745000px;}
.y18{bottom:614.805000px;}
.y46{bottom:628.485000px;}
.y17{bottom:635.505000px;}
.y45{bottom:649.185000px;}
.y16{bottom:656.205000px;}
.y44{bottom:669.885000px;}
.y15{bottom:676.905000px;}
.y43{bottom:690.585000px;}
.y14{bottom:697.605000px;}
.y42{bottom:711.285000px;}
.y13{bottom:718.305000px;}
.y41{bottom:731.985000px;}
.y12{bottom:738.825000px;}
.y40{bottom:752.685000px;}
.y11{bottom:759.525000px;}
.y3f{bottom:773.385000px;}
.y10{bottom:780.225000px;}
.y3e{bottom:794.085000px;}
.yf{bottom:800.925000px;}
.y3d{bottom:814.785000px;}
.ye{bottom:821.670000px;}
.y3c{bottom:835.530000px;}
.yd{bottom:842.370000px;}
.y3b{bottom:856.230000px;}
.yc{bottom:863.070000px;}
.y3a{bottom:876.930000px;}
.yb{bottom:883.770000px;}
.y39{bottom:897.630000px;}
.ya{bottom:904.470000px;}
.y38{bottom:918.330000px;}
.y9{bottom:925.170000px;}
.y37{bottom:939.030000px;}
.y8{bottom:946.590000px;}
.y36{bottom:959.730000px;}
.y7{bottom:970.710000px;}
.y35{bottom:980.430000px;}
.y6{bottom:994.290000px;}
.y34{bottom:1001.130000px;}
.y5{bottom:1015.530000px;}
.y33{bottom:1021.830000px;}
.y4{bottom:1039.110000px;}
.y32{bottom:1042.530000px;}
.y3{bottom:1060.350000px;}
.y31{bottom:1063.230000px;}
.h6{height:58.651172px;}
.h7{height:64.546875px;}
.h1{height:65.884219px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h5{height:82.635820px;}
.h2{height:84.898125px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:108.035986px;}
.x1d{left:116.495986px;}
.xb{left:122.075986px;}
.x12{left:123.875986px;}
.x19{left:135.035986px;}
.x1b{left:136.475986px;}
.x17{left:143.675986px;}
.xf{left:152.309986px;}
.x1f{left:166.169986px;}
.x14{left:181.829986px;}
.x3{left:186.149986px;}
.x18{left:242.309986px;}
.x5{left:291.854986px;}
.x11{left:293.294986px;}
.x1e{left:301.574986px;}
.x1c{left:307.334986px;}
.x13{left:313.274986px;}
.x9{left:316.334986px;}
.x1a{left:321.914986px;}
.xc{left:330.374986px;}
.x15{left:332.714986px;}
.x7{left:357.554986px;}
.xd{left:375.734986px;}
.x6{left:390.494986px;}
.x10{left:402.914986px;}
.x4{left:459.074986px;}
.x16{left:577.184986px;}
.x1{left:585.464986px;}
.x8{left:668.264986px;}
.xa{left:804.389986px;}
.xe{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.640000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws8{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.894613pt;}
.ws0{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.197867pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792000pt;}
.ybf{bottom:99.392000pt;}
.y30{bottom:104.832000pt;}
.y68{bottom:106.752000pt;}
.ydb{bottom:107.072000pt;}
.ya7{bottom:107.232000pt;}
.yd5{bottom:114.272000pt;}
.y90{bottom:114.752000pt;}
.y63{bottom:114.912000pt;}
.y5e{bottom:116.992000pt;}
.ybe{bottom:117.792000pt;}
.y77{bottom:117.952000pt;}
.y67{bottom:122.112000pt;}
.y2f{bottom:123.232000pt;}
.yda{bottom:124.832000pt;}
.ya6{bottom:125.632000pt;}
.yd4{bottom:132.672000pt;}
.y8f{bottom:133.152000pt;}
.y62{bottom:133.312000pt;}
.y5d{bottom:135.386667pt;}
.ybd{bottom:136.186667pt;}
.y76{bottom:136.346667pt;}
.y66{bottom:137.306667pt;}
.yd9{bottom:140.186667pt;}
.y2e{bottom:141.626667pt;}
.ya5{bottom:144.026667pt;}
.y61{bottom:151.066667pt;}
.y8e{bottom:151.546667pt;}
.y65{bottom:153.306667pt;}
.y5c{bottom:153.786667pt;}
.ybc{bottom:154.586667pt;}
.y75{bottom:154.746667pt;}
.yd8{bottom:155.386667pt;}
.y2d{bottom:160.026667pt;}
.ya4{bottom:162.426667pt;}
.y60{bottom:167.066667pt;}
.y64{bottom:168.186667pt;}
.yd3{bottom:169.466667pt;}
.y8d{bottom:169.946667pt;}
.yd7{bottom:171.386667pt;}
.y5b{bottom:172.186667pt;}
.ybb{bottom:172.986667pt;}
.y74{bottom:173.146667pt;}
.y2c{bottom:178.426667pt;}
.ya3{bottom:180.826667pt;}
.y5f{bottom:181.946667pt;}
.yd6{bottom:186.266667pt;}
.yd2{bottom:187.866667pt;}
.y8c{bottom:188.346667pt;}
.y5a{bottom:190.586667pt;}
.yba{bottom:191.386667pt;}
.y73{bottom:191.546667pt;}
.y2b{bottom:196.826667pt;}
.ya2{bottom:199.066667pt;}
.yd1{bottom:206.266667pt;}
.y8b{bottom:206.746667pt;}
.y59{bottom:208.986667pt;}
.yb9{bottom:209.786667pt;}
.y72{bottom:209.946667pt;}
.y2a{bottom:215.226667pt;}
.ya1{bottom:217.466667pt;}
.yd0{bottom:224.666667pt;}
.y8a{bottom:225.146667pt;}
.y58{bottom:227.386667pt;}
.yb8{bottom:228.186667pt;}
.y71{bottom:228.346667pt;}
.y29{bottom:233.626667pt;}
.ya0{bottom:235.866667pt;}
.ycf{bottom:243.066667pt;}
.y89{bottom:243.546667pt;}
.y57{bottom:245.786667pt;}
.yb7{bottom:246.586667pt;}
.y70{bottom:246.746667pt;}
.y28{bottom:252.026667pt;}
.y9f{bottom:254.266667pt;}
.yce{bottom:261.466667pt;}
.y88{bottom:261.946667pt;}
.y56{bottom:264.186667pt;}
.yb6{bottom:264.986667pt;}
.y6f{bottom:265.146667pt;}
.y27{bottom:270.426667pt;}
.y9e{bottom:272.666667pt;}
.ycd{bottom:279.866667pt;}
.y87{bottom:280.346667pt;}
.y55{bottom:282.626667pt;}
.y6e{bottom:282.946667pt;}
.yb5{bottom:283.426667pt;}
.y26{bottom:288.866667pt;}
.y9d{bottom:291.106667pt;}
.y6d{bottom:298.146667pt;}
.ycc{bottom:298.306667pt;}
.y86{bottom:298.786667pt;}
.y54{bottom:301.026667pt;}
.yb4{bottom:301.826667pt;}
.y25{bottom:307.266667pt;}
.y9c{bottom:309.506667pt;}
.y6c{bottom:313.506667pt;}
.ycb{bottom:316.706667pt;}
.y85{bottom:317.186667pt;}
.y53{bottom:319.426667pt;}
.yb3{bottom:320.226667pt;}
.y24{bottom:325.666667pt;}
.y9b{bottom:327.906667pt;}
.y6b{bottom:328.866667pt;}
.yc4{bottom:334.946667pt;}
.yca{bottom:335.106667pt;}
.y84{bottom:335.586667pt;}
.y52{bottom:337.826667pt;}
.yb2{bottom:338.626667pt;}
.y23{bottom:344.066667pt;}
.y6a{bottom:344.866667pt;}
.y9a{bottom:346.306667pt;}
.yc3{bottom:350.306667pt;}
.yc9{bottom:352.866667pt;}
.ye7{bottom:353.506667pt;}
.y83{bottom:353.986667pt;}
.y51{bottom:356.226667pt;}
.yb1{bottom:357.026667pt;}
.y69{bottom:359.746667pt;}
.y22{bottom:362.466667pt;}
.y99{bottom:364.706667pt;}
.yc2{bottom:365.666667pt;}
.yc8{bottom:368.066667pt;}
.ye6{bottom:371.906667pt;}
.y82{bottom:372.386667pt;}
.y50{bottom:374.626667pt;}
.yb0{bottom:375.426667pt;}
.y21{bottom:380.866667pt;}
.yc1{bottom:381.666667pt;}
.y98{bottom:383.106667pt;}
.yc7{bottom:383.426667pt;}
.ye5{bottom:390.306667pt;}
.y81{bottom:390.786667pt;}
.y4f{bottom:393.026667pt;}
.yaf{bottom:393.826667pt;}
.yc0{bottom:396.546667pt;}
.y20{bottom:399.266667pt;}
.yc6{bottom:399.426667pt;}
.y97{bottom:401.506667pt;}
.ye4{bottom:408.706667pt;}
.y80{bottom:409.186667pt;}
.y4e{bottom:411.426667pt;}
.yae{bottom:412.226667pt;}
.yc5{bottom:414.306667pt;}
.y1f{bottom:417.666667pt;}
.y96{bottom:419.906667pt;}
.ye3{bottom:427.106667pt;}
.y7f{bottom:427.586667pt;}
.y4d{bottom:429.826667pt;}
.yad{bottom:430.626667pt;}
.y1e{bottom:436.066667pt;}
.y95{bottom:437.666667pt;}
.ye2{bottom:445.506667pt;}
.y7e{bottom:445.986667pt;}
.y4c{bottom:448.226667pt;}
.yac{bottom:448.386667pt;}
.y94{bottom:453.026667pt;}
.y1d{bottom:454.466667pt;}
.yab{bottom:463.746667pt;}
.ye1{bottom:463.906667pt;}
.y7d{bottom:464.386667pt;}
.y4b{bottom:466.626667pt;}
.y93{bottom:468.386667pt;}
.y1c{bottom:472.866667pt;}
.yaa{bottom:479.106667pt;}
.ye0{bottom:481.666667pt;}
.y7c{bottom:482.146667pt;}
.y92{bottom:484.386667pt;}
.y4a{bottom:485.026667pt;}
.y1b{bottom:491.266667pt;}
.ya9{bottom:495.106667pt;}
.ydf{bottom:496.866667pt;}
.y7b{bottom:497.506667pt;}
.y91{bottom:499.266667pt;}
.y49{bottom:503.426667pt;}
.y1a{bottom:509.693333pt;}
.ya8{bottom:509.853333pt;}
.yde{bottom:512.253333pt;}
.y7a{bottom:512.893333pt;}
.y48{bottom:521.853333pt;}
.y19{bottom:528.093333pt;}
.ydd{bottom:528.253333pt;}
.y79{bottom:528.893333pt;}
.y47{bottom:540.253333pt;}
.ydc{bottom:543.133333pt;}
.y78{bottom:543.773333pt;}
.y18{bottom:546.493333pt;}
.y46{bottom:558.653333pt;}
.y17{bottom:564.893333pt;}
.y45{bottom:577.053333pt;}
.y16{bottom:583.293333pt;}
.y44{bottom:595.453333pt;}
.y15{bottom:601.693333pt;}
.y43{bottom:613.853333pt;}
.y14{bottom:620.093333pt;}
.y42{bottom:632.253333pt;}
.y13{bottom:638.493333pt;}
.y41{bottom:650.653333pt;}
.y12{bottom:656.733333pt;}
.y40{bottom:669.053333pt;}
.y11{bottom:675.133333pt;}
.y3f{bottom:687.453333pt;}
.y10{bottom:693.533333pt;}
.y3e{bottom:705.853333pt;}
.yf{bottom:711.933333pt;}
.y3d{bottom:724.253333pt;}
.ye{bottom:730.373333pt;}
.y3c{bottom:742.693333pt;}
.yd{bottom:748.773333pt;}
.y3b{bottom:761.093333pt;}
.yc{bottom:767.173333pt;}
.y3a{bottom:779.493333pt;}
.yb{bottom:785.573333pt;}
.y39{bottom:797.893333pt;}
.ya{bottom:803.973333pt;}
.y38{bottom:816.293333pt;}
.y9{bottom:822.373333pt;}
.y37{bottom:834.693333pt;}
.y8{bottom:841.413333pt;}
.y36{bottom:853.093333pt;}
.y7{bottom:862.853333pt;}
.y35{bottom:871.493333pt;}
.y6{bottom:883.813333pt;}
.y34{bottom:889.893333pt;}
.y5{bottom:902.693333pt;}
.y33{bottom:908.293333pt;}
.y4{bottom:923.653333pt;}
.y32{bottom:926.693333pt;}
.y3{bottom:942.533333pt;}
.y31{bottom:945.093333pt;}
.h6{height:52.134375pt;}
.h7{height:57.375000pt;}
.h1{height:58.563750pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h5{height:73.454062pt;}
.h2{height:75.465000pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.x1d{left:103.551988pt;}
.xb{left:108.511988pt;}
.x12{left:110.111988pt;}
.x19{left:120.031988pt;}
.x1b{left:121.311988pt;}
.x17{left:127.711988pt;}
.xf{left:135.386655pt;}
.x1f{left:147.706655pt;}
.x14{left:161.626655pt;}
.x3{left:165.466655pt;}
.x18{left:215.386655pt;}
.x5{left:259.426655pt;}
.x11{left:260.706655pt;}
.x1e{left:268.066655pt;}
.x1c{left:273.186655pt;}
.x13{left:278.466655pt;}
.x9{left:281.186655pt;}
.x1a{left:286.146655pt;}
.xc{left:293.666655pt;}
.x15{left:295.746655pt;}
.x7{left:317.826655pt;}
.xd{left:333.986655pt;}
.x6{left:347.106655pt;}
.x10{left:358.146655pt;}
.x4{left:408.066655pt;}
.x16{left:513.053321pt;}
.x1{left:520.413321pt;}
.x8{left:594.013321pt;}
.xa{left:715.013321pt;}
.xe{left:720.133321pt;}
}




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