
    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_8a234c51d51c8b8d5f24ee81.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a0563be68b635ba54e02356e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_522a20b61c6628d1483dbe02.woff')format("woff");}.ff3{font-family:ff3;line-height:1.046387;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_54d4842febb3f188e641abcc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_037560db70f4d5b7c93bcb35.woff')format("woff");}.ff5{font-family:ff5;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;}
.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:-88.560000px;}
.v9{vertical-align:-84.240000px;}
.v6{vertical-align:-77.040000px;}
.v7{vertical-align:-74.160000px;}
.v3{vertical-align:-61.200000px;}
.v4{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:20.880000px;}
.v5{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls12{letter-spacing:-0.774000px;}
.ls17{letter-spacing:-0.702000px;}
.ls9{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.152400px;}
.lse{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.034560px;}
.lsa{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.106560px;}
.ls13{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.080000px;}
.ls0{letter-spacing:201.600000px;}
.ls19{letter-spacing:899.640000px;}
.ls6{letter-spacing:957.060000px;}
.lsb{letter-spacing:1013.940000px;}
.ls1a{letter-spacing:1019.160000px;}
.lsf{letter-spacing:1037.160000px;}
.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;}
}
.ws0{word-spacing:-19.440000px;}
.ws3{word-spacing:-16.407600px;}
.ws7{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.wse{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.166000px;}
.ws1{word-spacing:-12.960000px;}
.ws2{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._12{margin-left:-13.193280px;}
._10{margin-left:-3.966480px;}
._4{margin-left:-2.547360px;}
._2{margin-left:-1.059840px;}
._0{width:1.053360px;}
._1{width:2.163360px;}
._7{width:4.140000px;}
._5{width:5.378400px;}
._8{width:6.423840px;}
._3{width:7.470000px;}
._6{width:8.747280px;}
._a{width:9.827040px;}
._b{width:11.215440px;}
._c{width:12.329280px;}
._9{width:13.755600px;}
._1a{width:16.037280px;}
._f{width:17.292960px;}
._d{width:18.465840px;}
._1d{width:19.900080px;}
._e{width:21.066240px;}
._13{width:22.066560px;}
._1b{width:23.186880px;}
._15{width:26.593200px;}
._14{width:28.206720px;}
._16{width:42.847920px;}
._1e{width:57.967200px;}
._17{width:67.170240px;}
._1f{width:78.763680px;}
._20{width:80.217840px;}
._1c{width:87.391440px;}
._18{width:145.455840px;}
._19{width:146.481120px;}
._11{width:849.240000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y95{bottom:3.240000px;}
.y8f{bottom:5.760000px;}
.yc3{bottom:5.805000px;}
.y9d{bottom:5.940000px;}
.ybb{bottom:6.300000px;}
.yc0{bottom:6.480000px;}
.ycf{bottom:6.510000px;}
.yb9{bottom:7.020000px;}
.y97{bottom:7.740000px;}
.y92{bottom:11.880000px;}
.y109{bottom:13.680000px;}
.yb7{bottom:15.660000px;}
.y107{bottom:16.740000px;}
.ya4{bottom:20.340000px;}
.y93{bottom:20.520000px;}
.y9b{bottom:20.565000px;}
.yb4{bottom:24.300000px;}
.y91{bottom:29.160000px;}
.yb6{bottom:32.940000px;}
.y106{bottom:33.840000px;}
.y94{bottom:37.800000px;}
.yb3{bottom:41.580000px;}
.yb5{bottom:50.220000px;}
.yb8{bottom:58.860000px;}
.y163{bottom:112.896000px;}
.ye8{bottom:117.936000px;}
.y12f{bottom:120.276000px;}
.y5b{bottom:122.436000px;}
.y104{bottom:123.336000px;}
.y162{bottom:130.176000px;}
.ye7{bottom:132.516000px;}
.y12e{bottom:137.556000px;}
.y5a{bottom:139.536000px;}
.y103{bottom:140.616000px;}
.y31{bottom:143.136000px;}
.y8d{bottom:144.756000px;}
.y161{bottom:147.276000px;}
.ye6{bottom:149.796000px;}
.y12d{bottom:154.830000px;}
.y59{bottom:156.810000px;}
.y102{bottom:157.890000px;}
.y30{bottom:160.230000px;}
.y8c{bottom:162.030000px;}
.y160{bottom:164.550000px;}
.ye5{bottom:167.070000px;}
.y12c{bottom:172.110000px;}
.y58{bottom:174.090000px;}
.y101{bottom:175.170000px;}
.y2f{bottom:177.510000px;}
.y8b{bottom:179.310000px;}
.y15f{bottom:181.830000px;}
.ye4{bottom:184.170000px;}
.y12b{bottom:189.210000px;}
.y57{bottom:191.730000px;}
.y100{bottom:192.270000px;}
.y2e{bottom:194.790000px;}
.y8a{bottom:196.590000px;}
.y15e{bottom:199.110000px;}
.ye3{bottom:201.450000px;}
.y12a{bottom:206.490000px;}
.yff{bottom:209.550000px;}
.y56{bottom:210.270000px;}
.y2d{bottom:212.070000px;}
.y89{bottom:213.690000px;}
.y15d{bottom:216.390000px;}
.ye2{bottom:218.730000px;}
.y129{bottom:223.770000px;}
.yfe{bottom:226.830000px;}
.y55{bottom:227.550000px;}
.y2c{bottom:229.350000px;}
.y88{bottom:230.970000px;}
.y15c{bottom:233.670000px;}
.ye1{bottom:236.010000px;}
.y128{bottom:241.050000px;}
.yfd{bottom:244.110000px;}
.y54{bottom:244.830000px;}
.y2b{bottom:246.450000px;}
.y87{bottom:248.250000px;}
.y15b{bottom:250.770000px;}
.ye0{bottom:253.290000px;}
.y127{bottom:258.330000px;}
.yfc{bottom:261.390000px;}
.y53{bottom:262.110000px;}
.y2a{bottom:263.730000px;}
.y86{bottom:265.530000px;}
.y15a{bottom:268.050000px;}
.ydf{bottom:270.570000px;}
.yfb{bottom:278.670000px;}
.y52{bottom:279.390000px;}
.y29{bottom:281.010000px;}
.y85{bottom:282.810000px;}
.y159{bottom:285.330000px;}
.yde{bottom:287.715000px;}
.y126{bottom:294.555000px;}
.yfa{bottom:295.815000px;}
.y51{bottom:296.535000px;}
.y28{bottom:298.335000px;}
.y84{bottom:300.135000px;}
.y158{bottom:302.655000px;}
.ydd{bottom:304.995000px;}
.y125{bottom:311.835000px;}
.yf9{bottom:313.095000px;}
.y50{bottom:314.355000px;}
.y27{bottom:315.615000px;}
.y83{bottom:317.235000px;}
.y157{bottom:319.935000px;}
.ydc{bottom:322.275000px;}
.y124{bottom:329.115000px;}
.yf8{bottom:330.375000px;}
.y26{bottom:332.895000px;}
.y4f{bottom:333.255000px;}
.y82{bottom:334.515000px;}
.y156{bottom:337.215000px;}
.ydb{bottom:339.555000px;}
.y123{bottom:346.215000px;}
.yf7{bottom:347.655000px;}
.y25{bottom:349.995000px;}
.y4e{bottom:351.795000px;}
.y155{bottom:354.315000px;}
.yda{bottom:356.835000px;}
.y122{bottom:363.495000px;}
.yf6{bottom:364.935000px;}
.y24{bottom:367.275000px;}
.y4d{bottom:369.075000px;}
.y154{bottom:371.595000px;}
.yd9{bottom:374.115000px;}
.y121{bottom:380.775000px;}
.yf5{bottom:382.215000px;}
.y23{bottom:384.555000px;}
.y4c{bottom:386.355000px;}
.y153{bottom:388.875000px;}
.yb1{bottom:390.855000px;}
.yd8{bottom:391.215000px;}
.y120{bottom:398.055000px;}
.yf4{bottom:399.315000px;}
.y4b{bottom:403.455000px;}
.y81{bottom:405.255000px;}
.y152{bottom:406.155000px;}
.yb0{bottom:408.135000px;}
.yd7{bottom:408.495000px;}
.y11f{bottom:415.335000px;}
.yf3{bottom:416.595000px;}
.y4a{bottom:420.735000px;}
.y22{bottom:421.455000px;}
.y80{bottom:422.535000px;}
.y151{bottom:423.435000px;}
.yaf{bottom:425.415000px;}
.yd6{bottom:425.775000px;}
.y11e{bottom:432.615000px;}
.yf2{bottom:433.875000px;}
.y49{bottom:438.015000px;}
.y7f{bottom:439.815000px;}
.y150{bottom:440.715000px;}
.y21{bottom:442.155000px;}
.yae{bottom:442.695000px;}
.yd5{bottom:443.055000px;}
.y11d{bottom:449.715000px;}
.yf1{bottom:451.155000px;}
.y48{bottom:455.295000px;}
.y7e{bottom:457.095000px;}
.y14f{bottom:457.815000px;}
.yad{bottom:459.975000px;}
.yd4{bottom:460.335000px;}
.y20{bottom:462.135000px;}
.y11c{bottom:466.995000px;}
.yf0{bottom:468.435000px;}
.y47{bottom:472.575000px;}
.y7d{bottom:474.195000px;}
.y14e{bottom:475.095000px;}
.yac{bottom:477.255000px;}
.yd3{bottom:477.435000px;}
.y1f{bottom:479.415000px;}
.y11b{bottom:484.275000px;}
.yef{bottom:485.535000px;}
.y46{bottom:489.855000px;}
.y7c{bottom:491.475000px;}
.y14d{bottom:492.375000px;}
.yab{bottom:494.355000px;}
.yd2{bottom:494.715000px;}
.y1e{bottom:496.695000px;}
.y11a{bottom:501.555000px;}
.yee{bottom:502.815000px;}
.y45{bottom:507.495000px;}
.y7b{bottom:508.755000px;}
.y14c{bottom:509.655000px;}
.yaa{bottom:511.635000px;}
.yd1{bottom:511.995000px;}
.y1d{bottom:513.975000px;}
.y119{bottom:518.835000px;}
.yed{bottom:520.095000px;}
.y7a{bottom:526.035000px;}
.y14b{bottom:526.935000px;}
.ya9{bottom:528.915000px;}
.yd0{bottom:529.275000px;}
.y1c{bottom:531.255000px;}
.y118{bottom:535.935000px;}
.yec{bottom:537.375000px;}
.y79{bottom:543.315000px;}
.yce{bottom:544.035000px;}
.y44{bottom:545.655000px;}
.ya8{bottom:546.195000px;}
.y1b{bottom:548.385000px;}
.y117{bottom:550.725000px;}
.yeb{bottom:555.045000px;}
.y78{bottom:560.445000px;}
.y14a{bottom:561.345000px;}
.ya7{bottom:563.505000px;}
.y1a{bottom:565.665000px;}
.ycd{bottom:568.365000px;}
.yea{bottom:570.345000px;}
.y116{bottom:575.205000px;}
.y77{bottom:577.725000px;}
.y149{bottom:578.625000px;}
.ya6{bottom:580.605000px;}
.y19{bottom:582.945000px;}
.ycc{bottom:592.845000px;}
.y76{bottom:595.005000px;}
.ya5{bottom:595.365000px;}
.y148{bottom:595.905000px;}
.y115{bottom:599.505000px;}
.y18{bottom:600.225000px;}
.y75{bottom:612.285000px;}
.y147{bottom:613.185000px;}
.ycb{bottom:616.065000px;}
.y17{bottom:617.505000px;}
.ya3{bottom:618.765000px;}
.y114{bottom:622.725000px;}
.y74{bottom:629.925000px;}
.y146{bottom:630.465000px;}
.y16{bottom:634.785000px;}
.yca{bottom:639.285000px;}
.y113{bottom:646.125000px;}
.y145{bottom:647.565000px;}
.y73{bottom:648.465000px;}
.y15{bottom:651.885000px;}
.ya2{bottom:653.865000px;}
.yc9{bottom:662.505000px;}
.y144{bottom:664.845000px;}
.y72{bottom:665.745000px;}
.y14{bottom:669.165000px;}
.y112{bottom:669.345000px;}
.ya1{bottom:677.265000px;}
.y143{bottom:682.125000px;}
.y71{bottom:683.025000px;}
.yc8{bottom:685.725000px;}
.y13{bottom:686.445000px;}
.y111{bottom:692.565000px;}
.y142{bottom:699.405000px;}
.y70{bottom:700.305000px;}
.ya0{bottom:700.485000px;}
.y12{bottom:703.725000px;}
.yc7{bottom:709.125000px;}
.y110{bottom:715.785000px;}
.y141{bottom:716.685000px;}
.y6f{bottom:717.585000px;}
.y11{bottom:721.005000px;}
.y9f{bottom:723.705000px;}
.yc6{bottom:732.345000px;}
.y140{bottom:733.965000px;}
.y6e{bottom:734.685000px;}
.y10{bottom:738.105000px;}
.y10f{bottom:739.005000px;}
.y9e{bottom:746.925000px;}
.y13f{bottom:751.065000px;}
.y6d{bottom:751.965000px;}
.yf{bottom:755.385000px;}
.yc5{bottom:756.645000px;}
.y10e{bottom:763.485000px;}
.y13e{bottom:768.345000px;}
.y6c{bottom:769.245000px;}
.y9c{bottom:770.145000px;}
.y43{bottom:772.665000px;}
.ye{bottom:773.205000px;}
.yc4{bottom:779.865000px;}
.y13d{bottom:785.625000px;}
.y10d{bottom:786.705000px;}
.y6b{bottom:786.885000px;}
.y42{bottom:789.945000px;}
.yd{bottom:792.105000px;}
.y9a{bottom:793.365000px;}
.y13c{bottom:802.905000px;}
.yc2{bottom:803.265000px;}
.y6a{bottom:805.425000px;}
.y41{bottom:807.270000px;}
.y10c{bottom:809.970000px;}
.yc{bottom:818.250000px;}
.y13b{bottom:820.230000px;}
.y69{bottom:822.750000px;}
.y40{bottom:824.550000px;}
.yc1{bottom:826.530000px;}
.y99{bottom:828.690000px;}
.y10b{bottom:833.190000px;}
.y13a{bottom:837.330000px;}
.yb{bottom:837.690000px;}
.y68{bottom:840.030000px;}
.y3f{bottom:841.650000px;}
.ybf{bottom:849.750000px;}
.ya{bottom:850.830000px;}
.y139{bottom:854.610000px;}
.y98{bottom:855.690000px;}
.y10a{bottom:856.410000px;}
.y67{bottom:857.310000px;}
.y3e{bottom:858.930000px;}
.y138{bottom:871.890000px;}
.ybe{bottom:874.050000px;}
.y66{bottom:874.590000px;}
.y9{bottom:875.670000px;}
.y3d{bottom:876.210000px;}
.y105{bottom:879.810000px;}
.y8{bottom:888.810000px;}
.y137{bottom:889.170000px;}
.y96{bottom:890.970000px;}
.y65{bottom:891.690000px;}
.y3c{bottom:893.490000px;}
.ybd{bottom:897.270000px;}
.y136{bottom:906.450000px;}
.y64{bottom:908.970000px;}
.y3b{bottom:910.770000px;}
.y7{bottom:913.650000px;}
.y90{bottom:917.970000px;}
.y108{bottom:918.690000px;}
.ybc{bottom:920.670000px;}
.y135{bottom:923.730000px;}
.y63{bottom:926.250000px;}
.y6{bottom:926.610000px;}
.y3a{bottom:928.050000px;}
.y134{bottom:940.830000px;}
.y62{bottom:943.530000px;}
.yba{bottom:943.890000px;}
.y39{bottom:945.150000px;}
.y5{bottom:951.630000px;}
.y133{bottom:958.110000px;}
.y61{bottom:960.810000px;}
.y38{bottom:962.430000px;}
.yb2{bottom:968.190000px;}
.y8e{bottom:970.530000px;}
.y132{bottom:975.390000px;}
.y60{bottom:977.910000px;}
.y37{bottom:979.710000px;}
.y4{bottom:987.270000px;}
.y131{bottom:992.670000px;}
.y5f{bottom:995.190000px;}
.y36{bottom:996.990000px;}
.y3{bottom:1007.970000px;}
.y5e{bottom:1012.470000px;}
.y35{bottom:1014.270000px;}
.y5d{bottom:1029.750000px;}
.y2{bottom:1030.110000px;}
.y130{bottom:1031.370000px;}
.y34{bottom:1031.550000px;}
.ye9{bottom:1034.250000px;}
.y5c{bottom:1047.390000px;}
.y33{bottom:1048.650000px;}
.y1{bottom:1057.650000px;}
.y32{bottom:1065.930000px;}
.hb{height:22.500000px;}
.h14{height:22.536000px;}
.h13{height:23.580000px;}
.h16{height:23.616000px;}
.h15{height:23.760000px;}
.he{height:26.280000px;}
.h11{height:34.380000px;}
.hf{height:34.560000px;}
.h10{height:34.596000px;}
.h19{height:38.160000px;}
.h5{height:40.985156px;}
.h3{height:41.250937px;}
.h6{height:47.344922px;}
.hc{height:51.840000px;}
.h8{height:58.651172px;}
.hd{height:59.038594px;}
.h9{height:60.226875px;}
.h18{height:61.380000px;}
.h17{height:61.423863px;}
.h4{height:65.010937px;}
.h7{height:66.757500px;}
.h2{height:70.664062px;}
.ha{height:72.562500px;}
.h12{height:76.500000px;}
.h1{height:96.508125px;}
.h0{height:1188.000000px;}
.w8{width:75.600000px;}
.wa{width:90.360000px;}
.w4{width:93.960000px;}
.w6{width:100.800000px;}
.w5{width:107.496000px;}
.w9{width:112.716000px;}
.wf{width:123.696000px;}
.we{width:141.300000px;}
.wc{width:279.390000px;}
.w3{width:330.015000px;}
.w7{width:340.275000px;}
.wd{width:349.995000px;}
.w10{width:615.885000px;}
.wb{width:620.025000px;}
.w2{width:633.885000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x10{left:8.820000px;}
.x27{left:10.440000px;}
.xc{left:11.520000px;}
.x12{left:13.140000px;}
.x2b{left:14.580000px;}
.x19{left:16.200000px;}
.x14{left:17.280000px;}
.x2c{left:18.360000px;}
.x1a{left:19.980000px;}
.x1e{left:21.060000px;}
.x1f{left:22.680000px;}
.xe{left:23.760000px;}
.x18{left:26.280000px;}
.xf{left:29.520000px;}
.x28{left:30.780000px;}
.x21{left:32.040000px;}
.x16{left:33.120000px;}
.x13{left:34.200000px;}
.x22{left:35.820000px;}
.x17{left:39.420000px;}
.x15{left:43.200000px;}
.x2a{left:58.185000px;}
.x29{left:66.960000px;}
.x20{left:102.960000px;}
.x3{left:162.029986px;}
.x6{left:171.029986px;}
.x4{left:176.789986px;}
.x1{left:196.049986px;}
.x2e{left:216.029986px;}
.x2{left:231.689986px;}
.x5{left:287.129986px;}
.x9{left:298.485000px;}
.x7{left:320.114986px;}
.x8{left:374.474986px;}
.x24{left:413.714986px;}
.x2d{left:459.074986px;}
.xb{left:492.945000px;}
.x1b{left:503.385000px;}
.x25{left:513.105000px;}
.x1c{left:579.345000px;}
.xd{left:587.445000px;}
.x26{left:654.945000px;}
.x1d{left:692.430000px;}
.x11{left:695.490000px;}
.x23{left:750.029986px;}
@media print{
.v1{vertical-align:-78.720000pt;}
.v9{vertical-align:-74.880000pt;}
.v6{vertical-align:-68.480000pt;}
.v7{vertical-align:-65.920000pt;}
.v3{vertical-align:-54.400000pt;}
.v4{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:18.560000pt;}
.v5{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls12{letter-spacing:-0.688000pt;}
.ls17{letter-spacing:-0.624000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.135467pt;}
.lse{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.030720pt;}
.lsa{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.094720pt;}
.ls13{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.960000pt;}
.ls0{letter-spacing:179.200000pt;}
.ls19{letter-spacing:799.680000pt;}
.ls6{letter-spacing:850.720000pt;}
.lsb{letter-spacing:901.280000pt;}
.ls1a{letter-spacing:905.920000pt;}
.lsf{letter-spacing:921.920000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws3{word-spacing:-14.584533pt;}
.ws7{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.wsd{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.592000pt;}
.ws1{word-spacing:-11.520000pt;}
.ws2{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._12{margin-left:-11.727360pt;}
._10{margin-left:-3.525760pt;}
._4{margin-left:-2.264320pt;}
._2{margin-left:-0.942080pt;}
._0{width:0.936320pt;}
._1{width:1.922987pt;}
._7{width:3.680000pt;}
._5{width:4.780800pt;}
._8{width:5.710080pt;}
._3{width:6.640000pt;}
._6{width:7.775360pt;}
._a{width:8.735147pt;}
._b{width:9.969280pt;}
._c{width:10.959360pt;}
._9{width:12.227200pt;}
._1a{width:14.255360pt;}
._f{width:15.371520pt;}
._d{width:16.414080pt;}
._1d{width:17.688960pt;}
._e{width:18.725547pt;}
._13{width:19.614720pt;}
._1b{width:20.610560pt;}
._15{width:23.638400pt;}
._14{width:25.072640pt;}
._16{width:38.087040pt;}
._1e{width:51.526400pt;}
._17{width:59.706880pt;}
._1f{width:70.012160pt;}
._20{width:71.304747pt;}
._1c{width:77.681280pt;}
._18{width:129.294080pt;}
._19{width:130.205440pt;}
._11{width:754.880000pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:2.880000pt;}
.y8f{bottom:5.120000pt;}
.yc3{bottom:5.160000pt;}
.y9d{bottom:5.280000pt;}
.ybb{bottom:5.600000pt;}
.yc0{bottom:5.760000pt;}
.ycf{bottom:5.786667pt;}
.yb9{bottom:6.240000pt;}
.y97{bottom:6.880000pt;}
.y92{bottom:10.560000pt;}
.y109{bottom:12.160000pt;}
.yb7{bottom:13.920000pt;}
.y107{bottom:14.880000pt;}
.ya4{bottom:18.080000pt;}
.y93{bottom:18.240000pt;}
.y9b{bottom:18.280000pt;}
.yb4{bottom:21.600000pt;}
.y91{bottom:25.920000pt;}
.yb6{bottom:29.280000pt;}
.y106{bottom:30.080000pt;}
.y94{bottom:33.600000pt;}
.yb3{bottom:36.960000pt;}
.yb5{bottom:44.640000pt;}
.yb8{bottom:52.320000pt;}
.y163{bottom:100.352000pt;}
.ye8{bottom:104.832000pt;}
.y12f{bottom:106.912000pt;}
.y5b{bottom:108.832000pt;}
.y104{bottom:109.632000pt;}
.y162{bottom:115.712000pt;}
.ye7{bottom:117.792000pt;}
.y12e{bottom:122.272000pt;}
.y5a{bottom:124.032000pt;}
.y103{bottom:124.992000pt;}
.y31{bottom:127.232000pt;}
.y8d{bottom:128.672000pt;}
.y161{bottom:130.912000pt;}
.ye6{bottom:133.152000pt;}
.y12d{bottom:137.626667pt;}
.y59{bottom:139.386667pt;}
.y102{bottom:140.346667pt;}
.y30{bottom:142.426667pt;}
.y8c{bottom:144.026667pt;}
.y160{bottom:146.266667pt;}
.ye5{bottom:148.506667pt;}
.y12c{bottom:152.986667pt;}
.y58{bottom:154.746667pt;}
.y101{bottom:155.706667pt;}
.y2f{bottom:157.786667pt;}
.y8b{bottom:159.386667pt;}
.y15f{bottom:161.626667pt;}
.ye4{bottom:163.706667pt;}
.y12b{bottom:168.186667pt;}
.y57{bottom:170.426667pt;}
.y100{bottom:170.906667pt;}
.y2e{bottom:173.146667pt;}
.y8a{bottom:174.746667pt;}
.y15e{bottom:176.986667pt;}
.ye3{bottom:179.066667pt;}
.y12a{bottom:183.546667pt;}
.yff{bottom:186.266667pt;}
.y56{bottom:186.906667pt;}
.y2d{bottom:188.506667pt;}
.y89{bottom:189.946667pt;}
.y15d{bottom:192.346667pt;}
.ye2{bottom:194.426667pt;}
.y129{bottom:198.906667pt;}
.yfe{bottom:201.626667pt;}
.y55{bottom:202.266667pt;}
.y2c{bottom:203.866667pt;}
.y88{bottom:205.306667pt;}
.y15c{bottom:207.706667pt;}
.ye1{bottom:209.786667pt;}
.y128{bottom:214.266667pt;}
.yfd{bottom:216.986667pt;}
.y54{bottom:217.626667pt;}
.y2b{bottom:219.066667pt;}
.y87{bottom:220.666667pt;}
.y15b{bottom:222.906667pt;}
.ye0{bottom:225.146667pt;}
.y127{bottom:229.626667pt;}
.yfc{bottom:232.346667pt;}
.y53{bottom:232.986667pt;}
.y2a{bottom:234.426667pt;}
.y86{bottom:236.026667pt;}
.y15a{bottom:238.266667pt;}
.ydf{bottom:240.506667pt;}
.yfb{bottom:247.706667pt;}
.y52{bottom:248.346667pt;}
.y29{bottom:249.786667pt;}
.y85{bottom:251.386667pt;}
.y159{bottom:253.626667pt;}
.yde{bottom:255.746667pt;}
.y126{bottom:261.826667pt;}
.yfa{bottom:262.946667pt;}
.y51{bottom:263.586667pt;}
.y28{bottom:265.186667pt;}
.y84{bottom:266.786667pt;}
.y158{bottom:269.026667pt;}
.ydd{bottom:271.106667pt;}
.y125{bottom:277.186667pt;}
.yf9{bottom:278.306667pt;}
.y50{bottom:279.426667pt;}
.y27{bottom:280.546667pt;}
.y83{bottom:281.986667pt;}
.y157{bottom:284.386667pt;}
.ydc{bottom:286.466667pt;}
.y124{bottom:292.546667pt;}
.yf8{bottom:293.666667pt;}
.y26{bottom:295.906667pt;}
.y4f{bottom:296.226667pt;}
.y82{bottom:297.346667pt;}
.y156{bottom:299.746667pt;}
.ydb{bottom:301.826667pt;}
.y123{bottom:307.746667pt;}
.yf7{bottom:309.026667pt;}
.y25{bottom:311.106667pt;}
.y4e{bottom:312.706667pt;}
.y155{bottom:314.946667pt;}
.yda{bottom:317.186667pt;}
.y122{bottom:323.106667pt;}
.yf6{bottom:324.386667pt;}
.y24{bottom:326.466667pt;}
.y4d{bottom:328.066667pt;}
.y154{bottom:330.306667pt;}
.yd9{bottom:332.546667pt;}
.y121{bottom:338.466667pt;}
.yf5{bottom:339.746667pt;}
.y23{bottom:341.826667pt;}
.y4c{bottom:343.426667pt;}
.y153{bottom:345.666667pt;}
.yb1{bottom:347.426667pt;}
.yd8{bottom:347.746667pt;}
.y120{bottom:353.826667pt;}
.yf4{bottom:354.946667pt;}
.y4b{bottom:358.626667pt;}
.y81{bottom:360.226667pt;}
.y152{bottom:361.026667pt;}
.yb0{bottom:362.786667pt;}
.yd7{bottom:363.106667pt;}
.y11f{bottom:369.186667pt;}
.yf3{bottom:370.306667pt;}
.y4a{bottom:373.986667pt;}
.y22{bottom:374.626667pt;}
.y80{bottom:375.586667pt;}
.y151{bottom:376.386667pt;}
.yaf{bottom:378.146667pt;}
.yd6{bottom:378.466667pt;}
.y11e{bottom:384.546667pt;}
.yf2{bottom:385.666667pt;}
.y49{bottom:389.346667pt;}
.y7f{bottom:390.946667pt;}
.y150{bottom:391.746667pt;}
.y21{bottom:393.026667pt;}
.yae{bottom:393.506667pt;}
.yd5{bottom:393.826667pt;}
.y11d{bottom:399.746667pt;}
.yf1{bottom:401.026667pt;}
.y48{bottom:404.706667pt;}
.y7e{bottom:406.306667pt;}
.y14f{bottom:406.946667pt;}
.yad{bottom:408.866667pt;}
.yd4{bottom:409.186667pt;}
.y20{bottom:410.786667pt;}
.y11c{bottom:415.106667pt;}
.yf0{bottom:416.386667pt;}
.y47{bottom:420.066667pt;}
.y7d{bottom:421.506667pt;}
.y14e{bottom:422.306667pt;}
.yac{bottom:424.226667pt;}
.yd3{bottom:424.386667pt;}
.y1f{bottom:426.146667pt;}
.y11b{bottom:430.466667pt;}
.yef{bottom:431.586667pt;}
.y46{bottom:435.426667pt;}
.y7c{bottom:436.866667pt;}
.y14d{bottom:437.666667pt;}
.yab{bottom:439.426667pt;}
.yd2{bottom:439.746667pt;}
.y1e{bottom:441.506667pt;}
.y11a{bottom:445.826667pt;}
.yee{bottom:446.946667pt;}
.y45{bottom:451.106667pt;}
.y7b{bottom:452.226667pt;}
.y14c{bottom:453.026667pt;}
.yaa{bottom:454.786667pt;}
.yd1{bottom:455.106667pt;}
.y1d{bottom:456.866667pt;}
.y119{bottom:461.186667pt;}
.yed{bottom:462.306667pt;}
.y7a{bottom:467.586667pt;}
.y14b{bottom:468.386667pt;}
.ya9{bottom:470.146667pt;}
.yd0{bottom:470.466667pt;}
.y1c{bottom:472.226667pt;}
.y118{bottom:476.386667pt;}
.yec{bottom:477.666667pt;}
.y79{bottom:482.946667pt;}
.yce{bottom:483.586667pt;}
.y44{bottom:485.026667pt;}
.ya8{bottom:485.506667pt;}
.y1b{bottom:487.453333pt;}
.y117{bottom:489.533333pt;}
.yeb{bottom:493.373333pt;}
.y78{bottom:498.173333pt;}
.y14a{bottom:498.973333pt;}
.ya7{bottom:500.893333pt;}
.y1a{bottom:502.813333pt;}
.ycd{bottom:505.213333pt;}
.yea{bottom:506.973333pt;}
.y116{bottom:511.293333pt;}
.y77{bottom:513.533333pt;}
.y149{bottom:514.333333pt;}
.ya6{bottom:516.093333pt;}
.y19{bottom:518.173333pt;}
.ycc{bottom:526.973333pt;}
.y76{bottom:528.893333pt;}
.ya5{bottom:529.213333pt;}
.y148{bottom:529.693333pt;}
.y115{bottom:532.893333pt;}
.y18{bottom:533.533333pt;}
.y75{bottom:544.253333pt;}
.y147{bottom:545.053333pt;}
.ycb{bottom:547.613333pt;}
.y17{bottom:548.893333pt;}
.ya3{bottom:550.013333pt;}
.y114{bottom:553.533333pt;}
.y74{bottom:559.933333pt;}
.y146{bottom:560.413333pt;}
.y16{bottom:564.253333pt;}
.yca{bottom:568.253333pt;}
.y113{bottom:574.333333pt;}
.y145{bottom:575.613333pt;}
.y73{bottom:576.413333pt;}
.y15{bottom:579.453333pt;}
.ya2{bottom:581.213333pt;}
.yc9{bottom:588.893333pt;}
.y144{bottom:590.973333pt;}
.y72{bottom:591.773333pt;}
.y14{bottom:594.813333pt;}
.y112{bottom:594.973333pt;}
.ya1{bottom:602.013333pt;}
.y143{bottom:606.333333pt;}
.y71{bottom:607.133333pt;}
.yc8{bottom:609.533333pt;}
.y13{bottom:610.173333pt;}
.y111{bottom:615.613333pt;}
.y142{bottom:621.693333pt;}
.y70{bottom:622.493333pt;}
.ya0{bottom:622.653333pt;}
.y12{bottom:625.533333pt;}
.yc7{bottom:630.333333pt;}
.y110{bottom:636.253333pt;}
.y141{bottom:637.053333pt;}
.y6f{bottom:637.853333pt;}
.y11{bottom:640.893333pt;}
.y9f{bottom:643.293333pt;}
.yc6{bottom:650.973333pt;}
.y140{bottom:652.413333pt;}
.y6e{bottom:653.053333pt;}
.y10{bottom:656.093333pt;}
.y10f{bottom:656.893333pt;}
.y9e{bottom:663.933333pt;}
.y13f{bottom:667.613333pt;}
.y6d{bottom:668.413333pt;}
.yf{bottom:671.453333pt;}
.yc5{bottom:672.573333pt;}
.y10e{bottom:678.653333pt;}
.y13e{bottom:682.973333pt;}
.y6c{bottom:683.773333pt;}
.y9c{bottom:684.573333pt;}
.y43{bottom:686.813333pt;}
.ye{bottom:687.293333pt;}
.yc4{bottom:693.213333pt;}
.y13d{bottom:698.333333pt;}
.y10d{bottom:699.293333pt;}
.y6b{bottom:699.453333pt;}
.y42{bottom:702.173333pt;}
.yd{bottom:704.093333pt;}
.y9a{bottom:705.213333pt;}
.y13c{bottom:713.693333pt;}
.yc2{bottom:714.013333pt;}
.y6a{bottom:715.933333pt;}
.y41{bottom:717.573333pt;}
.y10c{bottom:719.973333pt;}
.yc{bottom:727.333333pt;}
.y13b{bottom:729.093333pt;}
.y69{bottom:731.333333pt;}
.y40{bottom:732.933333pt;}
.yc1{bottom:734.693333pt;}
.y99{bottom:736.613333pt;}
.y10b{bottom:740.613333pt;}
.y13a{bottom:744.293333pt;}
.yb{bottom:744.613333pt;}
.y68{bottom:746.693333pt;}
.y3f{bottom:748.133333pt;}
.ybf{bottom:755.333333pt;}
.ya{bottom:756.293333pt;}
.y139{bottom:759.653333pt;}
.y98{bottom:760.613333pt;}
.y10a{bottom:761.253333pt;}
.y67{bottom:762.053333pt;}
.y3e{bottom:763.493333pt;}
.y138{bottom:775.013333pt;}
.ybe{bottom:776.933333pt;}
.y66{bottom:777.413333pt;}
.y9{bottom:778.373333pt;}
.y3d{bottom:778.853333pt;}
.y105{bottom:782.053333pt;}
.y8{bottom:790.053333pt;}
.y137{bottom:790.373333pt;}
.y96{bottom:791.973333pt;}
.y65{bottom:792.613333pt;}
.y3c{bottom:794.213333pt;}
.ybd{bottom:797.573333pt;}
.y136{bottom:805.733333pt;}
.y64{bottom:807.973333pt;}
.y3b{bottom:809.573333pt;}
.y7{bottom:812.133333pt;}
.y90{bottom:815.973333pt;}
.y108{bottom:816.613333pt;}
.ybc{bottom:818.373333pt;}
.y135{bottom:821.093333pt;}
.y63{bottom:823.333333pt;}
.y6{bottom:823.653333pt;}
.y3a{bottom:824.933333pt;}
.y134{bottom:836.293333pt;}
.y62{bottom:838.693333pt;}
.yba{bottom:839.013333pt;}
.y39{bottom:840.133333pt;}
.y5{bottom:845.893333pt;}
.y133{bottom:851.653333pt;}
.y61{bottom:854.053333pt;}
.y38{bottom:855.493333pt;}
.yb2{bottom:860.613333pt;}
.y8e{bottom:862.693333pt;}
.y132{bottom:867.013333pt;}
.y60{bottom:869.253333pt;}
.y37{bottom:870.853333pt;}
.y4{bottom:877.573333pt;}
.y131{bottom:882.373333pt;}
.y5f{bottom:884.613333pt;}
.y36{bottom:886.213333pt;}
.y3{bottom:895.973333pt;}
.y5e{bottom:899.973333pt;}
.y35{bottom:901.573333pt;}
.y5d{bottom:915.333333pt;}
.y2{bottom:915.653333pt;}
.y130{bottom:916.773333pt;}
.y34{bottom:916.933333pt;}
.ye9{bottom:919.333333pt;}
.y5c{bottom:931.013333pt;}
.y33{bottom:932.133333pt;}
.y1{bottom:940.133333pt;}
.y32{bottom:947.493333pt;}
.hb{height:20.000000pt;}
.h14{height:20.032000pt;}
.h13{height:20.960000pt;}
.h16{height:20.992000pt;}
.h15{height:21.120000pt;}
.he{height:23.360000pt;}
.h11{height:30.560000pt;}
.hf{height:30.720000pt;}
.h10{height:30.752000pt;}
.h19{height:33.920000pt;}
.h5{height:36.431250pt;}
.h3{height:36.667500pt;}
.h6{height:42.084375pt;}
.hc{height:46.080000pt;}
.h8{height:52.134375pt;}
.hd{height:52.478750pt;}
.h9{height:53.535000pt;}
.h18{height:54.560000pt;}
.h17{height:54.598989pt;}
.h4{height:57.787500pt;}
.h7{height:59.340000pt;}
.h2{height:62.812500pt;}
.ha{height:64.500000pt;}
.h12{height:68.000000pt;}
.h1{height:85.785000pt;}
.h0{height:1056.000000pt;}
.w8{width:67.200000pt;}
.wa{width:80.320000pt;}
.w4{width:83.520000pt;}
.w6{width:89.600000pt;}
.w5{width:95.552000pt;}
.w9{width:100.192000pt;}
.wf{width:109.952000pt;}
.we{width:125.600000pt;}
.wc{width:248.346667pt;}
.w3{width:293.346667pt;}
.w7{width:302.466667pt;}
.wd{width:311.106667pt;}
.w10{width:547.453333pt;}
.wb{width:551.133333pt;}
.w2{width:563.453333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x10{left:7.840000pt;}
.x27{left:9.280000pt;}
.xc{left:10.240000pt;}
.x12{left:11.680000pt;}
.x2b{left:12.960000pt;}
.x19{left:14.400000pt;}
.x14{left:15.360000pt;}
.x2c{left:16.320000pt;}
.x1a{left:17.760000pt;}
.x1e{left:18.720000pt;}
.x1f{left:20.160000pt;}
.xe{left:21.120000pt;}
.x18{left:23.360000pt;}
.xf{left:26.240000pt;}
.x28{left:27.360000pt;}
.x21{left:28.480000pt;}
.x16{left:29.440000pt;}
.x13{left:30.400000pt;}
.x22{left:31.840000pt;}
.x17{left:35.040000pt;}
.x15{left:38.400000pt;}
.x2a{left:51.720000pt;}
.x29{left:59.520000pt;}
.x20{left:91.520000pt;}
.x3{left:144.026655pt;}
.x6{left:152.026655pt;}
.x4{left:157.146655pt;}
.x1{left:174.266655pt;}
.x2e{left:192.026655pt;}
.x2{left:205.946655pt;}
.x5{left:255.226655pt;}
.x9{left:265.320000pt;}
.x7{left:284.546655pt;}
.x8{left:332.866655pt;}
.x24{left:367.746655pt;}
.x2d{left:408.066655pt;}
.xb{left:438.173333pt;}
.x1b{left:447.453333pt;}
.x25{left:456.093333pt;}
.x1c{left:514.973333pt;}
.xd{left:522.173333pt;}
.x26{left:582.173333pt;}
.x1d{left:615.493333pt;}
.x11{left:618.213333pt;}
.x23{left:666.693321pt;}
}




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