
    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_24bc64998f9cc061b1a4afbd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5b82581d658de579956f7a6e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_75a90eeaccf0df4ea7b2de90.woff')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_4273230278093d6f73b88d3f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916016;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_5f10aee9d184ae1b0c60a3f4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b5cf213e692b5c9d4db98930.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ae403f5e53bcc80a8d0520cb.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4dd75cbdb7ac693287bdd8af.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d76af6f64a83dfbe18bf6ac3.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-4.320000px;}
.ls7{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.387600px;}
.ls5{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.252720px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.840000px;}
.ls1{letter-spacing:6.480000px;}
.lsc{letter-spacing:64.026720px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws5{word-spacing:-28.977840px;}
.ws6{word-spacing:-28.590240px;}
.ws8{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.280000px;}
.ws3{word-spacing:-13.680000px;}
.ws9{word-spacing:-12.060000px;}
.ws7{word-spacing:0.000000px;}
._6{margin-left:-8.496000px;}
._8{margin-left:-6.960000px;}
._4{margin-left:-5.328000px;}
._5{margin-left:-4.032000px;}
._7{margin-left:-2.760000px;}
._0{margin-left:-1.032000px;}
._1{width:1.080000px;}
._2{width:2.282160px;}
._11{width:3.312000px;}
._12{width:4.968000px;}
._3{width:6.480000px;}
._10{width:8.208000px;}
._a{width:9.360000px;}
._9{width:10.536000px;}
._d{width:12.528000px;}
._f{width:13.608000px;}
._e{width:14.616000px;}
._13{width:16.488000px;}
._b{width:19.512000px;}
._c{width:20.724000px;}
._19{width:22.752000px;}
._14{width:24.552000px;}
._18{width:25.632000px;}
._17{width:26.928000px;}
._15{width:28.800000px;}
._16{width:3123.180000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,32,96);}
.fc5{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(192,0,0);}
.fc0{color:rgb(57,85,160);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:120.240000px;}
.y1a{bottom:-30.060000px;}
.y24{bottom:-14.760060px;}
.y1f{bottom:-8.820000px;}
.y0{bottom:0.000000px;}
.y19{bottom:8.640000px;}
.y23{bottom:9.180000px;}
.ya0{bottom:14.220000px;}
.ya9{bottom:14.250000px;}
.ybb{bottom:14.394000px;}
.ya2{bottom:14.400000px;}
.y1e{bottom:14.580000px;}
.yaa{bottom:14.610000px;}
.yb2{bottom:14.625000px;}
.yba{bottom:14.754000px;}
.ya3{bottom:14.760000px;}
.y1c{bottom:14.940000px;}
.y20{bottom:16.200000px;}
.y5d{bottom:16.425000px;}
.y4{bottom:16.920000px;}
.yc1{bottom:21.060000px;}
.y1{bottom:24.480000px;}
.y22{bottom:32.940000px;}
.y3{bottom:41.400000px;}
.y5c{bottom:47.745000px;}
.y21{bottom:56.700000px;}
.y18{bottom:59.790000px;}
.y2{bottom:65.160000px;}
.y5{bottom:76.500000px;}
.y5b{bottom:78.885000px;}
.y26{bottom:97.920000px;}
.y5a{bottom:109.845000px;}
.y7e{bottom:117.720000px;}
.yd9{bottom:119.340000px;}
.y89{bottom:126.900000px;}
.y9e{bottom:129.276000px;}
.y45{bottom:133.236000px;}
.yb9{bottom:137.736000px;}
.yee{bottom:138.456000px;}
.y59{bottom:140.985000px;}
.y83{bottom:148.356000px;}
.y7d{bottom:148.716000px;}
.yd8{bottom:150.330000px;}
.y88{bottom:157.890000px;}
.y9d{bottom:159.870000px;}
.y44{bottom:164.370000px;}
.yed{bottom:169.410000px;}
.yb8{bottom:169.590000px;}
.y58{bottom:171.945000px;}
.y7c{bottom:179.850000px;}
.yd7{bottom:181.470000px;}
.y87{bottom:184.530000px;}
.y9c{bottom:193.530000px;}
.y43{bottom:195.330000px;}
.yec{bottom:200.550000px;}
.yb7{bottom:201.450000px;}
.y57{bottom:203.085000px;}
.y7b{bottom:210.450000px;}
.y82{bottom:210.810000px;}
.yd6{bottom:212.430000px;}
.y42{bottom:226.470000px;}
.y9b{bottom:227.190000px;}
.yeb{bottom:231.510000px;}
.yb6{bottom:233.130000px;}
.y56{bottom:234.045000px;}
.y7a{bottom:241.950000px;}
.yd5{bottom:243.390000px;}
.y9a{bottom:258.510000px;}
.y41{bottom:259.590000px;}
.yea{bottom:262.650000px;}
.yb5{bottom:264.990000px;}
.y55{bottom:265.215000px;}
.y79{bottom:272.910000px;}
.yd4{bottom:274.170000px;}
.y99{bottom:289.650000px;}
.y40{bottom:293.250000px;}
.ye9{bottom:293.610000px;}
.y54{bottom:296.175000px;}
.yb4{bottom:296.670000px;}
.yf5{bottom:300.090000px;}
.y81{bottom:303.690000px;}
.y78{bottom:304.050000px;}
.yd3{bottom:305.130000px;}
.y98{bottom:320.610000px;}
.yf4{bottom:320.790000px;}
.ye8{bottom:324.750000px;}
.y3f{bottom:326.730000px;}
.y53{bottom:327.315000px;}
.yb3{bottom:328.530000px;}
.y77{bottom:334.650000px;}
.yf0{bottom:335.010000px;}
.yd2{bottom:336.630000px;}
.yf3{bottom:341.490000px;}
.y97{bottom:351.750000px;}
.y46{bottom:353.010000px;}
.ye7{bottom:355.710000px;}
.y52{bottom:358.275000px;}
.yb1{bottom:360.390000px;}
.y3e{bottom:363.090000px;}
.y76{bottom:365.790000px;}
.yef{bottom:366.150000px;}
.yd1{bottom:367.590000px;}
.yf2{bottom:372.675000px;}
.y96{bottom:382.395000px;}
.ye6{bottom:386.895000px;}
.y51{bottom:389.415000px;}
.yb0{bottom:392.115000px;}
.y75{bottom:396.795000px;}
.y80{bottom:397.155000px;}
.yd0{bottom:398.775000px;}
.y3d{bottom:399.315000px;}
.y95{bottom:413.895000px;}
.ye5{bottom:420.015000px;}
.y50{bottom:420.375000px;}
.yaf{bottom:423.975000px;}
.y74{bottom:428.295000px;}
.ycf{bottom:429.735000px;}
.y3c{bottom:435.495000px;}
.y94{bottom:444.495000px;}
.y4f{bottom:451.515000px;}
.ye4{bottom:453.675000px;}
.yae{bottom:455.835000px;}
.y73{bottom:459.255000px;}
.yf1{bottom:460.695000px;}
.yce{bottom:460.875000px;}
.y86{bottom:465.015000px;}
.y3b{bottom:471.675000px;}
.y93{bottom:475.995000px;}
.y4e{bottom:482.475000px;}
.ye3{bottom:485.175000px;}
.y7f{bottom:490.035000px;}
.y72{bottom:490.395000px;}
.ycd{bottom:491.475000px;}
.y85{bottom:496.155000px;}
.y92{bottom:506.955000px;}
.y3a{bottom:508.035000px;}
.y4d{bottom:513.660000px;}
.yad{bottom:515.415000px;}
.ye2{bottom:516.135000px;}
.y71{bottom:521.355000px;}
.ycc{bottom:522.615000px;}
.y84{bottom:522.795000px;}
.y91{bottom:538.095000px;}
.y39{bottom:544.215000px;}
.y4c{bottom:544.620000px;}
.yac{bottom:546.375000px;}
.y16{bottom:546.735000px;}
.ye1{bottom:547.275000px;}
.y70{bottom:552.495000px;}
.ycb{bottom:553.575000px;}
.y90{bottom:568.695000px;}
.y4b{bottom:575.760000px;}
.yab{bottom:577.515000px;}
.ye0{bottom:578.235000px;}
.y38{bottom:580.395000px;}
.y6f{bottom:583.455000px;}
.yca{bottom:585.075000px;}
.y15{bottom:586.335000px;}
.ya8{bottom:594.615000px;}
.y8f{bottom:600.195000px;}
.y4a{bottom:606.720000px;}
.ydf{bottom:609.405000px;}
.y37{bottom:614.265000px;}
.y6e{bottom:614.625000px;}
.yc9{bottom:616.065000px;}
.y14{bottom:626.145000px;}
.ya7{bottom:626.505000px;}
.y8e{bottom:630.825000px;}
.y49{bottom:637.860000px;}
.yde{bottom:642.525000px;}
.y36{bottom:645.225000px;}
.y6d{bottom:645.585000px;}
.yc8{bottom:647.205000px;}
.ya6{bottom:658.185000px;}
.y8d{bottom:661.965000px;}
.y13{bottom:665.745000px;}
.y48{bottom:668.820000px;}
.y35{bottom:676.365000px;}
.y6c{bottom:676.725000px;}
.yc7{bottom:678.165000px;}
.ya5{bottom:690.045000px;}
.y8c{bottom:693.285000px;}
.y47{bottom:699.600000px;}
.y34{bottom:707.325000px;}
.y6b{bottom:707.685000px;}
.yc6{bottom:709.305000px;}
.y12{bottom:716.685000px;}
.ya4{bottom:721.905000px;}
.y8b{bottom:724.425000px;}
.y33{bottom:738.465000px;}
.y6a{bottom:738.825000px;}
.yc5{bottom:742.425000px;}
.y11{bottom:747.825000px;}
.y8a{bottom:750.885000px;}
.ya1{bottom:753.585000px;}
.y32{bottom:769.425000px;}
.y69{bottom:769.785000px;}
.yc4{bottom:778.605000px;}
.y10{bottom:778.785000px;}
.y9f{bottom:785.445000px;}
.y31{bottom:800.385000px;}
.y68{bottom:800.745000px;}
.yf{bottom:802.365000px;}
.yc3{bottom:812.805000px;}
.ye{bottom:826.485000px;}
.yc2{bottom:829.905000px;}
.y30{bottom:831.525000px;}
.y67{bottom:831.885000px;}
.yd{bottom:857.130000px;}
.yc0{bottom:861.810000px;}
.y2f{bottom:862.530000px;}
.y66{bottom:862.890000px;}
.yc{bottom:880.890000px;}
.y2e{bottom:893.670000px;}
.y65{bottom:894.030000px;}
.yb{bottom:904.290000px;}
.ybf{bottom:914.730000px;}
.y2d{bottom:924.630000px;}
.y64{bottom:924.990000px;}
.ya{bottom:928.410000px;}
.ybe{bottom:947.850000px;}
.y9{bottom:954.330000px;}
.y2c{bottom:955.770000px;}
.y63{bottom:956.130000px;}
.ybd{bottom:982.050000px;}
.y8{bottom:986.010000px;}
.y2b{bottom:986.730000px;}
.y62{bottom:987.090000px;}
.ydd{bottom:1000.590000px;}
.ybc{bottom:1015.170000px;}
.y2a{bottom:1017.870000px;}
.y61{bottom:1018.230000px;}
.y7{bottom:1018.590000px;}
.ydc{bottom:1032.270000px;}
.y29{bottom:1048.830000px;}
.y60{bottom:1049.190000px;}
.y17{bottom:1052.970000px;}
.y6{bottom:1053.870000px;}
.ydb{bottom:1064.130000px;}
.y28{bottom:1079.970000px;}
.y5f{bottom:1080.330000px;}
.yda{bottom:1096.020000px;}
.y27{bottom:1110.960000px;}
.y5e{bottom:1111.320000px;}
.y25{bottom:1131.120000px;}
.y1d{bottom:1133.280000px;}
.y1b{bottom:1133.640000px;}
.h12{height:30.960000px;}
.h14{height:30.996000px;}
.h13{height:31.140000px;}
.h17{height:31.176000px;}
.hc{height:33.660000px;}
.hb{height:34.560000px;}
.h16{height:37.440000px;}
.h11{height:50.273438px;}
.h4{height:58.651172px;}
.ha{height:65.010937px;}
.h10{height:70.628906px;}
.h3{height:70.664062px;}
.h7{height:72.562500px;}
.hd{height:73.080000px;}
.h6{height:74.704922px;}
.h2{height:81.540000px;}
.h15{height:82.676953px;}
.he{height:84.898125px;}
.h8{height:87.156000px;}
.h9{height:90.884531px;}
.h5{height:96.508125px;}
.hf{height:718.305000px;}
.h1{height:1200.000000px;}
.h0{height:1200.060000px;}
.w5{width:103.896000px;}
.w13{width:117.936000px;}
.w12{width:120.096000px;}
.wf{width:122.256000px;}
.wa{width:134.280000px;}
.wb{width:134.316000px;}
.w9{width:144.036000px;}
.we{width:154.470000px;}
.w11{width:157.890000px;}
.wd{width:181.470000px;}
.wc{width:214.770000px;}
.w8{width:252.615000px;}
.w10{width:308.730000px;}
.w4{width:619.710000px;}
.w3{width:642.570000px;}
.w7{width:703.050000px;}
.w1{width:824.400000px;}
.w6{width:831.600000px;}
.w2{width:899.999987px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.xe{left:1.440000px;}
.x1a{left:7.740000px;}
.xd{left:10.800000px;}
.x1{left:41.760000px;}
.x10{left:43.200000px;}
.x2{left:45.576000px;}
.x11{left:49.176000px;}
.x5{left:57.059987px;}
.x25{left:84.095987px;}
.xb{left:85.715987px;}
.x3{left:92.736000px;}
.x12{left:96.336000px;}
.x14{left:104.436000px;}
.x26{left:111.095987px;}
.x1e{left:112.356000px;}
.x7{left:124.595987px;}
.x8{left:162.749987px;}
.xc{left:238.170000px;}
.x16{left:247.529987px;}
.x18{left:275.294987px;}
.x19{left:279.434987px;}
.x22{left:307.874987px;}
.x1b{left:311.115000px;}
.x9{left:325.694987px;}
.x1f{left:328.035000px;}
.x4{left:402.225000px;}
.x13{left:405.825000px;}
.xa{left:440.204987px;}
.x17{left:450.104987px;}
.x1c{left:455.865000px;}
.x20{left:510.225000px;}
.x23{left:564.585000px;}
.x1d{left:590.865000px;}
.x21{left:665.610000px;}
.x24{left:685.410000px;}
.xf{left:717.990000px;}
.x27{left:768.239987px;}
.x15{left:815.939987px;}
.x6{left:834.119987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-3.840000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.344533pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.224640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.746667pt;}
.ls1{letter-spacing:5.760000pt;}
.lsc{letter-spacing:56.912640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws5{word-spacing:-25.758080pt;}
.ws6{word-spacing:-25.413547pt;}
.ws8{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.360000pt;}
.ws3{word-spacing:-12.160000pt;}
.ws9{word-spacing:-10.720000pt;}
.ws7{word-spacing:0.000000pt;}
._6{margin-left:-7.552000pt;}
._8{margin-left:-6.186667pt;}
._4{margin-left:-4.736000pt;}
._5{margin-left:-3.584000pt;}
._7{margin-left:-2.453333pt;}
._0{margin-left:-0.917333pt;}
._1{width:0.960000pt;}
._2{width:2.028587pt;}
._11{width:2.944000pt;}
._12{width:4.416000pt;}
._3{width:5.760000pt;}
._10{width:7.296000pt;}
._a{width:8.320000pt;}
._9{width:9.365333pt;}
._d{width:11.136000pt;}
._f{width:12.096000pt;}
._e{width:12.992000pt;}
._13{width:14.656000pt;}
._b{width:17.344000pt;}
._c{width:18.421333pt;}
._19{width:20.224000pt;}
._14{width:21.824000pt;}
._18{width:22.784000pt;}
._17{width:23.936000pt;}
._15{width:25.600000pt;}
._16{width:2776.160000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:106.880000pt;}
.y1a{bottom:-26.720000pt;}
.y24{bottom:-13.120053pt;}
.y1f{bottom:-7.840000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:7.680000pt;}
.y23{bottom:8.160000pt;}
.ya0{bottom:12.640000pt;}
.ya9{bottom:12.666667pt;}
.ybb{bottom:12.794667pt;}
.ya2{bottom:12.800000pt;}
.y1e{bottom:12.960000pt;}
.yaa{bottom:12.986667pt;}
.yb2{bottom:13.000000pt;}
.yba{bottom:13.114667pt;}
.ya3{bottom:13.120000pt;}
.y1c{bottom:13.280000pt;}
.y20{bottom:14.400000pt;}
.y5d{bottom:14.600000pt;}
.y4{bottom:15.040000pt;}
.yc1{bottom:18.720000pt;}
.y1{bottom:21.760000pt;}
.y22{bottom:29.280000pt;}
.y3{bottom:36.800000pt;}
.y5c{bottom:42.440000pt;}
.y21{bottom:50.400000pt;}
.y18{bottom:53.146667pt;}
.y2{bottom:57.920000pt;}
.y5{bottom:68.000000pt;}
.y5b{bottom:70.120000pt;}
.y26{bottom:87.040000pt;}
.y5a{bottom:97.640000pt;}
.y7e{bottom:104.640000pt;}
.yd9{bottom:106.080000pt;}
.y89{bottom:112.800000pt;}
.y9e{bottom:114.912000pt;}
.y45{bottom:118.432000pt;}
.yb9{bottom:122.432000pt;}
.yee{bottom:123.072000pt;}
.y59{bottom:125.320000pt;}
.y83{bottom:131.872000pt;}
.y7d{bottom:132.192000pt;}
.yd8{bottom:133.626667pt;}
.y88{bottom:140.346667pt;}
.y9d{bottom:142.106667pt;}
.y44{bottom:146.106667pt;}
.yed{bottom:150.586667pt;}
.yb8{bottom:150.746667pt;}
.y58{bottom:152.840000pt;}
.y7c{bottom:159.866667pt;}
.yd7{bottom:161.306667pt;}
.y87{bottom:164.026667pt;}
.y9c{bottom:172.026667pt;}
.y43{bottom:173.626667pt;}
.yec{bottom:178.266667pt;}
.yb7{bottom:179.066667pt;}
.y57{bottom:180.520000pt;}
.y7b{bottom:187.066667pt;}
.y82{bottom:187.386667pt;}
.yd6{bottom:188.826667pt;}
.y42{bottom:201.306667pt;}
.y9b{bottom:201.946667pt;}
.yeb{bottom:205.786667pt;}
.yb6{bottom:207.226667pt;}
.y56{bottom:208.040000pt;}
.y7a{bottom:215.066667pt;}
.yd5{bottom:216.346667pt;}
.y9a{bottom:229.786667pt;}
.y41{bottom:230.746667pt;}
.yea{bottom:233.466667pt;}
.yb5{bottom:235.546667pt;}
.y55{bottom:235.746667pt;}
.y79{bottom:242.586667pt;}
.yd4{bottom:243.706667pt;}
.y99{bottom:257.466667pt;}
.y40{bottom:260.666667pt;}
.ye9{bottom:260.986667pt;}
.y54{bottom:263.266667pt;}
.yb4{bottom:263.706667pt;}
.yf5{bottom:266.746667pt;}
.y81{bottom:269.946667pt;}
.y78{bottom:270.266667pt;}
.yd3{bottom:271.226667pt;}
.y98{bottom:284.986667pt;}
.yf4{bottom:285.146667pt;}
.ye8{bottom:288.666667pt;}
.y3f{bottom:290.426667pt;}
.y53{bottom:290.946667pt;}
.yb3{bottom:292.026667pt;}
.y77{bottom:297.466667pt;}
.yf0{bottom:297.786667pt;}
.yd2{bottom:299.226667pt;}
.yf3{bottom:303.546667pt;}
.y97{bottom:312.666667pt;}
.y46{bottom:313.786667pt;}
.ye7{bottom:316.186667pt;}
.y52{bottom:318.466667pt;}
.yb1{bottom:320.346667pt;}
.y3e{bottom:322.746667pt;}
.y76{bottom:325.146667pt;}
.yef{bottom:325.466667pt;}
.yd1{bottom:326.746667pt;}
.yf2{bottom:331.266667pt;}
.y96{bottom:339.906667pt;}
.ye6{bottom:343.906667pt;}
.y51{bottom:346.146667pt;}
.yb0{bottom:348.546667pt;}
.y75{bottom:352.706667pt;}
.y80{bottom:353.026667pt;}
.yd0{bottom:354.466667pt;}
.y3d{bottom:354.946667pt;}
.y95{bottom:367.906667pt;}
.ye5{bottom:373.346667pt;}
.y50{bottom:373.666667pt;}
.yaf{bottom:376.866667pt;}
.y74{bottom:380.706667pt;}
.ycf{bottom:381.986667pt;}
.y3c{bottom:387.106667pt;}
.y94{bottom:395.106667pt;}
.y4f{bottom:401.346667pt;}
.ye4{bottom:403.266667pt;}
.yae{bottom:405.186667pt;}
.y73{bottom:408.226667pt;}
.yf1{bottom:409.506667pt;}
.yce{bottom:409.666667pt;}
.y86{bottom:413.346667pt;}
.y3b{bottom:419.266667pt;}
.y93{bottom:423.106667pt;}
.y4e{bottom:428.866667pt;}
.ye3{bottom:431.266667pt;}
.y7f{bottom:435.586667pt;}
.y72{bottom:435.906667pt;}
.ycd{bottom:436.866667pt;}
.y85{bottom:441.026667pt;}
.y92{bottom:450.626667pt;}
.y3a{bottom:451.586667pt;}
.y4d{bottom:456.586667pt;}
.yad{bottom:458.146667pt;}
.ye2{bottom:458.786667pt;}
.y71{bottom:463.426667pt;}
.ycc{bottom:464.546667pt;}
.y84{bottom:464.706667pt;}
.y91{bottom:478.306667pt;}
.y39{bottom:483.746667pt;}
.y4c{bottom:484.106667pt;}
.yac{bottom:485.666667pt;}
.y16{bottom:485.986667pt;}
.ye1{bottom:486.466667pt;}
.y70{bottom:491.106667pt;}
.ycb{bottom:492.066667pt;}
.y90{bottom:505.506667pt;}
.y4b{bottom:511.786667pt;}
.yab{bottom:513.346667pt;}
.ye0{bottom:513.986667pt;}
.y38{bottom:515.906667pt;}
.y6f{bottom:518.626667pt;}
.yca{bottom:520.066667pt;}
.y15{bottom:521.186667pt;}
.ya8{bottom:528.546667pt;}
.y8f{bottom:533.506667pt;}
.y4a{bottom:539.306667pt;}
.ydf{bottom:541.693333pt;}
.y37{bottom:546.013333pt;}
.y6e{bottom:546.333333pt;}
.yc9{bottom:547.613333pt;}
.y14{bottom:556.573333pt;}
.ya7{bottom:556.893333pt;}
.y8e{bottom:560.733333pt;}
.y49{bottom:566.986667pt;}
.yde{bottom:571.133333pt;}
.y36{bottom:573.533333pt;}
.y6d{bottom:573.853333pt;}
.yc8{bottom:575.293333pt;}
.ya6{bottom:585.053333pt;}
.y8d{bottom:588.413333pt;}
.y13{bottom:591.773333pt;}
.y48{bottom:594.506667pt;}
.y35{bottom:601.213333pt;}
.y6c{bottom:601.533333pt;}
.yc7{bottom:602.813333pt;}
.ya5{bottom:613.373333pt;}
.y8c{bottom:616.253333pt;}
.y47{bottom:621.866667pt;}
.y34{bottom:628.733333pt;}
.y6b{bottom:629.053333pt;}
.yc6{bottom:630.493333pt;}
.y12{bottom:637.053333pt;}
.ya4{bottom:641.693333pt;}
.y8b{bottom:643.933333pt;}
.y33{bottom:656.413333pt;}
.y6a{bottom:656.733333pt;}
.yc5{bottom:659.933333pt;}
.y11{bottom:664.733333pt;}
.y8a{bottom:667.453333pt;}
.ya1{bottom:669.853333pt;}
.y32{bottom:683.933333pt;}
.y69{bottom:684.253333pt;}
.yc4{bottom:692.093333pt;}
.y10{bottom:692.253333pt;}
.y9f{bottom:698.173333pt;}
.y31{bottom:711.453333pt;}
.y68{bottom:711.773333pt;}
.yf{bottom:713.213333pt;}
.yc3{bottom:722.493333pt;}
.ye{bottom:734.653333pt;}
.yc2{bottom:737.693333pt;}
.y30{bottom:739.133333pt;}
.y67{bottom:739.453333pt;}
.yd{bottom:761.893333pt;}
.yc0{bottom:766.053333pt;}
.y2f{bottom:766.693333pt;}
.y66{bottom:767.013333pt;}
.yc{bottom:783.013333pt;}
.y2e{bottom:794.373333pt;}
.y65{bottom:794.693333pt;}
.yb{bottom:803.813333pt;}
.ybf{bottom:813.093333pt;}
.y2d{bottom:821.893333pt;}
.y64{bottom:822.213333pt;}
.ya{bottom:825.253333pt;}
.ybe{bottom:842.533333pt;}
.y9{bottom:848.293333pt;}
.y2c{bottom:849.573333pt;}
.y63{bottom:849.893333pt;}
.ybd{bottom:872.933333pt;}
.y8{bottom:876.453333pt;}
.y2b{bottom:877.093333pt;}
.y62{bottom:877.413333pt;}
.ydd{bottom:889.413333pt;}
.ybc{bottom:902.373333pt;}
.y2a{bottom:904.773333pt;}
.y61{bottom:905.093333pt;}
.y7{bottom:905.413333pt;}
.ydc{bottom:917.573333pt;}
.y29{bottom:932.293333pt;}
.y60{bottom:932.613333pt;}
.y17{bottom:935.973333pt;}
.y6{bottom:936.773333pt;}
.ydb{bottom:945.893333pt;}
.y28{bottom:959.973333pt;}
.y5f{bottom:960.293333pt;}
.yda{bottom:974.240000pt;}
.y27{bottom:987.520000pt;}
.y5e{bottom:987.840000pt;}
.y25{bottom:1005.440000pt;}
.y1d{bottom:1007.360000pt;}
.y1b{bottom:1007.680000pt;}
.h12{height:27.520000pt;}
.h14{height:27.552000pt;}
.h13{height:27.680000pt;}
.h17{height:27.712000pt;}
.hc{height:29.920000pt;}
.hb{height:30.720000pt;}
.h16{height:33.280000pt;}
.h11{height:44.687500pt;}
.h4{height:52.134375pt;}
.ha{height:57.787500pt;}
.h10{height:62.781250pt;}
.h3{height:62.812500pt;}
.h7{height:64.500000pt;}
.hd{height:64.960000pt;}
.h6{height:66.404375pt;}
.h2{height:72.480000pt;}
.h15{height:73.490625pt;}
.he{height:75.465000pt;}
.h8{height:77.472000pt;}
.h9{height:80.786250pt;}
.h5{height:85.785000pt;}
.hf{height:638.493333pt;}
.h1{height:1066.666667pt;}
.h0{height:1066.720000pt;}
.w5{width:92.352000pt;}
.w13{width:104.832000pt;}
.w12{width:106.752000pt;}
.wf{width:108.672000pt;}
.wa{width:119.360000pt;}
.wb{width:119.392000pt;}
.w9{width:128.032000pt;}
.we{width:137.306667pt;}
.w11{width:140.346667pt;}
.wd{width:161.306667pt;}
.wc{width:190.906667pt;}
.w8{width:224.546667pt;}
.w10{width:274.426667pt;}
.w4{width:550.853333pt;}
.w3{width:571.173333pt;}
.w7{width:624.933333pt;}
.w1{width:732.800000pt;}
.w6{width:739.200000pt;}
.w2{width:799.999988pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.xe{left:1.280000pt;}
.x1a{left:6.880000pt;}
.xd{left:9.600000pt;}
.x1{left:37.120000pt;}
.x10{left:38.400000pt;}
.x2{left:40.512000pt;}
.x11{left:43.712000pt;}
.x5{left:50.719988pt;}
.x25{left:74.751988pt;}
.xb{left:76.191988pt;}
.x3{left:82.432000pt;}
.x12{left:85.632000pt;}
.x14{left:92.832000pt;}
.x26{left:98.751988pt;}
.x1e{left:99.872000pt;}
.x7{left:110.751988pt;}
.x8{left:144.666655pt;}
.xc{left:211.706667pt;}
.x16{left:220.026655pt;}
.x18{left:244.706655pt;}
.x19{left:248.386655pt;}
.x22{left:273.666655pt;}
.x1b{left:276.546667pt;}
.x9{left:289.506655pt;}
.x1f{left:291.586667pt;}
.x4{left:357.533333pt;}
.x13{left:360.733333pt;}
.xa{left:391.293321pt;}
.x17{left:400.093321pt;}
.x1c{left:405.213333pt;}
.x20{left:453.533333pt;}
.x23{left:501.853333pt;}
.x1d{left:525.213333pt;}
.x21{left:591.653333pt;}
.x24{left:609.253333pt;}
.xf{left:638.213333pt;}
.x27{left:682.879988pt;}
.x15{left:725.279988pt;}
.x6{left:741.439988pt;}
}




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