
    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_57495b4441d0f2534b200f57.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974121;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_8dc2706b4f8ae0f6d7e9e611.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_ef519e7b9812f683d02bcb05.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010254;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_60b1bfbfa73265894fbd3a09.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.746094;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_d74479d2d866948138a3cf7b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.006000px;}
.ls1{letter-spacing:0.006600px;}
.ls0{letter-spacing:0.007200px;}
.ls8{letter-spacing:0.204000px;}
.ls4{letter-spacing:0.414000px;}
.ls6{letter-spacing:2.094000px;}
.lsa{letter-spacing:2.118000px;}
.ls3{letter-spacing:3.180000px;}
.ls9{letter-spacing:3.192000px;}
.ls7{letter-spacing:3.600000px;}
.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;}
}
.ws2{word-spacing:-30.000000px;}
.ws0{word-spacing:-22.500000px;}
.wsb{word-spacing:-18.600000px;}
.wsd{word-spacing:-18.192000px;}
.ws7{word-spacing:-18.180000px;}
.ws5{word-spacing:-18.000000px;}
.wse{word-spacing:-17.118000px;}
.wsa{word-spacing:-17.094000px;}
.ws3{word-spacing:-16.500000px;}
.ws8{word-spacing:-15.414000px;}
.ws9{word-spacing:-15.006000px;}
.ws6{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.wsc{word-spacing:-4.704000px;}
.ws4{word-spacing:0.000000px;}
.wsf{word-spacing:4.276245px;}
._0{margin-left:-9.120000px;}
._6{margin-left:-3.293400px;}
._11{margin-left:-2.184600px;}
._4{margin-left:-1.122000px;}
._2{width:1.134000px;}
._17{width:2.378400px;}
._c{width:3.418800px;}
._d{width:5.049000px;}
._e{width:6.731400px;}
._8{width:8.187600px;}
._1{width:9.188400px;}
._f{width:10.916400px;}
._13{width:12.236400px;}
._14{width:13.497000px;}
._7{width:14.619000px;}
._2c{width:16.170000px;}
._10{width:18.117000px;}
._12{width:19.166400px;}
._18{width:20.334600px;}
._21{width:21.496200px;}
._9{width:22.565400px;}
._1b{width:23.621400px;}
._1d{width:25.060200px;}
._20{width:26.335200px;}
._a{width:27.395400px;}
._23{width:28.512000px;}
._2a{width:29.561400px;}
._b{width:30.954000px;}
._3{width:32.458800px;}
._1a{width:33.772200px;}
._26{width:34.854600px;}
._16{width:36.352800px;}
._19{width:37.773000px;}
._1c{width:38.997000px;}
._1e{width:40.005000px;}
._1f{width:41.250000px;}
._22{width:42.636000px;}
._5{width:44.886600px;}
._29{width:47.170200px;}
._28{width:50.193000px;}
._15{width:51.869400px;}
._25{width:54.410400px;}
._27{width:58.568400px;}
._24{width:61.188600px;}
._2b{width:65.568000px;}
._2d{width:94.578000px;}
._2e{width:116.346000px;}
.fc3{color:transparent;}
.fc2{color:rgb(32,94,158);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:42.857160px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:120.000000px;}
.fs0{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:41.442750px;}
.y3{bottom:56.834700px;}
.y4{bottom:57.642750px;}
.yc9{bottom:60.295200px;}
.y6a{bottom:60.318750px;}
.y22{bottom:112.396800px;}
.ye1{bottom:112.847550px;}
.y4f{bottom:113.627100px;}
.y19f{bottom:114.378300px;}
.yac{bottom:115.427100px;}
.y126{bottom:118.091700px;}
.yc7{bottom:118.680450px;}
.y114{bottom:119.891700px;}
.y82{bottom:121.606650px;}
.y147{bottom:124.923150px;}
.y66{bottom:125.603550px;}
.y100{bottom:126.850650px;}
.y21{bottom:128.596800px;}
.y19e{bottom:132.378300px;}
.ye0{bottom:132.647550px;}
.y17c{bottom:133.370400px;}
.y4e{bottom:133.427100px;}
.yab{bottom:135.227100px;}
.y125{bottom:137.891700px;}
.yc6{bottom:138.480450px;}
.y113{bottom:139.691700px;}
.y81{bottom:141.406650px;}
.y146{bottom:142.923150px;}
.y65{bottom:145.403550px;}
.yff{bottom:146.650650px;}
.y19d{bottom:150.378000px;}
.y17b{bottom:151.371000px;}
.ydf{bottom:152.448000px;}
.y4d{bottom:153.226500px;}
.yaa{bottom:155.026500px;}
.y124{bottom:157.692000px;}
.yc5{bottom:158.280000px;}
.y112{bottom:159.492000px;}
.y80{bottom:161.206500px;}
.y64{bottom:165.204000px;}
.yfe{bottom:166.450500px;}
.y17a{bottom:169.371000px;}
.y145{bottom:169.426500px;}
.yde{bottom:172.248000px;}
.y4c{bottom:173.026500px;}
.ya9{bottom:174.826500px;}
.y19c{bottom:176.881500px;}
.y123{bottom:177.492000px;}
.yc4{bottom:178.080000px;}
.y111{bottom:179.292000px;}
.y7f{bottom:181.006500px;}
.y63{bottom:185.004000px;}
.yfd{bottom:186.250500px;}
.y179{bottom:187.371000px;}
.y144{bottom:187.426500px;}
.ydd{bottom:192.048000px;}
.y4b{bottom:192.826500px;}
.ya8{bottom:194.626500px;}
.y19b{bottom:194.881500px;}
.y122{bottom:197.292000px;}
.yc3{bottom:197.880000px;}
.y7e{bottom:200.806500px;}
.y62{bottom:204.804000px;}
.y178{bottom:205.371000px;}
.y143{bottom:205.426500px;}
.yfc{bottom:206.050500px;}
.ydc{bottom:211.848000px;}
.y4a{bottom:212.626500px;}
.y19a{bottom:212.881500px;}
.ya7{bottom:214.426500px;}
.y121{bottom:217.092000px;}
.yc2{bottom:217.680000px;}
.y7d{bottom:220.606500px;}
.y177{bottom:223.371000px;}
.y142{bottom:223.426500px;}
.y61{bottom:224.604000px;}
.yfb{bottom:225.850500px;}
.y199{bottom:230.881500px;}
.ydb{bottom:231.648000px;}
.y49{bottom:232.426500px;}
.ya6{bottom:234.226500px;}
.y120{bottom:236.892000px;}
.yc1{bottom:237.480000px;}
.y7c{bottom:240.406500px;}
.y60{bottom:244.404000px;}
.y198{bottom:248.881500px;}
.y176{bottom:249.874500px;}
.y141{bottom:249.931500px;}
.yda{bottom:251.448000px;}
.y48{bottom:252.226500px;}
.ya5{bottom:254.026500px;}
.y11f{bottom:256.692000px;}
.yfa{bottom:258.406500px;}
.y7b{bottom:260.206500px;}
.y175{bottom:267.874500px;}
.y140{bottom:267.931500px;}
.yc0{bottom:270.036000px;}
.y47{bottom:272.026500px;}
.ya4{bottom:273.826500px;}
.y197{bottom:275.386500px;}
.y11e{bottom:276.492000px;}
.y5f{bottom:276.960000px;}
.yf9{bottom:278.206500px;}
.y7a{bottom:280.006500px;}
.y109{bottom:284.004000px;}
.y174{bottom:285.874500px;}
.y13f{bottom:285.931500px;}
.y46{bottom:291.826500px;}
.y196{bottom:293.386500px;}
.ya3{bottom:293.626500px;}
.y11d{bottom:296.292000px;}
.y5e{bottom:296.760000px;}
.yf8{bottom:298.006500px;}
.y79{bottom:299.806500px;}
.y13e{bottom:303.931500px;}
.y195{bottom:311.386500px;}
.y173{bottom:312.378000px;}
.ya2{bottom:313.426500px;}
.y11c{bottom:316.092000px;}
.y5d{bottom:316.560000px;}
.yf7{bottom:317.806500px;}
.y103{bottom:318.511500px;}
.y78{bottom:319.606500px;}
.y45{bottom:324.382500px;}
.y194{bottom:329.386500px;}
.y172{bottom:330.378000px;}
.y13d{bottom:330.435000px;}
.ya1{bottom:333.226500px;}
.y102{bottom:334.711500px;}
.ybf{bottom:335.148000px;}
.y11b{bottom:335.892000px;}
.y5c{bottom:336.360000px;}
.yf6{bottom:337.606500px;}
.y77{bottom:339.406500px;}
.y193{bottom:347.386500px;}
.y171{bottom:348.378000px;}
.y13c{bottom:348.435000px;}
.y101{bottom:350.911500px;}
.ya0{bottom:353.026500px;}
.ybe{bottom:354.948000px;}
.y5b{bottom:356.160000px;}
.yf5{bottom:357.406500px;}
.y76{bottom:359.206500px;}
.y13b{bottom:366.435000px;}
.y117{bottom:367.546500px;}
.y11a{bottom:368.448000px;}
.y9f{bottom:372.826500px;}
.y192{bottom:373.890000px;}
.ybd{bottom:374.748000px;}
.y170{bottom:374.881500px;}
.y5a{bottom:375.960000px;}
.yf4{bottom:377.206500px;}
.y75{bottom:379.006500px;}
.y116{bottom:383.746500px;}
.y13a{bottom:384.435000px;}
.y191{bottom:391.890000px;}
.y9e{bottom:392.626500px;}
.y16f{bottom:392.881500px;}
.ybc{bottom:394.548000px;}
.y59{bottom:395.760000px;}
.yf3{bottom:397.006500px;}
.y115{bottom:399.946500px;}
.y44{bottom:404.050500px;}
.y190{bottom:409.890000px;}
.y16e{bottom:410.881500px;}
.y139{bottom:410.938500px;}
.y74{bottom:411.562500px;}
.y9d{bottom:412.426500px;}
.ybb{bottom:414.348000px;}
.y58{bottom:415.560000px;}
.yf2{bottom:416.806500px;}
.y43{bottom:423.850500px;}
.y18f{bottom:427.890000px;}
.y16d{bottom:428.881500px;}
.y138{bottom:428.938500px;}
.yba{bottom:434.148000px;}
.y110{bottom:435.360000px;}
.yf1{bottom:436.606500px;}
.y42{bottom:443.650500px;}
.y9c{bottom:444.982500px;}
.y137{bottom:446.938500px;}
.yb9{bottom:453.948000px;}
.y18e{bottom:454.393500px;}
.y10f{bottom:455.160000px;}
.y16c{bottom:455.386500px;}
.yf0{bottom:456.406500px;}
.y41{bottom:463.450500px;}
.y149{bottom:466.320000px;}
.y18d{bottom:472.393500px;}
.y16b{bottom:473.386500px;}
.y136{bottom:473.443500px;}
.yb8{bottom:473.748000px;}
.y10e{bottom:474.960000px;}
.yef{bottom:476.206500px;}
.y73{bottom:476.674500px;}
.y69{bottom:480.730500px;}
.y148{bottom:482.520000px;}
.y40{bottom:483.250500px;}
.y19{bottom:490.090500px;}
.y18c{bottom:490.393500px;}
.y20{bottom:490.558500px;}
.y16a{bottom:491.386500px;}
.y135{bottom:491.443500px;}
.yb7{bottom:493.548000px;}
.y10d{bottom:494.760000px;}
.yee{bottom:496.006500px;}
.y72{bottom:496.474500px;}
.y68{bottom:496.930500px;}
.y3f{bottom:503.050500px;}
.y18b{bottom:508.393500px;}
.y134{bottom:509.443500px;}
.y18{bottom:509.890500px;}
.y9b{bottom:510.094500px;}
.y1f{bottom:510.358500px;}
.yb6{bottom:513.348000px;}
.y10c{bottom:514.560000px;}
.yed{bottom:515.806500px;}
.y71{bottom:516.274500px;}
.y169{bottom:517.890000px;}
.y3e{bottom:522.850500px;}
.y18a{bottom:526.393500px;}
.y133{bottom:527.443500px;}
.y17{bottom:529.690500px;}
.y9a{bottom:529.894500px;}
.y1e{bottom:530.158500px;}
.yb5{bottom:533.148000px;}
.y10b{bottom:534.360000px;}
.yec{bottom:535.606500px;}
.y168{bottom:535.890000px;}
.y70{bottom:536.074500px;}
.y3d{bottom:542.650500px;}
.y99{bottom:549.694500px;}
.y1d{bottom:549.958500px;}
.y189{bottom:552.898500px;}
.yb4{bottom:552.948000px;}
.y132{bottom:553.947000px;}
.y10a{bottom:554.160000px;}
.yeb{bottom:555.406500px;}
.y6f{bottom:555.874500px;}
.y16{bottom:562.246500px;}
.y167{bottom:562.393500px;}
.y98{bottom:569.494500px;}
.y1c{bottom:569.758500px;}
.y188{bottom:570.898500px;}
.y131{bottom:571.947000px;}
.yb3{bottom:572.748000px;}
.y3c{bottom:575.206500px;}
.y6e{bottom:575.674500px;}
.yd9{bottom:577.006500px;}
.y166{bottom:580.393500px;}
.y187{bottom:588.898500px;}
.y97{bottom:589.294500px;}
.y1b{bottom:589.558500px;}
.yb2{bottom:592.548000px;}
.yea{bottom:595.006500px;}
.y6d{bottom:595.474500px;}
.yd8{bottom:596.806500px;}
.y130{bottom:598.450500px;}
.y165{bottom:606.898500px;}
.y96{bottom:609.094500px;}
.yb1{bottom:612.348000px;}
.ye9{bottom:614.806500px;}
.y6c{bottom:615.274500px;}
.y12f{bottom:616.450500px;}
.yd7{bottom:616.606500px;}
.y1a{bottom:622.114500px;}
.y164{bottom:624.898500px;}
.yc8{bottom:625.104000px;}
.y12e{bottom:634.450500px;}
.ye8{bottom:634.606500px;}
.y6b{bottom:635.074500px;}
.yd6{bottom:636.406500px;}
.y119{bottom:637.684500px;}
.y95{bottom:641.650500px;}
.y15{bottom:641.914500px;}
.y163{bottom:642.898500px;}
.yb0{bottom:644.904000px;}
.y186{bottom:651.402000px;}
.y12d{bottom:652.450500px;}
.y118{bottom:653.884500px;}
.ye7{bottom:654.406500px;}
.y3b{bottom:654.874500px;}
.y162{bottom:660.898500px;}
.y94{bottom:661.450500px;}
.y14{bottom:661.714500px;}
.yaf{bottom:664.704000px;}
.yd5{bottom:668.962500px;}
.y185{bottom:669.402000px;}
.ye6{bottom:674.206500px;}
.y3a{bottom:674.674500px;}
.y161{bottom:678.898500px;}
.y12c{bottom:678.954000px;}
.y93{bottom:681.250500px;}
.y13{bottom:681.514500px;}
.yae{bottom:684.504000px;}
.y184{bottom:687.402000px;}
.yd4{bottom:688.762500px;}
.ye5{bottom:694.006500px;}
.y39{bottom:694.474500px;}
.y160{bottom:696.898500px;}
.y12b{bottom:696.954000px;}
.y92{bottom:701.050500px;}
.y12{bottom:701.314500px;}
.y183{bottom:705.402000px;}
.y108{bottom:707.230500px;}
.yd3{bottom:708.562500px;}
.ye4{bottom:713.806500px;}
.y38{bottom:714.274500px;}
.y12a{bottom:714.954000px;}
.y91{bottom:720.850500px;}
.y11{bottom:721.114500px;}
.y15f{bottom:723.402000px;}
.y107{bottom:727.030500px;}
.yd2{bottom:728.362500px;}
.y182{bottom:731.905500px;}
.y129{bottom:732.954000px;}
.ye3{bottom:733.606500px;}
.y37{bottom:734.074500px;}
.y90{bottom:740.650500px;}
.y10{bottom:740.914500px;}
.y15e{bottom:741.402000px;}
.y106{bottom:746.830500px;}
.yd1{bottom:748.162500px;}
.yca{bottom:749.173500px;}
.y181{bottom:749.905500px;}
.y128{bottom:750.954000px;}
.y36{bottom:753.874500px;}
.y15d{bottom:759.402000px;}
.y8f{bottom:760.450500px;}
.yf{bottom:760.714500px;}
.ye2{bottom:766.162500px;}
.y105{bottom:766.630500px;}
.y180{bottom:767.905500px;}
.y35{bottom:773.674500px;}
.y8e{bottom:780.250500px;}
.ye{bottom:780.514500px;}
.yd0{bottom:780.718500px;}
.y15c{bottom:785.905500px;}
.y127{bottom:785.962500px;}
.y104{bottom:786.430500px;}
.y34{bottom:793.474500px;}
.y8d{bottom:800.050500px;}
.yd{bottom:800.314500px;}
.ycf{bottom:800.518500px;}
.y15b{bottom:803.905500px;}
.y57{bottom:806.230500px;}
.y33{bottom:813.274500px;}
.y8c{bottom:819.850500px;}
.yc{bottom:820.114500px;}
.yce{bottom:820.318500px;}
.y15a{bottom:821.905500px;}
.y56{bottom:826.030500px;}
.y32{bottom:833.074500px;}
.y159{bottom:839.905500px;}
.yb{bottom:839.914500px;}
.ycd{bottom:840.118500px;}
.y55{bottom:845.830500px;}
.y17f{bottom:848.409000px;}
.y8b{bottom:852.406500px;}
.y31{bottom:852.874500px;}
.y158{bottom:857.905500px;}
.ycc{bottom:859.918500px;}
.y54{bottom:865.630500px;}
.y17e{bottom:866.409000px;}
.y30{bottom:872.674500px;}
.y157{bottom:875.905500px;}
.ycb{bottom:879.718500px;}
.y17d{bottom:884.409000px;}
.y53{bottom:885.430500px;}
.y2f{bottom:892.474500px;}
.ya{bottom:895.635000px;}
.y156{bottom:902.409000px;}
.y52{bottom:905.230500px;}
.y2e{bottom:912.274500px;}
.y9{bottom:913.635000px;}
.y155{bottom:920.409000px;}
.y51{bottom:925.030500px;}
.y2d{bottom:932.074500px;}
.y50{bottom:944.830500px;}
.y154{bottom:946.914000px;}
.y8{bottom:949.635000px;}
.y8a{bottom:951.874500px;}
.y2c{bottom:964.630500px;}
.y153{bottom:964.914000px;}
.y89{bottom:971.674500px;}
.y1a1{bottom:973.417500px;}
.y152{bottom:982.914000px;}
.y2b{bottom:984.430500px;}
.y1a0{bottom:991.417500px;}
.y88{bottom:991.474500px;}
.y7{bottom:992.835000px;}
.y2a{bottom:1004.230500px;}
.y1a9{bottom:1005.180000px;}
.y151{bottom:1009.417500px;}
.y87{bottom:1011.274500px;}
.y1a8{bottom:1023.180000px;}
.y29{bottom:1024.030500px;}
.y150{bottom:1027.417500px;}
.y6{bottom:1028.835000px;}
.y86{bottom:1031.074500px;}
.y1a7{bottom:1041.180000px;}
.y28{bottom:1043.830500px;}
.y14f{bottom:1045.417500px;}
.y85{bottom:1050.874500px;}
.y1a6{bottom:1059.180000px;}
.y27{bottom:1063.630500px;}
.y84{bottom:1070.674500px;}
.y14e{bottom:1071.921000px;}
.y1a5{bottom:1077.180000px;}
.y26{bottom:1083.430500px;}
.y14d{bottom:1089.921000px;}
.y83{bottom:1090.474500px;}
.y1a4{bottom:1095.180000px;}
.y2{bottom:1100.785500px;}
.y25{bottom:1103.230500px;}
.y14c{bottom:1107.921000px;}
.y1a3{bottom:1113.180000px;}
.y24{bottom:1123.030500px;}
.y14b{bottom:1125.921000px;}
.y23{bottom:1142.830500px;}
.y14a{bottom:1143.921000px;}
.y1a2{bottom:1143.936000px;}
.y1{bottom:1159.671000px;}
.y67{bottom:1203.604500px;}
.yad{bottom:1204.654500px;}
.h7{height:39.313477px;}
.h6{height:39.366211px;}
.ha{height:43.535156px;}
.hf{height:43.681641px;}
.he{height:43.740234px;}
.hd{height:47.888672px;}
.hb{height:48.049805px;}
.h4{height:48.114258px;}
.h9{height:52.417969px;}
.hc{height:52.488281px;}
.h3{height:65.610352px;}
.h8{height:87.480469px;}
.h2{height:171.000000px;}
.h5{height:1262.834646px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:0.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:44.645700px;}
.xe{left:46.771650px;}
.x5{left:108.000000px;}
.x6{left:122.323350px;}
.x13{left:125.007900px;}
.x1{left:127.657350px;}
.xb{left:129.259800px;}
.x2{left:131.834700px;}
.x11{left:150.519000px;}
.x9{left:267.789000px;}
.xa{left:349.132500px;}
.x8{left:356.334000px;}
.x7{left:400.629000px;}
.xc{left:467.716500px;}
.x12{left:484.725000px;}
.xd{left:488.976000px;}
.x10{left:537.888000px;}
.x4{left:833.893500px;}
.x3{left:836.019000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.005333pt;}
.ls1{letter-spacing:0.005867pt;}
.ls0{letter-spacing:0.006400pt;}
.ls8{letter-spacing:0.181333pt;}
.ls4{letter-spacing:0.368000pt;}
.ls6{letter-spacing:1.861333pt;}
.lsa{letter-spacing:1.882667pt;}
.ls3{letter-spacing:2.826667pt;}
.ls9{letter-spacing:2.837333pt;}
.ls7{letter-spacing:3.200000pt;}
.ws2{word-spacing:-26.666667pt;}
.ws0{word-spacing:-20.000000pt;}
.wsb{word-spacing:-16.533333pt;}
.wsd{word-spacing:-16.170667pt;}
.ws7{word-spacing:-16.160000pt;}
.ws5{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.216000pt;}
.wsa{word-spacing:-15.194667pt;}
.ws3{word-spacing:-14.666667pt;}
.ws8{word-spacing:-13.701333pt;}
.ws9{word-spacing:-13.338667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.wsc{word-spacing:-4.181333pt;}
.ws4{word-spacing:0.000000pt;}
.wsf{word-spacing:3.801107pt;}
._0{margin-left:-8.106667pt;}
._6{margin-left:-2.927467pt;}
._11{margin-left:-1.941867pt;}
._4{margin-left:-0.997333pt;}
._2{width:1.008000pt;}
._17{width:2.114133pt;}
._c{width:3.038933pt;}
._d{width:4.488000pt;}
._e{width:5.983467pt;}
._8{width:7.277867pt;}
._1{width:8.167467pt;}
._f{width:9.703467pt;}
._13{width:10.876800pt;}
._14{width:11.997333pt;}
._7{width:12.994667pt;}
._2c{width:14.373333pt;}
._10{width:16.104000pt;}
._12{width:17.036800pt;}
._18{width:18.075200pt;}
._21{width:19.107733pt;}
._9{width:20.058133pt;}
._1b{width:20.996800pt;}
._1d{width:22.275733pt;}
._20{width:23.409067pt;}
._a{width:24.351467pt;}
._23{width:25.344000pt;}
._2a{width:26.276800pt;}
._b{width:27.514667pt;}
._3{width:28.852267pt;}
._1a{width:30.019733pt;}
._26{width:30.981867pt;}
._16{width:32.313600pt;}
._19{width:33.576000pt;}
._1c{width:34.664000pt;}
._1e{width:35.560000pt;}
._1f{width:36.666667pt;}
._22{width:37.898667pt;}
._5{width:39.899200pt;}
._29{width:41.929067pt;}
._28{width:44.616000pt;}
._15{width:46.106133pt;}
._25{width:48.364800pt;}
._27{width:52.060800pt;}
._24{width:54.389867pt;}
._2b{width:58.282667pt;}
._2d{width:84.069333pt;}
._2e{width:103.418667pt;}
.fs7{font-size:38.095253pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:106.666667pt;}
.fs0{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:36.838000pt;}
.y3{bottom:50.519733pt;}
.y4{bottom:51.238000pt;}
.yc9{bottom:53.595733pt;}
.y6a{bottom:53.616667pt;}
.y22{bottom:99.908267pt;}
.ye1{bottom:100.308933pt;}
.y4f{bottom:101.001867pt;}
.y19f{bottom:101.669600pt;}
.yac{bottom:102.601867pt;}
.y126{bottom:104.970400pt;}
.yc7{bottom:105.493733pt;}
.y114{bottom:106.570400pt;}
.y82{bottom:108.094800pt;}
.y147{bottom:111.042800pt;}
.y66{bottom:111.647600pt;}
.y100{bottom:112.756133pt;}
.y21{bottom:114.308267pt;}
.y19e{bottom:117.669600pt;}
.ye0{bottom:117.908933pt;}
.y17c{bottom:118.551467pt;}
.y4e{bottom:118.601867pt;}
.yab{bottom:120.201867pt;}
.y125{bottom:122.570400pt;}
.yc6{bottom:123.093733pt;}
.y113{bottom:124.170400pt;}
.y81{bottom:125.694800pt;}
.y146{bottom:127.042800pt;}
.y65{bottom:129.247600pt;}
.yff{bottom:130.356133pt;}
.y19d{bottom:133.669333pt;}
.y17b{bottom:134.552000pt;}
.ydf{bottom:135.509333pt;}
.y4d{bottom:136.201333pt;}
.yaa{bottom:137.801333pt;}
.y124{bottom:140.170667pt;}
.yc5{bottom:140.693333pt;}
.y112{bottom:141.770667pt;}
.y80{bottom:143.294667pt;}
.y64{bottom:146.848000pt;}
.yfe{bottom:147.956000pt;}
.y17a{bottom:150.552000pt;}
.y145{bottom:150.601333pt;}
.yde{bottom:153.109333pt;}
.y4c{bottom:153.801333pt;}
.ya9{bottom:155.401333pt;}
.y19c{bottom:157.228000pt;}
.y123{bottom:157.770667pt;}
.yc4{bottom:158.293333pt;}
.y111{bottom:159.370667pt;}
.y7f{bottom:160.894667pt;}
.y63{bottom:164.448000pt;}
.yfd{bottom:165.556000pt;}
.y179{bottom:166.552000pt;}
.y144{bottom:166.601333pt;}
.ydd{bottom:170.709333pt;}
.y4b{bottom:171.401333pt;}
.ya8{bottom:173.001333pt;}
.y19b{bottom:173.228000pt;}
.y122{bottom:175.370667pt;}
.yc3{bottom:175.893333pt;}
.y7e{bottom:178.494667pt;}
.y62{bottom:182.048000pt;}
.y178{bottom:182.552000pt;}
.y143{bottom:182.601333pt;}
.yfc{bottom:183.156000pt;}
.ydc{bottom:188.309333pt;}
.y4a{bottom:189.001333pt;}
.y19a{bottom:189.228000pt;}
.ya7{bottom:190.601333pt;}
.y121{bottom:192.970667pt;}
.yc2{bottom:193.493333pt;}
.y7d{bottom:196.094667pt;}
.y177{bottom:198.552000pt;}
.y142{bottom:198.601333pt;}
.y61{bottom:199.648000pt;}
.yfb{bottom:200.756000pt;}
.y199{bottom:205.228000pt;}
.ydb{bottom:205.909333pt;}
.y49{bottom:206.601333pt;}
.ya6{bottom:208.201333pt;}
.y120{bottom:210.570667pt;}
.yc1{bottom:211.093333pt;}
.y7c{bottom:213.694667pt;}
.y60{bottom:217.248000pt;}
.y198{bottom:221.228000pt;}
.y176{bottom:222.110667pt;}
.y141{bottom:222.161333pt;}
.yda{bottom:223.509333pt;}
.y48{bottom:224.201333pt;}
.ya5{bottom:225.801333pt;}
.y11f{bottom:228.170667pt;}
.yfa{bottom:229.694667pt;}
.y7b{bottom:231.294667pt;}
.y175{bottom:238.110667pt;}
.y140{bottom:238.161333pt;}
.yc0{bottom:240.032000pt;}
.y47{bottom:241.801333pt;}
.ya4{bottom:243.401333pt;}
.y197{bottom:244.788000pt;}
.y11e{bottom:245.770667pt;}
.y5f{bottom:246.186667pt;}
.yf9{bottom:247.294667pt;}
.y7a{bottom:248.894667pt;}
.y109{bottom:252.448000pt;}
.y174{bottom:254.110667pt;}
.y13f{bottom:254.161333pt;}
.y46{bottom:259.401333pt;}
.y196{bottom:260.788000pt;}
.ya3{bottom:261.001333pt;}
.y11d{bottom:263.370667pt;}
.y5e{bottom:263.786667pt;}
.yf8{bottom:264.894667pt;}
.y79{bottom:266.494667pt;}
.y13e{bottom:270.161333pt;}
.y195{bottom:276.788000pt;}
.y173{bottom:277.669333pt;}
.ya2{bottom:278.601333pt;}
.y11c{bottom:280.970667pt;}
.y5d{bottom:281.386667pt;}
.yf7{bottom:282.494667pt;}
.y103{bottom:283.121333pt;}
.y78{bottom:284.094667pt;}
.y45{bottom:288.340000pt;}
.y194{bottom:292.788000pt;}
.y172{bottom:293.669333pt;}
.y13d{bottom:293.720000pt;}
.ya1{bottom:296.201333pt;}
.y102{bottom:297.521333pt;}
.ybf{bottom:297.909333pt;}
.y11b{bottom:298.570667pt;}
.y5c{bottom:298.986667pt;}
.yf6{bottom:300.094667pt;}
.y77{bottom:301.694667pt;}
.y193{bottom:308.788000pt;}
.y171{bottom:309.669333pt;}
.y13c{bottom:309.720000pt;}
.y101{bottom:311.921333pt;}
.ya0{bottom:313.801333pt;}
.ybe{bottom:315.509333pt;}
.y5b{bottom:316.586667pt;}
.yf5{bottom:317.694667pt;}
.y76{bottom:319.294667pt;}
.y13b{bottom:325.720000pt;}
.y117{bottom:326.708000pt;}
.y11a{bottom:327.509333pt;}
.y9f{bottom:331.401333pt;}
.y192{bottom:332.346667pt;}
.ybd{bottom:333.109333pt;}
.y170{bottom:333.228000pt;}
.y5a{bottom:334.186667pt;}
.yf4{bottom:335.294667pt;}
.y75{bottom:336.894667pt;}
.y116{bottom:341.108000pt;}
.y13a{bottom:341.720000pt;}
.y191{bottom:348.346667pt;}
.y9e{bottom:349.001333pt;}
.y16f{bottom:349.228000pt;}
.ybc{bottom:350.709333pt;}
.y59{bottom:351.786667pt;}
.yf3{bottom:352.894667pt;}
.y115{bottom:355.508000pt;}
.y44{bottom:359.156000pt;}
.y190{bottom:364.346667pt;}
.y16e{bottom:365.228000pt;}
.y139{bottom:365.278667pt;}
.y74{bottom:365.833333pt;}
.y9d{bottom:366.601333pt;}
.ybb{bottom:368.309333pt;}
.y58{bottom:369.386667pt;}
.yf2{bottom:370.494667pt;}
.y43{bottom:376.756000pt;}
.y18f{bottom:380.346667pt;}
.y16d{bottom:381.228000pt;}
.y138{bottom:381.278667pt;}
.yba{bottom:385.909333pt;}
.y110{bottom:386.986667pt;}
.yf1{bottom:388.094667pt;}
.y42{bottom:394.356000pt;}
.y9c{bottom:395.540000pt;}
.y137{bottom:397.278667pt;}
.yb9{bottom:403.509333pt;}
.y18e{bottom:403.905333pt;}
.y10f{bottom:404.586667pt;}
.y16c{bottom:404.788000pt;}
.yf0{bottom:405.694667pt;}
.y41{bottom:411.956000pt;}
.y149{bottom:414.506667pt;}
.y18d{bottom:419.905333pt;}
.y16b{bottom:420.788000pt;}
.y136{bottom:420.838667pt;}
.yb8{bottom:421.109333pt;}
.y10e{bottom:422.186667pt;}
.yef{bottom:423.294667pt;}
.y73{bottom:423.710667pt;}
.y69{bottom:427.316000pt;}
.y148{bottom:428.906667pt;}
.y40{bottom:429.556000pt;}
.y19{bottom:435.636000pt;}
.y18c{bottom:435.905333pt;}
.y20{bottom:436.052000pt;}
.y16a{bottom:436.788000pt;}
.y135{bottom:436.838667pt;}
.yb7{bottom:438.709333pt;}
.y10d{bottom:439.786667pt;}
.yee{bottom:440.894667pt;}
.y72{bottom:441.310667pt;}
.y68{bottom:441.716000pt;}
.y3f{bottom:447.156000pt;}
.y18b{bottom:451.905333pt;}
.y134{bottom:452.838667pt;}
.y18{bottom:453.236000pt;}
.y9b{bottom:453.417333pt;}
.y1f{bottom:453.652000pt;}
.yb6{bottom:456.309333pt;}
.y10c{bottom:457.386667pt;}
.yed{bottom:458.494667pt;}
.y71{bottom:458.910667pt;}
.y169{bottom:460.346667pt;}
.y3e{bottom:464.756000pt;}
.y18a{bottom:467.905333pt;}
.y133{bottom:468.838667pt;}
.y17{bottom:470.836000pt;}
.y9a{bottom:471.017333pt;}
.y1e{bottom:471.252000pt;}
.yb5{bottom:473.909333pt;}
.y10b{bottom:474.986667pt;}
.yec{bottom:476.094667pt;}
.y168{bottom:476.346667pt;}
.y70{bottom:476.510667pt;}
.y3d{bottom:482.356000pt;}
.y99{bottom:488.617333pt;}
.y1d{bottom:488.852000pt;}
.y189{bottom:491.465333pt;}
.yb4{bottom:491.509333pt;}
.y132{bottom:492.397333pt;}
.y10a{bottom:492.586667pt;}
.yeb{bottom:493.694667pt;}
.y6f{bottom:494.110667pt;}
.y16{bottom:499.774667pt;}
.y167{bottom:499.905333pt;}
.y98{bottom:506.217333pt;}
.y1c{bottom:506.452000pt;}
.y188{bottom:507.465333pt;}
.y131{bottom:508.397333pt;}
.yb3{bottom:509.109333pt;}
.y3c{bottom:511.294667pt;}
.y6e{bottom:511.710667pt;}
.yd9{bottom:512.894667pt;}
.y166{bottom:515.905333pt;}
.y187{bottom:523.465333pt;}
.y97{bottom:523.817333pt;}
.y1b{bottom:524.052000pt;}
.yb2{bottom:526.709333pt;}
.yea{bottom:528.894667pt;}
.y6d{bottom:529.310667pt;}
.yd8{bottom:530.494667pt;}
.y130{bottom:531.956000pt;}
.y165{bottom:539.465333pt;}
.y96{bottom:541.417333pt;}
.yb1{bottom:544.309333pt;}
.ye9{bottom:546.494667pt;}
.y6c{bottom:546.910667pt;}
.y12f{bottom:547.956000pt;}
.yd7{bottom:548.094667pt;}
.y1a{bottom:552.990667pt;}
.y164{bottom:555.465333pt;}
.yc8{bottom:555.648000pt;}
.y12e{bottom:563.956000pt;}
.ye8{bottom:564.094667pt;}
.y6b{bottom:564.510667pt;}
.yd6{bottom:565.694667pt;}
.y119{bottom:566.830667pt;}
.y95{bottom:570.356000pt;}
.y15{bottom:570.590667pt;}
.y163{bottom:571.465333pt;}
.yb0{bottom:573.248000pt;}
.y186{bottom:579.024000pt;}
.y12d{bottom:579.956000pt;}
.y118{bottom:581.230667pt;}
.ye7{bottom:581.694667pt;}
.y3b{bottom:582.110667pt;}
.y162{bottom:587.465333pt;}
.y94{bottom:587.956000pt;}
.y14{bottom:588.190667pt;}
.yaf{bottom:590.848000pt;}
.yd5{bottom:594.633333pt;}
.y185{bottom:595.024000pt;}
.ye6{bottom:599.294667pt;}
.y3a{bottom:599.710667pt;}
.y161{bottom:603.465333pt;}
.y12c{bottom:603.514667pt;}
.y93{bottom:605.556000pt;}
.y13{bottom:605.790667pt;}
.yae{bottom:608.448000pt;}
.y184{bottom:611.024000pt;}
.yd4{bottom:612.233333pt;}
.ye5{bottom:616.894667pt;}
.y39{bottom:617.310667pt;}
.y160{bottom:619.465333pt;}
.y12b{bottom:619.514667pt;}
.y92{bottom:623.156000pt;}
.y12{bottom:623.390667pt;}
.y183{bottom:627.024000pt;}
.y108{bottom:628.649333pt;}
.yd3{bottom:629.833333pt;}
.ye4{bottom:634.494667pt;}
.y38{bottom:634.910667pt;}
.y12a{bottom:635.514667pt;}
.y91{bottom:640.756000pt;}
.y11{bottom:640.990667pt;}
.y15f{bottom:643.024000pt;}
.y107{bottom:646.249333pt;}
.yd2{bottom:647.433333pt;}
.y182{bottom:650.582667pt;}
.y129{bottom:651.514667pt;}
.ye3{bottom:652.094667pt;}
.y37{bottom:652.510667pt;}
.y90{bottom:658.356000pt;}
.y10{bottom:658.590667pt;}
.y15e{bottom:659.024000pt;}
.y106{bottom:663.849333pt;}
.yd1{bottom:665.033333pt;}
.yca{bottom:665.932000pt;}
.y181{bottom:666.582667pt;}
.y128{bottom:667.514667pt;}
.y36{bottom:670.110667pt;}
.y15d{bottom:675.024000pt;}
.y8f{bottom:675.956000pt;}
.yf{bottom:676.190667pt;}
.ye2{bottom:681.033333pt;}
.y105{bottom:681.449333pt;}
.y180{bottom:682.582667pt;}
.y35{bottom:687.710667pt;}
.y8e{bottom:693.556000pt;}
.ye{bottom:693.790667pt;}
.yd0{bottom:693.972000pt;}
.y15c{bottom:698.582667pt;}
.y127{bottom:698.633333pt;}
.y104{bottom:699.049333pt;}
.y34{bottom:705.310667pt;}
.y8d{bottom:711.156000pt;}
.yd{bottom:711.390667pt;}
.ycf{bottom:711.572000pt;}
.y15b{bottom:714.582667pt;}
.y57{bottom:716.649333pt;}
.y33{bottom:722.910667pt;}
.y8c{bottom:728.756000pt;}
.yc{bottom:728.990667pt;}
.yce{bottom:729.172000pt;}
.y15a{bottom:730.582667pt;}
.y56{bottom:734.249333pt;}
.y32{bottom:740.510667pt;}
.y159{bottom:746.582667pt;}
.yb{bottom:746.590667pt;}
.ycd{bottom:746.772000pt;}
.y55{bottom:751.849333pt;}
.y17f{bottom:754.141333pt;}
.y8b{bottom:757.694667pt;}
.y31{bottom:758.110667pt;}
.y158{bottom:762.582667pt;}
.ycc{bottom:764.372000pt;}
.y54{bottom:769.449333pt;}
.y17e{bottom:770.141333pt;}
.y30{bottom:775.710667pt;}
.y157{bottom:778.582667pt;}
.ycb{bottom:781.972000pt;}
.y17d{bottom:786.141333pt;}
.y53{bottom:787.049333pt;}
.y2f{bottom:793.310667pt;}
.ya{bottom:796.120000pt;}
.y156{bottom:802.141333pt;}
.y52{bottom:804.649333pt;}
.y2e{bottom:810.910667pt;}
.y9{bottom:812.120000pt;}
.y155{bottom:818.141333pt;}
.y51{bottom:822.249333pt;}
.y2d{bottom:828.510667pt;}
.y50{bottom:839.849333pt;}
.y154{bottom:841.701333pt;}
.y8{bottom:844.120000pt;}
.y8a{bottom:846.110667pt;}
.y2c{bottom:857.449333pt;}
.y153{bottom:857.701333pt;}
.y89{bottom:863.710667pt;}
.y1a1{bottom:865.260000pt;}
.y152{bottom:873.701333pt;}
.y2b{bottom:875.049333pt;}
.y1a0{bottom:881.260000pt;}
.y88{bottom:881.310667pt;}
.y7{bottom:882.520000pt;}
.y2a{bottom:892.649333pt;}
.y1a9{bottom:893.493333pt;}
.y151{bottom:897.260000pt;}
.y87{bottom:898.910667pt;}
.y1a8{bottom:909.493333pt;}
.y29{bottom:910.249333pt;}
.y150{bottom:913.260000pt;}
.y6{bottom:914.520000pt;}
.y86{bottom:916.510667pt;}
.y1a7{bottom:925.493333pt;}
.y28{bottom:927.849333pt;}
.y14f{bottom:929.260000pt;}
.y85{bottom:934.110667pt;}
.y1a6{bottom:941.493333pt;}
.y27{bottom:945.449333pt;}
.y84{bottom:951.710667pt;}
.y14e{bottom:952.818667pt;}
.y1a5{bottom:957.493333pt;}
.y26{bottom:963.049333pt;}
.y14d{bottom:968.818667pt;}
.y83{bottom:969.310667pt;}
.y1a4{bottom:973.493333pt;}
.y2{bottom:978.476000pt;}
.y25{bottom:980.649333pt;}
.y14c{bottom:984.818667pt;}
.y1a3{bottom:989.493333pt;}
.y24{bottom:998.249333pt;}
.y14b{bottom:1000.818667pt;}
.y23{bottom:1015.849333pt;}
.y14a{bottom:1016.818667pt;}
.y1a2{bottom:1016.832000pt;}
.y1{bottom:1030.818667pt;}
.y67{bottom:1069.870667pt;}
.yad{bottom:1070.804000pt;}
.h7{height:34.945312pt;}
.h6{height:34.992188pt;}
.ha{height:38.697917pt;}
.hf{height:38.828125pt;}
.he{height:38.880208pt;}
.hd{height:42.567708pt;}
.hb{height:42.710938pt;}
.h4{height:42.768229pt;}
.h9{height:46.593750pt;}
.hc{height:46.656250pt;}
.h3{height:58.320312pt;}
.h8{height:77.760417pt;}
.h2{height:152.000000pt;}
.h5{height:1122.519685pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:0.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:39.685067pt;}
.xe{left:41.574800pt;}
.x5{left:96.000000pt;}
.x6{left:108.731867pt;}
.x13{left:111.118133pt;}
.x1{left:113.473200pt;}
.xb{left:114.897600pt;}
.x2{left:117.186400pt;}
.x11{left:133.794667pt;}
.x9{left:238.034667pt;}
.xa{left:310.340000pt;}
.x8{left:316.741333pt;}
.x7{left:356.114667pt;}
.xc{left:415.748000pt;}
.x12{left:430.866667pt;}
.xd{left:434.645333pt;}
.x10{left:478.122667pt;}
.x4{left:741.238667pt;}
.x3{left:743.128000pt;}
}




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