
    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_08c156f9daa06cb27eed1d56.woff2')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_0278c225faaa4ec82585fd8d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.768555;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_c25436f79e860805dd8adba2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1b32106c2e6c6e67babe1755.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_584ffbb69561f3b5907b1449.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4308313d26c3388027b54820.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6071b2ee98ad4eb52a9ee282.woff2')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_9251382c8f2d51a07fe566b8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7ea8176ee8d12291ffee4aef.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.463800px;}
.ls8{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.lse{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.684000px;}
.ls7{letter-spacing:0.720000px;}
.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;}
}
.ws1{word-spacing:-21.041280px;}
.wsc{word-spacing:-18.576000px;}
.wsa{word-spacing:-18.360000px;}
.wsb{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.712000px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.506440px;}
.ws0{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.192320px;}
._1{width:1.031040px;}
._2{width:2.044320px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516000px;}
.y92{bottom:112.176000px;}
.y75{bottom:112.356000px;}
.y125{bottom:115.416000px;}
.ye6{bottom:115.776000px;}
.yb9{bottom:117.216000px;}
.y30{bottom:117.936000px;}
.y117{bottom:118.656000px;}
.yd4{bottom:123.156000px;}
.y157{bottom:124.416000px;}
.y17f{bottom:128.016000px;}
.y13e{bottom:129.096000px;}
.y8b{bottom:129.456000px;}
.yfe{bottom:131.256000px;}
.y5e{bottom:131.616000px;}
.y91{bottom:132.156000px;}
.y186{bottom:132.876000px;}
.y74{bottom:133.056000px;}
.y124{bottom:136.116000px;}
.ye5{bottom:136.476000px;}
.yb8{bottom:137.916000px;}
.y2f{bottom:138.636000px;}
.y9d{bottom:138.816000px;}
.y116{bottom:139.356000px;}
.yd3{bottom:143.856000px;}
.y156{bottom:145.116000px;}
.y17e{bottom:148.716000px;}
.y90{bottom:149.436000px;}
.y13d{bottom:149.796000px;}
.y8a{bottom:150.150000px;}
.yfd{bottom:151.950000px;}
.y5d{bottom:152.310000px;}
.y185{bottom:152.850000px;}
.y73{bottom:153.750000px;}
.y123{bottom:156.810000px;}
.ye4{bottom:157.170000px;}
.yb7{bottom:158.610000px;}
.y2e{bottom:159.330000px;}
.y9c{bottom:159.510000px;}
.y115{bottom:160.050000px;}
.yd2{bottom:164.550000px;}
.y155{bottom:165.810000px;}
.y8f{bottom:166.710000px;}
.y17d{bottom:169.410000px;}
.y184{bottom:170.130000px;}
.y13c{bottom:170.490000px;}
.y89{bottom:170.850000px;}
.yfc{bottom:172.650000px;}
.y5c{bottom:173.010000px;}
.y72{bottom:174.450000px;}
.y122{bottom:177.510000px;}
.ye3{bottom:177.870000px;}
.yb6{bottom:179.310000px;}
.y2d{bottom:180.030000px;}
.y9b{bottom:180.210000px;}
.y114{bottom:180.750000px;}
.y8e{bottom:183.810000px;}
.yd1{bottom:185.250000px;}
.y154{bottom:186.510000px;}
.y183{bottom:187.410000px;}
.y17c{bottom:190.110000px;}
.y13b{bottom:191.190000px;}
.y88{bottom:191.550000px;}
.yfb{bottom:193.350000px;}
.y5b{bottom:193.710000px;}
.y71{bottom:195.150000px;}
.y121{bottom:197.490000px;}
.y167{bottom:198.210000px;}
.ye2{bottom:198.570000px;}
.yb5{bottom:200.010000px;}
.y2c{bottom:200.730000px;}
.y9a{bottom:200.910000px;}
.y113{bottom:201.450000px;}
.y8d{bottom:201.810000px;}
.y182{bottom:204.510000px;}
.yd0{bottom:205.950000px;}
.y153{bottom:207.210000px;}
.y17b{bottom:210.810000px;}
.y13a{bottom:211.890000px;}
.y87{bottom:212.250000px;}
.yfa{bottom:214.050000px;}
.y5a{bottom:214.410000px;}
.y120{bottom:214.770000px;}
.y70{bottom:215.850000px;}
.y8c{bottom:218.550000px;}
.y166{bottom:218.910000px;}
.ye1{bottom:219.270000px;}
.yb4{bottom:220.710000px;}
.y2b{bottom:221.430000px;}
.y99{bottom:221.610000px;}
.y112{bottom:222.150000px;}
.y181{bottom:222.510000px;}
.ycf{bottom:226.650000px;}
.y152{bottom:227.910000px;}
.y17a{bottom:231.510000px;}
.y11f{bottom:232.050000px;}
.y139{bottom:232.590000px;}
.y86{bottom:232.950000px;}
.yf9{bottom:234.750000px;}
.y59{bottom:235.110000px;}
.y6f{bottom:236.550000px;}
.y180{bottom:239.250000px;}
.y165{bottom:239.610000px;}
.ye0{bottom:239.970000px;}
.yb3{bottom:241.410000px;}
.y2a{bottom:242.130000px;}
.y98{bottom:242.310000px;}
.y111{bottom:242.850000px;}
.yce{bottom:247.350000px;}
.y151{bottom:248.610000px;}
.y11e{bottom:250.050000px;}
.y179{bottom:252.210000px;}
.y138{bottom:253.290000px;}
.y85{bottom:253.650000px;}
.yf8{bottom:255.450000px;}
.y58{bottom:255.810000px;}
.y6e{bottom:257.250000px;}
.y164{bottom:260.310000px;}
.ydf{bottom:260.670000px;}
.yb2{bottom:262.110000px;}
.y97{bottom:262.290000px;}
.y29{bottom:262.830000px;}
.y110{bottom:263.550000px;}
.y11d{bottom:266.790000px;}
.ycd{bottom:268.050000px;}
.y150{bottom:269.310000px;}
.y178{bottom:272.910000px;}
.y137{bottom:273.990000px;}
.y84{bottom:274.350000px;}
.yf7{bottom:276.150000px;}
.y57{bottom:276.510000px;}
.y6d{bottom:277.950000px;}
.y96{bottom:279.570000px;}
.y163{bottom:281.010000px;}
.yde{bottom:281.370000px;}
.yb1{bottom:282.810000px;}
.y28{bottom:283.530000px;}
.y10f{bottom:284.250000px;}
.ycc{bottom:288.750000px;}
.y14f{bottom:290.010000px;}
.y177{bottom:293.610000px;}
.y136{bottom:294.690000px;}
.y83{bottom:295.050000px;}
.y95{bottom:296.670000px;}
.yf6{bottom:296.850000px;}
.y56{bottom:297.210000px;}
.y6c{bottom:298.650000px;}
.y162{bottom:301.710000px;}
.ydd{bottom:302.070000px;}
.yb0{bottom:303.510000px;}
.y27{bottom:304.230000px;}
.y10e{bottom:304.950000px;}
.ycb{bottom:309.450000px;}
.y14e{bottom:310.710000px;}
.y176{bottom:314.310000px;}
.y94{bottom:314.670000px;}
.y135{bottom:315.390000px;}
.y82{bottom:315.750000px;}
.yf5{bottom:316.830000px;}
.y55{bottom:317.955000px;}
.y6b{bottom:319.395000px;}
.y161{bottom:322.455000px;}
.ydc{bottom:322.815000px;}
.yaf{bottom:324.255000px;}
.y26{bottom:324.975000px;}
.y10d{bottom:325.695000px;}
.yca{bottom:330.195000px;}
.y93{bottom:331.455000px;}
.yf4{bottom:333.975000px;}
.y175{bottom:335.055000px;}
.y134{bottom:336.135000px;}
.y81{bottom:336.495000px;}
.y54{bottom:338.655000px;}
.y6a{bottom:340.095000px;}
.y160{bottom:343.155000px;}
.ydb{bottom:343.515000px;}
.yae{bottom:344.955000px;}
.y25{bottom:345.675000px;}
.y10c{bottom:346.395000px;}
.yc9{bottom:350.895000px;}
.yf3{bottom:351.255000px;}
.y14d{bottom:352.155000px;}
.y174{bottom:355.755000px;}
.yf0{bottom:356.475000px;}
.y133{bottom:356.835000px;}
.y80{bottom:357.195000px;}
.y53{bottom:359.355000px;}
.y69{bottom:360.795000px;}
.y15f{bottom:363.855000px;}
.yda{bottom:364.215000px;}
.yad{bottom:365.655000px;}
.y24{bottom:366.375000px;}
.y10b{bottom:367.095000px;}
.yf2{bottom:369.255000px;}
.yc8{bottom:371.595000px;}
.y14c{bottom:372.855000px;}
.yef{bottom:373.575000px;}
.y173{bottom:376.455000px;}
.yeb{bottom:377.175000px;}
.y132{bottom:377.535000px;}
.y7f{bottom:377.895000px;}
.y52{bottom:380.055000px;}
.y68{bottom:381.495000px;}
.y15e{bottom:384.555000px;}
.yd9{bottom:384.915000px;}
.yf1{bottom:385.995000px;}
.yac{bottom:386.355000px;}
.y23{bottom:387.075000px;}
.y10a{bottom:387.795000px;}
.yee{bottom:390.855000px;}
.yc7{bottom:392.295000px;}
.y14b{bottom:393.555000px;}
.yea{bottom:394.275000px;}
.y172{bottom:396.435000px;}
.y131{bottom:398.235000px;}
.y7e{bottom:398.595000px;}
.y51{bottom:400.755000px;}
.y67{bottom:402.195000px;}
.y15d{bottom:405.255000px;}
.yd8{bottom:405.615000px;}
.yab{bottom:407.055000px;}
.y22{bottom:407.775000px;}
.y109{bottom:408.495000px;}
.yed{bottom:408.855000px;}
.ye9{bottom:411.555000px;}
.yc6{bottom:412.995000px;}
.y171{bottom:413.535000px;}
.y14a{bottom:414.255000px;}
.y130{bottom:418.935000px;}
.y7d{bottom:419.295000px;}
.y50{bottom:421.455000px;}
.y66{bottom:422.895000px;}
.yec{bottom:425.595000px;}
.y15c{bottom:425.955000px;}
.yd7{bottom:426.315000px;}
.yaa{bottom:427.755000px;}
.y21{bottom:428.475000px;}
.y108{bottom:429.195000px;}
.ye8{bottom:429.555000px;}
.y170{bottom:430.815000px;}
.yc5{bottom:432.975000px;}
.y149{bottom:434.955000px;}
.y12f{bottom:439.635000px;}
.y7c{bottom:439.995000px;}
.y4f{bottom:442.155000px;}
.ya2{bottom:442.875000px;}
.y65{bottom:443.595000px;}
.y15b{bottom:445.935000px;}
.ye7{bottom:446.295000px;}
.yd6{bottom:447.015000px;}
.y16f{bottom:448.095000px;}
.ya9{bottom:448.455000px;}
.y20{bottom:449.175000px;}
.y107{bottom:449.895000px;}
.yc4{bottom:450.255000px;}
.y148{bottom:455.655000px;}
.ya1{bottom:459.975000px;}
.y12e{bottom:460.335000px;}
.y7b{bottom:460.695000px;}
.y4e{bottom:462.855000px;}
.y15a{bottom:463.215000px;}
.y64{bottom:464.295000px;}
.y16e{bottom:466.095000px;}
.yd5{bottom:466.995000px;}
.yc3{bottom:467.535000px;}
.ya8{bottom:468.435000px;}
.y1f{bottom:469.875000px;}
.y106{bottom:470.595000px;}
.y147{bottom:476.355000px;}
.ya0{bottom:477.255000px;}
.y16c{bottom:480.315000px;}
.y159{bottom:480.495000px;}
.y7a{bottom:480.675000px;}
.y12d{bottom:481.035000px;}
.yc1{bottom:481.395000px;}
.y16d{bottom:482.835000px;}
.y4d{bottom:483.555000px;}
.y63{bottom:484.275000px;}
.yc2{bottom:485.355000px;}
.ya7{bottom:485.535000px;}
.y1e{bottom:490.575000px;}
.y105{bottom:491.295000px;}
.y9f{bottom:495.255000px;}
.y146{bottom:497.055000px;}
.y16b{bottom:497.595000px;}
.y79{bottom:497.775000px;}
.y158{bottom:498.495000px;}
.y62{bottom:501.375000px;}
.y12c{bottom:501.735000px;}
.yc0{bottom:502.095000px;}
.ya6{bottom:502.815000px;}
.y4c{bottom:504.255000px;}
.y1d{bottom:511.275000px;}
.y9e{bottom:511.995000px;}
.y16a{bottom:514.875000px;}
.y78{bottom:515.055000px;}
.y145{bottom:517.755000px;}
.y61{bottom:518.655000px;}
.ya5{bottom:520.095000px;}
.y12b{bottom:522.435000px;}
.ybf{bottom:522.795000px;}
.y4b{bottom:524.955000px;}
.y1c{bottom:531.975000px;}
.y104{bottom:532.695000px;}
.y169{bottom:532.875000px;}
.y77{bottom:533.055000px;}
.y60{bottom:536.655000px;}
.ya4{bottom:538.095000px;}
.y144{bottom:538.455000px;}
.y12a{bottom:542.415000px;}
.ybe{bottom:542.775000px;}
.y11c{bottom:544.935000px;}
.y4a{bottom:545.655000px;}
.y168{bottom:549.615000px;}
.y76{bottom:549.795000px;}
.y1b{bottom:552.675000px;}
.y5f{bottom:553.395000px;}
.ya3{bottom:554.835000px;}
.y143{bottom:558.435000px;}
.y129{bottom:559.695000px;}
.ybd{bottom:559.875000px;}
.y11b{bottom:562.215000px;}
.y49{bottom:566.355000px;}
.y1a{bottom:573.405000px;}
.y103{bottom:574.125000px;}
.y142{bottom:575.745000px;}
.y128{bottom:577.005000px;}
.ybc{bottom:577.185000px;}
.y11a{bottom:579.525000px;}
.y48{bottom:587.085000px;}
.y141{bottom:593.025000px;}
.y19{bottom:594.105000px;}
.y102{bottom:594.825000px;}
.y127{bottom:595.005000px;}
.ybb{bottom:595.185000px;}
.y119{bottom:597.525000px;}
.y47{bottom:607.785000px;}
.y140{bottom:611.025000px;}
.y126{bottom:611.745000px;}
.yba{bottom:611.925000px;}
.y118{bottom:614.085000px;}
.y18{bottom:614.805000px;}
.y13f{bottom:627.585000px;}
.y46{bottom:628.485000px;}
.y101{bottom:631.905000px;}
.y17{bottom:635.505000px;}
.y45{bottom:649.185000px;}
.y16{bottom:656.205000px;}
.y100{bottom:667.185000px;}
.y44{bottom:669.885000px;}
.y15{bottom:676.905000px;}
.yff{bottom:683.925000px;}
.y187{bottom:690.225000px;}
.y43{bottom:690.585000px;}
.y14{bottom:697.605000px;}
.y42{bottom:711.285000px;}
.y13{bottom:718.305000px;}
.y41{bottom:731.985000px;}
.y12{bottom:738.825000px;}
.y40{bottom:752.685000px;}
.y11{bottom:759.525000px;}
.y3f{bottom:773.385000px;}
.y10{bottom:780.225000px;}
.y3e{bottom:794.085000px;}
.yf{bottom:800.925000px;}
.y3d{bottom:814.785000px;}
.ye{bottom:821.670000px;}
.y3c{bottom:835.530000px;}
.yd{bottom:842.370000px;}
.y3b{bottom:856.230000px;}
.yc{bottom:863.070000px;}
.y3a{bottom:876.930000px;}
.yb{bottom:883.770000px;}
.y39{bottom:897.630000px;}
.ya{bottom:904.470000px;}
.y38{bottom:918.330000px;}
.y9{bottom:925.170000px;}
.y37{bottom:939.030000px;}
.y8{bottom:946.590000px;}
.y36{bottom:959.730000px;}
.y7{bottom:970.710000px;}
.y35{bottom:980.430000px;}
.y6{bottom:994.290000px;}
.y34{bottom:1001.130000px;}
.y5{bottom:1015.530000px;}
.y33{bottom:1021.830000px;}
.y4{bottom:1039.110000px;}
.y32{bottom:1042.530000px;}
.y3{bottom:1060.350000px;}
.y31{bottom:1063.230000px;}
.h6{height:58.651172px;}
.h7{height:64.546875px;}
.h1{height:65.884219px;}
.h8{height:70.628906px;}
.h4{height:70.664062px;}
.h9{height:71.613281px;}
.h3{height:72.562500px;}
.h5{height:82.635820px;}
.h2{height:84.898125px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:108.035986px;}
.xe{left:109.295986px;}
.x29{left:112.355986px;}
.x9{left:117.035986px;}
.x2a{left:118.835986px;}
.x1f{left:128.375986px;}
.x15{left:129.635986px;}
.x2e{left:131.975986px;}
.x1c{left:135.035986px;}
.x24{left:141.335986px;}
.x1b{left:143.675986px;}
.xc{left:160.409986px;}
.x2d{left:165.089986px;}
.x2c{left:181.109986px;}
.x3{left:186.149986px;}
.x18{left:190.649986px;}
.x21{left:194.609986px;}
.x27{left:198.029986px;}
.x30{left:203.069986px;}
.x22{left:214.949986px;}
.x26{left:218.189986px;}
.x12{left:221.789986px;}
.xa{left:291.134986px;}
.xd{left:303.554986px;}
.x5{left:304.634986px;}
.x17{left:306.074986px;}
.x10{left:311.114986px;}
.x20{left:313.274986px;}
.x23{left:316.874986px;}
.x11{left:318.134986px;}
.x28{left:320.654986px;}
.x13{left:323.174986px;}
.x1e{left:324.434986px;}
.x19{left:328.214986px;}
.x2b{left:329.474986px;}
.x31{left:331.454986px;}
.x25{left:336.854986px;}
.x7{left:357.554986px;}
.xb{left:375.734986px;}
.x2f{left:376.994986px;}
.x6{left:390.494986px;}
.x1d{left:421.454986px;}
.x16{left:430.634986px;}
.xf{left:435.674986px;}
.x4{left:459.074986px;}
.x14{left:589.604986px;}
.x1{left:598.064986px;}
.x1a{left:803.309986px;}
.x8{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.412267pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.608000pt;}
.ls7{letter-spacing:0.640000pt;}
.ws1{word-spacing:-18.703360pt;}
.wsc{word-spacing:-16.512000pt;}
.wsa{word-spacing:-16.320000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.894613pt;}
.ws0{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.916480pt;}
._2{width:1.817173pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792000pt;}
.y92{bottom:99.712000pt;}
.y75{bottom:99.872000pt;}
.y125{bottom:102.592000pt;}
.ye6{bottom:102.912000pt;}
.yb9{bottom:104.192000pt;}
.y30{bottom:104.832000pt;}
.y117{bottom:105.472000pt;}
.yd4{bottom:109.472000pt;}
.y157{bottom:110.592000pt;}
.y17f{bottom:113.792000pt;}
.y13e{bottom:114.752000pt;}
.y8b{bottom:115.072000pt;}
.yfe{bottom:116.672000pt;}
.y5e{bottom:116.992000pt;}
.y91{bottom:117.472000pt;}
.y186{bottom:118.112000pt;}
.y74{bottom:118.272000pt;}
.y124{bottom:120.992000pt;}
.ye5{bottom:121.312000pt;}
.yb8{bottom:122.592000pt;}
.y2f{bottom:123.232000pt;}
.y9d{bottom:123.392000pt;}
.y116{bottom:123.872000pt;}
.yd3{bottom:127.872000pt;}
.y156{bottom:128.992000pt;}
.y17e{bottom:132.192000pt;}
.y90{bottom:132.832000pt;}
.y13d{bottom:133.152000pt;}
.y8a{bottom:133.466667pt;}
.yfd{bottom:135.066667pt;}
.y5d{bottom:135.386667pt;}
.y185{bottom:135.866667pt;}
.y73{bottom:136.666667pt;}
.y123{bottom:139.386667pt;}
.ye4{bottom:139.706667pt;}
.yb7{bottom:140.986667pt;}
.y2e{bottom:141.626667pt;}
.y9c{bottom:141.786667pt;}
.y115{bottom:142.266667pt;}
.yd2{bottom:146.266667pt;}
.y155{bottom:147.386667pt;}
.y8f{bottom:148.186667pt;}
.y17d{bottom:150.586667pt;}
.y184{bottom:151.226667pt;}
.y13c{bottom:151.546667pt;}
.y89{bottom:151.866667pt;}
.yfc{bottom:153.466667pt;}
.y5c{bottom:153.786667pt;}
.y72{bottom:155.066667pt;}
.y122{bottom:157.786667pt;}
.ye3{bottom:158.106667pt;}
.yb6{bottom:159.386667pt;}
.y2d{bottom:160.026667pt;}
.y9b{bottom:160.186667pt;}
.y114{bottom:160.666667pt;}
.y8e{bottom:163.386667pt;}
.yd1{bottom:164.666667pt;}
.y154{bottom:165.786667pt;}
.y183{bottom:166.586667pt;}
.y17c{bottom:168.986667pt;}
.y13b{bottom:169.946667pt;}
.y88{bottom:170.266667pt;}
.yfb{bottom:171.866667pt;}
.y5b{bottom:172.186667pt;}
.y71{bottom:173.466667pt;}
.y121{bottom:175.546667pt;}
.y167{bottom:176.186667pt;}
.ye2{bottom:176.506667pt;}
.yb5{bottom:177.786667pt;}
.y2c{bottom:178.426667pt;}
.y9a{bottom:178.586667pt;}
.y113{bottom:179.066667pt;}
.y8d{bottom:179.386667pt;}
.y182{bottom:181.786667pt;}
.yd0{bottom:183.066667pt;}
.y153{bottom:184.186667pt;}
.y17b{bottom:187.386667pt;}
.y13a{bottom:188.346667pt;}
.y87{bottom:188.666667pt;}
.yfa{bottom:190.266667pt;}
.y5a{bottom:190.586667pt;}
.y120{bottom:190.906667pt;}
.y70{bottom:191.866667pt;}
.y8c{bottom:194.266667pt;}
.y166{bottom:194.586667pt;}
.ye1{bottom:194.906667pt;}
.yb4{bottom:196.186667pt;}
.y2b{bottom:196.826667pt;}
.y99{bottom:196.986667pt;}
.y112{bottom:197.466667pt;}
.y181{bottom:197.786667pt;}
.ycf{bottom:201.466667pt;}
.y152{bottom:202.586667pt;}
.y17a{bottom:205.786667pt;}
.y11f{bottom:206.266667pt;}
.y139{bottom:206.746667pt;}
.y86{bottom:207.066667pt;}
.yf9{bottom:208.666667pt;}
.y59{bottom:208.986667pt;}
.y6f{bottom:210.266667pt;}
.y180{bottom:212.666667pt;}
.y165{bottom:212.986667pt;}
.ye0{bottom:213.306667pt;}
.yb3{bottom:214.586667pt;}
.y2a{bottom:215.226667pt;}
.y98{bottom:215.386667pt;}
.y111{bottom:215.866667pt;}
.yce{bottom:219.866667pt;}
.y151{bottom:220.986667pt;}
.y11e{bottom:222.266667pt;}
.y179{bottom:224.186667pt;}
.y138{bottom:225.146667pt;}
.y85{bottom:225.466667pt;}
.yf8{bottom:227.066667pt;}
.y58{bottom:227.386667pt;}
.y6e{bottom:228.666667pt;}
.y164{bottom:231.386667pt;}
.ydf{bottom:231.706667pt;}
.yb2{bottom:232.986667pt;}
.y97{bottom:233.146667pt;}
.y29{bottom:233.626667pt;}
.y110{bottom:234.266667pt;}
.y11d{bottom:237.146667pt;}
.ycd{bottom:238.266667pt;}
.y150{bottom:239.386667pt;}
.y178{bottom:242.586667pt;}
.y137{bottom:243.546667pt;}
.y84{bottom:243.866667pt;}
.yf7{bottom:245.466667pt;}
.y57{bottom:245.786667pt;}
.y6d{bottom:247.066667pt;}
.y96{bottom:248.506667pt;}
.y163{bottom:249.786667pt;}
.yde{bottom:250.106667pt;}
.yb1{bottom:251.386667pt;}
.y28{bottom:252.026667pt;}
.y10f{bottom:252.666667pt;}
.ycc{bottom:256.666667pt;}
.y14f{bottom:257.786667pt;}
.y177{bottom:260.986667pt;}
.y136{bottom:261.946667pt;}
.y83{bottom:262.266667pt;}
.y95{bottom:263.706667pt;}
.yf6{bottom:263.866667pt;}
.y56{bottom:264.186667pt;}
.y6c{bottom:265.466667pt;}
.y162{bottom:268.186667pt;}
.ydd{bottom:268.506667pt;}
.yb0{bottom:269.786667pt;}
.y27{bottom:270.426667pt;}
.y10e{bottom:271.066667pt;}
.ycb{bottom:275.066667pt;}
.y14e{bottom:276.186667pt;}
.y176{bottom:279.386667pt;}
.y94{bottom:279.706667pt;}
.y135{bottom:280.346667pt;}
.y82{bottom:280.666667pt;}
.yf5{bottom:281.626667pt;}
.y55{bottom:282.626667pt;}
.y6b{bottom:283.906667pt;}
.y161{bottom:286.626667pt;}
.ydc{bottom:286.946667pt;}
.yaf{bottom:288.226667pt;}
.y26{bottom:288.866667pt;}
.y10d{bottom:289.506667pt;}
.yca{bottom:293.506667pt;}
.y93{bottom:294.626667pt;}
.yf4{bottom:296.866667pt;}
.y175{bottom:297.826667pt;}
.y134{bottom:298.786667pt;}
.y81{bottom:299.106667pt;}
.y54{bottom:301.026667pt;}
.y6a{bottom:302.306667pt;}
.y160{bottom:305.026667pt;}
.ydb{bottom:305.346667pt;}
.yae{bottom:306.626667pt;}
.y25{bottom:307.266667pt;}
.y10c{bottom:307.906667pt;}
.yc9{bottom:311.906667pt;}
.yf3{bottom:312.226667pt;}
.y14d{bottom:313.026667pt;}
.y174{bottom:316.226667pt;}
.yf0{bottom:316.866667pt;}
.y133{bottom:317.186667pt;}
.y80{bottom:317.506667pt;}
.y53{bottom:319.426667pt;}
.y69{bottom:320.706667pt;}
.y15f{bottom:323.426667pt;}
.yda{bottom:323.746667pt;}
.yad{bottom:325.026667pt;}
.y24{bottom:325.666667pt;}
.y10b{bottom:326.306667pt;}
.yf2{bottom:328.226667pt;}
.yc8{bottom:330.306667pt;}
.y14c{bottom:331.426667pt;}
.yef{bottom:332.066667pt;}
.y173{bottom:334.626667pt;}
.yeb{bottom:335.266667pt;}
.y132{bottom:335.586667pt;}
.y7f{bottom:335.906667pt;}
.y52{bottom:337.826667pt;}
.y68{bottom:339.106667pt;}
.y15e{bottom:341.826667pt;}
.yd9{bottom:342.146667pt;}
.yf1{bottom:343.106667pt;}
.yac{bottom:343.426667pt;}
.y23{bottom:344.066667pt;}
.y10a{bottom:344.706667pt;}
.yee{bottom:347.426667pt;}
.yc7{bottom:348.706667pt;}
.y14b{bottom:349.826667pt;}
.yea{bottom:350.466667pt;}
.y172{bottom:352.386667pt;}
.y131{bottom:353.986667pt;}
.y7e{bottom:354.306667pt;}
.y51{bottom:356.226667pt;}
.y67{bottom:357.506667pt;}
.y15d{bottom:360.226667pt;}
.yd8{bottom:360.546667pt;}
.yab{bottom:361.826667pt;}
.y22{bottom:362.466667pt;}
.y109{bottom:363.106667pt;}
.yed{bottom:363.426667pt;}
.ye9{bottom:365.826667pt;}
.yc6{bottom:367.106667pt;}
.y171{bottom:367.586667pt;}
.y14a{bottom:368.226667pt;}
.y130{bottom:372.386667pt;}
.y7d{bottom:372.706667pt;}
.y50{bottom:374.626667pt;}
.y66{bottom:375.906667pt;}
.yec{bottom:378.306667pt;}
.y15c{bottom:378.626667pt;}
.yd7{bottom:378.946667pt;}
.yaa{bottom:380.226667pt;}
.y21{bottom:380.866667pt;}
.y108{bottom:381.506667pt;}
.ye8{bottom:381.826667pt;}
.y170{bottom:382.946667pt;}
.yc5{bottom:384.866667pt;}
.y149{bottom:386.626667pt;}
.y12f{bottom:390.786667pt;}
.y7c{bottom:391.106667pt;}
.y4f{bottom:393.026667pt;}
.ya2{bottom:393.666667pt;}
.y65{bottom:394.306667pt;}
.y15b{bottom:396.386667pt;}
.ye7{bottom:396.706667pt;}
.yd6{bottom:397.346667pt;}
.y16f{bottom:398.306667pt;}
.ya9{bottom:398.626667pt;}
.y20{bottom:399.266667pt;}
.y107{bottom:399.906667pt;}
.yc4{bottom:400.226667pt;}
.y148{bottom:405.026667pt;}
.ya1{bottom:408.866667pt;}
.y12e{bottom:409.186667pt;}
.y7b{bottom:409.506667pt;}
.y4e{bottom:411.426667pt;}
.y15a{bottom:411.746667pt;}
.y64{bottom:412.706667pt;}
.y16e{bottom:414.306667pt;}
.yd5{bottom:415.106667pt;}
.yc3{bottom:415.586667pt;}
.ya8{bottom:416.386667pt;}
.y1f{bottom:417.666667pt;}
.y106{bottom:418.306667pt;}
.y147{bottom:423.426667pt;}
.ya0{bottom:424.226667pt;}
.y16c{bottom:426.946667pt;}
.y159{bottom:427.106667pt;}
.y7a{bottom:427.266667pt;}
.y12d{bottom:427.586667pt;}
.yc1{bottom:427.906667pt;}
.y16d{bottom:429.186667pt;}
.y4d{bottom:429.826667pt;}
.y63{bottom:430.466667pt;}
.yc2{bottom:431.426667pt;}
.ya7{bottom:431.586667pt;}
.y1e{bottom:436.066667pt;}
.y105{bottom:436.706667pt;}
.y9f{bottom:440.226667pt;}
.y146{bottom:441.826667pt;}
.y16b{bottom:442.306667pt;}
.y79{bottom:442.466667pt;}
.y158{bottom:443.106667pt;}
.y62{bottom:445.666667pt;}
.y12c{bottom:445.986667pt;}
.yc0{bottom:446.306667pt;}
.ya6{bottom:446.946667pt;}
.y4c{bottom:448.226667pt;}
.y1d{bottom:454.466667pt;}
.y9e{bottom:455.106667pt;}
.y16a{bottom:457.666667pt;}
.y78{bottom:457.826667pt;}
.y145{bottom:460.226667pt;}
.y61{bottom:461.026667pt;}
.ya5{bottom:462.306667pt;}
.y12b{bottom:464.386667pt;}
.ybf{bottom:464.706667pt;}
.y4b{bottom:466.626667pt;}
.y1c{bottom:472.866667pt;}
.y104{bottom:473.506667pt;}
.y169{bottom:473.666667pt;}
.y77{bottom:473.826667pt;}
.y60{bottom:477.026667pt;}
.ya4{bottom:478.306667pt;}
.y144{bottom:478.626667pt;}
.y12a{bottom:482.146667pt;}
.ybe{bottom:482.466667pt;}
.y11c{bottom:484.386667pt;}
.y4a{bottom:485.026667pt;}
.y168{bottom:488.546667pt;}
.y76{bottom:488.706667pt;}
.y1b{bottom:491.266667pt;}
.y5f{bottom:491.906667pt;}
.ya3{bottom:493.186667pt;}
.y143{bottom:496.386667pt;}
.y129{bottom:497.506667pt;}
.ybd{bottom:497.666667pt;}
.y11b{bottom:499.746667pt;}
.y49{bottom:503.426667pt;}
.y1a{bottom:509.693333pt;}
.y103{bottom:510.333333pt;}
.y142{bottom:511.773333pt;}
.y128{bottom:512.893333pt;}
.ybc{bottom:513.053333pt;}
.y11a{bottom:515.133333pt;}
.y48{bottom:521.853333pt;}
.y141{bottom:527.133333pt;}
.y19{bottom:528.093333pt;}
.y102{bottom:528.733333pt;}
.y127{bottom:528.893333pt;}
.ybb{bottom:529.053333pt;}
.y119{bottom:531.133333pt;}
.y47{bottom:540.253333pt;}
.y140{bottom:543.133333pt;}
.y126{bottom:543.773333pt;}
.yba{bottom:543.933333pt;}
.y118{bottom:545.853333pt;}
.y18{bottom:546.493333pt;}
.y13f{bottom:557.853333pt;}
.y46{bottom:558.653333pt;}
.y101{bottom:561.693333pt;}
.y17{bottom:564.893333pt;}
.y45{bottom:577.053333pt;}
.y16{bottom:583.293333pt;}
.y100{bottom:593.053333pt;}
.y44{bottom:595.453333pt;}
.y15{bottom:601.693333pt;}
.yff{bottom:607.933333pt;}
.y187{bottom:613.533333pt;}
.y43{bottom:613.853333pt;}
.y14{bottom:620.093333pt;}
.y42{bottom:632.253333pt;}
.y13{bottom:638.493333pt;}
.y41{bottom:650.653333pt;}
.y12{bottom:656.733333pt;}
.y40{bottom:669.053333pt;}
.y11{bottom:675.133333pt;}
.y3f{bottom:687.453333pt;}
.y10{bottom:693.533333pt;}
.y3e{bottom:705.853333pt;}
.yf{bottom:711.933333pt;}
.y3d{bottom:724.253333pt;}
.ye{bottom:730.373333pt;}
.y3c{bottom:742.693333pt;}
.yd{bottom:748.773333pt;}
.y3b{bottom:761.093333pt;}
.yc{bottom:767.173333pt;}
.y3a{bottom:779.493333pt;}
.yb{bottom:785.573333pt;}
.y39{bottom:797.893333pt;}
.ya{bottom:803.973333pt;}
.y38{bottom:816.293333pt;}
.y9{bottom:822.373333pt;}
.y37{bottom:834.693333pt;}
.y8{bottom:841.413333pt;}
.y36{bottom:853.093333pt;}
.y7{bottom:862.853333pt;}
.y35{bottom:871.493333pt;}
.y6{bottom:883.813333pt;}
.y34{bottom:889.893333pt;}
.y5{bottom:902.693333pt;}
.y33{bottom:908.293333pt;}
.y4{bottom:923.653333pt;}
.y32{bottom:926.693333pt;}
.y3{bottom:942.533333pt;}
.y31{bottom:945.093333pt;}
.h6{height:52.134375pt;}
.h7{height:57.375000pt;}
.h1{height:58.563750pt;}
.h8{height:62.781250pt;}
.h4{height:62.812500pt;}
.h9{height:63.656250pt;}
.h3{height:64.500000pt;}
.h5{height:73.454062pt;}
.h2{height:75.465000pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.xe{left:97.151988pt;}
.x29{left:99.871988pt;}
.x9{left:104.031988pt;}
.x2a{left:105.631988pt;}
.x1f{left:114.111988pt;}
.x15{left:115.231988pt;}
.x2e{left:117.311988pt;}
.x1c{left:120.031988pt;}
.x24{left:125.631988pt;}
.x1b{left:127.711988pt;}
.xc{left:142.586655pt;}
.x2d{left:146.746655pt;}
.x2c{left:160.986655pt;}
.x3{left:165.466655pt;}
.x18{left:169.466655pt;}
.x21{left:172.986655pt;}
.x27{left:176.026655pt;}
.x30{left:180.506655pt;}
.x22{left:191.066655pt;}
.x26{left:193.946655pt;}
.x12{left:197.146655pt;}
.xa{left:258.786655pt;}
.xd{left:269.826655pt;}
.x5{left:270.786655pt;}
.x17{left:272.066655pt;}
.x10{left:276.546655pt;}
.x20{left:278.466655pt;}
.x23{left:281.666655pt;}
.x11{left:282.786655pt;}
.x28{left:285.026655pt;}
.x13{left:287.266655pt;}
.x1e{left:288.386655pt;}
.x19{left:291.746655pt;}
.x2b{left:292.866655pt;}
.x31{left:294.626655pt;}
.x25{left:299.426655pt;}
.x7{left:317.826655pt;}
.xb{left:333.986655pt;}
.x2f{left:335.106655pt;}
.x6{left:347.106655pt;}
.x1d{left:374.626655pt;}
.x16{left:382.786655pt;}
.xf{left:387.266655pt;}
.x4{left:408.066655pt;}
.x14{left:524.093321pt;}
.x1{left:531.613321pt;}
.x1a{left:714.053321pt;}
.x8{left:720.133321pt;}
}




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