
    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_36acf6fd44f05199eec47778.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.995605;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_eb2a7b475fff13f9194c4644.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.967773;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_c3c6b050fcc952f1f33a3801.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.975586;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.396000px;}
.ws3{word-spacing:5.706000px;}
.ws2{word-spacing:8.424000px;}
.ws4{word-spacing:11.088000px;}
.ws1{word-spacing:14.190000px;}
.ws6{word-spacing:30.726000px;}
.ws8{word-spacing:205.728000px;}
.ws7{word-spacing:230.760000px;}
.ws9{word-spacing:273.768000px;}
._6{margin-left:-30.726000px;}
._1{margin-left:-14.190000px;}
._4{margin-left:-11.088000px;}
._2{margin-left:-8.424000px;}
._3{margin-left:-5.706000px;}
._5{margin-left:-1.188000px;}
._b{width:224.280000px;}
._19{width:233.814000px;}
._c{width:246.204000px;}
._1a{width:292.320000px;}
._f{width:349.440000px;}
._17{width:425.100000px;}
._10{width:430.260000px;}
._d{width:453.240000px;}
._15{width:512.880000px;}
._12{width:562.500000px;}
._9{width:578.400000px;}
._8{width:598.680000px;}
._13{width:618.360000px;}
._16{width:696.960000px;}
._18{width:887.580000px;}
._a{width:1151.520000px;}
._1b{width:1298.940000px;}
._11{width:1354.740000px;}
._1c{width:1388.700000px;}
._e{width:1429.440000px;}
._7{width:1564.920000px;}
._14{width:1621.800000px;}
._0{width:1910.820000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:13.410000px;}
.y33{bottom:102.255000px;}
.y11b{bottom:102.645000px;}
.yc3{bottom:108.600000px;}
.y32{bottom:119.250000px;}
.y11a{bottom:119.655000px;}
.yc2{bottom:125.610000px;}
.ye1{bottom:127.305000px;}
.y31{bottom:136.260000px;}
.y119{bottom:136.665000px;}
.yc1{bottom:142.620000px;}
.ye0{bottom:144.315000px;}
.y30{bottom:153.270000px;}
.ydf{bottom:161.325000px;}
.y118{bottom:179.190000px;}
.yc0{bottom:185.145000px;}
.y2f{bottom:186.840000px;}
.ya7{bottom:189.390000px;}
.y117{bottom:196.200000px;}
.yfe{bottom:197.895000px;}
.y59{bottom:202.140000px;}
.yde{bottom:203.850000px;}
.y83{bottom:204.690000px;}
.y116{bottom:213.195000px;}
.ya6{bottom:214.905000px;}
.ybf{bottom:219.150000px;}
.ydd{bottom:220.860000px;}
.ya5{bottom:223.410000px;}
.y58{bottom:227.655000px;}
.y2e{bottom:229.365000px;}
.y82{bottom:235.305000px;}
.ydc{bottom:237.870000px;}
.ya4{bottom:240.420000px;}
.y2d{bottom:246.360000px;}
.yfd{bottom:248.925000px;}
.y81{bottom:252.315000px;}
.y57{bottom:253.170000px;}
.ydb{bottom:254.865000px;}
.ybe{bottom:261.675000px;}
.y2c{bottom:263.370000px;}
.y115{bottom:264.225000px;}
.ya3{bottom:265.920000px;}
.yda{bottom:271.875000px;}
.yfc{bottom:274.425000px;}
.y80{bottom:277.830000px;}
.y56{bottom:278.685000px;}
.y7f{bottom:286.335000px;}
.yd9{bottom:288.885000px;}
.y114{bottom:289.740000px;}
.ya2{bottom:291.435000px;}
.ybd{bottom:295.695000px;}
.yfb{bottom:299.940000px;}
.y7e{bottom:303.345000px;}
.y55{bottom:304.200000px;}
.y2b{bottom:305.895000px;}
.yfa{bottom:308.445000px;}
.y54{bottom:312.690000px;}
.ya1{bottom:316.950000px;}
.y113{bottom:320.355000px;}
.y2a{bottom:322.905000px;}
.yf9{bottom:325.455000px;}
.y7d{bottom:328.860000px;}
.y53{bottom:329.700000px;}
.y112{bottom:337.365000px;}
.ybc{bottom:338.205000px;}
.y29{bottom:339.915000px;}
.ya0{bottom:347.160000px;}
.yf8{bottom:350.970000px;}
.y7c{bottom:354.360000px;}
.y52{bottom:355.215000px;}
.y28{bottom:356.925000px;}
.y111{bottom:362.865000px;}
.y9f{bottom:364.170000px;}
.y110{bottom:371.370000px;}
.ybb{bottom:372.225000px;}
.y27{bottom:373.920000px;}
.yf7{bottom:376.470000px;}
.y7b{bottom:379.875000px;}
.y51{bottom:380.730000px;}
.y9e{bottom:381.180000px;}
.y10f{bottom:388.380000px;}
.yba{bottom:389.235000px;}
.y26{bottom:390.930000px;}
.yf6{bottom:401.985000px;}
.y7a{bottom:405.390000px;}
.y50{bottom:406.245000px;}
.y25{bottom:407.940000px;}
.y10e{bottom:413.895000px;}
.yb9{bottom:423.255000px;}
.y24{bottom:424.950000px;}
.y79{bottom:430.905000px;}
.y9d{bottom:431.745000px;}
.yf5{bottom:432.195000px;}
.y10d{bottom:439.410000px;}
.yb8{bottom:440.250000px;}
.y4f{bottom:440.700000px;}
.y23{bottom:441.960000px;}
.yf4{bottom:449.205000px;}
.yb7{bottom:457.260000px;}
.y4e{bottom:457.710000px;}
.yd8{bottom:458.970000px;}
.y78{bottom:461.520000px;}
.y9c{bottom:462.360000px;}
.y10c{bottom:464.925000px;}
.yf3{bottom:466.215000px;}
.yb6{bottom:474.270000px;}
.y4d{bottom:474.720000px;}
.yd7{bottom:475.980000px;}
.y77{bottom:478.530000px;}
.y9b{bottom:479.370000px;}
.y22{bottom:484.470000px;}
.y10b{bottom:490.425000px;}
.yb5{bottom:491.280000px;}
.y4c{bottom:491.730000px;}
.yd6{bottom:492.975000px;}
.y21{bottom:501.480000px;}
.y76{bottom:504.030000px;}
.y9a{bottom:504.885000px;}
.yb4{bottom:508.290000px;}
.yd5{bottom:509.985000px;}
.y99{bottom:513.390000px;}
.y10a{bottom:515.940000px;}
.yf2{bottom:516.795000px;}
.y20{bottom:518.490000px;}
.y4b{bottom:525.300000px;}
.yd4{bottom:526.995000px;}
.y75{bottom:529.545000px;}
.y98{bottom:530.400000px;}
.yd3{bottom:544.005000px;}
.y109{bottom:546.555000px;}
.yf1{bottom:547.410000px;}
.yb3{bottom:550.800000px;}
.y74{bottom:555.060000px;}
.y97{bottom:555.915000px;}
.y1f{bottom:561.015000px;}
.y108{bottom:563.565000px;}
.yf0{bottom:564.420000px;}
.y4a{bottom:567.810000px;}
.y1e{bottom:578.025000px;}
.y73{bottom:580.575000px;}
.y96{bottom:581.415000px;}
.y49{bottom:584.820000px;}
.y107{bottom:589.080000px;}
.yef{bottom:589.920000px;}
.y1d{bottom:595.035000px;}
.yee{bottom:598.425000px;}
.y48{bottom:601.830000px;}
.yd2{bottom:603.525000px;}
.y72{bottom:606.090000px;}
.y95{bottom:606.930000px;}
.y1c{bottom:612.030000px;}
.y71{bottom:614.580000px;}
.yed{bottom:615.435000px;}
.yd1{bottom:620.535000px;}
.yb2{bottom:627.345000px;}
.y1b{bottom:629.040000px;}
.y70{bottom:631.590000px;}
.y94{bottom:632.445000px;}
.yd0{bottom:637.545000px;}
.y106{bottom:640.095000px;}
.yec{bottom:640.950000px;}
.yb1{bottom:644.355000px;}
.y1a{bottom:646.050000px;}
.y47{bottom:652.860000px;}
.y6f{bottom:657.105000px;}
.y93{bottom:657.960000px;}
.yb0{bottom:661.365000px;}
.y19{bottom:663.060000px;}
.y105{bottom:665.610000px;}
.yeb{bottom:666.465000px;}
.y46{bottom:678.360000px;}
.y18{bottom:680.070000px;}
.y6e{bottom:682.620000px;}
.y92{bottom:688.575000px;}
.y104{bottom:691.125000px;}
.yea{bottom:691.980000px;}
.y17{bottom:697.080000px;}
.y103{bottom:699.630000px;}
.y91{bottom:705.585000px;}
.y6d{bottom:708.135000px;}
.y45{bottom:708.975000px;}
.y16{bottom:714.090000px;}
.y102{bottom:716.640000px;}
.ye9{bottom:717.480000px;}
.yaf{bottom:720.885000px;}
.y44{bottom:725.985000px;}
.y15{bottom:731.085000px;}
.yae{bottom:737.895000px;}
.y101{bottom:742.140000px;}
.ye8{bottom:742.995000px;}
.y14{bottom:748.095000px;}
.y43{bottom:751.500000px;}
.yad{bottom:754.905000px;}
.y90{bottom:756.600000px;}
.y42{bottom:760.005000px;}
.y100{bottom:767.655000px;}
.y6c{bottom:772.365000px;}
.ycf{bottom:773.610000px;}
.y41{bottom:777.015000px;}
.y8f{bottom:782.115000px;}
.y6b{bottom:789.375000px;}
.y13{bottom:790.620000px;}
.yff{bottom:793.170000px;}
.y40{bottom:802.530000px;}
.yac{bottom:805.920000px;}
.y6a{bottom:806.370000px;}
.y8e{bottom:807.630000px;}
.ye7{bottom:816.135000px;}
.y69{bottom:823.380000px;}
.yce{bottom:824.640000px;}
.y3f{bottom:828.030000px;}
.yab{bottom:831.435000px;}
.y8d{bottom:833.145000px;}
.y68{bottom:840.390000px;}
.y8c{bottom:841.635000px;}
.y12{bottom:850.140000px;}
.y3e{bottom:853.545000px;}
.y67{bottom:857.400000px;}
.y8b{bottom:858.645000px;}
.yaa{bottom:862.050000px;}
.ye6{bottom:867.150000px;}
.ycd{bottom:875.655000px;}
.y3d{bottom:879.060000px;}
.y66{bottom:882.465000px;}
.y11{bottom:884.160000px;}
.ycc{bottom:892.665000px;}
.y3c{bottom:904.575000px;}
.y65{bottom:907.980000px;}
.y8a{bottom:909.675000px;}
.ya9{bottom:913.080000px;}
.y10{bottom:918.180000px;}
.ycb{bottom:926.685000px;}
.ya8{bottom:930.090000px;}
.yf{bottom:935.190000px;}
.y64{bottom:938.580000px;}
.yca{bottom:943.695000px;}
.ye{bottom:952.200000px;}
.y63{bottom:955.590000px;}
.yc9{bottom:960.690000px;}
.ye5{bottom:969.195000px;}
.y89{bottom:969.645000px;}
.y3b{bottom:977.700000px;}
.y62{bottom:981.105000px;}
.yd{bottom:986.205000px;}
.y88{bottom:986.655000px;}
.y61{bottom:989.610000px;}
.yc8{bottom:994.710000px;}
.yc{bottom:1003.215000px;}
.y87{bottom:1003.665000px;}
.y60{bottom:1006.620000px;}
.yc7{bottom:1011.720000px;}
.ye4{bottom:1020.225000px;}
.y86{bottom:1020.675000px;}
.y3a{bottom:1028.730000px;}
.y5f{bottom:1032.135000px;}
.yb{bottom:1037.235000px;}
.yc6{bottom:1045.740000px;}
.ye3{bottom:1046.190000px;}
.ya{bottom:1054.245000px;}
.y5e{bottom:1057.635000px;}
.yc5{bottom:1062.750000px;}
.ye2{bottom:1063.200000px;}
.y9{bottom:1071.255000px;}
.y39{bottom:1079.745000px;}
.y5d{bottom:1083.150000px;}
.y38{bottom:1088.250000px;}
.y85{bottom:1096.755000px;}
.y8{bottom:1105.260000px;}
.y5c{bottom:1108.665000px;}
.y84{bottom:1113.765000px;}
.y7{bottom:1122.270000px;}
.y37{bottom:1130.775000px;}
.y5b{bottom:1134.180000px;}
.y6{bottom:1139.280000px;}
.y36{bottom:1156.290000px;}
.y5a{bottom:1164.795000px;}
.yc4{bottom:1173.300000px;}
.y35{bottom:1181.805000px;}
.y5{bottom:1182.450000px;}
.y4{bottom:1207.965000px;}
.y34{bottom:1223.100000px;}
.y3{bottom:1229.475000px;}
.y2{bottom:1244.685000px;}
.h2{height:36.468750px;}
.h6{height:41.027344px;}
.h5{height:45.585938px;}
.h3{height:54.703125px;}
.h4{height:82.054688px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:4.245000px;}
.x1{left:46.785000px;}
.x21{left:281.445000px;}
.x15{left:282.690000px;}
.x22{left:285.585000px;}
.x20{left:286.920000px;}
.x33{left:289.770000px;}
.x4d{left:291.240000px;}
.x23{left:292.725000px;}
.x16{left:294.555000px;}
.x7{left:297.870000px;}
.x6{left:301.920000px;}
.x17{left:311.130000px;}
.x34{left:313.860000px;}
.x3f{left:315.015000px;}
.x4e{left:321.330000px;}
.x43{left:326.130000px;}
.x25{left:379.230000px;}
.xa{left:380.550000px;}
.x35{left:381.645000px;}
.x26{left:383.385000px;}
.x24{left:384.720000px;}
.x27{left:388.200000px;}
.x8{left:389.205000px;}
.x3d{left:391.305000px;}
.x28{left:398.820000px;}
.x36{left:404.460000px;}
.x9{left:410.190000px;}
.x45{left:415.260000px;}
.x4f{left:420.525000px;}
.x19{left:425.790000px;}
.x44{left:427.680000px;}
.x18{left:429.150000px;}
.x1a{left:467.655000px;}
.xc{left:476.745000px;}
.x2a{left:481.185000px;}
.x29{left:482.505000px;}
.x2b{left:484.605000px;}
.xb{left:487.005000px;}
.x5{left:493.230000px;}
.x2c{left:497.025000px;}
.x37{left:499.965000px;}
.x3e{left:501.225000px;}
.x4{left:510.240000px;}
.x47{left:530.055000px;}
.x46{left:534.555000px;}
.x50{left:543.750000px;}
.x40{left:549.675000px;}
.x2e{left:574.830000px;}
.x2f{left:578.970000px;}
.x2d{left:580.305000px;}
.xe{left:582.375000px;}
.xd{left:584.805000px;}
.x38{left:589.830000px;}
.x31{left:594.825000px;}
.xf{left:599.820000px;}
.x30{left:610.320000px;}
.x1b{left:613.815000px;}
.x49{left:645.180000px;}
.x48{left:649.365000px;}
.x11{left:675.510000px;}
.x12{left:676.560000px;}
.x13{left:682.860000px;}
.x39{left:687.630000px;}
.x41{left:689.430000px;}
.x32{left:696.045000px;}
.x10{left:703.920000px;}
.x42{left:721.860000px;}
.x1e{left:725.115000px;}
.x1d{left:728.415000px;}
.x1c{left:744.240000px;}
.x4a{left:746.745000px;}
.x1f{left:748.290000px;}
.x4c{left:759.660000px;}
.x4b{left:763.860000px;}
.x3a{left:769.695000px;}
.x3b{left:778.560000px;}
.x3c{left:780.930000px;}
.x14{left:793.845000px;}
.x3{left:809.235000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.352000pt;}
.ws3{word-spacing:5.072000pt;}
.ws2{word-spacing:7.488000pt;}
.ws4{word-spacing:9.856000pt;}
.ws1{word-spacing:12.613333pt;}
.ws6{word-spacing:27.312000pt;}
.ws8{word-spacing:182.869333pt;}
.ws7{word-spacing:205.120000pt;}
.ws9{word-spacing:243.349333pt;}
._6{margin-left:-27.312000pt;}
._1{margin-left:-12.613333pt;}
._4{margin-left:-9.856000pt;}
._2{margin-left:-7.488000pt;}
._3{margin-left:-5.072000pt;}
._5{margin-left:-1.056000pt;}
._b{width:199.360000pt;}
._19{width:207.834667pt;}
._c{width:218.848000pt;}
._1a{width:259.840000pt;}
._f{width:310.613333pt;}
._17{width:377.866667pt;}
._10{width:382.453333pt;}
._d{width:402.880000pt;}
._15{width:455.893333pt;}
._12{width:500.000000pt;}
._9{width:514.133333pt;}
._8{width:532.160000pt;}
._13{width:549.653333pt;}
._16{width:619.520000pt;}
._18{width:788.960000pt;}
._a{width:1023.573333pt;}
._1b{width:1154.613333pt;}
._11{width:1204.213333pt;}
._1c{width:1234.400000pt;}
._e{width:1270.613333pt;}
._7{width:1391.040000pt;}
._14{width:1441.600000pt;}
._0{width:1698.506667pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:11.920000pt;}
.y33{bottom:90.893333pt;}
.y11b{bottom:91.240000pt;}
.yc3{bottom:96.533333pt;}
.y32{bottom:106.000000pt;}
.y11a{bottom:106.360000pt;}
.yc2{bottom:111.653333pt;}
.ye1{bottom:113.160000pt;}
.y31{bottom:121.120000pt;}
.y119{bottom:121.480000pt;}
.yc1{bottom:126.773333pt;}
.ye0{bottom:128.280000pt;}
.y30{bottom:136.240000pt;}
.ydf{bottom:143.400000pt;}
.y118{bottom:159.280000pt;}
.yc0{bottom:164.573333pt;}
.y2f{bottom:166.080000pt;}
.ya7{bottom:168.346667pt;}
.y117{bottom:174.400000pt;}
.yfe{bottom:175.906667pt;}
.y59{bottom:179.680000pt;}
.yde{bottom:181.200000pt;}
.y83{bottom:181.946667pt;}
.y116{bottom:189.506667pt;}
.ya6{bottom:191.026667pt;}
.ybf{bottom:194.800000pt;}
.ydd{bottom:196.320000pt;}
.ya5{bottom:198.586667pt;}
.y58{bottom:202.360000pt;}
.y2e{bottom:203.880000pt;}
.y82{bottom:209.160000pt;}
.ydc{bottom:211.440000pt;}
.ya4{bottom:213.706667pt;}
.y2d{bottom:218.986667pt;}
.yfd{bottom:221.266667pt;}
.y81{bottom:224.280000pt;}
.y57{bottom:225.040000pt;}
.ydb{bottom:226.546667pt;}
.ybe{bottom:232.600000pt;}
.y2c{bottom:234.106667pt;}
.y115{bottom:234.866667pt;}
.ya3{bottom:236.373333pt;}
.yda{bottom:241.666667pt;}
.yfc{bottom:243.933333pt;}
.y80{bottom:246.960000pt;}
.y56{bottom:247.720000pt;}
.y7f{bottom:254.520000pt;}
.yd9{bottom:256.786667pt;}
.y114{bottom:257.546667pt;}
.ya2{bottom:259.053333pt;}
.ybd{bottom:262.840000pt;}
.yfb{bottom:266.613333pt;}
.y7e{bottom:269.640000pt;}
.y55{bottom:270.400000pt;}
.y2b{bottom:271.906667pt;}
.yfa{bottom:274.173333pt;}
.y54{bottom:277.946667pt;}
.ya1{bottom:281.733333pt;}
.y113{bottom:284.760000pt;}
.y2a{bottom:287.026667pt;}
.yf9{bottom:289.293333pt;}
.y7d{bottom:292.320000pt;}
.y53{bottom:293.066667pt;}
.y112{bottom:299.880000pt;}
.ybc{bottom:300.626667pt;}
.y29{bottom:302.146667pt;}
.ya0{bottom:308.586667pt;}
.yf8{bottom:311.973333pt;}
.y7c{bottom:314.986667pt;}
.y52{bottom:315.746667pt;}
.y28{bottom:317.266667pt;}
.y111{bottom:322.546667pt;}
.y9f{bottom:323.706667pt;}
.y110{bottom:330.106667pt;}
.ybb{bottom:330.866667pt;}
.y27{bottom:332.373333pt;}
.yf7{bottom:334.640000pt;}
.y7b{bottom:337.666667pt;}
.y51{bottom:338.426667pt;}
.y9e{bottom:338.826667pt;}
.y10f{bottom:345.226667pt;}
.yba{bottom:345.986667pt;}
.y26{bottom:347.493333pt;}
.yf6{bottom:357.320000pt;}
.y7a{bottom:360.346667pt;}
.y50{bottom:361.106667pt;}
.y25{bottom:362.613333pt;}
.y10e{bottom:367.906667pt;}
.yb9{bottom:376.226667pt;}
.y24{bottom:377.733333pt;}
.y79{bottom:383.026667pt;}
.y9d{bottom:383.773333pt;}
.yf5{bottom:384.173333pt;}
.y10d{bottom:390.586667pt;}
.yb8{bottom:391.333333pt;}
.y4f{bottom:391.733333pt;}
.y23{bottom:392.853333pt;}
.yf4{bottom:399.293333pt;}
.yb7{bottom:406.453333pt;}
.y4e{bottom:406.853333pt;}
.yd8{bottom:407.973333pt;}
.y78{bottom:410.240000pt;}
.y9c{bottom:410.986667pt;}
.y10c{bottom:413.266667pt;}
.yf3{bottom:414.413333pt;}
.yb6{bottom:421.573333pt;}
.y4d{bottom:421.973333pt;}
.yd7{bottom:423.093333pt;}
.y77{bottom:425.360000pt;}
.y9b{bottom:426.106667pt;}
.y22{bottom:430.640000pt;}
.y10b{bottom:435.933333pt;}
.yb5{bottom:436.693333pt;}
.y4c{bottom:437.093333pt;}
.yd6{bottom:438.200000pt;}
.y21{bottom:445.760000pt;}
.y76{bottom:448.026667pt;}
.y9a{bottom:448.786667pt;}
.yb4{bottom:451.813333pt;}
.yd5{bottom:453.320000pt;}
.y99{bottom:456.346667pt;}
.y10a{bottom:458.613333pt;}
.yf2{bottom:459.373333pt;}
.y20{bottom:460.880000pt;}
.y4b{bottom:466.933333pt;}
.yd4{bottom:468.440000pt;}
.y75{bottom:470.706667pt;}
.y98{bottom:471.466667pt;}
.yd3{bottom:483.560000pt;}
.y109{bottom:485.826667pt;}
.yf1{bottom:486.586667pt;}
.yb3{bottom:489.600000pt;}
.y74{bottom:493.386667pt;}
.y97{bottom:494.146667pt;}
.y1f{bottom:498.680000pt;}
.y108{bottom:500.946667pt;}
.yf0{bottom:501.706667pt;}
.y4a{bottom:504.720000pt;}
.y1e{bottom:513.800000pt;}
.y73{bottom:516.066667pt;}
.y96{bottom:516.813333pt;}
.y49{bottom:519.840000pt;}
.y107{bottom:523.626667pt;}
.yef{bottom:524.373333pt;}
.y1d{bottom:528.920000pt;}
.yee{bottom:531.933333pt;}
.y48{bottom:534.960000pt;}
.yd2{bottom:536.466667pt;}
.y72{bottom:538.746667pt;}
.y95{bottom:539.493333pt;}
.y1c{bottom:544.026667pt;}
.y71{bottom:546.293333pt;}
.yed{bottom:547.053333pt;}
.yd1{bottom:551.586667pt;}
.yb2{bottom:557.640000pt;}
.y1b{bottom:559.146667pt;}
.y70{bottom:561.413333pt;}
.y94{bottom:562.173333pt;}
.yd0{bottom:566.706667pt;}
.y106{bottom:568.973333pt;}
.yec{bottom:569.733333pt;}
.yb1{bottom:572.760000pt;}
.y1a{bottom:574.266667pt;}
.y47{bottom:580.320000pt;}
.y6f{bottom:584.093333pt;}
.y93{bottom:584.853333pt;}
.yb0{bottom:587.880000pt;}
.y19{bottom:589.386667pt;}
.y105{bottom:591.653333pt;}
.yeb{bottom:592.413333pt;}
.y46{bottom:602.986667pt;}
.y18{bottom:604.506667pt;}
.y6e{bottom:606.773333pt;}
.y92{bottom:612.066667pt;}
.y104{bottom:614.333333pt;}
.yea{bottom:615.093333pt;}
.y17{bottom:619.626667pt;}
.y103{bottom:621.893333pt;}
.y91{bottom:627.186667pt;}
.y6d{bottom:629.453333pt;}
.y45{bottom:630.200000pt;}
.y16{bottom:634.746667pt;}
.y102{bottom:637.013333pt;}
.ye9{bottom:637.760000pt;}
.yaf{bottom:640.786667pt;}
.y44{bottom:645.320000pt;}
.y15{bottom:649.853333pt;}
.yae{bottom:655.906667pt;}
.y101{bottom:659.680000pt;}
.ye8{bottom:660.440000pt;}
.y14{bottom:664.973333pt;}
.y43{bottom:668.000000pt;}
.yad{bottom:671.026667pt;}
.y90{bottom:672.533333pt;}
.y42{bottom:675.560000pt;}
.y100{bottom:682.360000pt;}
.y6c{bottom:686.546667pt;}
.ycf{bottom:687.653333pt;}
.y41{bottom:690.680000pt;}
.y8f{bottom:695.213333pt;}
.y6b{bottom:701.666667pt;}
.y13{bottom:702.773333pt;}
.yff{bottom:705.040000pt;}
.y40{bottom:713.360000pt;}
.yac{bottom:716.373333pt;}
.y6a{bottom:716.773333pt;}
.y8e{bottom:717.893333pt;}
.ye7{bottom:725.453333pt;}
.y69{bottom:731.893333pt;}
.yce{bottom:733.013333pt;}
.y3f{bottom:736.026667pt;}
.yab{bottom:739.053333pt;}
.y8d{bottom:740.573333pt;}
.y68{bottom:747.013333pt;}
.y8c{bottom:748.120000pt;}
.y12{bottom:755.680000pt;}
.y3e{bottom:758.706667pt;}
.y67{bottom:762.133333pt;}
.y8b{bottom:763.240000pt;}
.yaa{bottom:766.266667pt;}
.ye6{bottom:770.800000pt;}
.ycd{bottom:778.360000pt;}
.y3d{bottom:781.386667pt;}
.y66{bottom:784.413333pt;}
.y11{bottom:785.920000pt;}
.ycc{bottom:793.480000pt;}
.y3c{bottom:804.066667pt;}
.y65{bottom:807.093333pt;}
.y8a{bottom:808.600000pt;}
.ya9{bottom:811.626667pt;}
.y10{bottom:816.160000pt;}
.ycb{bottom:823.720000pt;}
.ya8{bottom:826.746667pt;}
.yf{bottom:831.280000pt;}
.y64{bottom:834.293333pt;}
.yca{bottom:838.840000pt;}
.ye{bottom:846.400000pt;}
.y63{bottom:849.413333pt;}
.yc9{bottom:853.946667pt;}
.ye5{bottom:861.506667pt;}
.y89{bottom:861.906667pt;}
.y3b{bottom:869.066667pt;}
.y62{bottom:872.093333pt;}
.yd{bottom:876.626667pt;}
.y88{bottom:877.026667pt;}
.y61{bottom:879.653333pt;}
.yc8{bottom:884.186667pt;}
.yc{bottom:891.746667pt;}
.y87{bottom:892.146667pt;}
.y60{bottom:894.773333pt;}
.yc7{bottom:899.306667pt;}
.ye4{bottom:906.866667pt;}
.y86{bottom:907.266667pt;}
.y3a{bottom:914.426667pt;}
.y5f{bottom:917.453333pt;}
.yb{bottom:921.986667pt;}
.yc6{bottom:929.546667pt;}
.ye3{bottom:929.946667pt;}
.ya{bottom:937.106667pt;}
.y5e{bottom:940.120000pt;}
.yc5{bottom:944.666667pt;}
.ye2{bottom:945.066667pt;}
.y9{bottom:952.226667pt;}
.y39{bottom:959.773333pt;}
.y5d{bottom:962.800000pt;}
.y38{bottom:967.333333pt;}
.y85{bottom:974.893333pt;}
.y8{bottom:982.453333pt;}
.y5c{bottom:985.480000pt;}
.y84{bottom:990.013333pt;}
.y7{bottom:997.573333pt;}
.y37{bottom:1005.133333pt;}
.y5b{bottom:1008.160000pt;}
.y6{bottom:1012.693333pt;}
.y36{bottom:1027.813333pt;}
.y5a{bottom:1035.373333pt;}
.yc4{bottom:1042.933333pt;}
.y35{bottom:1050.493333pt;}
.y5{bottom:1051.066667pt;}
.y4{bottom:1073.746667pt;}
.y34{bottom:1087.200000pt;}
.y3{bottom:1092.866667pt;}
.y2{bottom:1106.386667pt;}
.h2{height:32.416667pt;}
.h6{height:36.468750pt;}
.h5{height:40.520833pt;}
.h3{height:48.625000pt;}
.h4{height:72.937500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.773333pt;}
.x1{left:41.586667pt;}
.x21{left:250.173333pt;}
.x15{left:251.280000pt;}
.x22{left:253.853333pt;}
.x20{left:255.040000pt;}
.x33{left:257.573333pt;}
.x4d{left:258.880000pt;}
.x23{left:260.200000pt;}
.x16{left:261.826667pt;}
.x7{left:264.773333pt;}
.x6{left:268.373333pt;}
.x17{left:276.560000pt;}
.x34{left:278.986667pt;}
.x3f{left:280.013333pt;}
.x4e{left:285.626667pt;}
.x43{left:289.893333pt;}
.x25{left:337.093333pt;}
.xa{left:338.266667pt;}
.x35{left:339.240000pt;}
.x26{left:340.786667pt;}
.x24{left:341.973333pt;}
.x27{left:345.066667pt;}
.x8{left:345.960000pt;}
.x3d{left:347.826667pt;}
.x28{left:354.506667pt;}
.x36{left:359.520000pt;}
.x9{left:364.613333pt;}
.x45{left:369.120000pt;}
.x4f{left:373.800000pt;}
.x19{left:378.480000pt;}
.x44{left:380.160000pt;}
.x18{left:381.466667pt;}
.x1a{left:415.693333pt;}
.xc{left:423.773333pt;}
.x2a{left:427.720000pt;}
.x29{left:428.893333pt;}
.x2b{left:430.760000pt;}
.xb{left:432.893333pt;}
.x5{left:438.426667pt;}
.x2c{left:441.800000pt;}
.x37{left:444.413333pt;}
.x3e{left:445.533333pt;}
.x4{left:453.546667pt;}
.x47{left:471.160000pt;}
.x46{left:475.160000pt;}
.x50{left:483.333333pt;}
.x40{left:488.600000pt;}
.x2e{left:510.960000pt;}
.x2f{left:514.640000pt;}
.x2d{left:515.826667pt;}
.xe{left:517.666667pt;}
.xd{left:519.826667pt;}
.x38{left:524.293333pt;}
.x31{left:528.733333pt;}
.xf{left:533.173333pt;}
.x30{left:542.506667pt;}
.x1b{left:545.613333pt;}
.x49{left:573.493333pt;}
.x48{left:577.213333pt;}
.x11{left:600.453333pt;}
.x12{left:601.386667pt;}
.x13{left:606.986667pt;}
.x39{left:611.226667pt;}
.x41{left:612.826667pt;}
.x32{left:618.706667pt;}
.x10{left:625.706667pt;}
.x42{left:641.653333pt;}
.x1e{left:644.546667pt;}
.x1d{left:647.480000pt;}
.x1c{left:661.546667pt;}
.x4a{left:663.773333pt;}
.x1f{left:665.146667pt;}
.x4c{left:675.253333pt;}
.x4b{left:678.986667pt;}
.x3a{left:684.173333pt;}
.x3b{left:692.053333pt;}
.x3c{left:694.160000pt;}
.x14{left:705.640000pt;}
.x3{left:719.320000pt;}
}




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