
    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_0d3ec93e9196348420b32333.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_6b2a1a47d7ca6e13d8b9fa07.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_f779e0e790913a5a1f631c37.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_288dce868b2c64e519538744.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e6f0708552efe89a65852fea.woff')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_07802a898a79db282ef20cc1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_14bc72bcc1ade5b5ad8ecf24.woff')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ae3b515158c64d5046f68905.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9{letter-spacing:-0.924000px;}
.lsb{letter-spacing:-0.540000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.206400px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.900000px;}
.lsa{letter-spacing:21.546720px;}
.ls3{letter-spacing:700.920000px;}
.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:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.146400px;}
.ws4{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-7.888320px;}
._4{margin-left:-6.760080px;}
._8{margin-left:-4.906800px;}
._7{margin-left:-3.744000px;}
._9{margin-left:-2.649600px;}
._2{margin-left:-1.303920px;}
._1{width:1.290720px;}
._11{width:2.294880px;}
._3{width:3.480240px;}
._6{width:4.500000px;}
._b{width:5.736960px;}
._a{width:6.812640px;}
._f{width:7.922160px;}
._10{width:8.949840px;}
._c{width:10.422240px;}
._d{width:11.497920px;}
._e{width:12.501600px;}
._16{width:13.529760px;}
._12{width:16.852320px;}
._15{width:18.086880px;}
._17{width:20.258640px;}
._13{width:26.497680px;}
._14{width:27.549360px;}
._19{width:67.230000px;}
._1a{width:70.983600px;}
._18{width:72.130320px;}
._5{width:98.304000px;}
._1c{width:145.993920px;}
._1b{width:147.005760px;}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:37.260000px;}
.yb{bottom:57.060000px;}
.ya{bottom:72.576000px;}
.y74{bottom:114.336000px;}
.ya3{bottom:115.056000px;}
.y8f{bottom:117.936000px;}
.y8d{bottom:118.296000px;}
.y3f{bottom:124.416000px;}
.y73{bottom:131.616000px;}
.y8e{bottom:131.976000px;}
.ya2{bottom:132.336000px;}
.ye6{bottom:133.776000px;}
.y8c{bottom:135.576000px;}
.y3e{bottom:141.516000px;}
.y72{bottom:148.716000px;}
.ya1{bottom:149.436000px;}
.ye5{bottom:151.050000px;}
.y8b{bottom:152.850000px;}
.y3d{bottom:158.790000px;}
.y71{bottom:165.990000px;}
.ya0{bottom:166.710000px;}
.ye4{bottom:168.330000px;}
.y8a{bottom:170.130000px;}
.y3c{bottom:176.070000px;}
.y70{bottom:183.270000px;}
.y9f{bottom:183.990000px;}
.ye3{bottom:185.430000px;}
.y89{bottom:187.230000px;}
.yb7{bottom:192.990000px;}
.y3b{bottom:194.070000px;}
.y6f{bottom:200.550000px;}
.y9e{bottom:201.270000px;}
.ye2{bottom:202.710000px;}
.y88{bottom:204.510000px;}
.yb6{bottom:210.270000px;}
.y3a{bottom:216.570000px;}
.y6e{bottom:217.830000px;}
.y9d{bottom:218.550000px;}
.ye1{bottom:219.990000px;}
.y87{bottom:221.790000px;}
.yb5{bottom:227.550000px;}
.y39{bottom:233.850000px;}
.y6d{bottom:235.110000px;}
.y9c{bottom:235.650000px;}
.ye0{bottom:237.270000px;}
.y86{bottom:239.070000px;}
.yb4{bottom:244.650000px;}
.y9b{bottom:249.690000px;}
.y38{bottom:251.130000px;}
.y6c{bottom:252.210000px;}
.ydf{bottom:254.550000px;}
.y85{bottom:256.350000px;}
.yb3{bottom:261.930000px;}
.ycb{bottom:262.650000px;}
.y37{bottom:268.410000px;}
.y6b{bottom:269.490000px;}
.yde{bottom:271.650000px;}
.y84{bottom:273.630000px;}
.yb2{bottom:279.210000px;}
.yca{bottom:279.930000px;}
.y36{bottom:285.690000px;}
.y6a{bottom:286.770000px;}
.ydd{bottom:288.930000px;}
.y83{bottom:290.730000px;}
.yb1{bottom:296.490000px;}
.yc9{bottom:297.210000px;}
.y35{bottom:302.970000px;}
.y69{bottom:304.050000px;}
.ydc{bottom:306.210000px;}
.y82{bottom:308.010000px;}
.yb0{bottom:313.770000px;}
.yc8{bottom:314.490000px;}
.y34{bottom:320.070000px;}
.y68{bottom:321.330000px;}
.ydb{bottom:323.490000px;}
.y81{bottom:325.290000px;}
.yaf{bottom:331.050000px;}
.yc7{bottom:331.770000px;}
.y33{bottom:337.395000px;}
.y67{bottom:338.475000px;}
.yda{bottom:340.815000px;}
.y80{bottom:342.615000px;}
.yae{bottom:348.195000px;}
.yc6{bottom:349.095000px;}
.y32{bottom:354.675000px;}
.y66{bottom:355.755000px;}
.yd9{bottom:358.095000px;}
.y7f{bottom:359.895000px;}
.yad{bottom:362.235000px;}
.yc5{bottom:366.195000px;}
.y31{bottom:371.955000px;}
.y65{bottom:373.035000px;}
.yd8{bottom:375.195000px;}
.y7e{bottom:376.995000px;}
.yc4{bottom:383.475000px;}
.y30{bottom:389.235000px;}
.y64{bottom:390.315000px;}
.y7d{bottom:394.275000px;}
.yc3{bottom:400.755000px;}
.y2f{bottom:406.515000px;}
.y63{bottom:407.595000px;}
.y7c{bottom:411.555000px;}
.yc2{bottom:414.795000px;}
.y2e{bottom:423.615000px;}
.y62{bottom:424.875000px;}
.y7b{bottom:428.835000px;}
.y2d{bottom:440.895000px;}
.y61{bottom:441.975000px;}
.y7a{bottom:446.115000px;}
.y2c{bottom:458.175000px;}
.y60{bottom:459.255000px;}
.y79{bottom:463.395000px;}
.y9a{bottom:466.815000px;}
.y2b{bottom:475.455000px;}
.y5f{bottom:476.535000px;}
.y78{bottom:480.495000px;}
.y99{bottom:484.095000px;}
.y2a{bottom:492.735000px;}
.y5e{bottom:493.815000px;}
.y77{bottom:497.775000px;}
.y98{bottom:501.195000px;}
.y29{bottom:509.835000px;}
.y5d{bottom:511.095000px;}
.y76{bottom:515.775000px;}
.y97{bottom:518.475000px;}
.y28{bottom:527.115000px;}
.y5c{bottom:528.375000px;}
.y75{bottom:532.515000px;}
.y96{bottom:535.755000px;}
.y27{bottom:544.395000px;}
.y5b{bottom:545.475000px;}
.y95{bottom:553.035000px;}
.y26{bottom:561.675000px;}
.y5a{bottom:562.755000px;}
.y94{bottom:570.315000px;}
.y25{bottom:578.955000px;}
.y59{bottom:580.035000px;}
.y93{bottom:587.595000px;}
.y24{bottom:596.235000px;}
.y58{bottom:597.315000px;}
.yd7{bottom:601.815000px;}
.y92{bottom:604.725000px;}
.y23{bottom:613.365000px;}
.y57{bottom:614.625000px;}
.yd6{bottom:619.125000px;}
.y91{bottom:622.005000px;}
.y22{bottom:630.645000px;}
.y56{bottom:631.905000px;}
.y90{bottom:636.045000px;}
.yd5{bottom:636.225000px;}
.yac{bottom:639.285000px;}
.y21{bottom:647.925000px;}
.y55{bottom:649.005000px;}
.yc1{bottom:652.065000px;}
.yd4{bottom:653.505000px;}
.yab{bottom:656.565000px;}
.y20{bottom:665.205000px;}
.y54{bottom:666.285000px;}
.yc0{bottom:669.345000px;}
.yd3{bottom:670.785000px;}
.yaa{bottom:673.845000px;}
.y1f{bottom:683.565000px;}
.ybf{bottom:686.625000px;}
.yd2{bottom:688.065000px;}
.ya9{bottom:691.125000px;}
.y53{bottom:700.845000px;}
.y1e{bottom:701.205000px;}
.ybe{bottom:703.725000px;}
.yd1{bottom:705.345000px;}
.ya8{bottom:708.225000px;}
.y52{bottom:718.125000px;}
.y1d{bottom:720.285000px;}
.ybd{bottom:721.005000px;}
.yd0{bottom:722.625000px;}
.ya7{bottom:725.505000px;}
.y51{bottom:735.225000px;}
.ybc{bottom:738.285000px;}
.y1c{bottom:739.185000px;}
.ycf{bottom:739.725000px;}
.ya6{bottom:742.785000px;}
.y50{bottom:752.505000px;}
.ybb{bottom:755.565000px;}
.yce{bottom:757.005000px;}
.y1b{bottom:758.085000px;}
.ya5{bottom:760.065000px;}
.y4f{bottom:769.785000px;}
.yba{bottom:772.845000px;}
.ya4{bottom:774.105000px;}
.ycd{bottom:774.285000px;}
.y1a{bottom:777.165000px;}
.y4e{bottom:787.065000px;}
.ycc{bottom:788.325000px;}
.yb9{bottom:789.945000px;}
.y19{bottom:796.065000px;}
.yb8{bottom:803.985000px;}
.y4d{bottom:804.345000px;}
.y18{bottom:815.145000px;}
.y4c{bottom:821.625000px;}
.y17{bottom:834.045000px;}
.y4b{bottom:838.725000px;}
.y16{bottom:852.945000px;}
.y4a{bottom:856.005000px;}
.y15{bottom:872.070000px;}
.y49{bottom:873.330000px;}
.y48{bottom:890.610000px;}
.y14{bottom:890.970000px;}
.y47{bottom:907.890000px;}
.y13{bottom:910.050000px;}
.y46{bottom:925.170000px;}
.y12{bottom:928.950000px;}
.y45{bottom:942.270000px;}
.y11{bottom:948.030000px;}
.y44{bottom:959.550000px;}
.y10{bottom:966.930000px;}
.y43{bottom:976.830000px;}
.yf{bottom:985.830000px;}
.y42{bottom:994.110000px;}
.ye{bottom:1005.090000px;}
.y41{bottom:1011.390000px;}
.yd{bottom:1025.790000px;}
.y40{bottom:1028.490000px;}
.y9{bottom:1047.570000px;}
.y8{bottom:1067.730000px;}
.y7{bottom:1085.010000px;}
.y6{bottom:1103.010000px;}
.y5{bottom:1119.750000px;}
.y4{bottom:1162.080000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h7{height:39.049805px;}
.h5{height:42.164648px;}
.hb{height:43.156758px;}
.h2{height:43.215117px;}
.hd{height:43.506914px;}
.h8{height:46.736719px;}
.h9{height:47.901094px;}
.hc{height:49.255313px;}
.h4{height:50.800781px;}
.ha{height:51.996094px;}
.h3{height:52.066406px;}
.h6{height:60.855469px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.035987px;}
.x9{left:110.375987px;}
.x8{left:122.615987px;}
.x1{left:129.275987px;}
.x18{left:135.035987px;}
.x13{left:162.029987px;}
.x5{left:168.149987px;}
.xf{left:178.769987px;}
.xc{left:192.449987px;}
.xb{left:326.774987px;}
.x17{left:339.194987px;}
.x1d{left:344.594987px;}
.x19{left:347.654987px;}
.x1b{left:349.634987px;}
.xe{left:354.314987px;}
.x10{left:357.734987px;}
.x11{left:363.134987px;}
.x12{left:364.574987px;}
.x24{left:367.094987px;}
.xa{left:371.594987px;}
.x15{left:384.734987px;}
.x7{left:386.354987px;}
.xd{left:391.574987px;}
.x28{left:395.714987px;}
.x14{left:398.954987px;}
.x20{left:406.874987px;}
.x22{left:410.114987px;}
.x6{left:412.274987px;}
.x26{left:418.034987px;}
.x3{left:446.474987px;}
.x4{left:518.504987px;}
.x27{left:584.924987px;}
.x1c{left:601.844987px;}
.x1a{left:616.424987px;}
.x1f{left:627.584987px;}
.x1e{left:629.924987px;}
.x25{left:632.084987px;}
.x21{left:643.424987px;}
.x23{left:646.844987px;}
.x16{left:741.389987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.821333pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.183467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.800000pt;}
.lsa{letter-spacing:19.152640pt;}
.ls3{letter-spacing:623.040000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.463467pt;}
.ws4{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-7.011840pt;}
._4{margin-left:-6.008960pt;}
._8{margin-left:-4.361600pt;}
._7{margin-left:-3.328000pt;}
._9{margin-left:-2.355200pt;}
._2{margin-left:-1.159040pt;}
._1{width:1.147307pt;}
._11{width:2.039893pt;}
._3{width:3.093547pt;}
._6{width:4.000000pt;}
._b{width:5.099520pt;}
._a{width:6.055680pt;}
._f{width:7.041920pt;}
._10{width:7.955413pt;}
._c{width:9.264213pt;}
._d{width:10.220373pt;}
._e{width:11.112533pt;}
._16{width:12.026453pt;}
._12{width:14.979840pt;}
._15{width:16.077227pt;}
._17{width:18.007680pt;}
._13{width:23.553493pt;}
._14{width:24.488320pt;}
._19{width:59.760000pt;}
._1a{width:63.096533pt;}
._18{width:64.115840pt;}
._5{width:87.381333pt;}
._1c{width:129.772373pt;}
._1b{width:130.671787pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:33.120000pt;}
.yb{bottom:50.720000pt;}
.ya{bottom:64.512000pt;}
.y74{bottom:101.632000pt;}
.ya3{bottom:102.272000pt;}
.y8f{bottom:104.832000pt;}
.y8d{bottom:105.152000pt;}
.y3f{bottom:110.592000pt;}
.y73{bottom:116.992000pt;}
.y8e{bottom:117.312000pt;}
.ya2{bottom:117.632000pt;}
.ye6{bottom:118.912000pt;}
.y8c{bottom:120.512000pt;}
.y3e{bottom:125.792000pt;}
.y72{bottom:132.192000pt;}
.ya1{bottom:132.832000pt;}
.ye5{bottom:134.266667pt;}
.y8b{bottom:135.866667pt;}
.y3d{bottom:141.146667pt;}
.y71{bottom:147.546667pt;}
.ya0{bottom:148.186667pt;}
.ye4{bottom:149.626667pt;}
.y8a{bottom:151.226667pt;}
.y3c{bottom:156.506667pt;}
.y70{bottom:162.906667pt;}
.y9f{bottom:163.546667pt;}
.ye3{bottom:164.826667pt;}
.y89{bottom:166.426667pt;}
.yb7{bottom:171.546667pt;}
.y3b{bottom:172.506667pt;}
.y6f{bottom:178.266667pt;}
.y9e{bottom:178.906667pt;}
.ye2{bottom:180.186667pt;}
.y88{bottom:181.786667pt;}
.yb6{bottom:186.906667pt;}
.y3a{bottom:192.506667pt;}
.y6e{bottom:193.626667pt;}
.y9d{bottom:194.266667pt;}
.ye1{bottom:195.546667pt;}
.y87{bottom:197.146667pt;}
.yb5{bottom:202.266667pt;}
.y39{bottom:207.866667pt;}
.y6d{bottom:208.986667pt;}
.y9c{bottom:209.466667pt;}
.ye0{bottom:210.906667pt;}
.y86{bottom:212.506667pt;}
.yb4{bottom:217.466667pt;}
.y9b{bottom:221.946667pt;}
.y38{bottom:223.226667pt;}
.y6c{bottom:224.186667pt;}
.ydf{bottom:226.266667pt;}
.y85{bottom:227.866667pt;}
.yb3{bottom:232.826667pt;}
.ycb{bottom:233.466667pt;}
.y37{bottom:238.586667pt;}
.y6b{bottom:239.546667pt;}
.yde{bottom:241.466667pt;}
.y84{bottom:243.226667pt;}
.yb2{bottom:248.186667pt;}
.yca{bottom:248.826667pt;}
.y36{bottom:253.946667pt;}
.y6a{bottom:254.906667pt;}
.ydd{bottom:256.826667pt;}
.y83{bottom:258.426667pt;}
.yb1{bottom:263.546667pt;}
.yc9{bottom:264.186667pt;}
.y35{bottom:269.306667pt;}
.y69{bottom:270.266667pt;}
.ydc{bottom:272.186667pt;}
.y82{bottom:273.786667pt;}
.yb0{bottom:278.906667pt;}
.yc8{bottom:279.546667pt;}
.y34{bottom:284.506667pt;}
.y68{bottom:285.626667pt;}
.ydb{bottom:287.546667pt;}
.y81{bottom:289.146667pt;}
.yaf{bottom:294.266667pt;}
.yc7{bottom:294.906667pt;}
.y33{bottom:299.906667pt;}
.y67{bottom:300.866667pt;}
.yda{bottom:302.946667pt;}
.y80{bottom:304.546667pt;}
.yae{bottom:309.506667pt;}
.yc6{bottom:310.306667pt;}
.y32{bottom:315.266667pt;}
.y66{bottom:316.226667pt;}
.yd9{bottom:318.306667pt;}
.y7f{bottom:319.906667pt;}
.yad{bottom:321.986667pt;}
.yc5{bottom:325.506667pt;}
.y31{bottom:330.626667pt;}
.y65{bottom:331.586667pt;}
.yd8{bottom:333.506667pt;}
.y7e{bottom:335.106667pt;}
.yc4{bottom:340.866667pt;}
.y30{bottom:345.986667pt;}
.y64{bottom:346.946667pt;}
.y7d{bottom:350.466667pt;}
.yc3{bottom:356.226667pt;}
.y2f{bottom:361.346667pt;}
.y63{bottom:362.306667pt;}
.y7c{bottom:365.826667pt;}
.yc2{bottom:368.706667pt;}
.y2e{bottom:376.546667pt;}
.y62{bottom:377.666667pt;}
.y7b{bottom:381.186667pt;}
.y2d{bottom:391.906667pt;}
.y61{bottom:392.866667pt;}
.y7a{bottom:396.546667pt;}
.y2c{bottom:407.266667pt;}
.y60{bottom:408.226667pt;}
.y79{bottom:411.906667pt;}
.y9a{bottom:414.946667pt;}
.y2b{bottom:422.626667pt;}
.y5f{bottom:423.586667pt;}
.y78{bottom:427.106667pt;}
.y99{bottom:430.306667pt;}
.y2a{bottom:437.986667pt;}
.y5e{bottom:438.946667pt;}
.y77{bottom:442.466667pt;}
.y98{bottom:445.506667pt;}
.y29{bottom:453.186667pt;}
.y5d{bottom:454.306667pt;}
.y76{bottom:458.466667pt;}
.y97{bottom:460.866667pt;}
.y28{bottom:468.546667pt;}
.y5c{bottom:469.666667pt;}
.y75{bottom:473.346667pt;}
.y96{bottom:476.226667pt;}
.y27{bottom:483.906667pt;}
.y5b{bottom:484.866667pt;}
.y95{bottom:491.586667pt;}
.y26{bottom:499.266667pt;}
.y5a{bottom:500.226667pt;}
.y94{bottom:506.946667pt;}
.y25{bottom:514.626667pt;}
.y59{bottom:515.586667pt;}
.y93{bottom:522.306667pt;}
.y24{bottom:529.986667pt;}
.y58{bottom:530.946667pt;}
.yd7{bottom:534.946667pt;}
.y92{bottom:537.533333pt;}
.y23{bottom:545.213333pt;}
.y57{bottom:546.333333pt;}
.yd6{bottom:550.333333pt;}
.y91{bottom:552.893333pt;}
.y22{bottom:560.573333pt;}
.y56{bottom:561.693333pt;}
.y90{bottom:565.373333pt;}
.yd5{bottom:565.533333pt;}
.yac{bottom:568.253333pt;}
.y21{bottom:575.933333pt;}
.y55{bottom:576.893333pt;}
.yc1{bottom:579.613333pt;}
.yd4{bottom:580.893333pt;}
.yab{bottom:583.613333pt;}
.y20{bottom:591.293333pt;}
.y54{bottom:592.253333pt;}
.yc0{bottom:594.973333pt;}
.yd3{bottom:596.253333pt;}
.yaa{bottom:598.973333pt;}
.y1f{bottom:607.613333pt;}
.ybf{bottom:610.333333pt;}
.yd2{bottom:611.613333pt;}
.ya9{bottom:614.333333pt;}
.y53{bottom:622.973333pt;}
.y1e{bottom:623.293333pt;}
.ybe{bottom:625.533333pt;}
.yd1{bottom:626.973333pt;}
.ya8{bottom:629.533333pt;}
.y52{bottom:638.333333pt;}
.y1d{bottom:640.253333pt;}
.ybd{bottom:640.893333pt;}
.yd0{bottom:642.333333pt;}
.ya7{bottom:644.893333pt;}
.y51{bottom:653.533333pt;}
.ybc{bottom:656.253333pt;}
.y1c{bottom:657.053333pt;}
.ycf{bottom:657.533333pt;}
.ya6{bottom:660.253333pt;}
.y50{bottom:668.893333pt;}
.ybb{bottom:671.613333pt;}
.yce{bottom:672.893333pt;}
.y1b{bottom:673.853333pt;}
.ya5{bottom:675.613333pt;}
.y4f{bottom:684.253333pt;}
.yba{bottom:686.973333pt;}
.ya4{bottom:688.093333pt;}
.ycd{bottom:688.253333pt;}
.y1a{bottom:690.813333pt;}
.y4e{bottom:699.613333pt;}
.ycc{bottom:700.733333pt;}
.yb9{bottom:702.173333pt;}
.y19{bottom:707.613333pt;}
.yb8{bottom:714.653333pt;}
.y4d{bottom:714.973333pt;}
.y18{bottom:724.573333pt;}
.y4c{bottom:730.333333pt;}
.y17{bottom:741.373333pt;}
.y4b{bottom:745.533333pt;}
.y16{bottom:758.173333pt;}
.y4a{bottom:760.893333pt;}
.y15{bottom:775.173333pt;}
.y49{bottom:776.293333pt;}
.y48{bottom:791.653333pt;}
.y14{bottom:791.973333pt;}
.y47{bottom:807.013333pt;}
.y13{bottom:808.933333pt;}
.y46{bottom:822.373333pt;}
.y12{bottom:825.733333pt;}
.y45{bottom:837.573333pt;}
.y11{bottom:842.693333pt;}
.y44{bottom:852.933333pt;}
.y10{bottom:859.493333pt;}
.y43{bottom:868.293333pt;}
.yf{bottom:876.293333pt;}
.y42{bottom:883.653333pt;}
.ye{bottom:893.413333pt;}
.y41{bottom:899.013333pt;}
.yd{bottom:911.813333pt;}
.y40{bottom:914.213333pt;}
.y9{bottom:931.173333pt;}
.y8{bottom:949.093333pt;}
.y7{bottom:964.453333pt;}
.y6{bottom:980.453333pt;}
.y5{bottom:995.333333pt;}
.y4{bottom:1032.960000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h7{height:34.710938pt;}
.h5{height:37.479688pt;}
.hb{height:38.361562pt;}
.h2{height:38.413438pt;}
.hd{height:38.672812pt;}
.h8{height:41.543750pt;}
.h9{height:42.578750pt;}
.hc{height:43.782500pt;}
.h4{height:45.156250pt;}
.ha{height:46.218750pt;}
.h3{height:46.281250pt;}
.h6{height:54.093750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.x9{left:98.111988pt;}
.x8{left:108.991988pt;}
.x1{left:114.911988pt;}
.x18{left:120.031988pt;}
.x13{left:144.026655pt;}
.x5{left:149.466655pt;}
.xf{left:158.906655pt;}
.xc{left:171.066655pt;}
.xb{left:290.466655pt;}
.x17{left:301.506655pt;}
.x1d{left:306.306655pt;}
.x19{left:309.026655pt;}
.x1b{left:310.786655pt;}
.xe{left:314.946655pt;}
.x10{left:317.986655pt;}
.x11{left:322.786655pt;}
.x12{left:324.066655pt;}
.x24{left:326.306655pt;}
.xa{left:330.306655pt;}
.x15{left:341.986655pt;}
.x7{left:343.426655pt;}
.xd{left:348.066655pt;}
.x28{left:351.746655pt;}
.x14{left:354.626655pt;}
.x20{left:361.666655pt;}
.x22{left:364.546655pt;}
.x6{left:366.466655pt;}
.x26{left:371.586655pt;}
.x3{left:396.866655pt;}
.x4{left:460.893322pt;}
.x27{left:519.933322pt;}
.x1c{left:534.973322pt;}
.x1a{left:547.933322pt;}
.x1f{left:557.853322pt;}
.x1e{left:559.933322pt;}
.x25{left:561.853322pt;}
.x21{left:571.933322pt;}
.x23{left:574.973322pt;}
.x16{left:659.013322pt;}
}




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