
    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_ebd6491ec019670900806f01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_42051c22d2fbf23180c1440a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.923340;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_9a8b2d87f2f0fbeca868932a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_415a76b0befc549a0b29a17f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_93492a8653dce42d841134af.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_08a8477382d7b585c06fd8b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.ls12{letter-spacing:0.306720px;}
.ls7{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.900000px;}
.ls10{letter-spacing:8.586720px;}
.lsc{letter-spacing:10.746720px;}
.ls11{letter-spacing:19.362720px;}
.ls8{letter-spacing:20.826720px;}
.ls1{letter-spacing:30.186720px;}
.lsf{letter-spacing:64.026720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws4{word-spacing:-54.000000px;}
.ws7{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.ws6{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.733600px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.284000px;}
.ws2{word-spacing:-12.060000px;}
.ws8{word-spacing:0.000000px;}
._1f{margin-left:-4.718160px;}
._17{margin-left:-3.596400px;}
._3{margin-left:-2.273760px;}
._1{margin-left:-1.013040px;}
._0{width:1.152000px;}
._13{width:2.243280px;}
._15{width:3.449520px;}
._16{width:4.574880px;}
._8{width:5.736960px;}
._7{width:7.171200px;}
._6{width:8.665200px;}
._18{width:10.205280px;}
._1b{width:11.491200px;}
._19{width:12.905280px;}
._1a{width:13.926960px;}
._b{width:16.374240px;}
._5{width:17.987760px;}
._4{width:19.003680px;}
._1c{width:20.136240px;}
._1d{width:21.853200px;}
._10{width:23.007600px;}
._20{width:24.075360px;}
._12{width:25.577280px;}
._11{width:27.011520px;}
._1e{width:28.107360px;}
._14{width:29.146320px;}
._f{width:31.075200px;}
._e{width:32.091120px;}
._d{width:33.747840px;}
._c{width:34.763760px;}
._26{width:36.078480px;}
._27{width:37.144080px;}
._28{width:39.066480px;}
._29{width:40.381200px;}
._2e{width:41.815440px;}
._2d{width:43.758000px;}
._2b{width:44.982720px;}
._37{width:46.344480px;}
._3b{width:47.457120px;}
._9{width:48.508560px;}
._a{width:49.717200px;}
._23{width:50.719680px;}
._32{width:51.735600px;}
._2a{width:54.126000px;}
._2f{width:55.158480px;}
._2c{width:68.826960px;}
._22{width:70.994880px;}
._21{width:72.309600px;}
._38{width:77.883840px;}
._24{width:99.251280px;}
._25{width:100.314000px;}
._30{width:107.739840px;}
._36{width:149.815440px;}
._35{width:151.312320px;}
._39{width:162.367920px;}
._3a{width:164.103840px;}
._33{width:207.725760px;}
._34{width:209.200080px;}
._31{width:304.102080px;}
._2{width:1153.920000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y157{bottom:3.240000px;}
.y15f{bottom:11.880000px;}
.y156{bottom:20.520000px;}
.y15e{bottom:20.550000px;}
.y1{bottom:56.340000px;}
.y5e{bottom:57.060000px;}
.y5d{bottom:74.376000px;}
.y96{bottom:121.536000px;}
.y15b{bottom:122.076000px;}
.y171{bottom:123.696000px;}
.y36{bottom:125.316000px;}
.yfa{bottom:126.216000px;}
.y125{bottom:126.756000px;}
.ycf{bottom:126.936000px;}
.y18a{bottom:134.316000px;}
.y95{bottom:138.816000px;}
.y15a{bottom:140.076000px;}
.y170{bottom:140.976000px;}
.y35{bottom:141.876000px;}
.y5c{bottom:143.496000px;}
.y124{bottom:143.856000px;}
.yce{bottom:144.216000px;}
.y104{bottom:147.816000px;}
.y189{bottom:151.410000px;}
.y94{bottom:156.090000px;}
.y159{bottom:158.070000px;}
.y34{bottom:158.250000px;}
.y5b{bottom:159.870000px;}
.yf9{bottom:160.590000px;}
.y123{bottom:161.130000px;}
.ycd{bottom:161.490000px;}
.y103{bottom:165.090000px;}
.y188{bottom:168.690000px;}
.y16f{bottom:172.290000px;}
.y93{bottom:173.370000px;}
.y33{bottom:174.630000px;}
.y158{bottom:176.070000px;}
.y5a{bottom:176.250000px;}
.yf8{bottom:177.870000px;}
.y122{bottom:178.410000px;}
.ycc{bottom:178.590000px;}
.y102{bottom:182.370000px;}
.y187{bottom:185.970000px;}
.y92{bottom:190.650000px;}
.y32{bottom:191.010000px;}
.y59{bottom:192.630000px;}
.y155{bottom:194.070000px;}
.yf7{bottom:195.150000px;}
.y121{bottom:195.690000px;}
.ycb{bottom:195.870000px;}
.y101{bottom:199.650000px;}
.y186{bottom:203.250000px;}
.y31{bottom:207.390000px;}
.y91{bottom:207.750000px;}
.y58{bottom:209.010000px;}
.yf6{bottom:212.430000px;}
.y120{bottom:212.970000px;}
.yca{bottom:213.150000px;}
.y100{bottom:216.750000px;}
.y185{bottom:220.530000px;}
.y90{bottom:225.030000px;}
.y57{bottom:225.390000px;}
.yf5{bottom:229.710000px;}
.y11f{bottom:230.250000px;}
.yc9{bottom:230.430000px;}
.y154{bottom:232.590000px;}
.y30{bottom:232.770000px;}
.yff{bottom:234.030000px;}
.y184{bottom:237.810000px;}
.y56{bottom:241.770000px;}
.y8f{bottom:242.310000px;}
.yf4{bottom:246.990000px;}
.y11e{bottom:247.350000px;}
.yc8{bottom:247.710000px;}
.y2f{bottom:249.150000px;}
.y153{bottom:249.870000px;}
.yfe{bottom:251.310000px;}
.y183{bottom:254.910000px;}
.y8e{bottom:259.590000px;}
.yf3{bottom:264.090000px;}
.y11d{bottom:264.630000px;}
.yc7{bottom:264.990000px;}
.y2e{bottom:265.530000px;}
.y152{bottom:266.970000px;}
.y55{bottom:267.150000px;}
.yfd{bottom:268.590000px;}
.y182{bottom:272.190000px;}
.y8d{bottom:276.870000px;}
.yf2{bottom:281.370000px;}
.y2d{bottom:281.910000px;}
.yc6{bottom:282.090000px;}
.y54{bottom:283.530000px;}
.y151{bottom:284.250000px;}
.yfc{bottom:285.870000px;}
.y18c{bottom:287.310000px;}
.y181{bottom:289.470000px;}
.y8c{bottom:294.150000px;}
.y2c{bottom:298.290000px;}
.yf1{bottom:298.650000px;}
.y11c{bottom:299.190000px;}
.yc5{bottom:299.370000px;}
.y150{bottom:301.530000px;}
.yfb{bottom:302.970000px;}
.y180{bottom:306.750000px;}
.y53{bottom:308.910000px;}
.y8b{bottom:311.250000px;}
.y2b{bottom:314.670000px;}
.yf0{bottom:315.930000px;}
.y11b{bottom:316.470000px;}
.yc4{bottom:316.650000px;}
.y14f{bottom:318.855000px;}
.y17f{bottom:324.075000px;}
.y52{bottom:325.335000px;}
.y8a{bottom:328.575000px;}
.y2a{bottom:331.095000px;}
.yef{bottom:333.255000px;}
.y11a{bottom:333.615000px;}
.yc3{bottom:333.975000px;}
.y14e{bottom:336.135000px;}
.y17e{bottom:341.355000px;}
.y51{bottom:341.715000px;}
.y89{bottom:345.855000px;}
.y29{bottom:347.475000px;}
.y14d{bottom:349.995000px;}
.yee{bottom:350.535000px;}
.y119{bottom:350.895000px;}
.yc2{bottom:351.255000px;}
.y50{bottom:358.095000px;}
.y17d{bottom:358.455000px;}
.y88{bottom:363.135000px;}
.yed{bottom:367.635000px;}
.y118{bottom:368.175000px;}
.yc1{bottom:368.535000px;}
.y28{bottom:369.975000px;}
.y4f{bottom:374.655000px;}
.y17c{bottom:375.735000px;}
.y147{bottom:379.515000px;}
.y87{bottom:380.415000px;}
.yec{bottom:384.915000px;}
.y117{bottom:385.455000px;}
.yc0{bottom:385.635000px;}
.y4e{bottom:391.035000px;}
.y17b{bottom:393.015000px;}
.y146{bottom:396.795000px;}
.y86{bottom:397.695000px;}
.y27{bottom:398.955000px;}
.yeb{bottom:402.195000px;}
.y116{bottom:402.735000px;}
.ybf{bottom:402.915000px;}
.y4d{bottom:407.415000px;}
.y18b{bottom:408.135000px;}
.y17a{bottom:410.295000px;}
.y145{bottom:414.075000px;}
.y26{bottom:414.435000px;}
.y85{bottom:414.795000px;}
.yea{bottom:419.475000px;}
.y115{bottom:420.015000px;}
.ybe{bottom:420.195000px;}
.y4c{bottom:423.795000px;}
.y179{bottom:427.575000px;}
.y144{bottom:431.355000px;}
.y84{bottom:432.075000px;}
.ye9{bottom:436.755000px;}
.y114{bottom:437.115000px;}
.ybd{bottom:437.475000px;}
.y25{bottom:439.275000px;}
.y16e{bottom:439.635000px;}
.y4b{bottom:440.175000px;}
.y178{bottom:444.855000px;}
.y143{bottom:448.635000px;}
.y83{bottom:449.355000px;}
.ye8{bottom:453.855000px;}
.y113{bottom:454.395000px;}
.ybc{bottom:454.755000px;}
.y24{bottom:456.555000px;}
.y16d{bottom:456.915000px;}
.y177{bottom:461.955000px;}
.y142{bottom:465.735000px;}
.y82{bottom:466.635000px;}
.ye7{bottom:471.135000px;}
.y112{bottom:471.675000px;}
.ybb{bottom:471.855000px;}
.y4a{bottom:472.935000px;}
.y23{bottom:473.835000px;}
.y16c{bottom:474.195000px;}
.y176{bottom:479.235000px;}
.y141{bottom:483.015000px;}
.y81{bottom:483.915000px;}
.ye6{bottom:488.415000px;}
.y111{bottom:488.955000px;}
.yba{bottom:489.135000px;}
.y49{bottom:489.315000px;}
.y22{bottom:491.115000px;}
.y16b{bottom:491.475000px;}
.y175{bottom:496.515000px;}
.y80{bottom:501.195000px;}
.y48{bottom:505.695000px;}
.y110{bottom:506.235000px;}
.yb9{bottom:506.415000px;}
.y21{bottom:508.395000px;}
.y16a{bottom:508.575000px;}
.y174{bottom:513.795000px;}
.y7f{bottom:518.295000px;}
.y47{bottom:522.075000px;}
.ye5{bottom:522.975000px;}
.y10f{bottom:523.515000px;}
.yb8{bottom:523.695000px;}
.y20{bottom:525.495000px;}
.y169{bottom:525.855000px;}
.y173{bottom:531.075000px;}
.y7e{bottom:535.575000px;}
.ye4{bottom:540.255000px;}
.y10e{bottom:540.615000px;}
.yb7{bottom:540.975000px;}
.y1f{bottom:542.775000px;}
.y168{bottom:543.135000px;}
.y46{bottom:547.455000px;}
.y172{bottom:548.175000px;}
.y7d{bottom:552.855000px;}
.ye3{bottom:557.355000px;}
.y10d{bottom:557.895000px;}
.yb6{bottom:558.255000px;}
.y1e{bottom:560.055000px;}
.y167{bottom:560.415000px;}
.y45{bottom:563.835000px;}
.y7c{bottom:570.165000px;}
.y166{bottom:574.485000px;}
.ye2{bottom:574.665000px;}
.y10c{bottom:575.205000px;}
.yb5{bottom:575.385000px;}
.y1d{bottom:577.365000px;}
.y44{bottom:580.245000px;}
.y140{bottom:587.265000px;}
.y7b{bottom:587.445000px;}
.ye1{bottom:591.945000px;}
.y10b{bottom:592.485000px;}
.yb4{bottom:592.665000px;}
.y1c{bottom:594.645000px;}
.y43{bottom:596.625000px;}
.y7a{bottom:604.545000px;}
.ye0{bottom:609.225000px;}
.y10a{bottom:609.765000px;}
.yb3{bottom:609.945000px;}
.y1b{bottom:611.745000px;}
.y42{bottom:613.005000px;}
.y13f{bottom:621.825000px;}
.ydf{bottom:626.505000px;}
.y109{bottom:626.865000px;}
.yb2{bottom:627.225000px;}
.y79{bottom:627.765000px;}
.y1a{bottom:629.025000px;}
.y41{bottom:629.385000px;}
.y13e{bottom:639.105000px;}
.yde{bottom:643.785000px;}
.y108{bottom:644.145000px;}
.yb1{bottom:644.505000px;}
.y40{bottom:645.765000px;}
.y19{bottom:646.305000px;}
.y13d{bottom:656.385000px;}
.y78{bottom:656.925000px;}
.ydd{bottom:660.885000px;}
.y107{bottom:661.425000px;}
.y14c{bottom:661.605000px;}
.yb0{bottom:661.785000px;}
.y3f{bottom:662.145000px;}
.y18{bottom:663.585000px;}
.y77{bottom:673.305000px;}
.y13c{bottom:673.485000px;}
.ydc{bottom:678.165000px;}
.y3e{bottom:678.525000px;}
.y106{bottom:678.705000px;}
.yaf{bottom:678.885000px;}
.y17{bottom:680.865000px;}
.y76{bottom:689.685000px;}
.y13b{bottom:690.765000px;}
.y3d{bottom:694.905000px;}
.ydb{bottom:695.445000px;}
.y105{bottom:695.985000px;}
.yae{bottom:696.165000px;}
.y16{bottom:698.145000px;}
.y75{bottom:706.065000px;}
.y13a{bottom:708.045000px;}
.y3c{bottom:711.285000px;}
.yda{bottom:712.725000px;}
.y14b{bottom:713.265000px;}
.yad{bottom:713.445000px;}
.y15{bottom:715.245000px;}
.y74{bottom:722.445000px;}
.y139{bottom:725.325000px;}
.y3b{bottom:727.665000px;}
.yd9{bottom:730.005000px;}
.y14a{bottom:730.545000px;}
.yac{bottom:730.725000px;}
.y14{bottom:732.525000px;}
.y73{bottom:738.825000px;}
.y138{bottom:742.605000px;}
.y3a{bottom:744.045000px;}
.yd8{bottom:747.105000px;}
.y149{bottom:747.825000px;}
.yab{bottom:748.005000px;}
.y13{bottom:749.805000px;}
.y72{bottom:755.205000px;}
.y137{bottom:759.885000px;}
.y39{bottom:760.425000px;}
.yd7{bottom:764.385000px;}
.yaa{bottom:765.105000px;}
.y12{bottom:767.085000px;}
.y71{bottom:771.585000px;}
.y136{bottom:776.985000px;}
.yd6{bottom:781.665000px;}
.ya9{bottom:782.385000px;}
.y11{bottom:784.365000px;}
.y38{bottom:785.805000px;}
.y135{bottom:794.265000px;}
.y148{bottom:796.425000px;}
.y70{bottom:796.965000px;}
.yd5{bottom:798.945000px;}
.ya8{bottom:799.665000px;}
.y10{bottom:801.645000px;}
.y37{bottom:802.185000px;}
.y134{bottom:811.545000px;}
.y6f{bottom:813.345000px;}
.yd4{bottom:816.225000px;}
.ya7{bottom:816.945000px;}
.yf{bottom:818.565000px;}
.y133{bottom:828.870000px;}
.y6e{bottom:829.770000px;}
.yd3{bottom:833.550000px;}
.yd{bottom:833.730000px;}
.ya6{bottom:834.270000px;}
.y132{bottom:846.150000px;}
.y6d{bottom:846.330000px;}
.yc{bottom:847.950000px;}
.ye{bottom:849.210000px;}
.yd2{bottom:850.650000px;}
.ya5{bottom:851.550000px;}
.y6c{bottom:862.710000px;}
.yb{bottom:863.430000px;}
.yd1{bottom:867.930000px;}
.ya4{bottom:868.650000px;}
.ya{bottom:878.910000px;}
.y6b{bottom:879.090000px;}
.y131{bottom:880.530000px;}
.ya3{bottom:885.930000px;}
.yd0{bottom:891.150000px;}
.y9{bottom:894.390000px;}
.y6a{bottom:895.470000px;}
.y130{bottom:897.810000px;}
.ya2{bottom:903.210000px;}
.y18d{bottom:904.470000px;}
.y12f{bottom:915.090000px;}
.ya1{bottom:920.490000px;}
.y69{bottom:920.850000px;}
.y8{bottom:928.410000px;}
.y12e{bottom:933.450000px;}
.y165{bottom:935.430000px;}
.y68{bottom:937.230000px;}
.ya0{bottom:937.770000px;}
.y7{bottom:944.070000px;}
.y12d{bottom:950.730000px;}
.y164{bottom:952.710000px;}
.y67{bottom:953.610000px;}
.y9f{bottom:955.050000px;}
.y6{bottom:959.550000px;}
.y12c{bottom:967.830000px;}
.y66{bottom:969.990000px;}
.y9e{bottom:972.150000px;}
.y5{bottom:975.030000px;}
.y12b{bottom:986.190000px;}
.y65{bottom:986.370000px;}
.y163{bottom:987.270000px;}
.y9d{bottom:989.430000px;}
.y4{bottom:990.510000px;}
.y12a{bottom:1003.470000px;}
.y162{bottom:1004.550000px;}
.y9c{bottom:1006.710000px;}
.y64{bottom:1011.750000px;}
.y161{bottom:1021.650000px;}
.y129{bottom:1021.830000px;}
.y9b{bottom:1023.990000px;}
.y63{bottom:1028.130000px;}
.y3{bottom:1031.910000px;}
.y160{bottom:1038.930000px;}
.y128{bottom:1039.110000px;}
.y9a{bottom:1041.270000px;}
.y62{bottom:1044.510000px;}
.y15d{bottom:1053.690000px;}
.y127{bottom:1057.470000px;}
.y99{bottom:1058.550000px;}
.y61{bottom:1060.890000px;}
.y2{bottom:1073.340000px;}
.y126{bottom:1074.600000px;}
.y98{bottom:1075.680000px;}
.y60{bottom:1077.300000px;}
.y15c{bottom:1089.000000px;}
.y97{bottom:1092.960000px;}
.y5f{bottom:1093.680000px;}
.ha{height:17.280000px;}
.h1{height:33.683203px;}
.h9{height:34.560000px;}
.hb{height:34.596000px;}
.hd{height:36.571289px;}
.h3{height:37.705078px;}
.h4{height:38.206055px;}
.h5{height:40.472227px;}
.h7{height:40.684570px;}
.h6{height:41.726953px;}
.hc{height:42.281367px;}
.h8{height:43.506914px;}
.h2{height:100.546875px;}
.h0{height:1188.000000px;}
.w5{width:61.200000px;}
.w4{width:64.656000px;}
.w6{width:72.720000px;}
.w3{width:80.100000px;}
.w2{width:94.536000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x29{left:7.770000px;}
.x1{left:66.959986px;}
.x5{left:68.579986px;}
.x2{left:87.839986px;}
.x1d{left:89.639986px;}
.x7{left:91.115986px;}
.x25{left:95.075986px;}
.x4{left:96.875986px;}
.x15{left:104.615986px;}
.x6{left:109.295986px;}
.x14{left:111.455986px;}
.x38{left:116.135986px;}
.x23{left:122.075986px;}
.x34{left:132.335986px;}
.x21{left:137.375986px;}
.x16{left:158.789986px;}
.x2e{left:164.010000px;}
.x1c{left:198.569986px;}
.x26{left:206.489986px;}
.x2f{left:244.830000px;}
.x9{left:266.969986px;}
.x18{left:268.589986px;}
.x8{left:290.234986px;}
.xb{left:292.754986px;}
.x17{left:306.974986px;}
.xa{left:309.314986px;}
.x30{left:372.135000px;}
.x3{left:389.594986px;}
.x31{left:408.674986px;}
.x32{left:410.654986px;}
.x1f{left:455.294986px;}
.x20{left:459.074986px;}
.xd{left:468.794986px;}
.x1e{left:472.574986px;}
.x1b{left:474.374986px;}
.xc{left:486.284986px;}
.x19{left:493.844986px;}
.x1a{left:507.884986px;}
.xe{left:509.504986px;}
.x37{left:520.664986px;}
.x24{left:526.604986px;}
.x33{left:535.064986px;}
.xf{left:559.004986px;}
.x2a{left:568.545000px;}
.x35{left:581.684986px;}
.x22{left:607.604986px;}
.x36{left:622.544986px;}
.x2b{left:649.365000px;}
.x13{left:671.324986px;}
.x11{left:692.069986px;}
.x10{left:702.689986px;}
.x12{left:709.529986px;}
.x2c{left:714.750000px;}
.x2d{left:776.670000px;}
.x28{left:816.809986px;}
.x27{left:819.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls12{letter-spacing:0.272640pt;}
.ls7{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls10{letter-spacing:7.632640pt;}
.lsc{letter-spacing:9.552640pt;}
.ls11{letter-spacing:17.211307pt;}
.ls8{letter-spacing:18.512640pt;}
.ls1{letter-spacing:26.832640pt;}
.lsf{letter-spacing:56.912640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws4{word-spacing:-48.000000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.wsc{word-spacing:-13.096533pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.808000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws8{word-spacing:0.000000pt;}
._1f{margin-left:-4.193920pt;}
._17{margin-left:-3.196800pt;}
._3{margin-left:-2.021120pt;}
._1{margin-left:-0.900480pt;}
._0{width:1.024000pt;}
._13{width:1.994027pt;}
._15{width:3.066240pt;}
._16{width:4.066560pt;}
._8{width:5.099520pt;}
._7{width:6.374400pt;}
._6{width:7.702400pt;}
._18{width:9.071360pt;}
._1b{width:10.214400pt;}
._19{width:11.471360pt;}
._1a{width:12.379520pt;}
._b{width:14.554880pt;}
._5{width:15.989120pt;}
._4{width:16.892160pt;}
._1c{width:17.898880pt;}
._1d{width:19.425067pt;}
._10{width:20.451200pt;}
._20{width:21.400320pt;}
._12{width:22.735360pt;}
._11{width:24.010240pt;}
._1e{width:24.984320pt;}
._14{width:25.907840pt;}
._f{width:27.622400pt;}
._e{width:28.525440pt;}
._d{width:29.998080pt;}
._c{width:30.901120pt;}
._26{width:32.069760pt;}
._27{width:33.016960pt;}
._28{width:34.725760pt;}
._29{width:35.894400pt;}
._2e{width:37.169280pt;}
._2d{width:38.896000pt;}
._2b{width:39.984640pt;}
._37{width:41.195093pt;}
._3b{width:42.184107pt;}
._9{width:43.118720pt;}
._a{width:44.193067pt;}
._23{width:45.084160pt;}
._32{width:45.987200pt;}
._2a{width:48.112000pt;}
._2f{width:49.029760pt;}
._2c{width:61.179520pt;}
._22{width:63.106560pt;}
._21{width:64.275200pt;}
._38{width:69.230080pt;}
._24{width:88.223360pt;}
._25{width:89.168000pt;}
._30{width:95.768747pt;}
._36{width:133.169280pt;}
._35{width:134.499840pt;}
._39{width:144.327040pt;}
._3a{width:145.870080pt;}
._33{width:184.645120pt;}
._34{width:185.955627pt;}
._31{width:270.312960pt;}
._2{width:1025.706667pt;}
.fs0{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y157{bottom:2.880000pt;}
.y15f{bottom:10.560000pt;}
.y156{bottom:18.240000pt;}
.y15e{bottom:18.266667pt;}
.y1{bottom:50.080000pt;}
.y5e{bottom:50.720000pt;}
.y5d{bottom:66.112000pt;}
.y96{bottom:108.032000pt;}
.y15b{bottom:108.512000pt;}
.y171{bottom:109.952000pt;}
.y36{bottom:111.392000pt;}
.yfa{bottom:112.192000pt;}
.y125{bottom:112.672000pt;}
.ycf{bottom:112.832000pt;}
.y18a{bottom:119.392000pt;}
.y95{bottom:123.392000pt;}
.y15a{bottom:124.512000pt;}
.y170{bottom:125.312000pt;}
.y35{bottom:126.112000pt;}
.y5c{bottom:127.552000pt;}
.y124{bottom:127.872000pt;}
.yce{bottom:128.192000pt;}
.y104{bottom:131.392000pt;}
.y189{bottom:134.586667pt;}
.y94{bottom:138.746667pt;}
.y159{bottom:140.506667pt;}
.y34{bottom:140.666667pt;}
.y5b{bottom:142.106667pt;}
.yf9{bottom:142.746667pt;}
.y123{bottom:143.226667pt;}
.ycd{bottom:143.546667pt;}
.y103{bottom:146.746667pt;}
.y188{bottom:149.946667pt;}
.y16f{bottom:153.146667pt;}
.y93{bottom:154.106667pt;}
.y33{bottom:155.226667pt;}
.y158{bottom:156.506667pt;}
.y5a{bottom:156.666667pt;}
.yf8{bottom:158.106667pt;}
.y122{bottom:158.586667pt;}
.ycc{bottom:158.746667pt;}
.y102{bottom:162.106667pt;}
.y187{bottom:165.306667pt;}
.y92{bottom:169.466667pt;}
.y32{bottom:169.786667pt;}
.y59{bottom:171.226667pt;}
.y155{bottom:172.506667pt;}
.yf7{bottom:173.466667pt;}
.y121{bottom:173.946667pt;}
.ycb{bottom:174.106667pt;}
.y101{bottom:177.466667pt;}
.y186{bottom:180.666667pt;}
.y31{bottom:184.346667pt;}
.y91{bottom:184.666667pt;}
.y58{bottom:185.786667pt;}
.yf6{bottom:188.826667pt;}
.y120{bottom:189.306667pt;}
.yca{bottom:189.466667pt;}
.y100{bottom:192.666667pt;}
.y185{bottom:196.026667pt;}
.y90{bottom:200.026667pt;}
.y57{bottom:200.346667pt;}
.yf5{bottom:204.186667pt;}
.y11f{bottom:204.666667pt;}
.yc9{bottom:204.826667pt;}
.y154{bottom:206.746667pt;}
.y30{bottom:206.906667pt;}
.yff{bottom:208.026667pt;}
.y184{bottom:211.386667pt;}
.y56{bottom:214.906667pt;}
.y8f{bottom:215.386667pt;}
.yf4{bottom:219.546667pt;}
.y11e{bottom:219.866667pt;}
.yc8{bottom:220.186667pt;}
.y2f{bottom:221.466667pt;}
.y153{bottom:222.106667pt;}
.yfe{bottom:223.386667pt;}
.y183{bottom:226.586667pt;}
.y8e{bottom:230.746667pt;}
.yf3{bottom:234.746667pt;}
.y11d{bottom:235.226667pt;}
.yc7{bottom:235.546667pt;}
.y2e{bottom:236.026667pt;}
.y152{bottom:237.306667pt;}
.y55{bottom:237.466667pt;}
.yfd{bottom:238.746667pt;}
.y182{bottom:241.946667pt;}
.y8d{bottom:246.106667pt;}
.yf2{bottom:250.106667pt;}
.y2d{bottom:250.586667pt;}
.yc6{bottom:250.746667pt;}
.y54{bottom:252.026667pt;}
.y151{bottom:252.666667pt;}
.yfc{bottom:254.106667pt;}
.y18c{bottom:255.386667pt;}
.y181{bottom:257.306667pt;}
.y8c{bottom:261.466667pt;}
.y2c{bottom:265.146667pt;}
.yf1{bottom:265.466667pt;}
.y11c{bottom:265.946667pt;}
.yc5{bottom:266.106667pt;}
.y150{bottom:268.026667pt;}
.yfb{bottom:269.306667pt;}
.y180{bottom:272.666667pt;}
.y53{bottom:274.586667pt;}
.y8b{bottom:276.666667pt;}
.y2b{bottom:279.706667pt;}
.yf0{bottom:280.826667pt;}
.y11b{bottom:281.306667pt;}
.yc4{bottom:281.466667pt;}
.y14f{bottom:283.426667pt;}
.y17f{bottom:288.066667pt;}
.y52{bottom:289.186667pt;}
.y8a{bottom:292.066667pt;}
.y2a{bottom:294.306667pt;}
.yef{bottom:296.226667pt;}
.y11a{bottom:296.546667pt;}
.yc3{bottom:296.866667pt;}
.y14e{bottom:298.786667pt;}
.y17e{bottom:303.426667pt;}
.y51{bottom:303.746667pt;}
.y89{bottom:307.426667pt;}
.y29{bottom:308.866667pt;}
.y14d{bottom:311.106667pt;}
.yee{bottom:311.586667pt;}
.y119{bottom:311.906667pt;}
.yc2{bottom:312.226667pt;}
.y50{bottom:318.306667pt;}
.y17d{bottom:318.626667pt;}
.y88{bottom:322.786667pt;}
.yed{bottom:326.786667pt;}
.y118{bottom:327.266667pt;}
.yc1{bottom:327.586667pt;}
.y28{bottom:328.866667pt;}
.y4f{bottom:333.026667pt;}
.y17c{bottom:333.986667pt;}
.y147{bottom:337.346667pt;}
.y87{bottom:338.146667pt;}
.yec{bottom:342.146667pt;}
.y117{bottom:342.626667pt;}
.yc0{bottom:342.786667pt;}
.y4e{bottom:347.586667pt;}
.y17b{bottom:349.346667pt;}
.y146{bottom:352.706667pt;}
.y86{bottom:353.506667pt;}
.y27{bottom:354.626667pt;}
.yeb{bottom:357.506667pt;}
.y116{bottom:357.986667pt;}
.ybf{bottom:358.146667pt;}
.y4d{bottom:362.146667pt;}
.y18b{bottom:362.786667pt;}
.y17a{bottom:364.706667pt;}
.y145{bottom:368.066667pt;}
.y26{bottom:368.386667pt;}
.y85{bottom:368.706667pt;}
.yea{bottom:372.866667pt;}
.y115{bottom:373.346667pt;}
.ybe{bottom:373.506667pt;}
.y4c{bottom:376.706667pt;}
.y179{bottom:380.066667pt;}
.y144{bottom:383.426667pt;}
.y84{bottom:384.066667pt;}
.ye9{bottom:388.226667pt;}
.y114{bottom:388.546667pt;}
.ybd{bottom:388.866667pt;}
.y25{bottom:390.466667pt;}
.y16e{bottom:390.786667pt;}
.y4b{bottom:391.266667pt;}
.y178{bottom:395.426667pt;}
.y143{bottom:398.786667pt;}
.y83{bottom:399.426667pt;}
.ye8{bottom:403.426667pt;}
.y113{bottom:403.906667pt;}
.ybc{bottom:404.226667pt;}
.y24{bottom:405.826667pt;}
.y16d{bottom:406.146667pt;}
.y177{bottom:410.626667pt;}
.y142{bottom:413.986667pt;}
.y82{bottom:414.786667pt;}
.ye7{bottom:418.786667pt;}
.y112{bottom:419.266667pt;}
.ybb{bottom:419.426667pt;}
.y4a{bottom:420.386667pt;}
.y23{bottom:421.186667pt;}
.y16c{bottom:421.506667pt;}
.y176{bottom:425.986667pt;}
.y141{bottom:429.346667pt;}
.y81{bottom:430.146667pt;}
.ye6{bottom:434.146667pt;}
.y111{bottom:434.626667pt;}
.yba{bottom:434.786667pt;}
.y49{bottom:434.946667pt;}
.y22{bottom:436.546667pt;}
.y16b{bottom:436.866667pt;}
.y175{bottom:441.346667pt;}
.y80{bottom:445.506667pt;}
.y48{bottom:449.506667pt;}
.y110{bottom:449.986667pt;}
.yb9{bottom:450.146667pt;}
.y21{bottom:451.906667pt;}
.y16a{bottom:452.066667pt;}
.y174{bottom:456.706667pt;}
.y7f{bottom:460.706667pt;}
.y47{bottom:464.066667pt;}
.ye5{bottom:464.866667pt;}
.y10f{bottom:465.346667pt;}
.yb8{bottom:465.506667pt;}
.y20{bottom:467.106667pt;}
.y169{bottom:467.426667pt;}
.y173{bottom:472.066667pt;}
.y7e{bottom:476.066667pt;}
.ye4{bottom:480.226667pt;}
.y10e{bottom:480.546667pt;}
.yb7{bottom:480.866667pt;}
.y1f{bottom:482.466667pt;}
.y168{bottom:482.786667pt;}
.y46{bottom:486.626667pt;}
.y172{bottom:487.266667pt;}
.y7d{bottom:491.426667pt;}
.ye3{bottom:495.426667pt;}
.y10d{bottom:495.906667pt;}
.yb6{bottom:496.226667pt;}
.y1e{bottom:497.826667pt;}
.y167{bottom:498.146667pt;}
.y45{bottom:501.186667pt;}
.y7c{bottom:506.813333pt;}
.y166{bottom:510.653333pt;}
.ye2{bottom:510.813333pt;}
.y10c{bottom:511.293333pt;}
.yb5{bottom:511.453333pt;}
.y1d{bottom:513.213333pt;}
.y44{bottom:515.773333pt;}
.y140{bottom:522.013333pt;}
.y7b{bottom:522.173333pt;}
.ye1{bottom:526.173333pt;}
.y10b{bottom:526.653333pt;}
.yb4{bottom:526.813333pt;}
.y1c{bottom:528.573333pt;}
.y43{bottom:530.333333pt;}
.y7a{bottom:537.373333pt;}
.ye0{bottom:541.533333pt;}
.y10a{bottom:542.013333pt;}
.yb3{bottom:542.173333pt;}
.y1b{bottom:543.773333pt;}
.y42{bottom:544.893333pt;}
.y13f{bottom:552.733333pt;}
.ydf{bottom:556.893333pt;}
.y109{bottom:557.213333pt;}
.yb2{bottom:557.533333pt;}
.y79{bottom:558.013333pt;}
.y1a{bottom:559.133333pt;}
.y41{bottom:559.453333pt;}
.y13e{bottom:568.093333pt;}
.yde{bottom:572.253333pt;}
.y108{bottom:572.573333pt;}
.yb1{bottom:572.893333pt;}
.y40{bottom:574.013333pt;}
.y19{bottom:574.493333pt;}
.y13d{bottom:583.453333pt;}
.y78{bottom:583.933333pt;}
.ydd{bottom:587.453333pt;}
.y107{bottom:587.933333pt;}
.y14c{bottom:588.093333pt;}
.yb0{bottom:588.253333pt;}
.y3f{bottom:588.573333pt;}
.y18{bottom:589.853333pt;}
.y77{bottom:598.493333pt;}
.y13c{bottom:598.653333pt;}
.ydc{bottom:602.813333pt;}
.y3e{bottom:603.133333pt;}
.y106{bottom:603.293333pt;}
.yaf{bottom:603.453333pt;}
.y17{bottom:605.213333pt;}
.y76{bottom:613.053333pt;}
.y13b{bottom:614.013333pt;}
.y3d{bottom:617.693333pt;}
.ydb{bottom:618.173333pt;}
.y105{bottom:618.653333pt;}
.yae{bottom:618.813333pt;}
.y16{bottom:620.573333pt;}
.y75{bottom:627.613333pt;}
.y13a{bottom:629.373333pt;}
.y3c{bottom:632.253333pt;}
.yda{bottom:633.533333pt;}
.y14b{bottom:634.013333pt;}
.yad{bottom:634.173333pt;}
.y15{bottom:635.773333pt;}
.y74{bottom:642.173333pt;}
.y139{bottom:644.733333pt;}
.y3b{bottom:646.813333pt;}
.yd9{bottom:648.893333pt;}
.y14a{bottom:649.373333pt;}
.yac{bottom:649.533333pt;}
.y14{bottom:651.133333pt;}
.y73{bottom:656.733333pt;}
.y138{bottom:660.093333pt;}
.y3a{bottom:661.373333pt;}
.yd8{bottom:664.093333pt;}
.y149{bottom:664.733333pt;}
.yab{bottom:664.893333pt;}
.y13{bottom:666.493333pt;}
.y72{bottom:671.293333pt;}
.y137{bottom:675.453333pt;}
.y39{bottom:675.933333pt;}
.yd7{bottom:679.453333pt;}
.yaa{bottom:680.093333pt;}
.y12{bottom:681.853333pt;}
.y71{bottom:685.853333pt;}
.y136{bottom:690.653333pt;}
.yd6{bottom:694.813333pt;}
.ya9{bottom:695.453333pt;}
.y11{bottom:697.213333pt;}
.y38{bottom:698.493333pt;}
.y135{bottom:706.013333pt;}
.y148{bottom:707.933333pt;}
.y70{bottom:708.413333pt;}
.yd5{bottom:710.173333pt;}
.ya8{bottom:710.813333pt;}
.y10{bottom:712.573333pt;}
.y37{bottom:713.053333pt;}
.y134{bottom:721.373333pt;}
.y6f{bottom:722.973333pt;}
.yd4{bottom:725.533333pt;}
.ya7{bottom:726.173333pt;}
.yf{bottom:727.613333pt;}
.y133{bottom:736.773333pt;}
.y6e{bottom:737.573333pt;}
.yd3{bottom:740.933333pt;}
.yd{bottom:741.093333pt;}
.ya6{bottom:741.573333pt;}
.y132{bottom:752.133333pt;}
.y6d{bottom:752.293333pt;}
.yc{bottom:753.733333pt;}
.ye{bottom:754.853333pt;}
.yd2{bottom:756.133333pt;}
.ya5{bottom:756.933333pt;}
.y6c{bottom:766.853333pt;}
.yb{bottom:767.493333pt;}
.yd1{bottom:771.493333pt;}
.ya4{bottom:772.133333pt;}
.ya{bottom:781.253333pt;}
.y6b{bottom:781.413333pt;}
.y131{bottom:782.693333pt;}
.ya3{bottom:787.493333pt;}
.yd0{bottom:792.133333pt;}
.y9{bottom:795.013333pt;}
.y6a{bottom:795.973333pt;}
.y130{bottom:798.053333pt;}
.ya2{bottom:802.853333pt;}
.y18d{bottom:803.973333pt;}
.y12f{bottom:813.413333pt;}
.ya1{bottom:818.213333pt;}
.y69{bottom:818.533333pt;}
.y8{bottom:825.253333pt;}
.y12e{bottom:829.733333pt;}
.y165{bottom:831.493333pt;}
.y68{bottom:833.093333pt;}
.ya0{bottom:833.573333pt;}
.y7{bottom:839.173333pt;}
.y12d{bottom:845.093333pt;}
.y164{bottom:846.853333pt;}
.y67{bottom:847.653333pt;}
.y9f{bottom:848.933333pt;}
.y6{bottom:852.933333pt;}
.y12c{bottom:860.293333pt;}
.y66{bottom:862.213333pt;}
.y9e{bottom:864.133333pt;}
.y5{bottom:866.693333pt;}
.y12b{bottom:876.613333pt;}
.y65{bottom:876.773333pt;}
.y163{bottom:877.573333pt;}
.y9d{bottom:879.493333pt;}
.y4{bottom:880.453333pt;}
.y12a{bottom:891.973333pt;}
.y162{bottom:892.933333pt;}
.y9c{bottom:894.853333pt;}
.y64{bottom:899.333333pt;}
.y161{bottom:908.133333pt;}
.y129{bottom:908.293333pt;}
.y9b{bottom:910.213333pt;}
.y63{bottom:913.893333pt;}
.y3{bottom:917.253333pt;}
.y160{bottom:923.493333pt;}
.y128{bottom:923.653333pt;}
.y9a{bottom:925.573333pt;}
.y62{bottom:928.453333pt;}
.y15d{bottom:936.613333pt;}
.y127{bottom:939.973333pt;}
.y99{bottom:940.933333pt;}
.y61{bottom:943.013333pt;}
.y2{bottom:954.080000pt;}
.y126{bottom:955.200000pt;}
.y98{bottom:956.160000pt;}
.y60{bottom:957.600000pt;}
.y15c{bottom:968.000000pt;}
.y97{bottom:971.520000pt;}
.y5f{bottom:972.160000pt;}
.ha{height:15.360000pt;}
.h1{height:29.940625pt;}
.h9{height:30.720000pt;}
.hb{height:30.752000pt;}
.hd{height:32.507812pt;}
.h3{height:33.515625pt;}
.h4{height:33.960938pt;}
.h5{height:35.975313pt;}
.h7{height:36.164062pt;}
.h6{height:37.090625pt;}
.hc{height:37.583438pt;}
.h8{height:38.672812pt;}
.h2{height:89.375000pt;}
.h0{height:1056.000000pt;}
.w5{width:54.400000pt;}
.w4{width:57.472000pt;}
.w6{width:64.640000pt;}
.w3{width:71.200000pt;}
.w2{width:84.032000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x29{left:6.906667pt;}
.x1{left:59.519988pt;}
.x5{left:60.959988pt;}
.x2{left:78.079988pt;}
.x1d{left:79.679988pt;}
.x7{left:80.991988pt;}
.x25{left:84.511988pt;}
.x4{left:86.111988pt;}
.x15{left:92.991988pt;}
.x6{left:97.151988pt;}
.x14{left:99.071988pt;}
.x38{left:103.231988pt;}
.x23{left:108.511988pt;}
.x34{left:117.631988pt;}
.x21{left:122.111988pt;}
.x16{left:141.146655pt;}
.x2e{left:145.786667pt;}
.x1c{left:176.506655pt;}
.x26{left:183.546655pt;}
.x2f{left:217.626667pt;}
.x9{left:237.306655pt;}
.x18{left:238.746655pt;}
.x8{left:257.986655pt;}
.xb{left:260.226655pt;}
.x17{left:272.866655pt;}
.xa{left:274.946655pt;}
.x30{left:330.786667pt;}
.x3{left:346.306655pt;}
.x31{left:363.266655pt;}
.x32{left:365.026655pt;}
.x1f{left:404.706655pt;}
.x20{left:408.066655pt;}
.xd{left:416.706655pt;}
.x1e{left:420.066655pt;}
.x1b{left:421.666655pt;}
.xc{left:432.253321pt;}
.x19{left:438.973321pt;}
.x1a{left:451.453321pt;}
.xe{left:452.893321pt;}
.x37{left:462.813321pt;}
.x24{left:468.093321pt;}
.x33{left:475.613321pt;}
.xf{left:496.893321pt;}
.x2a{left:505.373333pt;}
.x35{left:517.053321pt;}
.x22{left:540.093321pt;}
.x36{left:553.373321pt;}
.x2b{left:577.213333pt;}
.x13{left:596.733321pt;}
.x11{left:615.173321pt;}
.x10{left:624.613321pt;}
.x12{left:630.693321pt;}
.x2c{left:635.333333pt;}
.x2d{left:690.373333pt;}
.x28{left:726.053321pt;}
.x27{left:728.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; }
  