
    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_197efe359ebdf7ee090c32da.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ba09beb656d30abc3a1e775c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4c258931679dee35b843a83f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_f71a82b7db2fef7022ddaf09.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_4175de6dbbfdfaae647d95c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2fb2834a88b16f4bdb942f4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957520;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.ls4{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.093000px;}
.ls9{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls8{letter-spacing:43.122720px;}
.ls6{letter-spacing:73.362720px;}
.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:-19.131240px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.784000px;}
.ws8{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.238800px;}
.ws6{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.220000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.152000px;}
._2{width:1.244880px;}
._1{width:2.712000px;}
._3{width:3.715200px;}
._6{width:4.980240px;}
._7{width:6.215040px;}
._9{width:7.906320px;}
._8{width:9.113760px;}
._5{width:10.527840px;}
._4{width:11.673360px;}
._d{width:12.778560px;}
._e{width:13.874400px;}
._c{width:15.945600px;}
._16{width:16.954320px;}
._12{width:17.987760px;}
._11{width:19.003680px;}
._a{width:20.338560px;}
._b{width:21.762720px;}
._f{width:23.067360px;}
._14{width:24.332400px;}
._13{width:25.398000px;}
._10{width:27.320400px;}
._15{width:28.804320px;}
._17{width:30.597120px;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(0,177,80);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,153,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs5{font-size:30.240000px;}
.fs6{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:12.960000px;}
.y4{bottom:13.140000px;}
.y6{bottom:47.160000px;}
.y9{bottom:57.780000px;}
.y8{bottom:78.516000px;}
.y40{bottom:99.216000px;}
.y3d{bottom:114.876000px;}
.yf4{bottom:121.716000px;}
.y6d{bottom:122.076000px;}
.y9e{bottom:123.156000px;}
.yc7{bottom:130.356000px;}
.y3c{bottom:131.976000px;}
.yf3{bottom:138.096000px;}
.y6c{bottom:139.356000px;}
.y9d{bottom:140.436000px;}
.yc6{bottom:147.636000px;}
.ye6{bottom:149.076000px;}
.y3b{bottom:149.256000px;}
.yf2{bottom:155.190000px;}
.y6b{bottom:156.630000px;}
.y9c{bottom:157.530000px;}
.yc5{bottom:164.910000px;}
.ye5{bottom:166.350000px;}
.y3a{bottom:166.530000px;}
.yf1{bottom:171.570000px;}
.y6a{bottom:173.910000px;}
.y9b{bottom:174.810000px;}
.yc4{bottom:182.190000px;}
.ye4{bottom:183.630000px;}
.y39{bottom:183.810000px;}
.yf0{bottom:188.670000px;}
.y69{bottom:191.190000px;}
.y9a{bottom:192.090000px;}
.yc3{bottom:199.470000px;}
.ye3{bottom:200.910000px;}
.y38{bottom:201.090000px;}
.yef{bottom:205.050000px;}
.y68{bottom:208.470000px;}
.y99{bottom:209.370000px;}
.yc2{bottom:216.570000px;}
.y37{bottom:218.190000px;}
.yee{bottom:222.150000px;}
.y67{bottom:225.570000px;}
.y98{bottom:226.650000px;}
.yc1{bottom:233.850000px;}
.y36{bottom:235.470000px;}
.yed{bottom:238.530000px;}
.y66{bottom:242.850000px;}
.y97{bottom:243.930000px;}
.yc0{bottom:251.130000px;}
.ye2{bottom:252.570000px;}
.y35{bottom:252.750000px;}
.yec{bottom:255.630000px;}
.y65{bottom:260.130000px;}
.y96{bottom:261.030000px;}
.ybf{bottom:268.410000px;}
.ye1{bottom:269.850000px;}
.y34{bottom:270.030000px;}
.yeb{bottom:272.010000px;}
.y64{bottom:277.410000px;}
.y95{bottom:278.310000px;}
.ybe{bottom:285.690000px;}
.ye0{bottom:287.130000px;}
.y33{bottom:287.310000px;}
.yea{bottom:289.110000px;}
.y63{bottom:294.690000px;}
.y94{bottom:295.590000px;}
.ybd{bottom:302.790000px;}
.ydf{bottom:304.410000px;}
.y32{bottom:304.590000px;}
.ye9{bottom:305.490000px;}
.y62{bottom:311.790000px;}
.y93{bottom:312.870000px;}
.ybc{bottom:320.070000px;}
.y31{bottom:321.690000px;}
.ye8{bottom:322.410000px;}
.y61{bottom:329.070000px;}
.y92{bottom:330.150000px;}
.ybb{bottom:337.395000px;}
.ye7{bottom:338.835000px;}
.y30{bottom:339.015000px;}
.y60{bottom:346.395000px;}
.y91{bottom:347.475000px;}
.yba{bottom:354.675000px;}
.yde{bottom:356.115000px;}
.y2f{bottom:356.295000px;}
.y5f{bottom:363.675000px;}
.y90{bottom:364.575000px;}
.yb9{bottom:371.955000px;}
.ydd{bottom:373.395000px;}
.y2e{bottom:373.575000px;}
.y5e{bottom:380.955000px;}
.y8f{bottom:381.855000px;}
.yb8{bottom:389.235000px;}
.ydc{bottom:390.675000px;}
.y2d{bottom:390.855000px;}
.y5d{bottom:398.235000px;}
.y8e{bottom:399.135000px;}
.yb7{bottom:406.335000px;}
.ydb{bottom:407.955000px;}
.y2c{bottom:408.135000px;}
.y5c{bottom:415.335000px;}
.y8d{bottom:416.415000px;}
.yb6{bottom:423.615000px;}
.y2b{bottom:425.235000px;}
.y5b{bottom:432.615000px;}
.y8c{bottom:433.695000px;}
.yb5{bottom:440.895000px;}
.y2a{bottom:442.515000px;}
.y5a{bottom:449.895000px;}
.y8b{bottom:450.975000px;}
.yb4{bottom:458.175000px;}
.yda{bottom:459.615000px;}
.y29{bottom:459.795000px;}
.y59{bottom:467.175000px;}
.y8a{bottom:468.075000px;}
.yb3{bottom:475.455000px;}
.yd9{bottom:476.895000px;}
.y28{bottom:477.075000px;}
.y58{bottom:484.455000px;}
.y89{bottom:485.355000px;}
.yb2{bottom:492.735000px;}
.yd8{bottom:494.175000px;}
.y27{bottom:494.355000px;}
.y57{bottom:501.735000px;}
.y88{bottom:502.635000px;}
.yb1{bottom:509.835000px;}
.yd7{bottom:511.455000px;}
.y26{bottom:511.635000px;}
.y56{bottom:515.595000px;}
.y87{bottom:519.915000px;}
.yb0{bottom:527.115000px;}
.y25{bottom:528.735000px;}
.y86{bottom:537.195000px;}
.y24{bottom:544.395000px;}
.yd6{bottom:545.835000px;}
.y85{bottom:554.295000px;}
.y23{bottom:554.655000px;}
.yaf{bottom:561.675000px;}
.yd5{bottom:563.115000px;}
.y84{bottom:571.575000px;}
.y22{bottom:571.935000px;}
.yae{bottom:578.955000px;}
.yd4{bottom:580.395000px;}
.y83{bottom:588.855000px;}
.y21{bottom:589.215000px;}
.yad{bottom:596.235000px;}
.yd3{bottom:597.675000px;}
.y82{bottom:606.165000px;}
.y20{bottom:606.525000px;}
.yac{bottom:613.365000px;}
.yd2{bottom:614.985000px;}
.y81{bottom:623.445000px;}
.y1f{bottom:623.625000px;}
.yab{bottom:630.645000px;}
.yd1{bottom:632.265000px;}
.y80{bottom:640.725000px;}
.y1e{bottom:640.905000px;}
.yaa{bottom:647.925000px;}
.yd0{bottom:649.365000px;}
.y7f{bottom:657.825000px;}
.y1d{bottom:658.185000px;}
.ya9{bottom:665.205000px;}
.ycf{bottom:666.645000px;}
.y7e{bottom:675.105000px;}
.y1c{bottom:675.465000px;}
.ya8{bottom:682.485000px;}
.yce{bottom:683.925000px;}
.y7d{bottom:692.385000px;}
.y1b{bottom:692.745000px;}
.ya7{bottom:699.585000px;}
.ycd{bottom:701.205000px;}
.y7c{bottom:709.665000px;}
.y1a{bottom:710.025000px;}
.ya6{bottom:716.865000px;}
.ycc{bottom:718.485000px;}
.y7b{bottom:726.945000px;}
.y19{bottom:727.125000px;}
.ya5{bottom:734.145000px;}
.ycb{bottom:735.765000px;}
.y7a{bottom:744.225000px;}
.y18{bottom:744.405000px;}
.ya4{bottom:751.425000px;}
.yca{bottom:752.865000px;}
.y79{bottom:761.325000px;}
.y17{bottom:761.685000px;}
.ya3{bottom:768.705000px;}
.yc9{bottom:770.145000px;}
.y78{bottom:778.605000px;}
.y16{bottom:778.965000px;}
.ya2{bottom:785.985000px;}
.yc8{bottom:787.425000px;}
.y77{bottom:795.885000px;}
.y15{bottom:796.245000px;}
.ya1{bottom:803.085000px;}
.y55{bottom:804.705000px;}
.y76{bottom:813.165000px;}
.y14{bottom:813.345000px;}
.ya0{bottom:820.365000px;}
.y54{bottom:821.985000px;}
.y75{bottom:830.445000px;}
.y13{bottom:830.625000px;}
.y9f{bottom:834.405000px;}
.y53{bottom:839.265000px;}
.y74{bottom:847.545000px;}
.y12{bottom:847.905000px;}
.y52{bottom:856.365000px;}
.y73{bottom:864.825000px;}
.y11{bottom:865.185000px;}
.y51{bottom:873.690000px;}
.y72{bottom:882.150000px;}
.y10{bottom:882.510000px;}
.y50{bottom:890.970000px;}
.y71{bottom:899.430000px;}
.yf{bottom:899.790000px;}
.y4f{bottom:908.250000px;}
.y70{bottom:916.710000px;}
.ye{bottom:919.590000px;}
.y4e{bottom:925.530000px;}
.y6f{bottom:933.990000px;}
.yd{bottom:936.870000px;}
.y4d{bottom:942.630000px;}
.y6e{bottom:947.850000px;}
.yc{bottom:954.690000px;}
.y4c{bottom:959.910000px;}
.yb{bottom:975.390000px;}
.y4b{bottom:977.190000px;}
.y4a{bottom:994.470000px;}
.ya{bottom:997.530000px;}
.y49{bottom:1011.750000px;}
.y7{bottom:1023.810000px;}
.y48{bottom:1029.030000px;}
.y5{bottom:1040.550000px;}
.y47{bottom:1046.130000px;}
.y46{bottom:1063.410000px;}
.y45{bottom:1080.690000px;}
.y44{bottom:1097.970000px;}
.y43{bottom:1115.250000px;}
.y42{bottom:1132.530000px;}
.y3{bottom:1149.300000px;}
.y41{bottom:1149.660000px;}
.y3f{bottom:1167.660000px;}
.y1{bottom:1179.180000px;}
.y3e{bottom:1192.140000px;}
.hd{height:21.336328px;}
.h2{height:29.700000px;}
.h4{height:29.880000px;}
.h10{height:39.716016px;}
.hb{height:41.726953px;}
.ha{height:42.164648px;}
.hf{height:43.506914px;}
.hc{height:45.461953px;}
.h3{height:50.273438px;}
.h5{height:50.800781px;}
.he{height:52.171875px;}
.h9{height:67.565039px;}
.h7{height:67.824844px;}
.h8{height:86.255508px;}
.h6{height:108.756000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:199.830000px;}
.w3{width:252.750000px;}
.w4{width:265.755000px;}
.w2{width:718.350000px;}
.w6{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:23.940000px;}
.x3{left:51.294000px;}
.x6{left:62.310000px;}
.x10{left:97.235987px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.xf{left:110.195987px;}
.xb{left:142.955987px;}
.x22{left:151.229987px;}
.x4{left:182.559000px;}
.x15{left:237.314987px;}
.x2{left:240.519000px;}
.x1d{left:245.594987px;}
.x1c{left:258.554987px;}
.x18{left:285.374987px;}
.x13{left:308.774987px;}
.x1b{left:322.994987px;}
.x17{left:344.594987px;}
.x1a{left:348.914987px;}
.x5{left:352.695000px;}
.xd{left:360.434987px;}
.x1f{left:366.374987px;}
.x20{left:381.674987px;}
.x12{left:386.534987px;}
.x21{left:395.714987px;}
.x1e{left:400.784987px;}
.x14{left:437.504987px;}
.x11{left:446.504987px;}
.xa{left:450.104987px;}
.xc{left:452.264987px;}
.xe{left:459.104987px;}
.x19{left:606.749987px;}
.x16{left:614.309987px;}
.x7{left:618.450000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.082667pt;}
.ls9{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls8{letter-spacing:38.331307pt;}
.ls6{letter-spacing:65.211307pt;}
.ws2{word-spacing:-17.005547pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.640000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.106560pt;}
._1{width:2.410667pt;}
._3{width:3.302400pt;}
._6{width:4.426880pt;}
._7{width:5.524480pt;}
._9{width:7.027840pt;}
._8{width:8.101120pt;}
._5{width:9.358080pt;}
._4{width:10.376320pt;}
._d{width:11.358720pt;}
._e{width:12.332800pt;}
._c{width:14.173867pt;}
._16{width:15.070507pt;}
._12{width:15.989120pt;}
._11{width:16.892160pt;}
._a{width:18.078720pt;}
._b{width:19.344640pt;}
._f{width:20.504320pt;}
._14{width:21.628800pt;}
._13{width:22.576000pt;}
._10{width:24.284800pt;}
._15{width:25.603840pt;}
._17{width:27.197440pt;}
.fs5{font-size:26.880000pt;}
.fs6{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:11.520000pt;}
.y4{bottom:11.680000pt;}
.y6{bottom:41.920000pt;}
.y9{bottom:51.360000pt;}
.y8{bottom:69.792000pt;}
.y40{bottom:88.192000pt;}
.y3d{bottom:102.112000pt;}
.yf4{bottom:108.192000pt;}
.y6d{bottom:108.512000pt;}
.y9e{bottom:109.472000pt;}
.yc7{bottom:115.872000pt;}
.y3c{bottom:117.312000pt;}
.yf3{bottom:122.752000pt;}
.y6c{bottom:123.872000pt;}
.y9d{bottom:124.832000pt;}
.yc6{bottom:131.232000pt;}
.ye6{bottom:132.512000pt;}
.y3b{bottom:132.672000pt;}
.yf2{bottom:137.946667pt;}
.y6b{bottom:139.226667pt;}
.y9c{bottom:140.026667pt;}
.yc5{bottom:146.586667pt;}
.ye5{bottom:147.866667pt;}
.y3a{bottom:148.026667pt;}
.yf1{bottom:152.506667pt;}
.y6a{bottom:154.586667pt;}
.y9b{bottom:155.386667pt;}
.yc4{bottom:161.946667pt;}
.ye4{bottom:163.226667pt;}
.y39{bottom:163.386667pt;}
.yf0{bottom:167.706667pt;}
.y69{bottom:169.946667pt;}
.y9a{bottom:170.746667pt;}
.yc3{bottom:177.306667pt;}
.ye3{bottom:178.586667pt;}
.y38{bottom:178.746667pt;}
.yef{bottom:182.266667pt;}
.y68{bottom:185.306667pt;}
.y99{bottom:186.106667pt;}
.yc2{bottom:192.506667pt;}
.y37{bottom:193.946667pt;}
.yee{bottom:197.466667pt;}
.y67{bottom:200.506667pt;}
.y98{bottom:201.466667pt;}
.yc1{bottom:207.866667pt;}
.y36{bottom:209.306667pt;}
.yed{bottom:212.026667pt;}
.y66{bottom:215.866667pt;}
.y97{bottom:216.826667pt;}
.yc0{bottom:223.226667pt;}
.ye2{bottom:224.506667pt;}
.y35{bottom:224.666667pt;}
.yec{bottom:227.226667pt;}
.y65{bottom:231.226667pt;}
.y96{bottom:232.026667pt;}
.ybf{bottom:238.586667pt;}
.ye1{bottom:239.866667pt;}
.y34{bottom:240.026667pt;}
.yeb{bottom:241.786667pt;}
.y64{bottom:246.586667pt;}
.y95{bottom:247.386667pt;}
.ybe{bottom:253.946667pt;}
.ye0{bottom:255.226667pt;}
.y33{bottom:255.386667pt;}
.yea{bottom:256.986667pt;}
.y63{bottom:261.946667pt;}
.y94{bottom:262.746667pt;}
.ybd{bottom:269.146667pt;}
.ydf{bottom:270.586667pt;}
.y32{bottom:270.746667pt;}
.ye9{bottom:271.546667pt;}
.y62{bottom:277.146667pt;}
.y93{bottom:278.106667pt;}
.ybc{bottom:284.506667pt;}
.y31{bottom:285.946667pt;}
.ye8{bottom:286.586667pt;}
.y61{bottom:292.506667pt;}
.y92{bottom:293.466667pt;}
.ybb{bottom:299.906667pt;}
.ye7{bottom:301.186667pt;}
.y30{bottom:301.346667pt;}
.y60{bottom:307.906667pt;}
.y91{bottom:308.866667pt;}
.yba{bottom:315.266667pt;}
.yde{bottom:316.546667pt;}
.y2f{bottom:316.706667pt;}
.y5f{bottom:323.266667pt;}
.y90{bottom:324.066667pt;}
.yb9{bottom:330.626667pt;}
.ydd{bottom:331.906667pt;}
.y2e{bottom:332.066667pt;}
.y5e{bottom:338.626667pt;}
.y8f{bottom:339.426667pt;}
.yb8{bottom:345.986667pt;}
.ydc{bottom:347.266667pt;}
.y2d{bottom:347.426667pt;}
.y5d{bottom:353.986667pt;}
.y8e{bottom:354.786667pt;}
.yb7{bottom:361.186667pt;}
.ydb{bottom:362.626667pt;}
.y2c{bottom:362.786667pt;}
.y5c{bottom:369.186667pt;}
.y8d{bottom:370.146667pt;}
.yb6{bottom:376.546667pt;}
.y2b{bottom:377.986667pt;}
.y5b{bottom:384.546667pt;}
.y8c{bottom:385.506667pt;}
.yb5{bottom:391.906667pt;}
.y2a{bottom:393.346667pt;}
.y5a{bottom:399.906667pt;}
.y8b{bottom:400.866667pt;}
.yb4{bottom:407.266667pt;}
.yda{bottom:408.546667pt;}
.y29{bottom:408.706667pt;}
.y59{bottom:415.266667pt;}
.y8a{bottom:416.066667pt;}
.yb3{bottom:422.626667pt;}
.yd9{bottom:423.906667pt;}
.y28{bottom:424.066667pt;}
.y58{bottom:430.626667pt;}
.y89{bottom:431.426667pt;}
.yb2{bottom:437.986667pt;}
.yd8{bottom:439.266667pt;}
.y27{bottom:439.426667pt;}
.y57{bottom:445.986667pt;}
.y88{bottom:446.786667pt;}
.yb1{bottom:453.186667pt;}
.yd7{bottom:454.626667pt;}
.y26{bottom:454.786667pt;}
.y56{bottom:458.306667pt;}
.y87{bottom:462.146667pt;}
.yb0{bottom:468.546667pt;}
.y25{bottom:469.986667pt;}
.y86{bottom:477.506667pt;}
.y24{bottom:483.906667pt;}
.yd6{bottom:485.186667pt;}
.y85{bottom:492.706667pt;}
.y23{bottom:493.026667pt;}
.yaf{bottom:499.266667pt;}
.yd5{bottom:500.546667pt;}
.y84{bottom:508.066667pt;}
.y22{bottom:508.386667pt;}
.yae{bottom:514.626667pt;}
.yd4{bottom:515.906667pt;}
.y83{bottom:523.426667pt;}
.y21{bottom:523.746667pt;}
.yad{bottom:529.986667pt;}
.yd3{bottom:531.266667pt;}
.y82{bottom:538.813333pt;}
.y20{bottom:539.133333pt;}
.yac{bottom:545.213333pt;}
.yd2{bottom:546.653333pt;}
.y81{bottom:554.173333pt;}
.y1f{bottom:554.333333pt;}
.yab{bottom:560.573333pt;}
.yd1{bottom:562.013333pt;}
.y80{bottom:569.533333pt;}
.y1e{bottom:569.693333pt;}
.yaa{bottom:575.933333pt;}
.yd0{bottom:577.213333pt;}
.y7f{bottom:584.733333pt;}
.y1d{bottom:585.053333pt;}
.ya9{bottom:591.293333pt;}
.ycf{bottom:592.573333pt;}
.y7e{bottom:600.093333pt;}
.y1c{bottom:600.413333pt;}
.ya8{bottom:606.653333pt;}
.yce{bottom:607.933333pt;}
.y7d{bottom:615.453333pt;}
.y1b{bottom:615.773333pt;}
.ya7{bottom:621.853333pt;}
.ycd{bottom:623.293333pt;}
.y7c{bottom:630.813333pt;}
.y1a{bottom:631.133333pt;}
.ya6{bottom:637.213333pt;}
.ycc{bottom:638.653333pt;}
.y7b{bottom:646.173333pt;}
.y19{bottom:646.333333pt;}
.ya5{bottom:652.573333pt;}
.ycb{bottom:654.013333pt;}
.y7a{bottom:661.533333pt;}
.y18{bottom:661.693333pt;}
.ya4{bottom:667.933333pt;}
.yca{bottom:669.213333pt;}
.y79{bottom:676.733333pt;}
.y17{bottom:677.053333pt;}
.ya3{bottom:683.293333pt;}
.yc9{bottom:684.573333pt;}
.y78{bottom:692.093333pt;}
.y16{bottom:692.413333pt;}
.ya2{bottom:698.653333pt;}
.yc8{bottom:699.933333pt;}
.y77{bottom:707.453333pt;}
.y15{bottom:707.773333pt;}
.ya1{bottom:713.853333pt;}
.y55{bottom:715.293333pt;}
.y76{bottom:722.813333pt;}
.y14{bottom:722.973333pt;}
.ya0{bottom:729.213333pt;}
.y54{bottom:730.653333pt;}
.y75{bottom:738.173333pt;}
.y13{bottom:738.333333pt;}
.y9f{bottom:741.693333pt;}
.y53{bottom:746.013333pt;}
.y74{bottom:753.373333pt;}
.y12{bottom:753.693333pt;}
.y52{bottom:761.213333pt;}
.y73{bottom:768.733333pt;}
.y11{bottom:769.053333pt;}
.y51{bottom:776.613333pt;}
.y72{bottom:784.133333pt;}
.y10{bottom:784.453333pt;}
.y50{bottom:791.973333pt;}
.y71{bottom:799.493333pt;}
.yf{bottom:799.813333pt;}
.y4f{bottom:807.333333pt;}
.y70{bottom:814.853333pt;}
.ye{bottom:817.413333pt;}
.y4e{bottom:822.693333pt;}
.y6f{bottom:830.213333pt;}
.yd{bottom:832.773333pt;}
.y4d{bottom:837.893333pt;}
.y6e{bottom:842.533333pt;}
.yc{bottom:848.613333pt;}
.y4c{bottom:853.253333pt;}
.yb{bottom:867.013333pt;}
.y4b{bottom:868.613333pt;}
.y4a{bottom:883.973333pt;}
.ya{bottom:886.693333pt;}
.y49{bottom:899.333333pt;}
.y7{bottom:910.053333pt;}
.y48{bottom:914.693333pt;}
.y5{bottom:924.933333pt;}
.y47{bottom:929.893333pt;}
.y46{bottom:945.253333pt;}
.y45{bottom:960.613333pt;}
.y44{bottom:975.973333pt;}
.y43{bottom:991.333333pt;}
.y42{bottom:1006.693333pt;}
.y3{bottom:1021.600000pt;}
.y41{bottom:1021.920000pt;}
.y3f{bottom:1037.920000pt;}
.y1{bottom:1048.160000pt;}
.y3e{bottom:1059.680000pt;}
.hd{height:18.965625pt;}
.h2{height:26.400000pt;}
.h4{height:26.560000pt;}
.h10{height:35.303125pt;}
.hb{height:37.090625pt;}
.ha{height:37.479688pt;}
.hf{height:38.672812pt;}
.hc{height:40.410625pt;}
.h3{height:44.687500pt;}
.h5{height:45.156250pt;}
.he{height:46.375000pt;}
.h9{height:60.057813pt;}
.h7{height:60.288750pt;}
.h8{height:76.671562pt;}
.h6{height:96.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:177.626667pt;}
.w3{width:224.666667pt;}
.w4{width:236.226667pt;}
.w2{width:638.533333pt;}
.w6{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:21.280000pt;}
.x3{left:45.594667pt;}
.x6{left:55.386667pt;}
.x10{left:86.431988pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.xf{left:97.951988pt;}
.xb{left:127.071988pt;}
.x22{left:134.426655pt;}
.x4{left:162.274667pt;}
.x15{left:210.946655pt;}
.x2{left:213.794667pt;}
.x1d{left:218.306655pt;}
.x1c{left:229.826655pt;}
.x18{left:253.666655pt;}
.x13{left:274.466655pt;}
.x1b{left:287.106655pt;}
.x17{left:306.306655pt;}
.x1a{left:310.146655pt;}
.x5{left:313.506667pt;}
.xd{left:320.386655pt;}
.x1f{left:325.666655pt;}
.x20{left:339.266655pt;}
.x12{left:343.586655pt;}
.x21{left:351.746655pt;}
.x1e{left:356.253322pt;}
.x14{left:388.893322pt;}
.x11{left:396.893322pt;}
.xa{left:400.093322pt;}
.xc{left:402.013322pt;}
.xe{left:408.093322pt;}
.x19{left:539.333322pt;}
.x16{left:546.053322pt;}
.x7{left:549.733333pt;}
}




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