
    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_794ef031e0c6ec887bedec0e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b94aad6550fd9ef66bc61c08.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0f6843a4c60831b050379cb4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_2bccf4924e2fe6b9d9b7d773.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_359c7f217ee08ed79aeb34cc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ec0061d4280d020fa387c01e.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.720000px;}
.ls5{letter-spacing:33.960000px;}
.ls1{letter-spacing:54.840000px;}
.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:-72.000000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-4.248000px;}
._0{margin-left:-2.736000px;}
._2{margin-left:-1.656000px;}
._4{width:1.224000px;}
._3{width:846.156000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:5.580000px;}
.yee{bottom:5.760000px;}
.yd9{bottom:16.740000px;}
.yea{bottom:16.920000px;}
.yda{bottom:27.900000px;}
.yed{bottom:28.080000px;}
.ye1{bottom:39.060000px;}
.ye8{bottom:39.240000px;}
.ye7{bottom:50.220000px;}
.ydd{bottom:50.400000px;}
.yec{bottom:50.430000px;}
.ye3{bottom:61.380000px;}
.ye0{bottom:61.560000px;}
.ye9{bottom:61.590000px;}
.ye6{bottom:72.540000px;}
.ydc{bottom:72.720000px;}
.yeb{bottom:72.750000px;}
.ye4{bottom:83.700000px;}
.ydf{bottom:83.880000px;}
.ye5{bottom:94.860000px;}
.yde{bottom:95.085000px;}
.y97{bottom:112.536000px;}
.yf6{bottom:118.296000px;}
.y82{bottom:124.416000px;}
.y14c{bottom:124.956000px;}
.yd4{bottom:127.656000px;}
.y30{bottom:134.136000px;}
.y96{bottom:134.856000px;}
.yf5{bottom:140.616000px;}
.y12a{bottom:144.576000px;}
.y81{bottom:146.736000px;}
.y14b{bottom:147.276000px;}
.yd3{bottom:149.976000px;}
.y56{bottom:151.050000px;}
.y2f{bottom:156.450000px;}
.yf4{bottom:162.930000px;}
.y129{bottom:166.890000px;}
.y95{bottom:169.230000px;}
.y14a{bottom:169.590000px;}
.yd2{bottom:172.290000px;}
.y55{bottom:173.550000px;}
.y2e{bottom:178.770000px;}
.y80{bottom:181.110000px;}
.yf3{bottom:185.430000px;}
.y128{bottom:189.210000px;}
.y149{bottom:191.910000px;}
.yd1{bottom:194.610000px;}
.y54{bottom:195.870000px;}
.y2d{bottom:201.090000px;}
.y94{bottom:203.610000px;}
.yaf{bottom:210.990000px;}
.y127{bottom:211.530000px;}
.y148{bottom:214.230000px;}
.y7f{bottom:215.490000px;}
.yd0{bottom:216.930000px;}
.y53{bottom:218.190000px;}
.yf2{bottom:225.570000px;}
.y93{bottom:225.930000px;}
.y2c{bottom:229.350000px;}
.yae{bottom:233.310000px;}
.y126{bottom:233.850000px;}
.y147{bottom:236.550000px;}
.y7e{bottom:237.810000px;}
.ycf{bottom:239.250000px;}
.y52{bottom:240.510000px;}
.y92{bottom:248.250000px;}
.yad{bottom:255.630000px;}
.y125{bottom:256.170000px;}
.y146{bottom:259.050000px;}
.y7d{bottom:260.130000px;}
.y51{bottom:262.830000px;}
.yf1{bottom:264.450000px;}
.y91{bottom:270.570000px;}
.yce{bottom:273.630000px;}
.yac{bottom:277.950000px;}
.y124{bottom:278.670000px;}
.y2b{bottom:278.850000px;}
.y145{bottom:281.370000px;}
.y7c{bottom:282.450000px;}
.y50{bottom:285.150000px;}
.y90{bottom:292.890000px;}
.yab{bottom:300.270000px;}
.y123{bottom:300.990000px;}
.y2a{bottom:301.170000px;}
.y144{bottom:303.690000px;}
.y7b{bottom:304.770000px;}
.ycd{bottom:308.010000px;}
.y8f{bottom:315.210000px;}
.yaa{bottom:322.635000px;}
.y122{bottom:323.355000px;}
.y29{bottom:323.535000px;}
.y4f{bottom:324.075000px;}
.y143{bottom:326.055000px;}
.y7a{bottom:327.135000px;}
.ycc{bottom:330.375000px;}
.yf0{bottom:336.135000px;}
.y8e{bottom:337.575000px;}
.y69{bottom:343.335000px;}
.ya9{bottom:344.955000px;}
.y121{bottom:345.675000px;}
.y28{bottom:345.855000px;}
.y142{bottom:348.375000px;}
.y79{bottom:349.455000px;}
.y4e{bottom:350.895000px;}
.ycb{bottom:352.695000px;}
.y8d{bottom:360.075000px;}
.ya8{bottom:367.455000px;}
.y120{bottom:367.995000px;}
.y27{bottom:368.175000px;}
.y141{bottom:370.695000px;}
.y78{bottom:371.775000px;}
.yca{bottom:375.015000px;}
.y4d{bottom:377.715000px;}
.y8c{bottom:382.395000px;}
.y11f{bottom:390.315000px;}
.y26{bottom:390.495000px;}
.y140{bottom:393.015000px;}
.y77{bottom:394.095000px;}
.yc9{bottom:397.335000px;}
.y68{bottom:400.035000px;}
.ya7{bottom:401.655000px;}
.y4c{bottom:404.535000px;}
.y11e{bottom:412.635000px;}
.y13f{bottom:415.335000px;}
.y76{bottom:416.595000px;}
.yc8{bottom:419.655000px;}
.y67{bottom:422.355000px;}
.ya6{bottom:423.975000px;}
.y25{bottom:424.875000px;}
.yef{bottom:429.915000px;}
.y4b{bottom:431.355000px;}
.y11d{bottom:434.955000px;}
.y13e{bottom:437.655000px;}
.y75{bottom:438.915000px;}
.y8b{bottom:439.095000px;}
.yc7{bottom:441.975000px;}
.y66{bottom:444.675000px;}
.ya5{bottom:446.475000px;}
.y24{bottom:447.195000px;}
.y11c{bottom:457.275000px;}
.y49{bottom:459.075000px;}
.y13d{bottom:459.975000px;}
.y8a{bottom:461.415000px;}
.yc6{bottom:464.295000px;}
.y65{bottom:466.995000px;}
.ya4{bottom:468.795000px;}
.y23{bottom:469.515000px;}
.y74{bottom:473.115000px;}
.y11b{bottom:479.595000px;}
.y13c{bottom:482.475000px;}
.y89{bottom:483.735000px;}
.yc5{bottom:486.615000px;}
.y48{bottom:491.115000px;}
.y22{bottom:491.835000px;}
.y73{bottom:495.435000px;}
.y107{bottom:495.615000px;}
.y64{bottom:501.375000px;}
.y11a{bottom:502.095000px;}
.y13b{bottom:504.795000px;}
.y88{bottom:506.055000px;}
.yc4{bottom:508.935000px;}
.y47{bottom:513.435000px;}
.y21{bottom:514.155000px;}
.y72{bottom:517.935000px;}
.y63{bottom:523.695000px;}
.y119{bottom:524.415000px;}
.y13a{bottom:527.115000px;}
.y87{bottom:528.375000px;}
.y106{bottom:529.995000px;}
.yc3{bottom:531.435000px;}
.ya3{bottom:535.755000px;}
.y20{bottom:536.655000px;}
.y71{bottom:540.255000px;}
.y62{bottom:546.015000px;}
.y118{bottom:546.735000px;}
.y46{bottom:547.815000px;}
.y139{bottom:549.435000px;}
.y86{bottom:550.695000px;}
.y105{bottom:552.315000px;}
.y1f{bottom:558.975000px;}
.y70{bottom:562.575000px;}
.yc2{bottom:565.635000px;}
.y61{bottom:568.365000px;}
.y117{bottom:569.085000px;}
.y45{bottom:570.165000px;}
.y138{bottom:571.785000px;}
.y104{bottom:574.665000px;}
.y1e{bottom:581.325000px;}
.y6f{bottom:584.925000px;}
.y85{bottom:585.105000px;}
.y60{bottom:590.865000px;}
.y116{bottom:591.405000px;}
.y44{bottom:592.485000px;}
.y137{bottom:594.105000px;}
.y103{bottom:596.985000px;}
.yc1{bottom:600.045000px;}
.y1d{bottom:603.645000px;}
.ya2{bottom:604.365000px;}
.y6e{bottom:607.245000px;}
.y5f{bottom:613.185000px;}
.y115{bottom:613.725000px;}
.y43{bottom:614.805000px;}
.y136{bottom:616.425000px;}
.ye2{bottom:617.685000px;}
.y102{bottom:619.485000px;}
.yc0{bottom:622.365000px;}
.y1c{bottom:625.965000px;}
.ya1{bottom:626.865000px;}
.y6d{bottom:629.565000px;}
.y84{bottom:632.265000px;}
.y114{bottom:636.045000px;}
.y42{bottom:637.125000px;}
.y135{bottom:638.745000px;}
.y101{bottom:641.805000px;}
.ybf{bottom:644.685000px;}
.y5e{bottom:647.385000px;}
.ya0{bottom:649.185000px;}
.y6c{bottom:651.885000px;}
.y113{bottom:658.365000px;}
.y41{bottom:659.445000px;}
.y1b{bottom:660.345000px;}
.y134{bottom:661.065000px;}
.y100{bottom:664.125000px;}
.ybe{bottom:667.005000px;}
.y9f{bottom:671.505000px;}
.y6b{bottom:674.205000px;}
.y112{bottom:680.685000px;}
.y40{bottom:681.765000px;}
.y1a{bottom:682.485000px;}
.y133{bottom:683.385000px;}
.ybd{bottom:689.325000px;}
.y9e{bottom:693.825000px;}
.yff{bottom:698.325000px;}
.y111{bottom:703.005000px;}
.y3f{bottom:704.085000px;}
.y6a{bottom:704.625000px;}
.y132{bottom:705.705000px;}
.y19{bottom:706.245000px;}
.y13{bottom:710.205000px;}
.ybc{bottom:711.825000px;}
.y9d{bottom:716.145000px;}
.yfe{bottom:720.825000px;}
.y110{bottom:725.325000px;}
.y3e{bottom:726.405000px;}
.y131{bottom:728.205000px;}
.y18{bottom:728.385000px;}
.y12{bottom:732.525000px;}
.ydb{bottom:733.785000px;}
.y9c{bottom:738.465000px;}
.yfd{bottom:743.145000px;}
.ybb{bottom:746.025000px;}
.y10f{bottom:747.825000px;}
.y3d{bottom:748.725000px;}
.y130{bottom:750.525000px;}
.y17{bottom:752.145000px;}
.y9b{bottom:760.785000px;}
.yfc{bottom:765.465000px;}
.y11{bottom:766.725000px;}
.yba{bottom:768.345000px;}
.y10e{bottom:770.145000px;}
.y5d{bottom:771.225000px;}
.y12f{bottom:772.845000px;}
.y16{bottom:774.465000px;}
.y3c{bottom:783.105000px;}
.yfb{bottom:787.785000px;}
.y10{bottom:789.225000px;}
.yb9{bottom:790.845000px;}
.y10d{bottom:792.465000px;}
.y5c{bottom:793.545000px;}
.y12e{bottom:795.165000px;}
.y15{bottom:798.225000px;}
.y3b{bottom:805.425000px;}
.yfa{bottom:810.105000px;}
.yf{bottom:811.545000px;}
.yb8{bottom:813.165000px;}
.y10c{bottom:814.785000px;}
.y5b{bottom:815.865000px;}
.y12d{bottom:817.485000px;}
.y14{bottom:820.410000px;}
.y3a{bottom:827.790000px;}
.yf9{bottom:832.470000px;}
.ye{bottom:833.910000px;}
.yb7{bottom:835.530000px;}
.y10b{bottom:837.150000px;}
.y5a{bottom:838.230000px;}
.y12c{bottom:839.850000px;}
.y39{bottom:850.110000px;}
.yd8{bottom:850.830000px;}
.yf8{bottom:854.790000px;}
.yd{bottom:856.230000px;}
.yb6{bottom:857.850000px;}
.y10a{bottom:859.470000px;}
.y59{bottom:860.550000px;}
.y12b{bottom:862.170000px;}
.y38{bottom:872.610000px;}
.yc{bottom:878.550000px;}
.y109{bottom:881.790000px;}
.y58{bottom:882.870000px;}
.y9a{bottom:884.490000px;}
.yb5{bottom:892.230000px;}
.y37{bottom:894.930000px;}
.yb{bottom:900.870000px;}
.yf7{bottom:902.130000px;}
.y108{bottom:904.110000px;}
.yd7{bottom:905.190000px;}
.y99{bottom:906.810000px;}
.y36{bottom:917.250000px;}
.ya{bottom:923.190000px;}
.yb4{bottom:926.430000px;}
.yd6{bottom:927.510000px;}
.y98{bottom:929.130000px;}
.y35{bottom:939.570000px;}
.y9{bottom:945.510000px;}
.yb3{bottom:948.750000px;}
.y57{bottom:951.630000px;}
.y4{bottom:955.770000px;}
.y83{bottom:961.890000px;}
.y8{bottom:967.830000px;}
.yb2{bottom:971.070000px;}
.y34{bottom:973.950000px;}
.yd5{bottom:984.210000px;}
.y3{bottom:990.150000px;}
.yb1{bottom:993.570000px;}
.y33{bottom:996.270000px;}
.y7{bottom:1012.470000px;}
.yb0{bottom:1015.890000px;}
.y32{bottom:1018.590000px;}
.y2{bottom:1024.530000px;}
.y6{bottom:1034.970000px;}
.y31{bottom:1040.910000px;}
.y5{bottom:1063.050000px;}
.y1{bottom:1063.230000px;}
.h3{height:22.320000px;}
.h5{height:44.640000px;}
.h1{height:50.800781px;}
.h4{height:58.429688px;}
.h2{height:64.546875px;}
.ha{height:67.176000px;}
.h9{height:89.280000px;}
.h8{height:89.496000px;}
.h7{height:111.600000px;}
.h6{height:111.816000px;}
.h0{height:1188.000000px;}
.w2{width:120.600000px;}
.w7{width:135.540000px;}
.w5{width:144.900000px;}
.w8{width:162.570000px;}
.w3{width:224.130000px;}
.w4{width:235.515000px;}
.w6{width:247.575000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:1.080000px;}
.xf{left:13.860000px;}
.x16{left:29.385000px;}
.x13{left:33.300000px;}
.x14{left:36.720000px;}
.x17{left:44.685000px;}
.x11{left:79.245000px;}
.x4{left:108.035986px;}
.xa{left:110.376000px;}
.x7{left:135.035986px;}
.x8{left:162.029986px;}
.xc{left:233.310000px;}
.x10{left:257.610000px;}
.x9{left:286.454986px;}
.x1{left:296.354986px;}
.x2{left:333.974986px;}
.xe{left:356.474986px;}
.x6{left:409.934986px;}
.x18{left:416.054986px;}
.x19{left:417.134986px;}
.x5{left:425.594986px;}
.x3{left:459.074986px;}
.x12{left:507.525000px;}
.x15{left:645.405000px;}
.xd{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls5{letter-spacing:30.186667pt;}
.ls1{letter-spacing:48.746667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-3.776000pt;}
._0{margin-left:-2.432000pt;}
._2{margin-left:-1.472000pt;}
._4{width:1.088000pt;}
._3{width:752.138667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:4.960000pt;}
.yee{bottom:5.120000pt;}
.yd9{bottom:14.880000pt;}
.yea{bottom:15.040000pt;}
.yda{bottom:24.800000pt;}
.yed{bottom:24.960000pt;}
.ye1{bottom:34.720000pt;}
.ye8{bottom:34.880000pt;}
.ye7{bottom:44.640000pt;}
.ydd{bottom:44.800000pt;}
.yec{bottom:44.826667pt;}
.ye3{bottom:54.560000pt;}
.ye0{bottom:54.720000pt;}
.ye9{bottom:54.746667pt;}
.ye6{bottom:64.480000pt;}
.ydc{bottom:64.640000pt;}
.yeb{bottom:64.666667pt;}
.ye4{bottom:74.400000pt;}
.ydf{bottom:74.560000pt;}
.ye5{bottom:84.320000pt;}
.yde{bottom:84.520000pt;}
.y97{bottom:100.032000pt;}
.yf6{bottom:105.152000pt;}
.y82{bottom:110.592000pt;}
.y14c{bottom:111.072000pt;}
.yd4{bottom:113.472000pt;}
.y30{bottom:119.232000pt;}
.y96{bottom:119.872000pt;}
.yf5{bottom:124.992000pt;}
.y12a{bottom:128.512000pt;}
.y81{bottom:130.432000pt;}
.y14b{bottom:130.912000pt;}
.yd3{bottom:133.312000pt;}
.y56{bottom:134.266667pt;}
.y2f{bottom:139.066667pt;}
.yf4{bottom:144.826667pt;}
.y129{bottom:148.346667pt;}
.y95{bottom:150.426667pt;}
.y14a{bottom:150.746667pt;}
.yd2{bottom:153.146667pt;}
.y55{bottom:154.266667pt;}
.y2e{bottom:158.906667pt;}
.y80{bottom:160.986667pt;}
.yf3{bottom:164.826667pt;}
.y128{bottom:168.186667pt;}
.y149{bottom:170.586667pt;}
.yd1{bottom:172.986667pt;}
.y54{bottom:174.106667pt;}
.y2d{bottom:178.746667pt;}
.y94{bottom:180.986667pt;}
.yaf{bottom:187.546667pt;}
.y127{bottom:188.026667pt;}
.y148{bottom:190.426667pt;}
.y7f{bottom:191.546667pt;}
.yd0{bottom:192.826667pt;}
.y53{bottom:193.946667pt;}
.yf2{bottom:200.506667pt;}
.y93{bottom:200.826667pt;}
.y2c{bottom:203.866667pt;}
.yae{bottom:207.386667pt;}
.y126{bottom:207.866667pt;}
.y147{bottom:210.266667pt;}
.y7e{bottom:211.386667pt;}
.ycf{bottom:212.666667pt;}
.y52{bottom:213.786667pt;}
.y92{bottom:220.666667pt;}
.yad{bottom:227.226667pt;}
.y125{bottom:227.706667pt;}
.y146{bottom:230.266667pt;}
.y7d{bottom:231.226667pt;}
.y51{bottom:233.626667pt;}
.yf1{bottom:235.066667pt;}
.y91{bottom:240.506667pt;}
.yce{bottom:243.226667pt;}
.yac{bottom:247.066667pt;}
.y124{bottom:247.706667pt;}
.y2b{bottom:247.866667pt;}
.y145{bottom:250.106667pt;}
.y7c{bottom:251.066667pt;}
.y50{bottom:253.466667pt;}
.y90{bottom:260.346667pt;}
.yab{bottom:266.906667pt;}
.y123{bottom:267.546667pt;}
.y2a{bottom:267.706667pt;}
.y144{bottom:269.946667pt;}
.y7b{bottom:270.906667pt;}
.ycd{bottom:273.786667pt;}
.y8f{bottom:280.186667pt;}
.yaa{bottom:286.786667pt;}
.y122{bottom:287.426667pt;}
.y29{bottom:287.586667pt;}
.y4f{bottom:288.066667pt;}
.y143{bottom:289.826667pt;}
.y7a{bottom:290.786667pt;}
.ycc{bottom:293.666667pt;}
.yf0{bottom:298.786667pt;}
.y8e{bottom:300.066667pt;}
.y69{bottom:305.186667pt;}
.ya9{bottom:306.626667pt;}
.y121{bottom:307.266667pt;}
.y28{bottom:307.426667pt;}
.y142{bottom:309.666667pt;}
.y79{bottom:310.626667pt;}
.y4e{bottom:311.906667pt;}
.ycb{bottom:313.506667pt;}
.y8d{bottom:320.066667pt;}
.ya8{bottom:326.626667pt;}
.y120{bottom:327.106667pt;}
.y27{bottom:327.266667pt;}
.y141{bottom:329.506667pt;}
.y78{bottom:330.466667pt;}
.yca{bottom:333.346667pt;}
.y4d{bottom:335.746667pt;}
.y8c{bottom:339.906667pt;}
.y11f{bottom:346.946667pt;}
.y26{bottom:347.106667pt;}
.y140{bottom:349.346667pt;}
.y77{bottom:350.306667pt;}
.yc9{bottom:353.186667pt;}
.y68{bottom:355.586667pt;}
.ya7{bottom:357.026667pt;}
.y4c{bottom:359.586667pt;}
.y11e{bottom:366.786667pt;}
.y13f{bottom:369.186667pt;}
.y76{bottom:370.306667pt;}
.yc8{bottom:373.026667pt;}
.y67{bottom:375.426667pt;}
.ya6{bottom:376.866667pt;}
.y25{bottom:377.666667pt;}
.yef{bottom:382.146667pt;}
.y4b{bottom:383.426667pt;}
.y11d{bottom:386.626667pt;}
.y13e{bottom:389.026667pt;}
.y75{bottom:390.146667pt;}
.y8b{bottom:390.306667pt;}
.yc7{bottom:392.866667pt;}
.y66{bottom:395.266667pt;}
.ya5{bottom:396.866667pt;}
.y24{bottom:397.506667pt;}
.y11c{bottom:406.466667pt;}
.y49{bottom:408.066667pt;}
.y13d{bottom:408.866667pt;}
.y8a{bottom:410.146667pt;}
.yc6{bottom:412.706667pt;}
.y65{bottom:415.106667pt;}
.ya4{bottom:416.706667pt;}
.y23{bottom:417.346667pt;}
.y74{bottom:420.546667pt;}
.y11b{bottom:426.306667pt;}
.y13c{bottom:428.866667pt;}
.y89{bottom:429.986667pt;}
.yc5{bottom:432.546667pt;}
.y48{bottom:436.546667pt;}
.y22{bottom:437.186667pt;}
.y73{bottom:440.386667pt;}
.y107{bottom:440.546667pt;}
.y64{bottom:445.666667pt;}
.y11a{bottom:446.306667pt;}
.y13b{bottom:448.706667pt;}
.y88{bottom:449.826667pt;}
.yc4{bottom:452.386667pt;}
.y47{bottom:456.386667pt;}
.y21{bottom:457.026667pt;}
.y72{bottom:460.386667pt;}
.y63{bottom:465.506667pt;}
.y119{bottom:466.146667pt;}
.y13a{bottom:468.546667pt;}
.y87{bottom:469.666667pt;}
.y106{bottom:471.106667pt;}
.yc3{bottom:472.386667pt;}
.ya3{bottom:476.226667pt;}
.y20{bottom:477.026667pt;}
.y71{bottom:480.226667pt;}
.y62{bottom:485.346667pt;}
.y118{bottom:485.986667pt;}
.y46{bottom:486.946667pt;}
.y139{bottom:488.386667pt;}
.y86{bottom:489.506667pt;}
.y105{bottom:490.946667pt;}
.y1f{bottom:496.866667pt;}
.y70{bottom:500.066667pt;}
.yc2{bottom:502.786667pt;}
.y61{bottom:505.213333pt;}
.y117{bottom:505.853333pt;}
.y45{bottom:506.813333pt;}
.y138{bottom:508.253333pt;}
.y104{bottom:510.813333pt;}
.y1e{bottom:516.733333pt;}
.y6f{bottom:519.933333pt;}
.y85{bottom:520.093333pt;}
.y60{bottom:525.213333pt;}
.y116{bottom:525.693333pt;}
.y44{bottom:526.653333pt;}
.y137{bottom:528.093333pt;}
.y103{bottom:530.653333pt;}
.yc1{bottom:533.373333pt;}
.y1d{bottom:536.573333pt;}
.ya2{bottom:537.213333pt;}
.y6e{bottom:539.773333pt;}
.y5f{bottom:545.053333pt;}
.y115{bottom:545.533333pt;}
.y43{bottom:546.493333pt;}
.y136{bottom:547.933333pt;}
.ye2{bottom:549.053333pt;}
.y102{bottom:550.653333pt;}
.yc0{bottom:553.213333pt;}
.y1c{bottom:556.413333pt;}
.ya1{bottom:557.213333pt;}
.y6d{bottom:559.613333pt;}
.y84{bottom:562.013333pt;}
.y114{bottom:565.373333pt;}
.y42{bottom:566.333333pt;}
.y135{bottom:567.773333pt;}
.y101{bottom:570.493333pt;}
.ybf{bottom:573.053333pt;}
.y5e{bottom:575.453333pt;}
.ya0{bottom:577.053333pt;}
.y6c{bottom:579.453333pt;}
.y113{bottom:585.213333pt;}
.y41{bottom:586.173333pt;}
.y1b{bottom:586.973333pt;}
.y134{bottom:587.613333pt;}
.y100{bottom:590.333333pt;}
.ybe{bottom:592.893333pt;}
.y9f{bottom:596.893333pt;}
.y6b{bottom:599.293333pt;}
.y112{bottom:605.053333pt;}
.y40{bottom:606.013333pt;}
.y1a{bottom:606.653333pt;}
.y133{bottom:607.453333pt;}
.ybd{bottom:612.733333pt;}
.y9e{bottom:616.733333pt;}
.yff{bottom:620.733333pt;}
.y111{bottom:624.893333pt;}
.y3f{bottom:625.853333pt;}
.y6a{bottom:626.333333pt;}
.y132{bottom:627.293333pt;}
.y19{bottom:627.773333pt;}
.y13{bottom:631.293333pt;}
.ybc{bottom:632.733333pt;}
.y9d{bottom:636.573333pt;}
.yfe{bottom:640.733333pt;}
.y110{bottom:644.733333pt;}
.y3e{bottom:645.693333pt;}
.y131{bottom:647.293333pt;}
.y18{bottom:647.453333pt;}
.y12{bottom:651.133333pt;}
.ydb{bottom:652.253333pt;}
.y9c{bottom:656.413333pt;}
.yfd{bottom:660.573333pt;}
.ybb{bottom:663.133333pt;}
.y10f{bottom:664.733333pt;}
.y3d{bottom:665.533333pt;}
.y130{bottom:667.133333pt;}
.y17{bottom:668.573333pt;}
.y9b{bottom:676.253333pt;}
.yfc{bottom:680.413333pt;}
.y11{bottom:681.533333pt;}
.yba{bottom:682.973333pt;}
.y10e{bottom:684.573333pt;}
.y5d{bottom:685.533333pt;}
.y12f{bottom:686.973333pt;}
.y16{bottom:688.413333pt;}
.y3c{bottom:696.093333pt;}
.yfb{bottom:700.253333pt;}
.y10{bottom:701.533333pt;}
.yb9{bottom:702.973333pt;}
.y10d{bottom:704.413333pt;}
.y5c{bottom:705.373333pt;}
.y12e{bottom:706.813333pt;}
.y15{bottom:709.533333pt;}
.y3b{bottom:715.933333pt;}
.yfa{bottom:720.093333pt;}
.yf{bottom:721.373333pt;}
.yb8{bottom:722.813333pt;}
.y10c{bottom:724.253333pt;}
.y5b{bottom:725.213333pt;}
.y12d{bottom:726.653333pt;}
.y14{bottom:729.253333pt;}
.y3a{bottom:735.813333pt;}
.yf9{bottom:739.973333pt;}
.ye{bottom:741.253333pt;}
.yb7{bottom:742.693333pt;}
.y10b{bottom:744.133333pt;}
.y5a{bottom:745.093333pt;}
.y12c{bottom:746.533333pt;}
.y39{bottom:755.653333pt;}
.yd8{bottom:756.293333pt;}
.yf8{bottom:759.813333pt;}
.yd{bottom:761.093333pt;}
.yb6{bottom:762.533333pt;}
.y10a{bottom:763.973333pt;}
.y59{bottom:764.933333pt;}
.y12b{bottom:766.373333pt;}
.y38{bottom:775.653333pt;}
.yc{bottom:780.933333pt;}
.y109{bottom:783.813333pt;}
.y58{bottom:784.773333pt;}
.y9a{bottom:786.213333pt;}
.yb5{bottom:793.093333pt;}
.y37{bottom:795.493333pt;}
.yb{bottom:800.773333pt;}
.yf7{bottom:801.893333pt;}
.y108{bottom:803.653333pt;}
.yd7{bottom:804.613333pt;}
.y99{bottom:806.053333pt;}
.y36{bottom:815.333333pt;}
.ya{bottom:820.613333pt;}
.yb4{bottom:823.493333pt;}
.yd6{bottom:824.453333pt;}
.y98{bottom:825.893333pt;}
.y35{bottom:835.173333pt;}
.y9{bottom:840.453333pt;}
.yb3{bottom:843.333333pt;}
.y57{bottom:845.893333pt;}
.y4{bottom:849.573333pt;}
.y83{bottom:855.013333pt;}
.y8{bottom:860.293333pt;}
.yb2{bottom:863.173333pt;}
.y34{bottom:865.733333pt;}
.yd5{bottom:874.853333pt;}
.y3{bottom:880.133333pt;}
.yb1{bottom:883.173333pt;}
.y33{bottom:885.573333pt;}
.y7{bottom:899.973333pt;}
.yb0{bottom:903.013333pt;}
.y32{bottom:905.413333pt;}
.y2{bottom:910.693333pt;}
.y6{bottom:919.973333pt;}
.y31{bottom:925.253333pt;}
.y5{bottom:944.933333pt;}
.y1{bottom:945.093333pt;}
.h3{height:19.840000pt;}
.h5{height:39.680000pt;}
.h1{height:45.156250pt;}
.h4{height:51.937500pt;}
.h2{height:57.375000pt;}
.ha{height:59.712000pt;}
.h9{height:79.360000pt;}
.h8{height:79.552000pt;}
.h7{height:99.200000pt;}
.h6{height:99.392000pt;}
.h0{height:1056.000000pt;}
.w2{width:107.200000pt;}
.w7{width:120.480000pt;}
.w5{width:128.800000pt;}
.w8{width:144.506667pt;}
.w3{width:199.226667pt;}
.w4{width:209.346667pt;}
.w6{width:220.066667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:0.960000pt;}
.xf{left:12.320000pt;}
.x16{left:26.120000pt;}
.x13{left:29.600000pt;}
.x14{left:32.640000pt;}
.x17{left:39.720000pt;}
.x11{left:70.440000pt;}
.x4{left:96.031988pt;}
.xa{left:98.112000pt;}
.x7{left:120.031988pt;}
.x8{left:144.026655pt;}
.xc{left:207.386667pt;}
.x10{left:228.986667pt;}
.x9{left:254.626655pt;}
.x1{left:263.426655pt;}
.x2{left:296.866655pt;}
.xe{left:316.866655pt;}
.x6{left:364.386655pt;}
.x18{left:369.826655pt;}
.x19{left:370.786655pt;}
.x5{left:378.306655pt;}
.x3{left:408.066655pt;}
.x12{left:451.133333pt;}
.x15{left:573.693333pt;}
.xd{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; }
  