
    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_d82656823c391cbd7fda204e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1f00c6e49728cef815eee8a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_d0806e273005e290c5f4dfd5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_18e7e6e178e5074af585e361.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_44cdf30ddfb253246e7f4c94.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a2f74da88cddca34302cc582.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_e1d343f24ebe4b3ab7f7b95f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.072000px;}
.ls3{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.144720px;}
.lsa{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.269280px;}
.lsd{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.341280px;}
.lse{letter-spacing:3.060000px;}
.ls6{letter-spacing:33.960000px;}
.ls11{letter-spacing:33.984000px;}
.lsf{letter-spacing:57.744000px;}
.ls10{letter-spacing:61.320000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-41.040000px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws4{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-88.174080px;}
._22{margin-left:-10.090080px;}
._1e{margin-left:-7.512000px;}
._a{margin-left:-5.472000px;}
._b{margin-left:-4.464000px;}
._9{margin-left:-3.168000px;}
._0{margin-left:-1.558800px;}
._1{width:1.054080px;}
._2{width:2.161200px;}
._c{width:3.382800px;}
._8{width:4.536000px;}
._6{width:6.408000px;}
._7{width:7.704000px;}
._e{width:9.144000px;}
._13{width:10.368000px;}
._d{width:11.448000px;}
._12{width:13.320000px;}
._10{width:14.976000px;}
._11{width:16.128000px;}
._f{width:19.275840px;}
._16{width:21.240000px;}
._17{width:23.040000px;}
._18{width:24.649920px;}
._19{width:27.648000px;}
._14{width:29.376000px;}
._15{width:30.672000px;}
._1c{width:42.528000px;}
._5{width:83.380080px;}
._1d{width:106.752000px;}
._3{width:109.380000px;}
._1a{width:129.432000px;}
._20{width:160.704000px;}
._24{width:164.172000px;}
._21{width:175.944000px;}
._1b{width:180.000000px;}
._1f{width:182.172000px;}
._23{width:196.186800px;}
.fc3{color:transparent;}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.yb{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:3.960000px;}
.y141{bottom:3.990000px;}
.y13f{bottom:4.140000px;}
.ya2{bottom:4.680000px;}
.ya4{bottom:4.860000px;}
.y33{bottom:6.120000px;}
.ya{bottom:6.300000px;}
.y113{bottom:8.100000px;}
.y119{bottom:8.460000px;}
.y115{bottom:8.640000px;}
.y10d{bottom:9.000000px;}
.y10f{bottom:9.030000px;}
.y10b{bottom:9.180000px;}
.y111{bottom:9.900000px;}
.y31{bottom:10.800000px;}
.y8{bottom:21.600000px;}
.y108{bottom:24.660000px;}
.y32{bottom:31.500000px;}
.y9{bottom:31.680000px;}
.y7{bottom:57.780000px;}
.y6{bottom:78.516000px;}
.ybd{bottom:112.356000px;}
.y13e{bottom:117.216000px;}
.y93{bottom:121.716000px;}
.y30{bottom:122.256000px;}
.y72{bottom:124.416000px;}
.y10c{bottom:124.596000px;}
.y5c{bottom:127.116000px;}
.ybc{bottom:133.056000px;}
.y16b{bottom:138.096000px;}
.y13d{bottom:142.056000px;}
.y92{bottom:142.416000px;}
.y2f{bottom:142.956000px;}
.y71{bottom:145.116000px;}
.y5b{bottom:147.816000px;}
.y10a{bottom:150.330000px;}
.yeb{bottom:153.030000px;}
.ybb{bottom:153.750000px;}
.y183{bottom:154.830000px;}
.y16a{bottom:158.790000px;}
.y13c{bottom:162.750000px;}
.y91{bottom:163.110000px;}
.y70{bottom:165.810000px;}
.y5a{bottom:168.510000px;}
.yba{bottom:174.450000px;}
.y182{bottom:175.530000px;}
.y109{bottom:177.150000px;}
.y169{bottom:179.490000px;}
.y2e{bottom:181.650000px;}
.y13b{bottom:183.450000px;}
.yc7{bottom:183.810000px;}
.yea{bottom:185.790000px;}
.y6f{bottom:186.510000px;}
.y59{bottom:189.210000px;}
.y90{bottom:195.870000px;}
.y107{bottom:197.850000px;}
.y168{bottom:200.190000px;}
.y2d{bottom:202.350000px;}
.y13a{bottom:204.150000px;}
.yc6{bottom:204.510000px;}
.yb9{bottom:207.030000px;}
.y6e{bottom:207.210000px;}
.y58{bottom:209.910000px;}
.y19b{bottom:210.270000px;}
.ye9{bottom:214.410000px;}
.y8f{bottom:216.570000px;}
.y181{bottom:217.110000px;}
.y167{bottom:220.890000px;}
.y2c{bottom:223.050000px;}
.y139{bottom:224.850000px;}
.yc5{bottom:225.210000px;}
.y6d{bottom:227.910000px;}
.y1a3{bottom:230.610000px;}
.y19a{bottom:230.970000px;}
.y8e{bottom:237.270000px;}
.y180{bottom:237.810000px;}
.yb8{bottom:239.790000px;}
.y166{bottom:241.590000px;}
.y2b{bottom:243.750000px;}
.y106{bottom:243.930000px;}
.y138{bottom:245.550000px;}
.yc4{bottom:245.910000px;}
.y57{bottom:248.610000px;}
.y8d{bottom:257.970000px;}
.yb7{bottom:260.490000px;}
.y165{bottom:262.290000px;}
.y105{bottom:264.630000px;}
.y137{bottom:266.250000px;}
.yc3{bottom:266.610000px;}
.y56{bottom:269.310000px;}
.y1a2{bottom:272.370000px;}
.y199{bottom:272.730000px;}
.y8c{bottom:278.670000px;}
.y17f{bottom:279.570000px;}
.yb6{bottom:281.190000px;}
.y2a{bottom:282.450000px;}
.y164{bottom:282.990000px;}
.y104{bottom:285.330000px;}
.y136{bottom:286.950000px;}
.y6c{bottom:287.310000px;}
.y55{bottom:290.010000px;}
.y1a1{bottom:293.070000px;}
.y198{bottom:293.430000px;}
.y8b{bottom:299.370000px;}
.y17e{bottom:300.270000px;}
.yb5{bottom:301.890000px;}
.y29{bottom:303.150000px;}
.y163{bottom:303.690000px;}
.y103{bottom:306.030000px;}
.y135{bottom:307.650000px;}
.y6b{bottom:308.010000px;}
.y54{bottom:310.755000px;}
.yd6{bottom:311.475000px;}
.y8a{bottom:320.115000px;}
.yb4{bottom:322.635000px;}
.y28{bottom:323.895000px;}
.y162{bottom:324.435000px;}
.y134{bottom:325.155000px;}
.y102{bottom:326.775000px;}
.y6a{bottom:328.755000px;}
.y53{bottom:331.455000px;}
.yd5{bottom:332.175000px;}
.y1a0{bottom:334.875000px;}
.y197{bottom:335.055000px;}
.y89{bottom:340.815000px;}
.y17d{bottom:342.075000px;}
.yb3{bottom:343.335000px;}
.y27{bottom:344.595000px;}
.y161{bottom:345.135000px;}
.y133{bottom:345.855000px;}
.y101{bottom:347.475000px;}
.y69{bottom:349.455000px;}
.y52{bottom:352.155000px;}
.yd4{bottom:352.875000px;}
.y196{bottom:355.755000px;}
.yc2{bottom:361.515000px;}
.y17c{bottom:362.775000px;}
.yb2{bottom:364.035000px;}
.y26{bottom:365.475000px;}
.y160{bottom:365.835000px;}
.y132{bottom:366.555000px;}
.y100{bottom:368.175000px;}
.y68{bottom:370.155000px;}
.y51{bottom:372.855000px;}
.y88{bottom:373.575000px;}
.y19f{bottom:376.455000px;}
.yc1{bottom:382.215000px;}
.yb1{bottom:384.735000px;}
.y15f{bottom:386.535000px;}
.y131{bottom:387.255000px;}
.yff{bottom:388.875000px;}
.y67{bottom:390.855000px;}
.y50{bottom:393.555000px;}
.y87{bottom:394.275000px;}
.y195{bottom:397.515000px;}
.yc0{bottom:402.915000px;}
.y25{bottom:403.995000px;}
.y17b{bottom:404.355000px;}
.yb0{bottom:405.435000px;}
.y15e{bottom:407.235000px;}
.y130{bottom:407.955000px;}
.yfe{bottom:409.575000px;}
.y66{bottom:411.555000px;}
.ye8{bottom:414.795000px;}
.y86{bottom:414.975000px;}
.y194{bottom:418.215000px;}
.ybf{bottom:423.615000px;}
.y17a{bottom:425.055000px;}
.y12f{bottom:428.655000px;}
.yfd{bottom:430.275000px;}
.y4f{bottom:432.255000px;}
.ye7{bottom:435.495000px;}
.y85{bottom:435.675000px;}
.y24{bottom:436.755000px;}
.yaf{bottom:438.195000px;}
.y19e{bottom:438.915000px;}
.y15d{bottom:439.995000px;}
.yd3{bottom:447.555000px;}
.y12e{bottom:449.355000px;}
.yfc{bottom:450.975000px;}
.y4e{bottom:452.955000px;}
.yae{bottom:455.655000px;}
.ye6{bottom:456.195000px;}
.y84{bottom:456.375000px;}
.y23{bottom:457.455000px;}
.y193{bottom:459.975000px;}
.y15c{bottom:460.695000px;}
.y179{bottom:466.815000px;}
.yd2{bottom:468.255000px;}
.y12d{bottom:470.055000px;}
.yfb{bottom:471.675000px;}
.y4d{bottom:473.655000px;}
.y83{bottom:477.075000px;}
.yad{bottom:477.975000px;}
.y22{bottom:478.155000px;}
.y192{bottom:480.675000px;}
.y15b{bottom:481.395000px;}
.y178{bottom:487.515000px;}
.yd1{bottom:488.955000px;}
.y12c{bottom:490.755000px;}
.y65{bottom:491.655000px;}
.yfa{bottom:492.375000px;}
.y4c{bottom:494.355000px;}
.y82{bottom:497.775000px;}
.y21{bottom:498.855000px;}
.yac{bottom:500.115000px;}
.y19d{bottom:501.375000px;}
.y15a{bottom:502.095000px;}
.yd0{bottom:509.655000px;}
.y12b{bottom:511.455000px;}
.y64{bottom:512.355000px;}
.yf9{bottom:513.075000px;}
.y4b{bottom:515.055000px;}
.ye5{bottom:517.575000px;}
.y81{bottom:518.475000px;}
.y20{bottom:519.555000px;}
.y191{bottom:522.255000px;}
.yab{bottom:522.435000px;}
.y159{bottom:522.795000px;}
.y177{bottom:529.275000px;}
.ycf{bottom:530.355000px;}
.y12a{bottom:532.155000px;}
.y63{bottom:533.055000px;}
.yf8{bottom:533.775000px;}
.y4a{bottom:535.755000px;}
.y80{bottom:539.175000px;}
.y1f{bottom:540.255000px;}
.y190{bottom:542.955000px;}
.y158{bottom:543.495000px;}
.yaa{bottom:544.575000px;}
.y176{bottom:549.975000px;}
.yce{bottom:551.055000px;}
.y129{bottom:552.855000px;}
.y62{bottom:553.755000px;}
.yf7{bottom:554.475000px;}
.y7f{bottom:559.875000px;}
.y1e{bottom:560.985000px;}
.y19c{bottom:563.685000px;}
.y157{bottom:564.225000px;}
.ya9{bottom:566.745000px;}
.ycd{bottom:571.785000px;}
.y49{bottom:574.485000px;}
.yf6{bottom:575.205000px;}
.y128{bottom:578.445000px;}
.ybe{bottom:580.605000px;}
.y1d{bottom:581.685000px;}
.y18f{bottom:584.745000px;}
.y156{bottom:584.925000px;}
.ye4{bottom:585.465000px;}
.ya8{bottom:589.065000px;}
.y175{bottom:591.585000px;}
.y7e{bottom:592.485000px;}
.y48{bottom:595.185000px;}
.yf5{bottom:595.905000px;}
.y127{bottom:601.305000px;}
.y1c{bottom:602.385000px;}
.y18e{bottom:605.445000px;}
.y155{bottom:605.625000px;}
.ya7{bottom:611.385000px;}
.y174{bottom:612.285000px;}
.y7d{bottom:613.185000px;}
.y47{bottom:615.885000px;}
.yf4{bottom:616.605000px;}
.ye3{bottom:618.225000px;}
.y126{bottom:622.005000px;}
.y1b{bottom:623.085000px;}
.y154{bottom:626.325000px;}
.y173{bottom:632.985000px;}
.ya6{bottom:633.525000px;}
.y7c{bottom:633.885000px;}
.y46{bottom:636.585000px;}
.yf3{bottom:637.305000px;}
.ye2{bottom:638.925000px;}
.y125{bottom:642.705000px;}
.y1a{bottom:643.785000px;}
.y153{bottom:647.025000px;}
.y7b{bottom:654.585000px;}
.ya5{bottom:655.665000px;}
.y45{bottom:657.285000px;}
.yf2{bottom:658.005000px;}
.y124{bottom:663.405000px;}
.y19{bottom:664.485000px;}
.ycc{bottom:666.645000px;}
.y152{bottom:667.725000px;}
.ye1{bottom:671.505000px;}
.y172{bottom:674.745000px;}
.y61{bottom:675.285000px;}
.y44{bottom:677.985000px;}
.yf1{bottom:678.705000px;}
.y123{bottom:684.105000px;}
.y18{bottom:685.185000px;}
.ycb{bottom:687.345000px;}
.y151{bottom:688.425000px;}
.y18d{bottom:688.785000px;}
.y171{bottom:695.445000px;}
.y60{bottom:695.985000px;}
.y43{bottom:698.685000px;}
.yf0{bottom:699.405000px;}
.ya3{bottom:700.125000px;}
.ye0{bottom:704.265000px;}
.y122{bottom:704.805000px;}
.y17{bottom:705.885000px;}
.yca{bottom:708.045000px;}
.y150{bottom:709.125000px;}
.y18c{bottom:709.485000px;}
.y5f{bottom:716.685000px;}
.yef{bottom:719.925000px;}
.ya1{bottom:722.445000px;}
.y121{bottom:725.505000px;}
.y16{bottom:726.585000px;}
.yc9{bottom:728.745000px;}
.y14f{bottom:729.825000px;}
.ydf{bottom:737.025000px;}
.y42{bottom:737.385000px;}
.yee{bottom:740.625000px;}
.y9f{bottom:744.765000px;}
.y120{bottom:746.205000px;}
.y15{bottom:747.285000px;}
.yc8{bottom:749.445000px;}
.y14e{bottom:750.525000px;}
.y18b{bottom:751.245000px;}
.y170{bottom:757.725000px;}
.y41{bottom:758.085000px;}
.yed{bottom:761.325000px;}
.y11f{bottom:766.905000px;}
.y14{bottom:767.985000px;}
.yde{bottom:769.605000px;}
.y9e{bottom:770.145000px;}
.y14d{bottom:771.225000px;}
.y18a{bottom:771.945000px;}
.y40{bottom:778.785000px;}
.yec{bottom:782.025000px;}
.y11e{bottom:787.605000px;}
.y13{bottom:788.685000px;}
.ydd{bottom:790.305000px;}
.y7a{bottom:790.845000px;}
.y14c{bottom:791.925000px;}
.y3f{bottom:799.485000px;}
.y9d{bottom:802.725000px;}
.y11d{bottom:808.305000px;}
.y12{bottom:809.385000px;}
.y79{bottom:811.590000px;}
.y14b{bottom:812.670000px;}
.y189{bottom:813.570000px;}
.y5e{bottom:817.530000px;}
.ydc{bottom:818.970000px;}
.y3e{bottom:820.230000px;}
.y9c{bottom:823.470000px;}
.y11c{bottom:825.810000px;}
.y11{bottom:830.130000px;}
.y78{bottom:832.290000px;}
.y5d{bottom:838.230000px;}
.y16f{bottom:840.930000px;}
.y9b{bottom:844.170000px;}
.y11b{bottom:850.650000px;}
.y10{bottom:850.830000px;}
.y77{bottom:852.990000px;}
.y188{bottom:855.330000px;}
.y3d{bottom:858.930000px;}
.y9a{bottom:864.870000px;}
.yf{bottom:871.530000px;}
.y14a{bottom:871.710000px;}
.y76{bottom:873.690000px;}
.y11a{bottom:876.030000px;}
.y3c{bottom:879.630000px;}
.ydb{bottom:882.330000px;}
.y99{bottom:885.570000px;}
.ye{bottom:892.230000px;}
.y149{bottom:892.410000px;}
.y75{bottom:894.390000px;}
.y3b{bottom:900.330000px;}
.y118{bottom:901.410000px;}
.y98{bottom:906.270000px;}
.yda{bottom:911.130000px;}
.y148{bottom:913.290000px;}
.y74{bottom:915.090000px;}
.y187{bottom:917.790000px;}
.y16e{bottom:918.330000px;}
.y3a{bottom:921.030000px;}
.yd{bottom:924.810000px;}
.y117{bottom:926.610000px;}
.y97{bottom:926.970000px;}
.y147{bottom:934.170000px;}
.y186{bottom:938.490000px;}
.y16d{bottom:939.030000px;}
.y39{bottom:941.730000px;}
.yc{bottom:945.510000px;}
.y73{bottom:947.670000px;}
.y116{bottom:951.990000px;}
.y146{bottom:955.050000px;}
.y16c{bottom:959.730000px;}
.y5{bottom:966.210000px;}
.y96{bottom:968.370000px;}
.yd9{bottom:971.970000px;}
.y145{bottom:975.930000px;}
.y114{bottom:977.370000px;}
.y185{bottom:980.070000px;}
.y38{bottom:980.430000px;}
.y95{bottom:989.070000px;}
.yd8{bottom:992.670000px;}
.y144{bottom:996.810000px;}
.y184{bottom:1000.770000px;}
.y37{bottom:1001.130000px;}
.y112{bottom:1002.750000px;}
.y4{bottom:1007.970000px;}
.y94{bottom:1009.770000px;}
.y143{bottom:1017.510000px;}
.yd7{bottom:1021.470000px;}
.y36{bottom:1021.830000px;}
.y110{bottom:1027.590000px;}
.y142{bottom:1038.390000px;}
.y35{bottom:1042.530000px;}
.y3{bottom:1050.270000px;}
.y10e{bottom:1054.230000px;}
.y140{bottom:1059.270000px;}
.y34{bottom:1063.260000px;}
.y2{bottom:1088.280000px;}
.y1{bottom:1114.380000px;}
.h9{height:20.700000px;}
.h16{height:20.736000px;}
.h17{height:20.880000px;}
.ha{height:21.420000px;}
.hc{height:21.456000px;}
.hb{height:21.600000px;}
.h13{height:24.840000px;}
.h15{height:25.200000px;}
.h14{height:25.380000px;}
.h10{height:25.740000px;}
.h11{height:25.776000px;}
.hf{height:25.920000px;}
.h12{height:26.640000px;}
.he{height:41.400000px;}
.h4{height:49.500000px;}
.h7{height:50.800781px;}
.h3{height:52.066406px;}
.h8{height:52.417969px;}
.h6{height:54.316406px;}
.h5{height:58.320000px;}
.hd{height:59.343750px;}
.h1{height:59.436914px;}
.h2{height:67.565039px;}
.h0{height:1188.000000px;}
.w16{width:21.240000px;}
.w18{width:23.760000px;}
.w21{width:38.880000px;}
.w15{width:53.460000px;}
.w1d{width:56.700000px;}
.w19{width:59.760000px;}
.w1f{width:62.100000px;}
.w25{width:63.900000px;}
.w24{width:67.536000px;}
.w1b{width:68.040000px;}
.w27{width:72.000000px;}
.w1c{width:73.476000px;}
.w13{width:73.620000px;}
.w23{width:73.980000px;}
.w14{width:74.160000px;}
.w1e{width:77.760000px;}
.w26{width:83.376000px;}
.wc{width:97.920000px;}
.wf{width:100.080000px;}
.wa{width:100.620000px;}
.we{width:104.976000px;}
.w17{width:105.876000px;}
.w8{width:106.200000px;}
.w11{width:107.820000px;}
.w5{width:108.540000px;}
.w7{width:110.736000px;}
.wd{width:111.600000px;}
.w10{width:114.336000px;}
.wb{width:114.696000px;}
.w9{width:115.056000px;}
.w12{width:117.216000px;}
.w1a{width:122.436000px;}
.w22{width:146.916000px;}
.w20{width:155.370000px;}
.w4{width:174.450000px;}
.w6{width:212.430000px;}
.w2{width:220.710000px;}
.w3{width:266.970000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x7{left:9.719986px;}
.x8{left:38.339986px;}
.x5{left:106.955986px;}
.x10{left:108.035986px;}
.xa{left:114.335986px;}
.x28{left:116.136000px;}
.x21{left:117.756000px;}
.x11{left:135.035986px;}
.x18{left:148.535986px;}
.x12{left:162.029986px;}
.x38{left:168.869986px;}
.x1{left:176.249986px;}
.x29{left:190.290000px;}
.x31{left:193.890000px;}
.x3{left:206.309986px;}
.x1c{left:216.029986px;}
.x1a{left:220.709986px;}
.x22{left:229.350000px;}
.x2a{left:243.750000px;}
.x19{left:246.089986px;}
.x1b{left:251.489986px;}
.x32{left:255.990000px;}
.x2b{left:264.990000px;}
.x39{left:272.189986px;}
.x2{left:284.249986px;}
.xf{left:294.914986px;}
.x14{left:329.835000px;}
.x23{left:334.335000px;}
.x37{left:339.375000px;}
.xe{left:354.134986px;}
.x2c{left:370.875000px;}
.xb{left:383.474986px;}
.x2d{left:394.635000px;}
.xd{left:400.214986px;}
.x33{left:411.375000px;}
.x9{left:423.074986px;}
.x1d{left:428.115000px;}
.xc{left:433.154986px;}
.x24{left:434.415000px;}
.x34{left:450.255000px;}
.x2e{left:454.395000px;}
.x17{left:468.074986px;}
.x1e{left:538.845000px;}
.x25{left:548.745000px;}
.x2f{left:576.825000px;}
.x15{left:597.525000px;}
.x1f{left:645.045000px;}
.x26{left:656.565000px;}
.x35{left:671.145000px;}
.x30{left:718.350000px;}
.x36{left:738.690000px;}
.x20{left:760.110000px;}
.x27{left:773.790000px;}
.x16{left:785.309986px;}
.x6{left:851.909986px;}
.x4{left:869.909986px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.128640pt;}
.lsa{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.239360pt;}
.lsd{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.303360pt;}
.lse{letter-spacing:2.720000pt;}
.ls6{letter-spacing:30.186667pt;}
.ls11{letter-spacing:30.208000pt;}
.lsf{letter-spacing:51.328000pt;}
.ls10{letter-spacing:54.506667pt;}
.ws6{word-spacing:-36.480000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws4{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-78.376960pt;}
._22{margin-left:-8.968960pt;}
._1e{margin-left:-6.677333pt;}
._a{margin-left:-4.864000pt;}
._b{margin-left:-3.968000pt;}
._9{margin-left:-2.816000pt;}
._0{margin-left:-1.385600pt;}
._1{width:0.936960pt;}
._2{width:1.921067pt;}
._c{width:3.006933pt;}
._8{width:4.032000pt;}
._6{width:5.696000pt;}
._7{width:6.848000pt;}
._e{width:8.128000pt;}
._13{width:9.216000pt;}
._d{width:10.176000pt;}
._12{width:11.840000pt;}
._10{width:13.312000pt;}
._11{width:14.336000pt;}
._f{width:17.134080pt;}
._16{width:18.880000pt;}
._17{width:20.480000pt;}
._18{width:21.911040pt;}
._19{width:24.576000pt;}
._14{width:26.112000pt;}
._15{width:27.264000pt;}
._1c{width:37.802667pt;}
._5{width:74.115627pt;}
._1d{width:94.890667pt;}
._3{width:97.226667pt;}
._1a{width:115.050667pt;}
._20{width:142.848000pt;}
._24{width:145.930667pt;}
._21{width:156.394667pt;}
._1b{width:160.000000pt;}
._1f{width:161.930667pt;}
._23{width:174.388267pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.yb{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:3.520000pt;}
.y141{bottom:3.546667pt;}
.y13f{bottom:3.680000pt;}
.ya2{bottom:4.160000pt;}
.ya4{bottom:4.320000pt;}
.y33{bottom:5.440000pt;}
.ya{bottom:5.600000pt;}
.y113{bottom:7.200000pt;}
.y119{bottom:7.520000pt;}
.y115{bottom:7.680000pt;}
.y10d{bottom:8.000000pt;}
.y10f{bottom:8.026667pt;}
.y10b{bottom:8.160000pt;}
.y111{bottom:8.800000pt;}
.y31{bottom:9.600000pt;}
.y8{bottom:19.200000pt;}
.y108{bottom:21.920000pt;}
.y32{bottom:28.000000pt;}
.y9{bottom:28.160000pt;}
.y7{bottom:51.360000pt;}
.y6{bottom:69.792000pt;}
.ybd{bottom:99.872000pt;}
.y13e{bottom:104.192000pt;}
.y93{bottom:108.192000pt;}
.y30{bottom:108.672000pt;}
.y72{bottom:110.592000pt;}
.y10c{bottom:110.752000pt;}
.y5c{bottom:112.992000pt;}
.ybc{bottom:118.272000pt;}
.y16b{bottom:122.752000pt;}
.y13d{bottom:126.272000pt;}
.y92{bottom:126.592000pt;}
.y2f{bottom:127.072000pt;}
.y71{bottom:128.992000pt;}
.y5b{bottom:131.392000pt;}
.y10a{bottom:133.626667pt;}
.yeb{bottom:136.026667pt;}
.ybb{bottom:136.666667pt;}
.y183{bottom:137.626667pt;}
.y16a{bottom:141.146667pt;}
.y13c{bottom:144.666667pt;}
.y91{bottom:144.986667pt;}
.y70{bottom:147.386667pt;}
.y5a{bottom:149.786667pt;}
.yba{bottom:155.066667pt;}
.y182{bottom:156.026667pt;}
.y109{bottom:157.466667pt;}
.y169{bottom:159.546667pt;}
.y2e{bottom:161.466667pt;}
.y13b{bottom:163.066667pt;}
.yc7{bottom:163.386667pt;}
.yea{bottom:165.146667pt;}
.y6f{bottom:165.786667pt;}
.y59{bottom:168.186667pt;}
.y90{bottom:174.106667pt;}
.y107{bottom:175.866667pt;}
.y168{bottom:177.946667pt;}
.y2d{bottom:179.866667pt;}
.y13a{bottom:181.466667pt;}
.yc6{bottom:181.786667pt;}
.yb9{bottom:184.026667pt;}
.y6e{bottom:184.186667pt;}
.y58{bottom:186.586667pt;}
.y19b{bottom:186.906667pt;}
.ye9{bottom:190.586667pt;}
.y8f{bottom:192.506667pt;}
.y181{bottom:192.986667pt;}
.y167{bottom:196.346667pt;}
.y2c{bottom:198.266667pt;}
.y139{bottom:199.866667pt;}
.yc5{bottom:200.186667pt;}
.y6d{bottom:202.586667pt;}
.y1a3{bottom:204.986667pt;}
.y19a{bottom:205.306667pt;}
.y8e{bottom:210.906667pt;}
.y180{bottom:211.386667pt;}
.yb8{bottom:213.146667pt;}
.y166{bottom:214.746667pt;}
.y2b{bottom:216.666667pt;}
.y106{bottom:216.826667pt;}
.y138{bottom:218.266667pt;}
.yc4{bottom:218.586667pt;}
.y57{bottom:220.986667pt;}
.y8d{bottom:229.306667pt;}
.yb7{bottom:231.546667pt;}
.y165{bottom:233.146667pt;}
.y105{bottom:235.226667pt;}
.y137{bottom:236.666667pt;}
.yc3{bottom:236.986667pt;}
.y56{bottom:239.386667pt;}
.y1a2{bottom:242.106667pt;}
.y199{bottom:242.426667pt;}
.y8c{bottom:247.706667pt;}
.y17f{bottom:248.506667pt;}
.yb6{bottom:249.946667pt;}
.y2a{bottom:251.066667pt;}
.y164{bottom:251.546667pt;}
.y104{bottom:253.626667pt;}
.y136{bottom:255.066667pt;}
.y6c{bottom:255.386667pt;}
.y55{bottom:257.786667pt;}
.y1a1{bottom:260.506667pt;}
.y198{bottom:260.826667pt;}
.y8b{bottom:266.106667pt;}
.y17e{bottom:266.906667pt;}
.yb5{bottom:268.346667pt;}
.y29{bottom:269.466667pt;}
.y163{bottom:269.946667pt;}
.y103{bottom:272.026667pt;}
.y135{bottom:273.466667pt;}
.y6b{bottom:273.786667pt;}
.y54{bottom:276.226667pt;}
.yd6{bottom:276.866667pt;}
.y8a{bottom:284.546667pt;}
.yb4{bottom:286.786667pt;}
.y28{bottom:287.906667pt;}
.y162{bottom:288.386667pt;}
.y134{bottom:289.026667pt;}
.y102{bottom:290.466667pt;}
.y6a{bottom:292.226667pt;}
.y53{bottom:294.626667pt;}
.yd5{bottom:295.266667pt;}
.y1a0{bottom:297.666667pt;}
.y197{bottom:297.826667pt;}
.y89{bottom:302.946667pt;}
.y17d{bottom:304.066667pt;}
.yb3{bottom:305.186667pt;}
.y27{bottom:306.306667pt;}
.y161{bottom:306.786667pt;}
.y133{bottom:307.426667pt;}
.y101{bottom:308.866667pt;}
.y69{bottom:310.626667pt;}
.y52{bottom:313.026667pt;}
.yd4{bottom:313.666667pt;}
.y196{bottom:316.226667pt;}
.yc2{bottom:321.346667pt;}
.y17c{bottom:322.466667pt;}
.yb2{bottom:323.586667pt;}
.y26{bottom:324.866667pt;}
.y160{bottom:325.186667pt;}
.y132{bottom:325.826667pt;}
.y100{bottom:327.266667pt;}
.y68{bottom:329.026667pt;}
.y51{bottom:331.426667pt;}
.y88{bottom:332.066667pt;}
.y19f{bottom:334.626667pt;}
.yc1{bottom:339.746667pt;}
.yb1{bottom:341.986667pt;}
.y15f{bottom:343.586667pt;}
.y131{bottom:344.226667pt;}
.yff{bottom:345.666667pt;}
.y67{bottom:347.426667pt;}
.y50{bottom:349.826667pt;}
.y87{bottom:350.466667pt;}
.y195{bottom:353.346667pt;}
.yc0{bottom:358.146667pt;}
.y25{bottom:359.106667pt;}
.y17b{bottom:359.426667pt;}
.yb0{bottom:360.386667pt;}
.y15e{bottom:361.986667pt;}
.y130{bottom:362.626667pt;}
.yfe{bottom:364.066667pt;}
.y66{bottom:365.826667pt;}
.ye8{bottom:368.706667pt;}
.y86{bottom:368.866667pt;}
.y194{bottom:371.746667pt;}
.ybf{bottom:376.546667pt;}
.y17a{bottom:377.826667pt;}
.y12f{bottom:381.026667pt;}
.yfd{bottom:382.466667pt;}
.y4f{bottom:384.226667pt;}
.ye7{bottom:387.106667pt;}
.y85{bottom:387.266667pt;}
.y24{bottom:388.226667pt;}
.yaf{bottom:389.506667pt;}
.y19e{bottom:390.146667pt;}
.y15d{bottom:391.106667pt;}
.yd3{bottom:397.826667pt;}
.y12e{bottom:399.426667pt;}
.yfc{bottom:400.866667pt;}
.y4e{bottom:402.626667pt;}
.yae{bottom:405.026667pt;}
.ye6{bottom:405.506667pt;}
.y84{bottom:405.666667pt;}
.y23{bottom:406.626667pt;}
.y193{bottom:408.866667pt;}
.y15c{bottom:409.506667pt;}
.y179{bottom:414.946667pt;}
.yd2{bottom:416.226667pt;}
.y12d{bottom:417.826667pt;}
.yfb{bottom:419.266667pt;}
.y4d{bottom:421.026667pt;}
.y83{bottom:424.066667pt;}
.yad{bottom:424.866667pt;}
.y22{bottom:425.026667pt;}
.y192{bottom:427.266667pt;}
.y15b{bottom:427.906667pt;}
.y178{bottom:433.346667pt;}
.yd1{bottom:434.626667pt;}
.y12c{bottom:436.226667pt;}
.y65{bottom:437.026667pt;}
.yfa{bottom:437.666667pt;}
.y4c{bottom:439.426667pt;}
.y82{bottom:442.466667pt;}
.y21{bottom:443.426667pt;}
.yac{bottom:444.546667pt;}
.y19d{bottom:445.666667pt;}
.y15a{bottom:446.306667pt;}
.yd0{bottom:453.026667pt;}
.y12b{bottom:454.626667pt;}
.y64{bottom:455.426667pt;}
.yf9{bottom:456.066667pt;}
.y4b{bottom:457.826667pt;}
.ye5{bottom:460.066667pt;}
.y81{bottom:460.866667pt;}
.y20{bottom:461.826667pt;}
.y191{bottom:464.226667pt;}
.yab{bottom:464.386667pt;}
.y159{bottom:464.706667pt;}
.y177{bottom:470.466667pt;}
.ycf{bottom:471.426667pt;}
.y12a{bottom:473.026667pt;}
.y63{bottom:473.826667pt;}
.yf8{bottom:474.466667pt;}
.y4a{bottom:476.226667pt;}
.y80{bottom:479.266667pt;}
.y1f{bottom:480.226667pt;}
.y190{bottom:482.626667pt;}
.y158{bottom:483.106667pt;}
.yaa{bottom:484.066667pt;}
.y176{bottom:488.866667pt;}
.yce{bottom:489.826667pt;}
.y129{bottom:491.426667pt;}
.y62{bottom:492.226667pt;}
.yf7{bottom:492.866667pt;}
.y7f{bottom:497.666667pt;}
.y1e{bottom:498.653333pt;}
.y19c{bottom:501.053333pt;}
.y157{bottom:501.533333pt;}
.ya9{bottom:503.773333pt;}
.ycd{bottom:508.253333pt;}
.y49{bottom:510.653333pt;}
.yf6{bottom:511.293333pt;}
.y128{bottom:514.173333pt;}
.ybe{bottom:516.093333pt;}
.y1d{bottom:517.053333pt;}
.y18f{bottom:519.773333pt;}
.y156{bottom:519.933333pt;}
.ye4{bottom:520.413333pt;}
.ya8{bottom:523.613333pt;}
.y175{bottom:525.853333pt;}
.y7e{bottom:526.653333pt;}
.y48{bottom:529.053333pt;}
.yf5{bottom:529.693333pt;}
.y127{bottom:534.493333pt;}
.y1c{bottom:535.453333pt;}
.y18e{bottom:538.173333pt;}
.y155{bottom:538.333333pt;}
.ya7{bottom:543.453333pt;}
.y174{bottom:544.253333pt;}
.y7d{bottom:545.053333pt;}
.y47{bottom:547.453333pt;}
.yf4{bottom:548.093333pt;}
.ye3{bottom:549.533333pt;}
.y126{bottom:552.893333pt;}
.y1b{bottom:553.853333pt;}
.y154{bottom:556.733333pt;}
.y173{bottom:562.653333pt;}
.ya6{bottom:563.133333pt;}
.y7c{bottom:563.453333pt;}
.y46{bottom:565.853333pt;}
.yf3{bottom:566.493333pt;}
.ye2{bottom:567.933333pt;}
.y125{bottom:571.293333pt;}
.y1a{bottom:572.253333pt;}
.y153{bottom:575.133333pt;}
.y7b{bottom:581.853333pt;}
.ya5{bottom:582.813333pt;}
.y45{bottom:584.253333pt;}
.yf2{bottom:584.893333pt;}
.y124{bottom:589.693333pt;}
.y19{bottom:590.653333pt;}
.ycc{bottom:592.573333pt;}
.y152{bottom:593.533333pt;}
.ye1{bottom:596.893333pt;}
.y172{bottom:599.773333pt;}
.y61{bottom:600.253333pt;}
.y44{bottom:602.653333pt;}
.yf1{bottom:603.293333pt;}
.y123{bottom:608.093333pt;}
.y18{bottom:609.053333pt;}
.ycb{bottom:610.973333pt;}
.y151{bottom:611.933333pt;}
.y18d{bottom:612.253333pt;}
.y171{bottom:618.173333pt;}
.y60{bottom:618.653333pt;}
.y43{bottom:621.053333pt;}
.yf0{bottom:621.693333pt;}
.ya3{bottom:622.333333pt;}
.ye0{bottom:626.013333pt;}
.y122{bottom:626.493333pt;}
.y17{bottom:627.453333pt;}
.yca{bottom:629.373333pt;}
.y150{bottom:630.333333pt;}
.y18c{bottom:630.653333pt;}
.y5f{bottom:637.053333pt;}
.yef{bottom:639.933333pt;}
.ya1{bottom:642.173333pt;}
.y121{bottom:644.893333pt;}
.y16{bottom:645.853333pt;}
.yc9{bottom:647.773333pt;}
.y14f{bottom:648.733333pt;}
.ydf{bottom:655.133333pt;}
.y42{bottom:655.453333pt;}
.yee{bottom:658.333333pt;}
.y9f{bottom:662.013333pt;}
.y120{bottom:663.293333pt;}
.y15{bottom:664.253333pt;}
.yc8{bottom:666.173333pt;}
.y14e{bottom:667.133333pt;}
.y18b{bottom:667.773333pt;}
.y170{bottom:673.533333pt;}
.y41{bottom:673.853333pt;}
.yed{bottom:676.733333pt;}
.y11f{bottom:681.693333pt;}
.y14{bottom:682.653333pt;}
.yde{bottom:684.093333pt;}
.y9e{bottom:684.573333pt;}
.y14d{bottom:685.533333pt;}
.y18a{bottom:686.173333pt;}
.y40{bottom:692.253333pt;}
.yec{bottom:695.133333pt;}
.y11e{bottom:700.093333pt;}
.y13{bottom:701.053333pt;}
.ydd{bottom:702.493333pt;}
.y7a{bottom:702.973333pt;}
.y14c{bottom:703.933333pt;}
.y3f{bottom:710.653333pt;}
.y9d{bottom:713.533333pt;}
.y11d{bottom:718.493333pt;}
.y12{bottom:719.453333pt;}
.y79{bottom:721.413333pt;}
.y14b{bottom:722.373333pt;}
.y189{bottom:723.173333pt;}
.y5e{bottom:726.693333pt;}
.ydc{bottom:727.973333pt;}
.y3e{bottom:729.093333pt;}
.y9c{bottom:731.973333pt;}
.y11c{bottom:734.053333pt;}
.y11{bottom:737.893333pt;}
.y78{bottom:739.813333pt;}
.y5d{bottom:745.093333pt;}
.y16f{bottom:747.493333pt;}
.y9b{bottom:750.373333pt;}
.y11b{bottom:756.133333pt;}
.y10{bottom:756.293333pt;}
.y77{bottom:758.213333pt;}
.y188{bottom:760.293333pt;}
.y3d{bottom:763.493333pt;}
.y9a{bottom:768.773333pt;}
.yf{bottom:774.693333pt;}
.y14a{bottom:774.853333pt;}
.y76{bottom:776.613333pt;}
.y11a{bottom:778.693333pt;}
.y3c{bottom:781.893333pt;}
.ydb{bottom:784.293333pt;}
.y99{bottom:787.173333pt;}
.ye{bottom:793.093333pt;}
.y149{bottom:793.253333pt;}
.y75{bottom:795.013333pt;}
.y3b{bottom:800.293333pt;}
.y118{bottom:801.253333pt;}
.y98{bottom:805.573333pt;}
.yda{bottom:809.893333pt;}
.y148{bottom:811.813333pt;}
.y74{bottom:813.413333pt;}
.y187{bottom:815.813333pt;}
.y16e{bottom:816.293333pt;}
.y3a{bottom:818.693333pt;}
.yd{bottom:822.053333pt;}
.y117{bottom:823.653333pt;}
.y97{bottom:823.973333pt;}
.y147{bottom:830.373333pt;}
.y186{bottom:834.213333pt;}
.y16d{bottom:834.693333pt;}
.y39{bottom:837.093333pt;}
.yc{bottom:840.453333pt;}
.y73{bottom:842.373333pt;}
.y116{bottom:846.213333pt;}
.y146{bottom:848.933333pt;}
.y16c{bottom:853.093333pt;}
.y5{bottom:858.853333pt;}
.y96{bottom:860.773333pt;}
.yd9{bottom:863.973333pt;}
.y145{bottom:867.493333pt;}
.y114{bottom:868.773333pt;}
.y185{bottom:871.173333pt;}
.y38{bottom:871.493333pt;}
.y95{bottom:879.173333pt;}
.yd8{bottom:882.373333pt;}
.y144{bottom:886.053333pt;}
.y184{bottom:889.573333pt;}
.y37{bottom:889.893333pt;}
.y112{bottom:891.333333pt;}
.y4{bottom:895.973333pt;}
.y94{bottom:897.573333pt;}
.y143{bottom:904.453333pt;}
.yd7{bottom:907.973333pt;}
.y36{bottom:908.293333pt;}
.y110{bottom:913.413333pt;}
.y142{bottom:923.013333pt;}
.y35{bottom:926.693333pt;}
.y3{bottom:933.573333pt;}
.y10e{bottom:937.093333pt;}
.y140{bottom:941.573333pt;}
.y34{bottom:945.120000pt;}
.y2{bottom:967.360000pt;}
.y1{bottom:990.560000pt;}
.h9{height:18.400000pt;}
.h16{height:18.432000pt;}
.h17{height:18.560000pt;}
.ha{height:19.040000pt;}
.hc{height:19.072000pt;}
.hb{height:19.200000pt;}
.h13{height:22.080000pt;}
.h15{height:22.400000pt;}
.h14{height:22.560000pt;}
.h10{height:22.880000pt;}
.h11{height:22.912000pt;}
.hf{height:23.040000pt;}
.h12{height:23.680000pt;}
.he{height:36.800000pt;}
.h4{height:44.000000pt;}
.h7{height:45.156250pt;}
.h3{height:46.281250pt;}
.h8{height:46.593750pt;}
.h6{height:48.281250pt;}
.h5{height:51.840000pt;}
.hd{height:52.750000pt;}
.h1{height:52.832812pt;}
.h2{height:60.057813pt;}
.h0{height:1056.000000pt;}
.w16{width:18.880000pt;}
.w18{width:21.120000pt;}
.w21{width:34.560000pt;}
.w15{width:47.520000pt;}
.w1d{width:50.400000pt;}
.w19{width:53.120000pt;}
.w1f{width:55.200000pt;}
.w25{width:56.800000pt;}
.w24{width:60.032000pt;}
.w1b{width:60.480000pt;}
.w27{width:64.000000pt;}
.w1c{width:65.312000pt;}
.w13{width:65.440000pt;}
.w23{width:65.760000pt;}
.w14{width:65.920000pt;}
.w1e{width:69.120000pt;}
.w26{width:74.112000pt;}
.wc{width:87.040000pt;}
.wf{width:88.960000pt;}
.wa{width:89.440000pt;}
.we{width:93.312000pt;}
.w17{width:94.112000pt;}
.w8{width:94.400000pt;}
.w11{width:95.840000pt;}
.w5{width:96.480000pt;}
.w7{width:98.432000pt;}
.wd{width:99.200000pt;}
.w10{width:101.632000pt;}
.wb{width:101.952000pt;}
.w9{width:102.272000pt;}
.w12{width:104.192000pt;}
.w1a{width:108.832000pt;}
.w22{width:130.592000pt;}
.w20{width:138.106667pt;}
.w4{width:155.066667pt;}
.w6{width:188.826667pt;}
.w2{width:196.186667pt;}
.w3{width:237.306667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x7{left:8.639988pt;}
.x8{left:34.079988pt;}
.x5{left:95.071988pt;}
.x10{left:96.031988pt;}
.xa{left:101.631988pt;}
.x28{left:103.232000pt;}
.x21{left:104.672000pt;}
.x11{left:120.031988pt;}
.x18{left:132.031988pt;}
.x12{left:144.026655pt;}
.x38{left:150.106655pt;}
.x1{left:156.666655pt;}
.x29{left:169.146667pt;}
.x31{left:172.346667pt;}
.x3{left:183.386655pt;}
.x1c{left:192.026655pt;}
.x1a{left:196.186655pt;}
.x22{left:203.866667pt;}
.x2a{left:216.666667pt;}
.x19{left:218.746655pt;}
.x1b{left:223.546655pt;}
.x32{left:227.546667pt;}
.x2b{left:235.546667pt;}
.x39{left:241.946655pt;}
.x2{left:252.666655pt;}
.xf{left:262.146655pt;}
.x14{left:293.186667pt;}
.x23{left:297.186667pt;}
.x37{left:301.666667pt;}
.xe{left:314.786655pt;}
.x2c{left:329.666667pt;}
.xb{left:340.866655pt;}
.x2d{left:350.786667pt;}
.xd{left:355.746655pt;}
.x33{left:365.666667pt;}
.x9{left:376.066655pt;}
.x1d{left:380.546667pt;}
.xc{left:385.026655pt;}
.x24{left:386.146667pt;}
.x34{left:400.226667pt;}
.x2e{left:403.906667pt;}
.x17{left:416.066655pt;}
.x1e{left:478.973333pt;}
.x25{left:487.773333pt;}
.x2f{left:512.733333pt;}
.x15{left:531.133333pt;}
.x1f{left:573.373333pt;}
.x26{left:583.613333pt;}
.x35{left:596.573333pt;}
.x30{left:638.533333pt;}
.x36{left:656.613333pt;}
.x20{left:675.653333pt;}
.x27{left:687.813333pt;}
.x16{left:698.053321pt;}
.x6{left:757.253321pt;}
.x4{left:773.253321pt;}
}




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