
    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_3c22f85e3693f2e32194662e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_9a31d8fbfd01c9be145cc39f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_da00100aa1c5837154b8cc03.woff')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0cacf263ebad89406f747d38.woff')format("woff");}.ff4{font-family:ff4;line-height:0.966797;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_7f18c4806e7fe9cfcf499aa3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8fbd2e84ab5a61771234d7fa.woff')format("woff");}.ff6{font-family:ff6;line-height:0.966797;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_51cbac8095389cbbaf06f313.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_34cf19f9047ba03d7ee91ced.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_5716ff44c6d71adf93e0e9b6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_da00100aa1c5837154b8cc03.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-58.320000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls8{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.414600px;}
.ls15{letter-spacing:-0.305400px;}
.ls1a{letter-spacing:-0.262200px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.144720px;}
.ls9{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.206640px;}
.lsc{letter-spacing:0.262200px;}
.ls17{letter-spacing:0.298800px;}
.lse{letter-spacing:0.305400px;}
.ls18{letter-spacing:0.336000px;}
.ls14{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.369600px;}
.ls13{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.900000px;}
.ls12{letter-spacing:6.480000px;}
.lsd{letter-spacing:7.649280px;}
.lsf{letter-spacing:11.249280px;}
.ls5{letter-spacing:16.560000px;}
.ls4{letter-spacing:88.128000px;}
.lsb{letter-spacing:88.848000px;}
.ls16{letter-spacing:89.729280px;}
.ls10{letter-spacing:90.449280px;}
.ls1{letter-spacing:166.805280px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws2{word-spacing:-23.788320px;}
.ws1{word-spacing:-23.418720px;}
.wsb{word-spacing:-20.160000px;}
.wse{word-spacing:-18.414720px;}
.ws10{word-spacing:-18.152520px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.822200px;}
.ws8{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.254600px;}
.ws3{word-spacing:-15.012000px;}
.ws6{word-spacing:-14.940000px;}
.ws5{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.520000px;}
.wsa{word-spacing:0.000000px;}
._f{margin-left:-4.504320px;}
._b{margin-left:-2.630160px;}
._4{margin-left:-1.530000px;}
._0{width:1.149120px;}
._16{width:2.169360px;}
._1{width:3.173040px;}
._7{width:5.100480px;}
._8{width:6.557760px;}
._e{width:8.076240px;}
._d{width:9.201600px;}
._c{width:10.333440px;}
._10{width:11.488080px;}
._15{width:12.651840px;}
._14{width:13.711680px;}
._6{width:15.036480px;}
._5{width:16.176000px;}
._17{width:20.733120px;}
._9{width:21.991680px;}
._a{width:23.448960px;}
._11{width:27.496080px;}
._12{width:31.596480px;}
._13{width:32.675760px;}
._1a{width:45.955440px;}
._1b{width:49.422480px;}
._1f{width:53.365680px;}
._20{width:54.560880px;}
._1e{width:55.576800px;}
._18{width:57.774240px;}
._19{width:58.954560px;}
._24{width:60.678960px;}
._23{width:96.944400px;}
._21{width:98.709840px;}
._22{width:100.076640px;}
._1d{width:113.125680px;}
._1c{width:114.380640px;}
._3{width:923.142240px;}
._2{width:1329.318240px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs1{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y37{bottom:49.680000px;}
.y5{bottom:51.840000px;}
.y36{bottom:61.416000px;}
.y4{bottom:71.856000px;}
.y35{bottom:78.696000px;}
.y3{bottom:89.676000px;}
.y34{bottom:96.696000px;}
.yd0{bottom:122.976000px;}
.y33{bottom:123.336000px;}
.y69{bottom:128.376000px;}
.ycf{bottom:141.876000px;}
.y32{bottom:143.676000px;}
.y68{bottom:147.456000px;}
.yce{bottom:160.950000px;}
.y31{bottom:162.570000px;}
.yf1{bottom:164.730000px;}
.y67{bottom:166.350000px;}
.y99{bottom:169.770000px;}
.ycd{bottom:179.850000px;}
.y30{bottom:181.650000px;}
.yf0{bottom:182.010000px;}
.y66{bottom:185.250000px;}
.y98{bottom:188.850000px;}
.ycc{bottom:198.750000px;}
.yef{bottom:199.110000px;}
.y2f{bottom:200.550000px;}
.y65{bottom:204.330000px;}
.y97{bottom:207.750000px;}
.yee{bottom:216.390000px;}
.ycb{bottom:218.010000px;}
.y2e{bottom:219.630000px;}
.y64{bottom:223.230000px;}
.y96{bottom:226.650000px;}
.yed{bottom:233.670000px;}
.yca{bottom:238.350000px;}
.y2d{bottom:238.530000px;}
.y63{bottom:242.310000px;}
.y95{bottom:245.730000px;}
.yec{bottom:250.950000px;}
.yc9{bottom:253.830000px;}
.y2c{bottom:257.430000px;}
.y62{bottom:261.210000px;}
.y94{bottom:264.630000px;}
.yeb{bottom:268.230000px;}
.yb9{bottom:275.430000px;}
.y2b{bottom:276.510000px;}
.y61{bottom:279.930000px;}
.y93{bottom:283.710000px;}
.yea{bottom:285.330000px;}
.yb8{bottom:294.510000px;}
.y2a{bottom:295.410000px;}
.y60{bottom:299.190000px;}
.y92{bottom:302.610000px;}
.yb7{bottom:313.455000px;}
.y29{bottom:314.535000px;}
.y5f{bottom:319.935000px;}
.y91{bottom:321.555000px;}
.yb6{bottom:332.535000px;}
.y28{bottom:333.435000px;}
.ye9{bottom:337.215000px;}
.y5e{bottom:338.835000px;}
.y90{bottom:340.635000px;}
.yb5{bottom:351.435000px;}
.ya9{bottom:351.615000px;}
.y27{bottom:352.515000px;}
.ye8{bottom:354.495000px;}
.y5d{bottom:357.915000px;}
.y8f{bottom:359.535000px;}
.yb4{bottom:370.335000px;}
.ya8{bottom:370.875000px;}
.y26{bottom:371.415000px;}
.ye7{bottom:371.775000px;}
.y5c{bottom:376.815000px;}
.y8e{bottom:378.615000px;}
.ye6{bottom:388.875000px;}
.yb3{bottom:389.415000px;}
.ya7{bottom:389.775000px;}
.y25{bottom:390.315000px;}
.y5b{bottom:395.715000px;}
.y8d{bottom:397.515000px;}
.ye5{bottom:406.155000px;}
.yb2{bottom:408.315000px;}
.ya6{bottom:408.675000px;}
.y24{bottom:409.395000px;}
.y5a{bottom:414.795000px;}
.y8c{bottom:416.415000px;}
.ye4{bottom:423.435000px;}
.yb1{bottom:427.395000px;}
.ya5{bottom:427.755000px;}
.y23{bottom:428.295000px;}
.y59{bottom:433.695000px;}
.y8b{bottom:435.495000px;}
.ye3{bottom:440.715000px;}
.yb0{bottom:445.935000px;}
.ya4{bottom:446.655000px;}
.y22{bottom:447.375000px;}
.y58{bottom:452.775000px;}
.y8a{bottom:454.395000px;}
.ye2{bottom:457.995000px;}
.yaf{bottom:463.395000px;}
.ya3{bottom:465.735000px;}
.y21{bottom:466.275000px;}
.y57{bottom:471.675000px;}
.y89{bottom:473.475000px;}
.ye1{bottom:475.275000px;}
.yae{bottom:479.055000px;}
.ya2{bottom:484.635000px;}
.y20{bottom:485.175000px;}
.y56{bottom:490.755000px;}
.y88{bottom:492.375000px;}
.ya1{bottom:503.535000px;}
.y1f{bottom:504.255000px;}
.yc8{bottom:507.315000px;}
.y55{bottom:509.655000px;}
.y87{bottom:511.455000px;}
.ya0{bottom:522.435000px;}
.y1e{bottom:523.335000px;}
.yc7{bottom:526.395000px;}
.ye0{bottom:526.935000px;}
.y54{bottom:528.555000px;}
.y86{bottom:530.355000px;}
.y9f{bottom:541.875000px;}
.ydf{bottom:544.215000px;}
.yc6{bottom:545.295000px;}
.y1d{bottom:546.555000px;}
.y53{bottom:547.635000px;}
.y85{bottom:549.255000px;}
.yde{bottom:561.525000px;}
.y9e{bottom:562.245000px;}
.yc5{bottom:564.225000px;}
.y52{bottom:566.565000px;}
.y84{bottom:568.365000px;}
.y1c{bottom:574.845000px;}
.y9d{bottom:577.725000px;}
.ydd{bottom:578.805000px;}
.yc4{bottom:583.305000px;}
.y51{bottom:585.645000px;}
.y83{bottom:587.265000px;}
.y1b{bottom:595.725000px;}
.ydc{bottom:595.905000px;}
.y10c{bottom:597.165000px;}
.yc3{bottom:602.205000px;}
.y50{bottom:604.545000px;}
.y82{bottom:606.345000px;}
.ydb{bottom:613.185000px;}
.y10b{bottom:614.445000px;}
.y1a{bottom:616.065000px;}
.yc2{bottom:621.285000px;}
.y4f{bottom:623.445000px;}
.y81{bottom:625.245000px;}
.yda{bottom:630.465000px;}
.y10a{bottom:631.725000px;}
.y19{bottom:635.145000px;}
.yc1{bottom:640.185000px;}
.y4e{bottom:642.525000px;}
.y80{bottom:644.145000px;}
.yd9{bottom:647.745000px;}
.y109{bottom:649.005000px;}
.y18{bottom:654.045000px;}
.yc0{bottom:659.085000px;}
.y4d{bottom:661.425000px;}
.y7f{bottom:663.225000px;}
.yd8{bottom:665.025000px;}
.y108{bottom:666.285000px;}
.y17{bottom:673.125000px;}
.ybf{bottom:678.165000px;}
.y4c{bottom:680.505000px;}
.y7e{bottom:682.125000px;}
.y107{bottom:683.385000px;}
.y16{bottom:692.025000px;}
.ybe{bottom:697.065000px;}
.y4b{bottom:699.405000px;}
.y106{bottom:700.665000px;}
.y7d{bottom:701.205000px;}
.y15{bottom:710.925000px;}
.ybd{bottom:716.145000px;}
.yd7{bottom:716.685000px;}
.y105{bottom:717.945000px;}
.y4a{bottom:718.305000px;}
.y7c{bottom:720.105000px;}
.y14{bottom:730.005000px;}
.yd6{bottom:733.965000px;}
.y104{bottom:735.225000px;}
.ybc{bottom:735.405000px;}
.y49{bottom:737.385000px;}
.y7b{bottom:739.005000px;}
.y13{bottom:748.905000px;}
.yd5{bottom:751.245000px;}
.y103{bottom:752.505000px;}
.ybb{bottom:755.745000px;}
.y48{bottom:756.285000px;}
.y7a{bottom:757.905000px;}
.yad{bottom:766.725000px;}
.y12{bottom:767.985000px;}
.yd4{bottom:768.705000px;}
.y102{bottom:769.605000px;}
.yba{bottom:771.045000px;}
.y47{bottom:775.365000px;}
.y79{bottom:776.985000px;}
.y11{bottom:786.885000px;}
.yac{bottom:787.425000px;}
.y46{bottom:794.265000px;}
.y78{bottom:796.065000px;}
.yd3{bottom:796.245000px;}
.y101{bottom:804.165000px;}
.y10{bottom:805.830000px;}
.yab{bottom:808.170000px;}
.y45{bottom:813.210000px;}
.y77{bottom:815.010000px;}
.y100{bottom:821.490000px;}
.yaa{bottom:824.730000px;}
.yf{bottom:824.910000px;}
.y44{bottom:832.290000px;}
.y76{bottom:833.910000px;}
.yff{bottom:838.770000px;}
.ye{bottom:843.990000px;}
.y43{bottom:851.190000px;}
.y75{bottom:852.990000px;}
.yfe{bottom:856.050000px;}
.yd{bottom:864.870000px;}
.y42{bottom:870.270000px;}
.y74{bottom:871.890000px;}
.yfd{bottom:873.150000px;}
.yc{bottom:885.930000px;}
.y41{bottom:889.170000px;}
.yfc{bottom:890.430000px;}
.y73{bottom:890.970000px;}
.yfb{bottom:907.710000px;}
.y40{bottom:908.070000px;}
.y72{bottom:909.870000px;}
.yfa{bottom:924.990000px;}
.yb{bottom:925.350000px;}
.y3f{bottom:927.150000px;}
.y71{bottom:928.770000px;}
.yf9{bottom:942.270000px;}
.y3e{bottom:946.050000px;}
.y70{bottom:947.850000px;}
.ya{bottom:949.470000px;}
.yf8{bottom:959.550000px;}
.y9c{bottom:961.890000px;}
.y3d{bottom:965.130000px;}
.y6f{bottom:966.750000px;}
.y9{bottom:973.590000px;}
.yf7{bottom:976.650000px;}
.y9b{bottom:982.590000px;}
.y3c{bottom:984.030000px;}
.y6e{bottom:985.830000px;}
.yf6{bottom:993.930000px;}
.yd2{bottom:1002.930000px;}
.y3b{bottom:1003.110000px;}
.y9a{bottom:1003.290000px;}
.y6d{bottom:1004.730000px;}
.y8{bottom:1007.250000px;}
.yf5{bottom:1011.210000px;}
.y3a{bottom:1022.010000px;}
.yd1{bottom:1022.370000px;}
.y6c{bottom:1023.810000px;}
.yf4{bottom:1028.490000px;}
.y7{bottom:1034.970000px;}
.y39{bottom:1040.910000px;}
.y6b{bottom:1042.710000px;}
.yf3{bottom:1045.770000px;}
.y38{bottom:1060.020000px;}
.y6a{bottom:1061.640000px;}
.yf2{bottom:1063.080000px;}
.y6{bottom:1068.660000px;}
.y2{bottom:1108.080000px;}
.y1{bottom:1124.640000px;}
.hc{height:26.208984px;}
.h5{height:30.402422px;}
.h2{height:41.535703px;}
.h9{height:48.761719px;}
.hd{height:49.809375px;}
.h4{height:53.573906px;}
.hb{height:54.140625px;}
.ha{height:59.383125px;}
.h8{height:63.344531px;}
.h3{height:64.546875px;}
.h7{height:70.845469px;}
.h6{height:72.007031px;}
.h1{height:95.245664px;}
.h0{height:1174.500000px;}
.w1{width:863.999987px;}
.w0{width:864.000000px;}
.x0{left:0.000000px;}
.xb{left:53.999987px;}
.x3{left:55.439987px;}
.xa{left:58.859987px;}
.x17{left:60.119987px;}
.xc{left:82.475987px;}
.x4{left:83.915987px;}
.x6{left:95.255987px;}
.x5{left:109.115987px;}
.x16{left:114.695987px;}
.x1{left:135.755987px;}
.x14{left:171.029987px;}
.x12{left:180.929987px;}
.xe{left:194.249987px;}
.x10{left:210.629987px;}
.x8{left:266.114987px;}
.x7{left:379.694987px;}
.x2{left:418.424987px;}
.x9{left:431.924987px;}
.xf{left:677.309987px;}
.xd{left:708.089987px;}
.x11{left:719.069987px;}
.x13{left:730.229987px;}
.x15{left:749.699987px;}
@media print{
.v2{vertical-align:-51.840000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.368533pt;}
.ls15{letter-spacing:-0.271467pt;}
.ls1a{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.128640pt;}
.ls9{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.183680pt;}
.lsc{letter-spacing:0.233067pt;}
.ls17{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.271467pt;}
.ls18{letter-spacing:0.298667pt;}
.ls14{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.328533pt;}
.ls13{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls12{letter-spacing:5.760000pt;}
.lsd{letter-spacing:6.799360pt;}
.lsf{letter-spacing:9.999360pt;}
.ls5{letter-spacing:14.720000pt;}
.ls4{letter-spacing:78.336000pt;}
.lsb{letter-spacing:78.976000pt;}
.ls16{letter-spacing:79.759360pt;}
.ls10{letter-spacing:80.399360pt;}
.ls1{letter-spacing:148.271360pt;}
.ws7{word-spacing:-64.000000pt;}
.ws2{word-spacing:-21.145173pt;}
.ws1{word-spacing:-20.816640pt;}
.wsb{word-spacing:-17.920000pt;}
.wse{word-spacing:-16.368640pt;}
.ws10{word-spacing:-16.135573pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.953067pt;}
.ws8{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.448533pt;}
.ws3{word-spacing:-13.344000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.240000pt;}
.wsa{word-spacing:0.000000pt;}
._f{margin-left:-4.003840pt;}
._b{margin-left:-2.337920pt;}
._4{margin-left:-1.360000pt;}
._0{width:1.021440pt;}
._16{width:1.928320pt;}
._1{width:2.820480pt;}
._7{width:4.533760pt;}
._8{width:5.829120pt;}
._e{width:7.178880pt;}
._d{width:8.179200pt;}
._c{width:9.185280pt;}
._10{width:10.211627pt;}
._15{width:11.246080pt;}
._14{width:12.188160pt;}
._6{width:13.365760pt;}
._5{width:14.378667pt;}
._17{width:18.429440pt;}
._9{width:19.548160pt;}
._a{width:20.843520pt;}
._11{width:24.440960pt;}
._12{width:28.085760pt;}
._13{width:29.045120pt;}
._1a{width:40.849280pt;}
._1b{width:43.931093pt;}
._1f{width:47.436160pt;}
._20{width:48.498560pt;}
._1e{width:49.401600pt;}
._18{width:51.354880pt;}
._19{width:52.404053pt;}
._24{width:53.936853pt;}
._23{width:86.172800pt;}
._21{width:87.742080pt;}
._22{width:88.957013pt;}
._1d{width:100.556160pt;}
._1c{width:101.671680pt;}
._3{width:820.570880pt;}
._2{width:1181.616213pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:44.160000pt;}
.y5{bottom:46.080000pt;}
.y36{bottom:54.592000pt;}
.y4{bottom:63.872000pt;}
.y35{bottom:69.952000pt;}
.y3{bottom:79.712000pt;}
.y34{bottom:85.952000pt;}
.yd0{bottom:109.312000pt;}
.y33{bottom:109.632000pt;}
.y69{bottom:114.112000pt;}
.ycf{bottom:126.112000pt;}
.y32{bottom:127.712000pt;}
.y68{bottom:131.072000pt;}
.yce{bottom:143.066667pt;}
.y31{bottom:144.506667pt;}
.yf1{bottom:146.426667pt;}
.y67{bottom:147.866667pt;}
.y99{bottom:150.906667pt;}
.ycd{bottom:159.866667pt;}
.y30{bottom:161.466667pt;}
.yf0{bottom:161.786667pt;}
.y66{bottom:164.666667pt;}
.y98{bottom:167.866667pt;}
.ycc{bottom:176.666667pt;}
.yef{bottom:176.986667pt;}
.y2f{bottom:178.266667pt;}
.y65{bottom:181.626667pt;}
.y97{bottom:184.666667pt;}
.yee{bottom:192.346667pt;}
.ycb{bottom:193.786667pt;}
.y2e{bottom:195.226667pt;}
.y64{bottom:198.426667pt;}
.y96{bottom:201.466667pt;}
.yed{bottom:207.706667pt;}
.yca{bottom:211.866667pt;}
.y2d{bottom:212.026667pt;}
.y63{bottom:215.386667pt;}
.y95{bottom:218.426667pt;}
.yec{bottom:223.066667pt;}
.yc9{bottom:225.626667pt;}
.y2c{bottom:228.826667pt;}
.y62{bottom:232.186667pt;}
.y94{bottom:235.226667pt;}
.yeb{bottom:238.426667pt;}
.yb9{bottom:244.826667pt;}
.y2b{bottom:245.786667pt;}
.y61{bottom:248.826667pt;}
.y93{bottom:252.186667pt;}
.yea{bottom:253.626667pt;}
.yb8{bottom:261.786667pt;}
.y2a{bottom:262.586667pt;}
.y60{bottom:265.946667pt;}
.y92{bottom:268.986667pt;}
.yb7{bottom:278.626667pt;}
.y29{bottom:279.586667pt;}
.y5f{bottom:284.386667pt;}
.y91{bottom:285.826667pt;}
.yb6{bottom:295.586667pt;}
.y28{bottom:296.386667pt;}
.ye9{bottom:299.746667pt;}
.y5e{bottom:301.186667pt;}
.y90{bottom:302.786667pt;}
.yb5{bottom:312.386667pt;}
.ya9{bottom:312.546667pt;}
.y27{bottom:313.346667pt;}
.ye8{bottom:315.106667pt;}
.y5d{bottom:318.146667pt;}
.y8f{bottom:319.586667pt;}
.yb4{bottom:329.186667pt;}
.ya8{bottom:329.666667pt;}
.y26{bottom:330.146667pt;}
.ye7{bottom:330.466667pt;}
.y5c{bottom:334.946667pt;}
.y8e{bottom:336.546667pt;}
.ye6{bottom:345.666667pt;}
.yb3{bottom:346.146667pt;}
.ya7{bottom:346.466667pt;}
.y25{bottom:346.946667pt;}
.y5b{bottom:351.746667pt;}
.y8d{bottom:353.346667pt;}
.ye5{bottom:361.026667pt;}
.yb2{bottom:362.946667pt;}
.ya6{bottom:363.266667pt;}
.y24{bottom:363.906667pt;}
.y5a{bottom:368.706667pt;}
.y8c{bottom:370.146667pt;}
.ye4{bottom:376.386667pt;}
.yb1{bottom:379.906667pt;}
.ya5{bottom:380.226667pt;}
.y23{bottom:380.706667pt;}
.y59{bottom:385.506667pt;}
.y8b{bottom:387.106667pt;}
.ye3{bottom:391.746667pt;}
.yb0{bottom:396.386667pt;}
.ya4{bottom:397.026667pt;}
.y22{bottom:397.666667pt;}
.y58{bottom:402.466667pt;}
.y8a{bottom:403.906667pt;}
.ye2{bottom:407.106667pt;}
.yaf{bottom:411.906667pt;}
.ya3{bottom:413.986667pt;}
.y21{bottom:414.466667pt;}
.y57{bottom:419.266667pt;}
.y89{bottom:420.866667pt;}
.ye1{bottom:422.466667pt;}
.yae{bottom:425.826667pt;}
.ya2{bottom:430.786667pt;}
.y20{bottom:431.266667pt;}
.y56{bottom:436.226667pt;}
.y88{bottom:437.666667pt;}
.ya1{bottom:447.586667pt;}
.y1f{bottom:448.226667pt;}
.yc8{bottom:450.946667pt;}
.y55{bottom:453.026667pt;}
.y87{bottom:454.626667pt;}
.ya0{bottom:464.386667pt;}
.y1e{bottom:465.186667pt;}
.yc7{bottom:467.906667pt;}
.ye0{bottom:468.386667pt;}
.y54{bottom:469.826667pt;}
.y86{bottom:471.426667pt;}
.y9f{bottom:481.666667pt;}
.ydf{bottom:483.746667pt;}
.yc6{bottom:484.706667pt;}
.y1d{bottom:485.826667pt;}
.y53{bottom:486.786667pt;}
.y85{bottom:488.226667pt;}
.yde{bottom:499.133333pt;}
.y9e{bottom:499.773333pt;}
.yc5{bottom:501.533333pt;}
.y52{bottom:503.613333pt;}
.y84{bottom:505.213333pt;}
.y1c{bottom:510.973333pt;}
.y9d{bottom:513.533333pt;}
.ydd{bottom:514.493333pt;}
.yc4{bottom:518.493333pt;}
.y51{bottom:520.573333pt;}
.y83{bottom:522.013333pt;}
.y1b{bottom:529.533333pt;}
.ydc{bottom:529.693333pt;}
.y10c{bottom:530.813333pt;}
.yc3{bottom:535.293333pt;}
.y50{bottom:537.373333pt;}
.y82{bottom:538.973333pt;}
.ydb{bottom:545.053333pt;}
.y10b{bottom:546.173333pt;}
.y1a{bottom:547.613333pt;}
.yc2{bottom:552.253333pt;}
.y4f{bottom:554.173333pt;}
.y81{bottom:555.773333pt;}
.yda{bottom:560.413333pt;}
.y10a{bottom:561.533333pt;}
.y19{bottom:564.573333pt;}
.yc1{bottom:569.053333pt;}
.y4e{bottom:571.133333pt;}
.y80{bottom:572.573333pt;}
.yd9{bottom:575.773333pt;}
.y109{bottom:576.893333pt;}
.y18{bottom:581.373333pt;}
.yc0{bottom:585.853333pt;}
.y4d{bottom:587.933333pt;}
.y7f{bottom:589.533333pt;}
.yd8{bottom:591.133333pt;}
.y108{bottom:592.253333pt;}
.y17{bottom:598.333333pt;}
.ybf{bottom:602.813333pt;}
.y4c{bottom:604.893333pt;}
.y7e{bottom:606.333333pt;}
.y107{bottom:607.453333pt;}
.y16{bottom:615.133333pt;}
.ybe{bottom:619.613333pt;}
.y4b{bottom:621.693333pt;}
.y106{bottom:622.813333pt;}
.y7d{bottom:623.293333pt;}
.y15{bottom:631.933333pt;}
.ybd{bottom:636.573333pt;}
.yd7{bottom:637.053333pt;}
.y105{bottom:638.173333pt;}
.y4a{bottom:638.493333pt;}
.y7c{bottom:640.093333pt;}
.y14{bottom:648.893333pt;}
.yd6{bottom:652.413333pt;}
.y104{bottom:653.533333pt;}
.ybc{bottom:653.693333pt;}
.y49{bottom:655.453333pt;}
.y7b{bottom:656.893333pt;}
.y13{bottom:665.693333pt;}
.yd5{bottom:667.773333pt;}
.y103{bottom:668.893333pt;}
.ybb{bottom:671.773333pt;}
.y48{bottom:672.253333pt;}
.y7a{bottom:673.693333pt;}
.yad{bottom:681.533333pt;}
.y12{bottom:682.653333pt;}
.yd4{bottom:683.293333pt;}
.y102{bottom:684.093333pt;}
.yba{bottom:685.373333pt;}
.y47{bottom:689.213333pt;}
.y79{bottom:690.653333pt;}
.y11{bottom:699.453333pt;}
.yac{bottom:699.933333pt;}
.y46{bottom:706.013333pt;}
.y78{bottom:707.613333pt;}
.yd3{bottom:707.773333pt;}
.y101{bottom:714.813333pt;}
.y10{bottom:716.293333pt;}
.yab{bottom:718.373333pt;}
.y45{bottom:722.853333pt;}
.y77{bottom:724.453333pt;}
.y100{bottom:730.213333pt;}
.yaa{bottom:733.093333pt;}
.yf{bottom:733.253333pt;}
.y44{bottom:739.813333pt;}
.y76{bottom:741.253333pt;}
.yff{bottom:745.573333pt;}
.ye{bottom:750.213333pt;}
.y43{bottom:756.613333pt;}
.y75{bottom:758.213333pt;}
.yfe{bottom:760.933333pt;}
.yd{bottom:768.773333pt;}
.y42{bottom:773.573333pt;}
.y74{bottom:775.013333pt;}
.yfd{bottom:776.133333pt;}
.yc{bottom:787.493333pt;}
.y41{bottom:790.373333pt;}
.yfc{bottom:791.493333pt;}
.y73{bottom:791.973333pt;}
.yfb{bottom:806.853333pt;}
.y40{bottom:807.173333pt;}
.y72{bottom:808.773333pt;}
.yfa{bottom:822.213333pt;}
.yb{bottom:822.533333pt;}
.y3f{bottom:824.133333pt;}
.y71{bottom:825.573333pt;}
.yf9{bottom:837.573333pt;}
.y3e{bottom:840.933333pt;}
.y70{bottom:842.533333pt;}
.ya{bottom:843.973333pt;}
.yf8{bottom:852.933333pt;}
.y9c{bottom:855.013333pt;}
.y3d{bottom:857.893333pt;}
.y6f{bottom:859.333333pt;}
.y9{bottom:865.413333pt;}
.yf7{bottom:868.133333pt;}
.y9b{bottom:873.413333pt;}
.y3c{bottom:874.693333pt;}
.y6e{bottom:876.293333pt;}
.yf6{bottom:883.493333pt;}
.yd2{bottom:891.493333pt;}
.y3b{bottom:891.653333pt;}
.y9a{bottom:891.813333pt;}
.y6d{bottom:893.093333pt;}
.y8{bottom:895.333333pt;}
.yf5{bottom:898.853333pt;}
.y3a{bottom:908.453333pt;}
.yd1{bottom:908.773333pt;}
.y6c{bottom:910.053333pt;}
.yf4{bottom:914.213333pt;}
.y7{bottom:919.973333pt;}
.y39{bottom:925.253333pt;}
.y6b{bottom:926.853333pt;}
.yf3{bottom:929.573333pt;}
.y38{bottom:942.240000pt;}
.y6a{bottom:943.680000pt;}
.yf2{bottom:944.960000pt;}
.y6{bottom:949.920000pt;}
.y2{bottom:984.960000pt;}
.y1{bottom:999.680000pt;}
.hc{height:23.296875pt;}
.h5{height:27.024375pt;}
.h2{height:36.920625pt;}
.h9{height:43.343750pt;}
.hd{height:44.275000pt;}
.h4{height:47.621250pt;}
.hb{height:48.125000pt;}
.ha{height:52.785000pt;}
.h8{height:56.306250pt;}
.h3{height:57.375000pt;}
.h7{height:62.973750pt;}
.h6{height:64.006250pt;}
.h1{height:84.662813pt;}
.h0{height:1044.000000pt;}
.w1{width:767.999989pt;}
.w0{width:768.000000pt;}
.x0{left:0.000000pt;}
.xb{left:47.999989pt;}
.x3{left:49.279989pt;}
.xa{left:52.319989pt;}
.x17{left:53.439989pt;}
.xc{left:73.311989pt;}
.x4{left:74.591989pt;}
.x6{left:84.671989pt;}
.x5{left:96.991989pt;}
.x16{left:101.951989pt;}
.x1{left:120.671989pt;}
.x14{left:152.026655pt;}
.x12{left:160.826655pt;}
.xe{left:172.666655pt;}
.x10{left:187.226655pt;}
.x8{left:236.546655pt;}
.x7{left:337.506655pt;}
.x2{left:371.933322pt;}
.x9{left:383.933322pt;}
.xf{left:602.053322pt;}
.xd{left:629.413322pt;}
.x11{left:639.173322pt;}
.x13{left:649.093322pt;}
.x15{left:666.399989pt;}
}




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