
    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_21ab79c0fae2e2fb50b4c4c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_2d5058d8f3d103880aeaffc0.woff2')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_fa281cb9831f16a0986c1452.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_aa195983499ca1a602ccbce8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5e511cd7b8db5ba0a3c91e06.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_649cf08a6f6360f3e415528f.woff2')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_728c9bc6cd8f862488cc9852.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_2ee6d49e410c8e245f28316f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_33539a7d4d53e9676a7619d5.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls4{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.150000px;}
.ls3{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.720000px;}
.lsc{letter-spacing:3.600000px;}
.lsf{letter-spacing:15.840000px;}
.ls0{letter-spacing:40.320000px;}
.ls9{letter-spacing:64.224000px;}
.lsb{letter-spacing:494.046720px;}
.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;}
}
.ws6{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws1{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws7{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
._c{margin-left:-2.124000px;}
._1{margin-left:-1.080000px;}
._0{width:1.236000px;}
._7{width:3.060000px;}
._d{width:4.464000px;}
._12{width:5.616000px;}
._13{width:6.696000px;}
._15{width:8.112000px;}
._5{width:9.984000px;}
._4{width:11.376000px;}
._3{width:12.456000px;}
._e{width:13.476000px;}
._16{width:14.508000px;}
._8{width:15.528000px;}
._6{width:16.632000px;}
._14{width:19.728000px;}
._a{width:21.528000px;}
._b{width:23.520000px;}
._19{width:25.032000px;}
._1c{width:26.400000px;}
._1a{width:27.864000px;}
._1b{width:29.664000px;}
._1d{width:30.888000px;}
._17{width:32.400000px;}
._18{width:33.408000px;}
._f{width:36.768000px;}
._11{width:37.800000px;}
._10{width:38.892000px;}
._9{width:40.368000px;}
._1e{width:41.556000px;}
._21{width:66.312000px;}
._22{width:68.376000px;}
._23{width:79.848000px;}
._24{width:81.252000px;}
._2{width:194.376000px;}
._20{width:493.632000px;}
._1f{width:494.856000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.636000px;}
.y2{bottom:77.796000px;}
.y31{bottom:109.836000px;}
.y100{bottom:114.156000px;}
.y8b{bottom:116.136000px;}
.yc2{bottom:118.296000px;}
.y117{bottom:119.376000px;}
.ye5{bottom:122.076000px;}
.y30{bottom:127.116000px;}
.ya2{bottom:131.256000px;}
.y61{bottom:132.336000px;}
.yff{bottom:134.856000px;}
.y8a{bottom:136.836000px;}
.yc1{bottom:138.996000px;}
.y116{bottom:140.076000px;}
.ye4{bottom:142.776000px;}
.y2f{bottom:144.396000px;}
.y60{bottom:145.296000px;}
.ya1{bottom:151.950000px;}
.yc9{bottom:154.650000px;}
.yfe{bottom:155.550000px;}
.y89{bottom:157.530000px;}
.yc0{bottom:159.690000px;}
.y115{bottom:160.770000px;}
.y2e{bottom:161.670000px;}
.ye3{bottom:163.290000px;}
.ya0{bottom:172.650000px;}
.yc8{bottom:175.350000px;}
.yfd{bottom:176.250000px;}
.y88{bottom:178.230000px;}
.y2d{bottom:178.950000px;}
.ybf{bottom:180.390000px;}
.y5f{bottom:181.470000px;}
.ye2{bottom:183.990000px;}
.y2c{bottom:184.170000px;}
.y9f{bottom:193.350000px;}
.yc7{bottom:196.050000px;}
.yfc{bottom:196.950000px;}
.y2b{bottom:197.130000px;}
.y87{bottom:198.930000px;}
.ybe{bottom:201.090000px;}
.y5e{bottom:202.170000px;}
.y9e{bottom:214.050000px;}
.ye1{bottom:216.750000px;}
.yfb{bottom:217.650000px;}
.y86{bottom:219.630000px;}
.ybd{bottom:221.790000px;}
.y5d{bottom:222.870000px;}
.yc6{bottom:227.910000px;}
.y9d{bottom:234.750000px;}
.ye0{bottom:237.450000px;}
.yfa{bottom:238.350000px;}
.y85{bottom:240.330000px;}
.ybc{bottom:242.490000px;}
.y5c{bottom:243.570000px;}
.yc5{bottom:245.190000px;}
.y2a{bottom:251.490000px;}
.ydf{bottom:258.150000px;}
.y84{bottom:261.030000px;}
.yc4{bottom:262.470000px;}
.ybb{bottom:263.190000px;}
.y5b{bottom:264.270000px;}
.y9c{bottom:267.510000px;}
.yf9{bottom:271.110000px;}
.y29{bottom:272.190000px;}
.yde{bottom:278.895000px;}
.y83{bottom:281.775000px;}
.y5a{bottom:285.015000px;}
.y9b{bottom:287.535000px;}
.yc3{bottom:288.255000px;}
.y28{bottom:292.935000px;}
.yba{bottom:295.815000px;}
.ydd{bottom:299.595000px;}
.y82{bottom:302.475000px;}
.yf8{bottom:303.555000px;}
.y114{bottom:305.355000px;}
.y59{bottom:305.715000px;}
.y9a{bottom:313.095000px;}
.y27{bottom:313.635000px;}
.yb9{bottom:316.515000px;}
.ydc{bottom:319.215000px;}
.y81{bottom:323.175000px;}
.y113{bottom:326.055000px;}
.y26{bottom:334.335000px;}
.yf7{bottom:336.495000px;}
.y58{bottom:338.475000px;}
.y80{bottom:343.875000px;}
.y112{bottom:347.115000px;}
.yb8{bottom:348.915000px;}
.ydb{bottom:349.275000px;}
.y25{bottom:355.035000px;}
.yf6{bottom:357.195000px;}
.y57{bottom:359.175000px;}
.y7f{bottom:364.575000px;}
.y111{bottom:367.815000px;}
.yda{bottom:370.335000px;}
.y12d{bottom:374.475000px;}
.y24{bottom:375.735000px;}
.yf5{bottom:377.895000px;}
.y56{bottom:379.875000px;}
.yb7{bottom:382.035000px;}
.y7e{bottom:385.275000px;}
.y110{bottom:388.515000px;}
.yd9{bottom:391.035000px;}
.y12c{bottom:395.175000px;}
.y23{bottom:396.435000px;}
.y55{bottom:400.575000px;}
.y10f{bottom:409.215000px;}
.yf4{bottom:410.655000px;}
.yd8{bottom:411.735000px;}
.yb6{bottom:414.615000px;}
.y12b{bottom:415.875000px;}
.y22{bottom:417.135000px;}
.y7d{bottom:418.035000px;}
.y54{bottom:420.915000px;}
.y10e{bottom:429.915000px;}
.yf3{bottom:431.355000px;}
.yd7{bottom:432.435000px;}
.yb5{bottom:435.315000px;}
.y12a{bottom:436.575000px;}
.y21{bottom:437.835000px;}
.y7c{bottom:438.735000px;}
.y53{bottom:441.975000px;}
.y10d{bottom:450.615000px;}
.yf2{bottom:452.055000px;}
.yd6{bottom:453.135000px;}
.yb4{bottom:456.015000px;}
.y129{bottom:457.275000px;}
.y20{bottom:458.535000px;}
.y7b{bottom:459.435000px;}
.y52{bottom:462.675000px;}
.y10c{bottom:471.315000px;}
.yf1{bottom:472.755000px;}
.y128{bottom:477.975000px;}
.y1f{bottom:479.235000px;}
.y7a{bottom:480.135000px;}
.y51{bottom:483.375000px;}
.yd5{bottom:485.715000px;}
.yb3{bottom:488.775000px;}
.y10b{bottom:492.015000px;}
.y127{bottom:498.675000px;}
.y1e{bottom:499.755000px;}
.y79{bottom:500.835000px;}
.y50{bottom:504.075000px;}
.yf0{bottom:505.155000px;}
.yd4{bottom:506.415000px;}
.yb2{bottom:509.475000px;}
.y10a{bottom:512.715000px;}
.y126{bottom:519.375000px;}
.y1d{bottom:520.455000px;}
.yd3{bottom:527.115000px;}
.yb1{bottom:530.175000px;}
.y109{bottom:533.055000px;}
.y78{bottom:533.415000px;}
.y4f{bottom:536.835000px;}
.yef{bottom:538.095000px;}
.y125{bottom:540.075000px;}
.y1c{bottom:541.155000px;}
.yd2{bottom:547.815000px;}
.yb0{bottom:550.875000px;}
.y77{bottom:553.755000px;}
.y108{bottom:554.115000px;}
.y4e{bottom:557.565000px;}
.yee{bottom:558.825000px;}
.y124{bottom:560.805000px;}
.y1b{bottom:561.885000px;}
.yaf{bottom:571.605000px;}
.y76{bottom:574.845000px;}
.y4d{bottom:578.265000px;}
.yed{bottom:579.525000px;}
.y123{bottom:581.505000px;}
.y1a{bottom:582.585000px;}
.yd1{bottom:583.305000px;}
.yae{bottom:592.305000px;}
.y75{bottom:595.545000px;}
.yec{bottom:600.225000px;}
.y122{bottom:602.205000px;}
.y19{bottom:603.285000px;}
.yd0{bottom:604.185000px;}
.y4b{bottom:610.845000px;}
.y74{bottom:616.245000px;}
.y4c{bottom:617.685000px;}
.y121{bottom:622.905000px;}
.y18{bottom:623.985000px;}
.yad{bottom:624.885000px;}
.y4a{bottom:631.545000px;}
.yeb{bottom:632.985000px;}
.y73{bottom:636.945000px;}
.y120{bottom:643.605000px;}
.y17{bottom:644.685000px;}
.yac{bottom:645.585000px;}
.y49{bottom:652.245000px;}
.yea{bottom:653.685000px;}
.y72{bottom:657.645000px;}
.y11f{bottom:664.305000px;}
.y16{bottom:665.385000px;}
.yab{bottom:666.285000px;}
.y99{bottom:669.705000px;}
.y48{bottom:672.945000px;}
.ye9{bottom:673.305000px;}
.y71{bottom:678.345000px;}
.y11e{bottom:685.005000px;}
.y15{bottom:686.085000px;}
.yaa{bottom:686.985000px;}
.y47{bottom:693.645000px;}
.y70{bottom:699.045000px;}
.y98{bottom:702.285000px;}
.ye8{bottom:702.465000px;}
.y11d{bottom:705.705000px;}
.y14{bottom:706.785000px;}
.ya9{bottom:707.685000px;}
.y46{bottom:714.345000px;}
.y6f{bottom:719.745000px;}
.ye7{bottom:720.105000px;}
.y97{bottom:722.985000px;}
.y11c{bottom:726.405000px;}
.ya8{bottom:728.385000px;}
.ye6{bottom:733.785000px;}
.y45{bottom:735.045000px;}
.y6e{bottom:740.445000px;}
.y13{bottom:742.065000px;}
.y96{bottom:743.685000px;}
.y11b{bottom:747.105000px;}
.ya7{bottom:749.085000px;}
.y44{bottom:755.745000px;}
.ycf{bottom:761.145000px;}
.y95{bottom:764.385000px;}
.y11a{bottom:767.805000px;}
.ya6{bottom:769.785000px;}
.y6d{bottom:773.205000px;}
.y12{bottom:775.185000px;}
.y43{bottom:776.445000px;}
.y107{bottom:781.845000px;}
.y94{bottom:785.085000px;}
.y119{bottom:788.505000px;}
.y6c{bottom:793.905000px;}
.y11{bottom:795.885000px;}
.y42{bottom:797.145000px;}
.ya5{bottom:802.185000px;}
.y93{bottom:805.785000px;}
.y118{bottom:808.845000px;}
.y6b{bottom:814.605000px;}
.y10{bottom:816.585000px;}
.y106{bottom:822.885000px;}
.y92{bottom:826.485000px;}
.y41{bottom:829.545000px;}
.y6a{bottom:834.945000px;}
.ya4{bottom:835.305000px;}
.yf{bottom:837.285000px;}
.y105{bottom:843.630000px;}
.y91{bottom:846.870000px;}
.y40{bottom:850.650000px;}
.y69{bottom:856.050000px;}
.y90{bottom:867.570000px;}
.ya3{bottom:867.930000px;}
.ye{bottom:870.090000px;}
.y3f{bottom:871.350000px;}
.yce{bottom:876.750000px;}
.y68{bottom:888.630000px;}
.yd{bottom:890.790000px;}
.y3e{bottom:892.050000px;}
.y104{bottom:897.450000px;}
.y8f{bottom:900.690000px;}
.y67{bottom:909.330000px;}
.yc{bottom:911.490000px;}
.y3d{bottom:912.750000px;}
.y103{bottom:918.150000px;}
.y8e{bottom:921.390000px;}
.y66{bottom:930.030000px;}
.y3c{bottom:933.450000px;}
.y102{bottom:938.850000px;}
.y8d{bottom:942.090000px;}
.yb{bottom:943.890000px;}
.y65{bottom:950.730000px;}
.y3b{bottom:954.150000px;}
.y101{bottom:959.550000px;}
.y8c{bottom:962.790000px;}
.ycd{bottom:971.430000px;}
.y3a{bottom:974.850000px;}
.ya{bottom:979.710000px;}
.y64{bottom:983.490000px;}
.ycc{bottom:992.130000px;}
.y39{bottom:995.550000px;}
.y63{bottom:1004.190000px;}
.ycb{bottom:1012.830000px;}
.y9{bottom:1015.350000px;}
.y38{bottom:1016.250000px;}
.y62{bottom:1024.890000px;}
.y37{bottom:1036.950000px;}
.yca{bottom:1045.230000px;}
.y8{bottom:1051.170000px;}
.y36{bottom:1057.650000px;}
.y35{bottom:1078.350000px;}
.y7{bottom:1086.810000px;}
.y34{bottom:1099.050000px;}
.y5{bottom:1119.390000px;}
.y33{bottom:1119.750000px;}
.y6{bottom:1125.360000px;}
.y4{bottom:1140.120000px;}
.y32{bottom:1140.480000px;}
.y1{bottom:1194.300000px;}
.h7{height:38.158594px;}
.h2{height:45.184219px;}
.h9{height:47.344922px;}
.h5{height:48.616875px;}
.hd{height:58.463677px;}
.h8{height:58.651172px;}
.he{height:61.423863px;}
.ha{height:64.546875px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h3{height:72.562500px;}
.hc{height:74.004654px;}
.hf{height:74.704922px;}
.h4{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x8{left:132.516000px;}
.xd{left:154.650000px;}
.xb{left:170.130000px;}
.xe{left:181.650000px;}
.x9{left:239.047500px;}
.xa{left:245.190000px;}
.x7{left:343.695000px;}
.x10{left:438.195000px;}
.x2{left:442.335000px;}
.x6{left:552.525000px;}
.x3{left:556.822500px;}
.x4{left:562.965000px;}
.xf{left:591.225000px;}
.x5{left:605.625000px;}
.xc{left:638.745000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls4{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.133333pt;}
.ls3{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.640000pt;}
.lsc{letter-spacing:3.200000pt;}
.lsf{letter-spacing:14.080000pt;}
.ls0{letter-spacing:35.840000pt;}
.ls9{letter-spacing:57.088000pt;}
.lsb{letter-spacing:439.152640pt;}
.ws6{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
._c{margin-left:-1.888000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.098667pt;}
._7{width:2.720000pt;}
._d{width:3.968000pt;}
._12{width:4.992000pt;}
._13{width:5.952000pt;}
._15{width:7.210667pt;}
._5{width:8.874667pt;}
._4{width:10.112000pt;}
._3{width:11.072000pt;}
._e{width:11.978667pt;}
._16{width:12.896000pt;}
._8{width:13.802667pt;}
._6{width:14.784000pt;}
._14{width:17.536000pt;}
._a{width:19.136000pt;}
._b{width:20.906667pt;}
._19{width:22.250667pt;}
._1c{width:23.466667pt;}
._1a{width:24.768000pt;}
._1b{width:26.368000pt;}
._1d{width:27.456000pt;}
._17{width:28.800000pt;}
._18{width:29.696000pt;}
._f{width:32.682667pt;}
._11{width:33.600000pt;}
._10{width:34.570667pt;}
._9{width:35.882667pt;}
._1e{width:36.938667pt;}
._21{width:58.944000pt;}
._22{width:60.778667pt;}
._23{width:70.976000pt;}
._24{width:72.224000pt;}
._2{width:172.778667pt;}
._20{width:438.784000pt;}
._1f{width:439.872000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.232000pt;}
.y2{bottom:69.152000pt;}
.y31{bottom:97.632000pt;}
.y100{bottom:101.472000pt;}
.y8b{bottom:103.232000pt;}
.yc2{bottom:105.152000pt;}
.y117{bottom:106.112000pt;}
.ye5{bottom:108.512000pt;}
.y30{bottom:112.992000pt;}
.ya2{bottom:116.672000pt;}
.y61{bottom:117.632000pt;}
.yff{bottom:119.872000pt;}
.y8a{bottom:121.632000pt;}
.yc1{bottom:123.552000pt;}
.y116{bottom:124.512000pt;}
.ye4{bottom:126.912000pt;}
.y2f{bottom:128.352000pt;}
.y60{bottom:129.152000pt;}
.ya1{bottom:135.066667pt;}
.yc9{bottom:137.466667pt;}
.yfe{bottom:138.266667pt;}
.y89{bottom:140.026667pt;}
.yc0{bottom:141.946667pt;}
.y115{bottom:142.906667pt;}
.y2e{bottom:143.706667pt;}
.ye3{bottom:145.146667pt;}
.ya0{bottom:153.466667pt;}
.yc8{bottom:155.866667pt;}
.yfd{bottom:156.666667pt;}
.y88{bottom:158.426667pt;}
.y2d{bottom:159.066667pt;}
.ybf{bottom:160.346667pt;}
.y5f{bottom:161.306667pt;}
.ye2{bottom:163.546667pt;}
.y2c{bottom:163.706667pt;}
.y9f{bottom:171.866667pt;}
.yc7{bottom:174.266667pt;}
.yfc{bottom:175.066667pt;}
.y2b{bottom:175.226667pt;}
.y87{bottom:176.826667pt;}
.ybe{bottom:178.746667pt;}
.y5e{bottom:179.706667pt;}
.y9e{bottom:190.266667pt;}
.ye1{bottom:192.666667pt;}
.yfb{bottom:193.466667pt;}
.y86{bottom:195.226667pt;}
.ybd{bottom:197.146667pt;}
.y5d{bottom:198.106667pt;}
.yc6{bottom:202.586667pt;}
.y9d{bottom:208.666667pt;}
.ye0{bottom:211.066667pt;}
.yfa{bottom:211.866667pt;}
.y85{bottom:213.626667pt;}
.ybc{bottom:215.546667pt;}
.y5c{bottom:216.506667pt;}
.yc5{bottom:217.946667pt;}
.y2a{bottom:223.546667pt;}
.ydf{bottom:229.466667pt;}
.y84{bottom:232.026667pt;}
.yc4{bottom:233.306667pt;}
.ybb{bottom:233.946667pt;}
.y5b{bottom:234.906667pt;}
.y9c{bottom:237.786667pt;}
.yf9{bottom:240.986667pt;}
.y29{bottom:241.946667pt;}
.yde{bottom:247.906667pt;}
.y83{bottom:250.466667pt;}
.y5a{bottom:253.346667pt;}
.y9b{bottom:255.586667pt;}
.yc3{bottom:256.226667pt;}
.y28{bottom:260.386667pt;}
.yba{bottom:262.946667pt;}
.ydd{bottom:266.306667pt;}
.y82{bottom:268.866667pt;}
.yf8{bottom:269.826667pt;}
.y114{bottom:271.426667pt;}
.y59{bottom:271.746667pt;}
.y9a{bottom:278.306667pt;}
.y27{bottom:278.786667pt;}
.yb9{bottom:281.346667pt;}
.ydc{bottom:283.746667pt;}
.y81{bottom:287.266667pt;}
.y113{bottom:289.826667pt;}
.y26{bottom:297.186667pt;}
.yf7{bottom:299.106667pt;}
.y58{bottom:300.866667pt;}
.y80{bottom:305.666667pt;}
.y112{bottom:308.546667pt;}
.yb8{bottom:310.146667pt;}
.ydb{bottom:310.466667pt;}
.y25{bottom:315.586667pt;}
.yf6{bottom:317.506667pt;}
.y57{bottom:319.266667pt;}
.y7f{bottom:324.066667pt;}
.y111{bottom:326.946667pt;}
.yda{bottom:329.186667pt;}
.y12d{bottom:332.866667pt;}
.y24{bottom:333.986667pt;}
.yf5{bottom:335.906667pt;}
.y56{bottom:337.666667pt;}
.yb7{bottom:339.586667pt;}
.y7e{bottom:342.466667pt;}
.y110{bottom:345.346667pt;}
.yd9{bottom:347.586667pt;}
.y12c{bottom:351.266667pt;}
.y23{bottom:352.386667pt;}
.y55{bottom:356.066667pt;}
.y10f{bottom:363.746667pt;}
.yf4{bottom:365.026667pt;}
.yd8{bottom:365.986667pt;}
.yb6{bottom:368.546667pt;}
.y12b{bottom:369.666667pt;}
.y22{bottom:370.786667pt;}
.y7d{bottom:371.586667pt;}
.y54{bottom:374.146667pt;}
.y10e{bottom:382.146667pt;}
.yf3{bottom:383.426667pt;}
.yd7{bottom:384.386667pt;}
.yb5{bottom:386.946667pt;}
.y12a{bottom:388.066667pt;}
.y21{bottom:389.186667pt;}
.y7c{bottom:389.986667pt;}
.y53{bottom:392.866667pt;}
.y10d{bottom:400.546667pt;}
.yf2{bottom:401.826667pt;}
.yd6{bottom:402.786667pt;}
.yb4{bottom:405.346667pt;}
.y129{bottom:406.466667pt;}
.y20{bottom:407.586667pt;}
.y7b{bottom:408.386667pt;}
.y52{bottom:411.266667pt;}
.y10c{bottom:418.946667pt;}
.yf1{bottom:420.226667pt;}
.y128{bottom:424.866667pt;}
.y1f{bottom:425.986667pt;}
.y7a{bottom:426.786667pt;}
.y51{bottom:429.666667pt;}
.yd5{bottom:431.746667pt;}
.yb3{bottom:434.466667pt;}
.y10b{bottom:437.346667pt;}
.y127{bottom:443.266667pt;}
.y1e{bottom:444.226667pt;}
.y79{bottom:445.186667pt;}
.y50{bottom:448.066667pt;}
.yf0{bottom:449.026667pt;}
.yd4{bottom:450.146667pt;}
.yb2{bottom:452.866667pt;}
.y10a{bottom:455.746667pt;}
.y126{bottom:461.666667pt;}
.y1d{bottom:462.626667pt;}
.yd3{bottom:468.546667pt;}
.yb1{bottom:471.266667pt;}
.y109{bottom:473.826667pt;}
.y78{bottom:474.146667pt;}
.y4f{bottom:477.186667pt;}
.yef{bottom:478.306667pt;}
.y125{bottom:480.066667pt;}
.y1c{bottom:481.026667pt;}
.yd2{bottom:486.946667pt;}
.yb0{bottom:489.666667pt;}
.y77{bottom:492.226667pt;}
.y108{bottom:492.546667pt;}
.y4e{bottom:495.613333pt;}
.yee{bottom:496.733333pt;}
.y124{bottom:498.493333pt;}
.y1b{bottom:499.453333pt;}
.yaf{bottom:508.093333pt;}
.y76{bottom:510.973333pt;}
.y4d{bottom:514.013333pt;}
.yed{bottom:515.133333pt;}
.y123{bottom:516.893333pt;}
.y1a{bottom:517.853333pt;}
.yd1{bottom:518.493333pt;}
.yae{bottom:526.493333pt;}
.y75{bottom:529.373333pt;}
.yec{bottom:533.533333pt;}
.y122{bottom:535.293333pt;}
.y19{bottom:536.253333pt;}
.yd0{bottom:537.053333pt;}
.y4b{bottom:542.973333pt;}
.y74{bottom:547.773333pt;}
.y4c{bottom:549.053333pt;}
.y121{bottom:553.693333pt;}
.y18{bottom:554.653333pt;}
.yad{bottom:555.453333pt;}
.y4a{bottom:561.373333pt;}
.yeb{bottom:562.653333pt;}
.y73{bottom:566.173333pt;}
.y120{bottom:572.093333pt;}
.y17{bottom:573.053333pt;}
.yac{bottom:573.853333pt;}
.y49{bottom:579.773333pt;}
.yea{bottom:581.053333pt;}
.y72{bottom:584.573333pt;}
.y11f{bottom:590.493333pt;}
.y16{bottom:591.453333pt;}
.yab{bottom:592.253333pt;}
.y99{bottom:595.293333pt;}
.y48{bottom:598.173333pt;}
.ye9{bottom:598.493333pt;}
.y71{bottom:602.973333pt;}
.y11e{bottom:608.893333pt;}
.y15{bottom:609.853333pt;}
.yaa{bottom:610.653333pt;}
.y47{bottom:616.573333pt;}
.y70{bottom:621.373333pt;}
.y98{bottom:624.253333pt;}
.ye8{bottom:624.413333pt;}
.y11d{bottom:627.293333pt;}
.y14{bottom:628.253333pt;}
.ya9{bottom:629.053333pt;}
.y46{bottom:634.973333pt;}
.y6f{bottom:639.773333pt;}
.ye7{bottom:640.093333pt;}
.y97{bottom:642.653333pt;}
.y11c{bottom:645.693333pt;}
.ya8{bottom:647.453333pt;}
.ye6{bottom:652.253333pt;}
.y45{bottom:653.373333pt;}
.y6e{bottom:658.173333pt;}
.y13{bottom:659.613333pt;}
.y96{bottom:661.053333pt;}
.y11b{bottom:664.093333pt;}
.ya7{bottom:665.853333pt;}
.y44{bottom:671.773333pt;}
.ycf{bottom:676.573333pt;}
.y95{bottom:679.453333pt;}
.y11a{bottom:682.493333pt;}
.ya6{bottom:684.253333pt;}
.y6d{bottom:687.293333pt;}
.y12{bottom:689.053333pt;}
.y43{bottom:690.173333pt;}
.y107{bottom:694.973333pt;}
.y94{bottom:697.853333pt;}
.y119{bottom:700.893333pt;}
.y6c{bottom:705.693333pt;}
.y11{bottom:707.453333pt;}
.y42{bottom:708.573333pt;}
.ya5{bottom:713.053333pt;}
.y93{bottom:716.253333pt;}
.y118{bottom:718.973333pt;}
.y6b{bottom:724.093333pt;}
.y10{bottom:725.853333pt;}
.y106{bottom:731.453333pt;}
.y92{bottom:734.653333pt;}
.y41{bottom:737.373333pt;}
.y6a{bottom:742.173333pt;}
.ya4{bottom:742.493333pt;}
.yf{bottom:744.253333pt;}
.y105{bottom:749.893333pt;}
.y91{bottom:752.773333pt;}
.y40{bottom:756.133333pt;}
.y69{bottom:760.933333pt;}
.y90{bottom:771.173333pt;}
.ya3{bottom:771.493333pt;}
.ye{bottom:773.413333pt;}
.y3f{bottom:774.533333pt;}
.yce{bottom:779.333333pt;}
.y68{bottom:789.893333pt;}
.yd{bottom:791.813333pt;}
.y3e{bottom:792.933333pt;}
.y104{bottom:797.733333pt;}
.y8f{bottom:800.613333pt;}
.y67{bottom:808.293333pt;}
.yc{bottom:810.213333pt;}
.y3d{bottom:811.333333pt;}
.y103{bottom:816.133333pt;}
.y8e{bottom:819.013333pt;}
.y66{bottom:826.693333pt;}
.y3c{bottom:829.733333pt;}
.y102{bottom:834.533333pt;}
.y8d{bottom:837.413333pt;}
.yb{bottom:839.013333pt;}
.y65{bottom:845.093333pt;}
.y3b{bottom:848.133333pt;}
.y101{bottom:852.933333pt;}
.y8c{bottom:855.813333pt;}
.ycd{bottom:863.493333pt;}
.y3a{bottom:866.533333pt;}
.ya{bottom:870.853333pt;}
.y64{bottom:874.213333pt;}
.ycc{bottom:881.893333pt;}
.y39{bottom:884.933333pt;}
.y63{bottom:892.613333pt;}
.ycb{bottom:900.293333pt;}
.y9{bottom:902.533333pt;}
.y38{bottom:903.333333pt;}
.y62{bottom:911.013333pt;}
.y37{bottom:921.733333pt;}
.yca{bottom:929.093333pt;}
.y8{bottom:934.373333pt;}
.y36{bottom:940.133333pt;}
.y35{bottom:958.533333pt;}
.y7{bottom:966.053333pt;}
.y34{bottom:976.933333pt;}
.y5{bottom:995.013333pt;}
.y33{bottom:995.333333pt;}
.y6{bottom:1000.320000pt;}
.y4{bottom:1013.440000pt;}
.y32{bottom:1013.760000pt;}
.y1{bottom:1061.600000pt;}
.h7{height:33.918750pt;}
.h2{height:40.163750pt;}
.h9{height:42.084375pt;}
.h5{height:43.215000pt;}
.hd{height:51.967713pt;}
.h8{height:52.134375pt;}
.he{height:54.598989pt;}
.ha{height:57.375000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h3{height:64.500000pt;}
.hc{height:65.781915pt;}
.hf{height:66.404375pt;}
.h4{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x8{left:117.792000pt;}
.xd{left:137.466667pt;}
.xb{left:151.226667pt;}
.xe{left:161.466667pt;}
.x9{left:212.486667pt;}
.xa{left:217.946667pt;}
.x7{left:305.506667pt;}
.x10{left:389.506667pt;}
.x2{left:393.186667pt;}
.x6{left:491.133333pt;}
.x3{left:494.953333pt;}
.x4{left:500.413333pt;}
.xf{left:525.533333pt;}
.x5{left:538.333333pt;}
.xc{left:567.773333pt;}
}




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