
    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_2e700db47369efbb5d82dae5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_7ac604eee8c8f6eb2a7e4886.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027832;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_452cab235f2e29a7cd3c07f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_b60ae097337ff8823e3d08bd.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7360869e434864d95c6dcbf5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.988281;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_c99c75614342b2f4fd6e4117.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.988281;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_844059fa41e2bb4195add362.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_5bfe025a58131c014daaacc2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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;}
.ls1c{letter-spacing:-1.074000px;}
.ls15{letter-spacing:-1.020000px;}
.ls5{letter-spacing:-0.714000px;}
.ls1{letter-spacing:-0.504000px;}
.ls1b{letter-spacing:-0.302400px;}
.ls16{letter-spacing:-0.100800px;}
.lsd{letter-spacing:-0.038160px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.006480px;}
.ls10{letter-spacing:0.012240px;}
.lsa{letter-spacing:0.012960px;}
.ls12{letter-spacing:0.036000px;}
.ls1d{letter-spacing:0.204960px;}
.ls6{letter-spacing:0.223800px;}
.ls1e{letter-spacing:0.240480px;}
.ls18{letter-spacing:0.266400px;}
.ls17{letter-spacing:0.268800px;}
.lsc{letter-spacing:0.283800px;}
.ls19{letter-spacing:0.288000px;}
.lse{letter-spacing:0.319680px;}
.lsb{letter-spacing:0.368400px;}
.ls2{letter-spacing:0.374400px;}
.ls1a{letter-spacing:29.861280px;}
.ls9{letter-spacing:38.106720px;}
.ls3{letter-spacing:38.154720px;}
.ls14{letter-spacing:41.706720px;}
.ls8{letter-spacing:46.746720px;}
.ls4{letter-spacing:64.026720px;}
.ls11{letter-spacing:64.206720px;}
.lsf{letter-spacing:71.226720px;}
.ls13{letter-spacing:126.666720px;}
.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:-59.760000px;}
.wse{word-spacing:-23.587200px;}
.ws5{word-spacing:-16.921920px;}
.wsd{word-spacing:-16.841520px;}
.ws6{word-spacing:-16.837320px;}
.wsb{word-spacing:-16.822320px;}
.wsc{word-spacing:-16.819920px;}
.ws3{word-spacing:-16.732800px;}
.wsa{word-spacing:-16.632000px;}
.ws8{word-spacing:-16.589520px;}
.ws4{word-spacing:-16.566480px;}
.ws7{word-spacing:-16.565760px;}
.ws0{word-spacing:-16.553520px;}
.ws9{word-spacing:-15.533520px;}
.ws1{word-spacing:0.000000px;}
._d{margin-left:-12.960000px;}
._1{margin-left:-1.224000px;}
._0{width:1.162080px;}
._a{width:2.165280px;}
._5{width:3.335520px;}
._b{width:5.004240px;}
._c{width:6.743280px;}
._4{width:7.828560px;}
._3{width:9.442080px;}
._7{width:10.756800px;}
._8{width:12.193200px;}
._2{width:13.864320px;}
._14{width:15.023520px;}
._6{width:18.406080px;}
._9{width:19.597440px;}
._13{width:21.247920px;}
._15{width:23.007600px;}
._11{width:24.322320px;}
._10{width:25.637040px;}
._16{width:26.805600px;}
._12{width:28.488240px;}
._e{width:30.144720px;}
._f{width:31.378080px;}
._18{width:32.693520px;}
._19{width:34.303920px;}
._1d{width:35.458320px;}
._17{width:37.203840px;}
._1c{width:39.231360px;}
._1b{width:62.655120px;}
._1a{width:63.737280px;}
.fc1{color:rgb(0,51,102);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:3.780000px;}
.y2{bottom:9.180000px;}
.y12{bottom:10.620000px;}
.y17{bottom:23.040000px;}
.y14{bottom:25.920000px;}
.y11{bottom:29.700000px;}
.y49{bottom:48.240000px;}
.y3{bottom:72.570000px;}
.y48{bottom:75.600000px;}
.y47{bottom:102.960000px;}
.yf4{bottom:109.260000px;}
.y60{bottom:114.660000px;}
.yab{bottom:125.460000px;}
.ye7{bottom:126.540000px;}
.yf3{bottom:127.800000px;}
.y46{bottom:130.320000px;}
.y5f{bottom:142.020000px;}
.yaa{bottom:143.820000px;}
.yf2{bottom:146.160000px;}
.y8c{bottom:153.180000px;}
.ye6{bottom:153.900000px;}
.y45{bottom:157.680000px;}
.y5e{bottom:160.560000px;}
.ya9{bottom:162.180000px;}
.y3c{bottom:165.780000px;}
.y18{bottom:165.960000px;}
.yc7{bottom:171.720000px;}
.y5d{bottom:178.920000px;}
.y8b{bottom:180.720000px;}
.ye5{bottom:182.550000px;}
.y44{bottom:185.040000px;}
.yf1{bottom:191.550000px;}
.y3b{bottom:193.170000px;}
.y5c{bottom:197.310000px;}
.y8a{bottom:199.110000px;}
.y3a{bottom:211.710000px;}
.y43{bottom:212.625000px;}
.y5b{bottom:215.670000px;}
.yf0{bottom:215.850000px;}
.y89{bottom:217.470000px;}
.yc6{bottom:226.470000px;}
.y39{bottom:230.070000px;}
.y16{bottom:232.230000px;}
.ye4{bottom:234.210000px;}
.y88{bottom:235.830000px;}
.y5a{bottom:243.030000px;}
.yc5{bottom:253.830000px;}
.ya8{bottom:254.190000px;}
.y38{bottom:257.430000px;}
.ye3{bottom:261.570000px;}
.y87{bottom:263.190000px;}
.y59{bottom:270.570000px;}
.yc4{bottom:272.190000px;}
.ya7{bottom:272.730000px;}
.y13{bottom:278.850000px;}
.ye2{bottom:279.930000px;}
.y86{bottom:281.730000px;}
.y37{bottom:284.790000px;}
.y58{bottom:288.930000px;}
.ya6{bottom:291.090000px;}
.ye1{bottom:298.290000px;}
.yc3{bottom:299.730000px;}
.y85{bottom:300.090000px;}
.y36{bottom:303.150000px;}
.y57{bottom:307.290000px;}
.y84{bottom:318.450000px;}
.y10d{bottom:319.170000px;}
.y35{bottom:321.510000px;}
.y56{bottom:325.650000px;}
.ye0{bottom:326.910000px;}
.yc2{bottom:327.090000px;}
.y10{bottom:328.350000px;}
.y83{bottom:336.810000px;}
.y34{bottom:340.050000px;}
.yc1{bottom:345.450000px;}
.ya5{bottom:345.810000px;}
.y10c{bottom:346.530000px;}
.y55{bottom:353.010000px;}
.y82{bottom:355.170000px;}
.yc0{bottom:363.810000px;}
.ya4{bottom:364.170000px;}
.y10b{bottom:365.070000px;}
.y33{bottom:367.410000px;}
.y81{bottom:373.530000px;}
.ydf{bottom:378.390000px;}
.y54{bottom:380.370000px;}
.ybf{bottom:382.170000px;}
.ya3{bottom:382.530000px;}
.y10a{bottom:392.430000px;}
.y32{bottom:394.770000px;}
.ybe{bottom:400.530000px;}
.yf{bottom:400.890000px;}
.y80{bottom:401.070000px;}
.yde{bottom:405.930000px;}
.y53{bottom:407.910000px;}
.y31{bottom:413.130000px;}
.ybd{bottom:419.070000px;}
.y7f{bottom:419.430000px;}
.y109{bottom:419.790000px;}
.ydd{bottom:424.335000px;}
.y52{bottom:426.315000px;}
.y30{bottom:431.535000px;}
.ya2{bottom:437.835000px;}
.y108{bottom:438.195000px;}
.y51{bottom:444.675000px;}
.ybc{bottom:446.475000px;}
.y7e{bottom:446.835000px;}
.y2f{bottom:450.075000px;}
.ydc{bottom:451.695000px;}
.ye{bottom:463.035000px;}
.ybb{bottom:464.835000px;}
.ya1{bottom:465.195000px;}
.y107{bottom:465.555000px;}
.y7d{bottom:474.195000px;}
.y2e{bottom:477.435000px;}
.ydb{bottom:479.055000px;}
.y50{bottom:481.395000px;}
.yba{bottom:483.195000px;}
.y7c{bottom:492.555000px;}
.y106{bottom:492.915000px;}
.yda{bottom:497.415000px;}
.yb9{bottom:501.555000px;}
.y2d{bottom:504.795000px;}
.y4f{bottom:508.755000px;}
.y7b{bottom:510.915000px;}
.y105{bottom:511.455000px;}
.yd9{bottom:515.775000px;}
.yb8{bottom:519.915000px;}
.y2c{bottom:523.155000px;}
.yd{bottom:525.135000px;}
.y7a{bottom:529.455000px;}
.y104{bottom:529.815000px;}
.y4e{bottom:536.295000px;}
.yb7{bottom:538.455000px;}
.y2b{bottom:541.515000px;}
.yd8{bottom:544.395000px;}
.y79{bottom:547.815000px;}
.yb6{bottom:556.815000px;}
.y103{bottom:557.175000px;}
.y4d{bottom:563.655000px;}
.ya0{bottom:566.175000px;}
.y2a{bottom:568.875000px;}
.yef{bottom:574.635000px;}
.y78{bottom:575.175000px;}
.y102{bottom:575.535000px;}
.y4c{bottom:582.015000px;}
.yc{bottom:587.235000px;}
.y9f{bottom:593.535000px;}
.yd7{bottom:596.055000px;}
.y29{bottom:596.415000px;}
.yee{bottom:601.995000px;}
.y77{bottom:602.535000px;}
.y101{bottom:602.895000px;}
.y4b{bottom:611.355000px;}
.yd6{bottom:614.415000px;}
.yed{bottom:620.535000px;}
.y76{bottom:620.895000px;}
.y28{bottom:623.775000px;}
.y100{bottom:630.255000px;}
.yd5{bottom:632.775000px;}
.y9e{bottom:639.255000px;}
.y75{bottom:648.255000px;}
.yff{bottom:648.795000px;}
.yb{bottom:649.515000px;}
.yec{bottom:649.875000px;}
.y27{bottom:651.135000px;}
.y9d{bottom:657.795000px;}
.yb5{bottom:666.825000px;}
.yd4{bottom:669.525000px;}
.y4a{bottom:674.925000px;}
.y74{bottom:675.825000px;}
.y9c{bottom:676.185000px;}
.y26{bottom:678.525000px;}
.yb4{bottom:685.185000px;}
.yd3{bottom:687.885000px;}
.y73{bottom:694.185000px;}
.y9b{bottom:694.545000px;}
.y42{bottom:699.945000px;}
.yb3{bottom:703.545000px;}
.y25{bottom:705.885000px;}
.ya{bottom:711.645000px;}
.y72{bottom:712.545000px;}
.yfe{bottom:712.905000px;}
.yeb{bottom:713.265000px;}
.yd2{bottom:716.505000px;}
.y9a{bottom:721.905000px;}
.y71{bottom:730.905000px;}
.y24{bottom:733.245000px;}
.y99{bottom:740.265000px;}
.yea{bottom:740.625000px;}
.y70{bottom:749.265000px;}
.y23{bottom:751.785000px;}
.y98{bottom:758.625000px;}
.y6f{bottom:767.625000px;}
.yd1{bottom:768.165000px;}
.y9{bottom:773.745000px;}
.y97{bottom:777.165000px;}
.y22{bottom:781.125000px;}
.y6e{bottom:786.165000px;}
.yd0{bottom:786.525000px;}
.yb2{bottom:795.165000px;}
.y96{bottom:795.525000px;}
.ycf{bottom:804.885000px;}
.y6d{bottom:813.525000px;}
.yfd{bottom:813.885000px;}
.yb1{bottom:822.525000px;}
.y95{bottom:822.885000px;}
.yce{bottom:823.245000px;}
.yfc{bottom:832.245000px;}
.y8{bottom:835.845000px;}
.y6c{bottom:840.885000px;}
.y94{bottom:841.245000px;}
.ycd{bottom:841.605000px;}
.y21{bottom:844.485000px;}
.ye9{bottom:850.245000px;}
.yfb{bottom:850.605000px;}
.y6b{bottom:859.245000px;}
.y20{bottom:862.845000px;}
.yb0{bottom:868.245000px;}
.y93{bottom:868.605000px;}
.ycc{bottom:869.145000px;}
.y6a{bottom:877.605000px;}
.y1f{bottom:881.385000px;}
.yaf{bottom:886.605000px;}
.yfa{bottom:887.505000px;}
.y69{bottom:896.145000px;}
.ycb{bottom:896.505000px;}
.y7{bottom:897.945000px;}
.yf9{bottom:905.910000px;}
.y1e{bottom:908.790000px;}
.yae{bottom:914.190000px;}
.y68{bottom:914.550000px;}
.yca{bottom:914.910000px;}
.yf8{bottom:924.270000px;}
.yad{bottom:932.550000px;}
.y92{bottom:932.910000px;}
.y1d{bottom:936.150000px;}
.y67{bottom:941.910000px;}
.yc9{bottom:942.270000px;}
.yf7{bottom:942.630000px;}
.y41{bottom:949.650000px;}
.yac{bottom:950.910000px;}
.y91{bottom:951.270000px;}
.y1c{bottom:954.510000px;}
.y6{bottom:960.270000px;}
.y66{bottom:969.270000px;}
.y90{bottom:969.630000px;}
.yf6{bottom:969.990000px;}
.y1b{bottom:972.870000px;}
.y40{bottom:977.010000px;}
.ye8{bottom:978.630000px;}
.y65{bottom:987.630000px;}
.y8f{bottom:987.990000px;}
.y1a{bottom:991.230000px;}
.y3f{bottom:995.370000px;}
.yc8{bottom:996.990000px;}
.yf5{bottom:998.610000px;}
.y64{bottom:1005.990000px;}
.y8e{bottom:1006.530000px;}
.y19{bottom:1020.750000px;}
.y5{bottom:1022.370000px;}
.y3e{bottom:1022.730000px;}
.y63{bottom:1024.530000px;}
.y8d{bottom:1033.890000px;}
.y62{bottom:1042.890000px;}
.y3d{bottom:1052.250000px;}
.y61{bottom:1061.250000px;}
.y4{bottom:1088.610000px;}
.y1{bottom:1112.910000px;}
.h9{height:41.400000px;}
.h8{height:44.280000px;}
.hd{height:46.629141px;}
.h5{height:48.060000px;}
.he{height:48.992695px;}
.h3{height:55.295508px;}
.h6{height:59.027344px;}
.hb{height:61.423863px;}
.h7{height:66.621094px;}
.hf{height:87.695156px;}
.h2{height:96.876000px;}
.ha{height:99.687656px;}
.h4{height:118.054688px;}
.hc{height:236.910000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:234.930000px;}
.w3{width:324.075000px;}
.w2{width:324.210000px;}
.w5{width:435.495000px;}
.w6{width:585.105000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.xb{left:22.140000px;}
.x11{left:34.740000px;}
.x10{left:61.740000px;}
.xd{left:111.090000px;}
.x1{left:119.556000px;}
.xc{left:126.030000px;}
.x5{left:127.656000px;}
.x7{left:148.716000px;}
.xf{left:154.650000px;}
.xe{left:157.350000px;}
.x19{left:175.890000px;}
.x9{left:181.650000px;}
.x15{left:191.550000px;}
.x13{left:208.650000px;}
.xa{left:227.010000px;}
.x16{left:235.650000px;}
.x2{left:239.979000px;}
.x14{left:262.650000px;}
.x18{left:283.395000px;}
.x12{left:337.035000px;}
.x8{left:359.715000px;}
.x3{left:443.775000px;}
.x6{left:446.475000px;}
.x17{left:569.805000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.954667pt;}
.ls15{letter-spacing:-0.906667pt;}
.ls5{letter-spacing:-0.634667pt;}
.ls1{letter-spacing:-0.448000pt;}
.ls1b{letter-spacing:-0.268800pt;}
.ls16{letter-spacing:-0.089600pt;}
.lsd{letter-spacing:-0.033920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.005760pt;}
.ls10{letter-spacing:0.010880pt;}
.lsa{letter-spacing:0.011520pt;}
.ls12{letter-spacing:0.032000pt;}
.ls1d{letter-spacing:0.182187pt;}
.ls6{letter-spacing:0.198933pt;}
.ls1e{letter-spacing:0.213760pt;}
.ls18{letter-spacing:0.236800pt;}
.ls17{letter-spacing:0.238933pt;}
.lsc{letter-spacing:0.252267pt;}
.ls19{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.284160pt;}
.lsb{letter-spacing:0.327467pt;}
.ls2{letter-spacing:0.332800pt;}
.ls1a{letter-spacing:26.543360pt;}
.ls9{letter-spacing:33.872640pt;}
.ls3{letter-spacing:33.915307pt;}
.ls14{letter-spacing:37.072640pt;}
.ls8{letter-spacing:41.552640pt;}
.ls4{letter-spacing:56.912640pt;}
.ls11{letter-spacing:57.072640pt;}
.lsf{letter-spacing:63.312640pt;}
.ls13{letter-spacing:112.592640pt;}
.ws2{word-spacing:-53.120000pt;}
.wse{word-spacing:-20.966400pt;}
.ws5{word-spacing:-15.041707pt;}
.wsd{word-spacing:-14.970240pt;}
.ws6{word-spacing:-14.966507pt;}
.wsb{word-spacing:-14.953173pt;}
.wsc{word-spacing:-14.951040pt;}
.ws3{word-spacing:-14.873600pt;}
.wsa{word-spacing:-14.784000pt;}
.ws8{word-spacing:-14.746240pt;}
.ws4{word-spacing:-14.725760pt;}
.ws7{word-spacing:-14.725120pt;}
.ws0{word-spacing:-14.714240pt;}
.ws9{word-spacing:-13.807573pt;}
.ws1{word-spacing:0.000000pt;}
._d{margin-left:-11.520000pt;}
._1{margin-left:-1.088000pt;}
._0{width:1.032960pt;}
._a{width:1.924693pt;}
._5{width:2.964907pt;}
._b{width:4.448213pt;}
._c{width:5.994027pt;}
._4{width:6.958720pt;}
._3{width:8.392960pt;}
._7{width:9.561600pt;}
._8{width:10.838400pt;}
._2{width:12.323840pt;}
._14{width:13.354240pt;}
._6{width:16.360960pt;}
._9{width:17.419947pt;}
._13{width:18.887040pt;}
._15{width:20.451200pt;}
._11{width:21.619840pt;}
._10{width:22.788480pt;}
._16{width:23.827200pt;}
._12{width:25.322880pt;}
._e{width:26.795307pt;}
._f{width:27.891627pt;}
._18{width:29.060907pt;}
._19{width:30.492373pt;}
._1d{width:31.518507pt;}
._17{width:33.070080pt;}
._1c{width:34.872320pt;}
._1b{width:55.693440pt;}
._1a{width:56.655360pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:3.360000pt;}
.y2{bottom:8.160000pt;}
.y12{bottom:9.440000pt;}
.y17{bottom:20.480000pt;}
.y14{bottom:23.040000pt;}
.y11{bottom:26.400000pt;}
.y49{bottom:42.880000pt;}
.y3{bottom:64.506667pt;}
.y48{bottom:67.200000pt;}
.y47{bottom:91.520000pt;}
.yf4{bottom:97.120000pt;}
.y60{bottom:101.920000pt;}
.yab{bottom:111.520000pt;}
.ye7{bottom:112.480000pt;}
.yf3{bottom:113.600000pt;}
.y46{bottom:115.840000pt;}
.y5f{bottom:126.240000pt;}
.yaa{bottom:127.840000pt;}
.yf2{bottom:129.920000pt;}
.y8c{bottom:136.160000pt;}
.ye6{bottom:136.800000pt;}
.y45{bottom:140.160000pt;}
.y5e{bottom:142.720000pt;}
.ya9{bottom:144.160000pt;}
.y3c{bottom:147.360000pt;}
.y18{bottom:147.520000pt;}
.yc7{bottom:152.640000pt;}
.y5d{bottom:159.040000pt;}
.y8b{bottom:160.640000pt;}
.ye5{bottom:162.266667pt;}
.y44{bottom:164.480000pt;}
.yf1{bottom:170.266667pt;}
.y3b{bottom:171.706667pt;}
.y5c{bottom:175.386667pt;}
.y8a{bottom:176.986667pt;}
.y3a{bottom:188.186667pt;}
.y43{bottom:189.000000pt;}
.y5b{bottom:191.706667pt;}
.yf0{bottom:191.866667pt;}
.y89{bottom:193.306667pt;}
.yc6{bottom:201.306667pt;}
.y39{bottom:204.506667pt;}
.y16{bottom:206.426667pt;}
.ye4{bottom:208.186667pt;}
.y88{bottom:209.626667pt;}
.y5a{bottom:216.026667pt;}
.yc5{bottom:225.626667pt;}
.ya8{bottom:225.946667pt;}
.y38{bottom:228.826667pt;}
.ye3{bottom:232.506667pt;}
.y87{bottom:233.946667pt;}
.y59{bottom:240.506667pt;}
.yc4{bottom:241.946667pt;}
.ya7{bottom:242.426667pt;}
.y13{bottom:247.866667pt;}
.ye2{bottom:248.826667pt;}
.y86{bottom:250.426667pt;}
.y37{bottom:253.146667pt;}
.y58{bottom:256.826667pt;}
.ya6{bottom:258.746667pt;}
.ye1{bottom:265.146667pt;}
.yc3{bottom:266.426667pt;}
.y85{bottom:266.746667pt;}
.y36{bottom:269.466667pt;}
.y57{bottom:273.146667pt;}
.y84{bottom:283.066667pt;}
.y10d{bottom:283.706667pt;}
.y35{bottom:285.786667pt;}
.y56{bottom:289.466667pt;}
.ye0{bottom:290.586667pt;}
.yc2{bottom:290.746667pt;}
.y10{bottom:291.866667pt;}
.y83{bottom:299.386667pt;}
.y34{bottom:302.266667pt;}
.yc1{bottom:307.066667pt;}
.ya5{bottom:307.386667pt;}
.y10c{bottom:308.026667pt;}
.y55{bottom:313.786667pt;}
.y82{bottom:315.706667pt;}
.yc0{bottom:323.386667pt;}
.ya4{bottom:323.706667pt;}
.y10b{bottom:324.506667pt;}
.y33{bottom:326.586667pt;}
.y81{bottom:332.026667pt;}
.ydf{bottom:336.346667pt;}
.y54{bottom:338.106667pt;}
.ybf{bottom:339.706667pt;}
.ya3{bottom:340.026667pt;}
.y10a{bottom:348.826667pt;}
.y32{bottom:350.906667pt;}
.ybe{bottom:356.026667pt;}
.yf{bottom:356.346667pt;}
.y80{bottom:356.506667pt;}
.yde{bottom:360.826667pt;}
.y53{bottom:362.586667pt;}
.y31{bottom:367.226667pt;}
.ybd{bottom:372.506667pt;}
.y7f{bottom:372.826667pt;}
.y109{bottom:373.146667pt;}
.ydd{bottom:377.186667pt;}
.y52{bottom:378.946667pt;}
.y30{bottom:383.586667pt;}
.ya2{bottom:389.186667pt;}
.y108{bottom:389.506667pt;}
.y51{bottom:395.266667pt;}
.ybc{bottom:396.866667pt;}
.y7e{bottom:397.186667pt;}
.y2f{bottom:400.066667pt;}
.ydc{bottom:401.506667pt;}
.ye{bottom:411.586667pt;}
.ybb{bottom:413.186667pt;}
.ya1{bottom:413.506667pt;}
.y107{bottom:413.826667pt;}
.y7d{bottom:421.506667pt;}
.y2e{bottom:424.386667pt;}
.ydb{bottom:425.826667pt;}
.y50{bottom:427.906667pt;}
.yba{bottom:429.506667pt;}
.y7c{bottom:437.826667pt;}
.y106{bottom:438.146667pt;}
.yda{bottom:442.146667pt;}
.yb9{bottom:445.826667pt;}
.y2d{bottom:448.706667pt;}
.y4f{bottom:452.226667pt;}
.y7b{bottom:454.146667pt;}
.y105{bottom:454.626667pt;}
.yd9{bottom:458.466667pt;}
.yb8{bottom:462.146667pt;}
.y2c{bottom:465.026667pt;}
.yd{bottom:466.786667pt;}
.y7a{bottom:470.626667pt;}
.y104{bottom:470.946667pt;}
.y4e{bottom:476.706667pt;}
.yb7{bottom:478.626667pt;}
.y2b{bottom:481.346667pt;}
.yd8{bottom:483.906667pt;}
.y79{bottom:486.946667pt;}
.yb6{bottom:494.946667pt;}
.y103{bottom:495.266667pt;}
.y4d{bottom:501.026667pt;}
.ya0{bottom:503.266667pt;}
.y2a{bottom:505.666667pt;}
.yef{bottom:510.786667pt;}
.y78{bottom:511.266667pt;}
.y102{bottom:511.586667pt;}
.y4c{bottom:517.346667pt;}
.yc{bottom:521.986667pt;}
.y9f{bottom:527.586667pt;}
.yd7{bottom:529.826667pt;}
.y29{bottom:530.146667pt;}
.yee{bottom:535.106667pt;}
.y77{bottom:535.586667pt;}
.y101{bottom:535.906667pt;}
.y4b{bottom:543.426667pt;}
.yd6{bottom:546.146667pt;}
.yed{bottom:551.586667pt;}
.y76{bottom:551.906667pt;}
.y28{bottom:554.466667pt;}
.y100{bottom:560.226667pt;}
.yd5{bottom:562.466667pt;}
.y9e{bottom:568.226667pt;}
.y75{bottom:576.226667pt;}
.yff{bottom:576.706667pt;}
.yb{bottom:577.346667pt;}
.yec{bottom:577.666667pt;}
.y27{bottom:578.786667pt;}
.y9d{bottom:584.706667pt;}
.yb5{bottom:592.733333pt;}
.yd4{bottom:595.133333pt;}
.y4a{bottom:599.933333pt;}
.y74{bottom:600.733333pt;}
.y9c{bottom:601.053333pt;}
.y26{bottom:603.133333pt;}
.yb4{bottom:609.053333pt;}
.yd3{bottom:611.453333pt;}
.y73{bottom:617.053333pt;}
.y9b{bottom:617.373333pt;}
.y42{bottom:622.173333pt;}
.yb3{bottom:625.373333pt;}
.y25{bottom:627.453333pt;}
.ya{bottom:632.573333pt;}
.y72{bottom:633.373333pt;}
.yfe{bottom:633.693333pt;}
.yeb{bottom:634.013333pt;}
.yd2{bottom:636.893333pt;}
.y9a{bottom:641.693333pt;}
.y71{bottom:649.693333pt;}
.y24{bottom:651.773333pt;}
.y99{bottom:658.013333pt;}
.yea{bottom:658.333333pt;}
.y70{bottom:666.013333pt;}
.y23{bottom:668.253333pt;}
.y98{bottom:674.333333pt;}
.y6f{bottom:682.333333pt;}
.yd1{bottom:682.813333pt;}
.y9{bottom:687.773333pt;}
.y97{bottom:690.813333pt;}
.y22{bottom:694.333333pt;}
.y6e{bottom:698.813333pt;}
.yd0{bottom:699.133333pt;}
.yb2{bottom:706.813333pt;}
.y96{bottom:707.133333pt;}
.ycf{bottom:715.453333pt;}
.y6d{bottom:723.133333pt;}
.yfd{bottom:723.453333pt;}
.yb1{bottom:731.133333pt;}
.y95{bottom:731.453333pt;}
.yce{bottom:731.773333pt;}
.yfc{bottom:739.773333pt;}
.y8{bottom:742.973333pt;}
.y6c{bottom:747.453333pt;}
.y94{bottom:747.773333pt;}
.ycd{bottom:748.093333pt;}
.y21{bottom:750.653333pt;}
.ye9{bottom:755.773333pt;}
.yfb{bottom:756.093333pt;}
.y6b{bottom:763.773333pt;}
.y20{bottom:766.973333pt;}
.yb0{bottom:771.773333pt;}
.y93{bottom:772.093333pt;}
.ycc{bottom:772.573333pt;}
.y6a{bottom:780.093333pt;}
.y1f{bottom:783.453333pt;}
.yaf{bottom:788.093333pt;}
.yfa{bottom:788.893333pt;}
.y69{bottom:796.573333pt;}
.ycb{bottom:796.893333pt;}
.y7{bottom:798.173333pt;}
.yf9{bottom:805.253333pt;}
.y1e{bottom:807.813333pt;}
.yae{bottom:812.613333pt;}
.y68{bottom:812.933333pt;}
.yca{bottom:813.253333pt;}
.yf8{bottom:821.573333pt;}
.yad{bottom:828.933333pt;}
.y92{bottom:829.253333pt;}
.y1d{bottom:832.133333pt;}
.y67{bottom:837.253333pt;}
.yc9{bottom:837.573333pt;}
.yf7{bottom:837.893333pt;}
.y41{bottom:844.133333pt;}
.yac{bottom:845.253333pt;}
.y91{bottom:845.573333pt;}
.y1c{bottom:848.453333pt;}
.y6{bottom:853.573333pt;}
.y66{bottom:861.573333pt;}
.y90{bottom:861.893333pt;}
.yf6{bottom:862.213333pt;}
.y1b{bottom:864.773333pt;}
.y40{bottom:868.453333pt;}
.ye8{bottom:869.893333pt;}
.y65{bottom:877.893333pt;}
.y8f{bottom:878.213333pt;}
.y1a{bottom:881.093333pt;}
.y3f{bottom:884.773333pt;}
.yc8{bottom:886.213333pt;}
.yf5{bottom:887.653333pt;}
.y64{bottom:894.213333pt;}
.y8e{bottom:894.693333pt;}
.y19{bottom:907.333333pt;}
.y5{bottom:908.773333pt;}
.y3e{bottom:909.093333pt;}
.y63{bottom:910.693333pt;}
.y8d{bottom:919.013333pt;}
.y62{bottom:927.013333pt;}
.y3d{bottom:935.333333pt;}
.y61{bottom:943.333333pt;}
.y4{bottom:967.653333pt;}
.y1{bottom:989.253333pt;}
.h9{height:36.800000pt;}
.h8{height:39.360000pt;}
.hd{height:41.448125pt;}
.h5{height:42.720000pt;}
.he{height:43.549062pt;}
.h3{height:49.151563pt;}
.h6{height:52.468750pt;}
.hb{height:54.598989pt;}
.h7{height:59.218750pt;}
.hf{height:77.951250pt;}
.h2{height:86.112000pt;}
.ha{height:88.611250pt;}
.h4{height:104.937500pt;}
.hc{height:210.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:208.826667pt;}
.w3{width:288.066667pt;}
.w2{width:288.186667pt;}
.w5{width:387.106667pt;}
.w6{width:520.093333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.xb{left:19.680000pt;}
.x11{left:30.880000pt;}
.x10{left:54.880000pt;}
.xd{left:98.746667pt;}
.x1{left:106.272000pt;}
.xc{left:112.026667pt;}
.x5{left:113.472000pt;}
.x7{left:132.192000pt;}
.xf{left:137.466667pt;}
.xe{left:139.866667pt;}
.x19{left:156.346667pt;}
.x9{left:161.466667pt;}
.x15{left:170.266667pt;}
.x13{left:185.466667pt;}
.xa{left:201.786667pt;}
.x16{left:209.466667pt;}
.x2{left:213.314667pt;}
.x14{left:233.466667pt;}
.x18{left:251.906667pt;}
.x12{left:299.586667pt;}
.x8{left:319.746667pt;}
.x3{left:394.466667pt;}
.x6{left:396.866667pt;}
.x17{left:506.493333pt;}
}




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