
    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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_8a05a2ff3ba7a39fa899147e.woff2')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_565e2c48af4dc7fba9eff3c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_140599dfdc3784e15cf1a0ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_4dc20c8cd040ee5e6926f2ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_517bdb49c38648902fe7a004.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_c70a8a3b6b9f45f5d8fb2aae.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c989333a9a0527eb4c894bef.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6413a533ebf1203b7b93c977.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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:ffb;src:url('chunks/assets/font_8e14a664706cb47e75378832.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.401855;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;}
.ls1f{letter-spacing:-1.656000px;}
.lse{letter-spacing:-1.440000px;}
.ls1d{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.792000px;}
.ls9{letter-spacing:1.337760px;}
.ls13{letter-spacing:1.368000px;}
.ls3{letter-spacing:1.422000px;}
.ls8{letter-spacing:1.440000px;}
.ls6{letter-spacing:1.800000px;}
.lsd{letter-spacing:17.280000px;}
.ls4{letter-spacing:19.037280px;}
.ls17{letter-spacing:33.960000px;}
.ls1a{letter-spacing:44.784000px;}
.ls14{letter-spacing:46.224000px;}
.ls15{letter-spacing:54.864000px;}
.ls2{letter-spacing:59.760000px;}
.ls12{letter-spacing:64.200000px;}
.ls19{letter-spacing:64.224000px;}
.ls18{letter-spacing:107.424000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws3{word-spacing:-25.362000px;}
.ws2{word-spacing:-23.940000px;}
.ws5{word-spacing:-22.860000px;}
.wsa{word-spacing:-19.368000px;}
.ws1{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.wse{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.568000px;}
.ws9{word-spacing:-17.280000px;}
.ws8{word-spacing:-17.208000px;}
.wsf{word-spacing:-17.064000px;}
.ws12{word-spacing:-16.344000px;}
.wsd{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._15{margin-left:-17.172000px;}
._14{margin-left:-14.842560px;}
._11{margin-left:-13.680000px;}
._17{margin-left:-11.328000px;}
._16{margin-left:-9.252000px;}
._12{margin-left:-7.116000px;}
._7{margin-left:-4.464000px;}
._8{margin-left:-3.384000px;}
._6{margin-left:-2.160000px;}
._1{margin-left:-1.008000px;}
._0{width:1.762560px;}
._9{width:3.442080px;}
._a{width:5.081760px;}
._1a{width:6.164640px;}
._b{width:7.272000px;}
._19{width:9.000000px;}
._1b{width:10.129440px;}
._5{width:11.376000px;}
._3{width:12.888000px;}
._4{width:13.968000px;}
._f{width:15.336000px;}
._2{width:16.560000px;}
._c{width:20.016000px;}
._d{width:21.168000px;}
._e{width:22.176000px;}
._13{width:23.736000px;}
._21{width:24.757440px;}
._22{width:25.834560px;}
._23{width:27.010560px;}
._1c{width:29.016000px;}
._1d{width:30.396000px;}
._24{width:31.501440px;}
._1e{width:33.336000px;}
._1f{width:34.488000px;}
._20{width:36.192000px;}
._26{width:44.280000px;}
._2b{width:49.104000px;}
._29{width:80.568000px;}
._30{width:85.680000px;}
._2c{width:121.104000px;}
._2a{width:125.424000px;}
._27{width:183.792000px;}
._2e{width:249.048000px;}
._2f{width:265.032000px;}
._28{width:288.360000px;}
._2d{width:326.088000px;}
._10{width:845.461440px;}
._25{width:847.596000px;}
._18{width:849.185760px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs7{font-size:120.240000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y181{bottom:14.220000px;}
.y17e{bottom:14.400000px;}
.y169{bottom:14.580000px;}
.y168{bottom:14.760000px;}
.y19b{bottom:14.940000px;}
.y1be{bottom:17.280000px;}
.y186{bottom:23.580000px;}
.y19e{bottom:25.920000px;}
.y192{bottom:29.160000px;}
.y183{bottom:29.700000px;}
.y18e{bottom:32.940000px;}
.y190{bottom:33.120000px;}
.y187{bottom:39.060000px;}
.y189{bottom:39.240000px;}
.y180{bottom:45.360000px;}
.y1a6{bottom:45.540000px;}
.y17a{bottom:45.720000px;}
.y1aa{bottom:45.750000px;}
.y1bd{bottom:48.420000px;}
.y185{bottom:54.720000px;}
.y19d{bottom:56.880000px;}
.y2{bottom:57.060000px;}
.y18d{bottom:64.080000px;}
.y196{bottom:74.880000px;}
.y17b{bottom:75.960000px;}
.y15{bottom:75.996000px;}
.y164{bottom:76.500000px;}
.y1{bottom:76.536000px;}
.y1b4{bottom:76.680000px;}
.y1b7{bottom:76.725000px;}
.y1b9{bottom:76.860000px;}
.y179{bottom:76.890000px;}
.y194{bottom:77.445000px;}
.y1bc{bottom:79.380000px;}
.y1c0{bottom:107.460000px;}
.y19c{bottom:107.640000px;}
.y1b3{bottom:107.820000px;}
.y178{bottom:107.850000px;}
.y1b6{bottom:107.865000px;}
.y18f{bottom:108.720000px;}
.y128{bottom:110.556000px;}
.y16b{bottom:111.240000px;}
.y137{bottom:111.636000px;}
.y154{bottom:113.616000px;}
.y124{bottom:115.596000px;}
.yb1{bottom:117.576000px;}
.y32{bottom:118.116000px;}
.y14{bottom:122.256000px;}
.y105{bottom:131.796000px;}
.y177{bottom:138.990000px;}
.y80{bottom:142.596000px;}
.y123{bottom:146.556000px;}
.y198{bottom:147.105000px;}
.yb0{bottom:148.716000px;}
.y31{bottom:149.076000px;}
.y63{bottom:152.490000px;}
.y13{bottom:158.430000px;}
.y127{bottom:159.690000px;}
.y99{bottom:160.590000px;}
.y153{bottom:162.570000px;}
.y104{bottom:162.750000px;}
.y11e{bottom:165.810000px;}
.y176{bottom:169.950000px;}
.yed{bottom:173.370000px;}
.y7f{bottom:173.550000px;}
.ya7{bottom:173.730000px;}
.y122{bottom:177.690000px;}
.yaf{bottom:179.670000px;}
.y30{bottom:180.030000px;}
.y19a{bottom:181.650000px;}
.y18c{bottom:190.290000px;}
.y98{bottom:191.730000px;}
.y103{bottom:193.710000px;}
.y62{bottom:195.510000px;}
.y1c1{bottom:198.030000px;}
.y161{bottom:198.750000px;}
.y175{bottom:201.090000px;}
.yec{bottom:204.330000px;}
.y7e{bottom:204.690000px;}
.y12d{bottom:208.290000px;}
.y11d{bottom:208.650000px;}
.yb5{bottom:210.810000px;}
.y152{bottom:211.530000px;}
.y197{bottom:213.870000px;}
.y1bf{bottom:215.490000px;}
.y97{bottom:222.690000px;}
.y12{bottom:224.310000px;}
.y102{bottom:224.850000px;}
.y61{bottom:226.650000px;}
.y2f{bottom:229.170000px;}
.y160{bottom:229.710000px;}
.y174{bottom:232.095000px;}
.yeb{bottom:235.470000px;}
.y7d{bottom:235.650000px;}
.ya6{bottom:235.830000px;}
.y11c{bottom:239.790000px;}
.yb4{bottom:241.770000px;}
.y151{bottom:242.670000px;}
.yd0{bottom:247.890000px;}
.y96{bottom:253.830000px;}
.y101{bottom:255.810000px;}
.y60{bottom:257.610000px;}
.y2e{bottom:260.310000px;}
.y173{bottom:263.235000px;}
.yea{bottom:266.430000px;}
.ya5{bottom:266.790000px;}
.y12f{bottom:270.390000px;}
.y11b{bottom:270.750000px;}
.y18b{bottom:271.830000px;}
.y15f{bottom:272.730000px;}
.ybb{bottom:272.910000px;}
.y150{bottom:273.630000px;}
.y7c{bottom:278.850000px;}
.y199{bottom:279.585000px;}
.y95{bottom:284.790000px;}
.y100{bottom:286.950000px;}
.y5f{bottom:288.750000px;}
.ycf{bottom:290.730000px;}
.y2d{bottom:291.270000px;}
.y172{bottom:294.195000px;}
.ye9{bottom:297.570000px;}
.y11a{bottom:301.710000px;}
.yba{bottom:303.870000px;}
.y11{bottom:304.410000px;}
.y14f{bottom:304.770000px;}
.ya4{bottom:309.810000px;}
.y94{bottom:315.930000px;}
.yff{bottom:317.550000px;}
.y5e{bottom:319.710000px;}
.y1af{bottom:321.150000px;}
.y7b{bottom:321.870000px;}
.y2c{bottom:322.230000px;}
.y171{bottom:325.335000px;}
.ye8{bottom:328.530000px;}
.y119{bottom:332.850000px;}
.y15e{bottom:334.830000px;}
.yb9{bottom:335.010000px;}
.y14e{bottom:335.730000px;}
.ya3{bottom:340.635000px;}
.yae{bottom:346.935000px;}
.y1ae{bottom:352.335000px;}
.y7a{bottom:352.875000px;}
.y18a{bottom:353.415000px;}
.y170{bottom:356.295000px;}
.y93{bottom:358.995000px;}
.y5d{bottom:362.775000px;}
.y126{bottom:363.495000px;}
.y118{bottom:363.855000px;}
.yb8{bottom:366.015000px;}
.y14d{bottom:366.735000px;}
.yfe{bottom:367.095000px;}
.y45{bottom:367.815000px;}
.y1ad{bottom:369.795000px;}
.y2b{bottom:371.415000px;}
.ya2{bottom:371.595000px;}
.y10{bottom:377.535000px;}
.ye7{bottom:377.715000px;}
.yad{bottom:378.075000px;}
.y79{bottom:384.015000px;}
.y16f{bottom:387.465000px;}
.y92{bottom:389.955000px;}
.y5c{bottom:393.915000px;}
.y117{bottom:394.995000px;}
.y136{bottom:396.075000px;}
.yfd{bottom:398.055000px;}
.y2a{bottom:402.555000px;}
.ye6{bottom:408.675000px;}
.yac{bottom:409.035000px;}
.y44{bottom:410.115000px;}
.yce{bottom:414.975000px;}
.y14c{bottom:415.875000px;}
.y16e{bottom:418.425000px;}
.y91{bottom:421.095000px;}
.yf{bottom:424.155000px;}
.y5b{bottom:424.875000px;}
.y116{bottom:425.955000px;}
.y78{bottom:427.035000px;}
.y1ac{bottom:432.615000px;}
.y29{bottom:433.515000px;}
.y188{bottom:434.955000px;}
.ye5{bottom:439.815000px;}
.y15d{bottom:439.995000px;}
.yab{bottom:440.175000px;}
.ycd{bottom:446.115000px;}
.yfc{bottom:446.835000px;}
.y14b{bottom:447.015000px;}
.y43{bottom:447.555000px;}
.y16d{bottom:449.565000px;}
.y90{bottom:452.055000px;}
.y5a{bottom:456.015000px;}
.y115{bottom:457.095000px;}
.y77{bottom:457.995000px;}
.y135{bottom:458.175000px;}
.y28{bottom:464.655000px;}
.y1bb{bottom:465.555000px;}
.ye4{bottom:470.415000px;}
.yb3{bottom:470.775000px;}
.yb7{bottom:471.135000px;}
.ycc{bottom:477.075000px;}
.y14a{bottom:477.975000px;}
.y16c{bottom:480.525000px;}
.y15c{bottom:483.015000px;}
.y8f{bottom:483.195000px;}
.y42{bottom:486.075000px;}
.y59{bottom:486.975000px;}
.y114{bottom:488.055000px;}
.y76{bottom:489.135000px;}
.y1ab{bottom:495.435000px;}
.y27{bottom:495.615000px;}
.ye{bottom:495.795000px;}
.yfb{bottom:496.155000px;}
.ycb{bottom:508.215000px;}
.y149{bottom:509.115000px;}
.y195{bottom:510.585000px;}
.y8e{bottom:514.155000px;}
.y184{bottom:516.525000px;}
.y58{bottom:518.115000px;}
.y113{bottom:519.195000px;}
.ye3{bottom:519.915000px;}
.y75{bottom:520.095000px;}
.y134{bottom:520.275000px;}
.y41{bottom:524.595000px;}
.y26{bottom:526.575000px;}
.yfa{bottom:527.295000px;}
.yca{bottom:539.175000px;}
.y148{bottom:540.075000px;}
.y15b{bottom:545.115000px;}
.ya1{bottom:545.295000px;}
.y57{bottom:549.075000px;}
.y112{bottom:550.155000px;}
.y74{bottom:551.235000px;}
.ye2{bottom:552.135000px;}
.y8d{bottom:557.355000px;}
.yd{bottom:557.895000px;}
.yf9{bottom:558.255000px;}
.y1ba{bottom:562.035000px;}
.y40{bottom:563.475000px;}
.yc9{bottom:570.315000px;}
.y147{bottom:571.215000px;}
.ya0{bottom:576.255000px;}
.y25{bottom:580.215000px;}
.y111{bottom:580.935000px;}
.y121{bottom:581.295000px;}
.y73{bottom:582.195000px;}
.y133{bottom:582.375000px;}
.ye1{bottom:584.355000px;}
.y8c{bottom:588.315000px;}
.yf8{bottom:589.395000px;}
.y182{bottom:598.065000px;}
.y3f{bottom:602.175000px;}
.y193{bottom:602.565000px;}
.y9f{bottom:607.425000px;}
.y16a{bottom:608.865000px;}
.y110{bottom:612.285000px;}
.y132{bottom:613.365000px;}
.ye0{bottom:616.785000px;}
.y8b{bottom:619.305000px;}
.y1a9{bottom:621.285000px;}
.y56{bottom:623.265000px;}
.y72{bottom:625.245000px;}
.yc{bottom:628.665000px;}
.y146{bottom:633.345000px;}
.yaa{bottom:638.385000px;}
.y3e{bottom:640.725000px;}
.y24{bottom:641.085000px;}
.y12a{bottom:643.065000px;}
.y10f{bottom:643.425000px;}
.y131{bottom:644.505000px;}
.ydf{bottom:649.185000px;}
.y8a{bottom:650.445000px;}
.y55{bottom:654.225000px;}
.y71{bottom:656.385000px;}
.y17f{bottom:660.930000px;}
.y15a{bottom:662.325000px;}
.y145{bottom:664.305000px;}
.ya9{bottom:669.165000px;}
.yb6{bottom:669.525000px;}
.y23{bottom:672.225000px;}
.y167{bottom:672.450000px;}
.y12c{bottom:674.025000px;}
.y10e{bottom:674.385000px;}
.y3d{bottom:679.245000px;}
.y89{bottom:681.405000px;}
.yde{bottom:681.585000px;}
.y1a8{bottom:684.105000px;}
.y54{bottom:685.365000px;}
.y1b8{bottom:686.985000px;}
.y70{bottom:687.345000px;}
.yb{bottom:688.065000px;}
.y130{bottom:693.105000px;}
.y159{bottom:693.465000px;}
.y144{bottom:695.445000px;}
.y191{bottom:697.290000px;}
.y22{bottom:703.185000px;}
.y129{bottom:705.165000px;}
.y10d{bottom:705.525000px;}
.yc8{bottom:712.365000px;}
.y88{bottom:712.545000px;}
.y1a7{bottom:715.785000px;}
.y53{bottom:716.325000px;}
.y3c{bottom:717.765000px;}
.yf7{bottom:718.485000px;}
.y166{bottom:718.710000px;}
.y17d{bottom:723.750000px;}
.ydd{bottom:724.605000px;}
.y143{bottom:726.405000px;}
.ya{bottom:729.465000px;}
.y6f{bottom:730.365000px;}
.y10c{bottom:736.485000px;}
.y87{bottom:743.505000px;}
.y52{bottom:747.465000px;}
.yf6{bottom:749.625000px;}
.y21{bottom:752.325000px;}
.y165{bottom:755.070000px;}
.y3b{bottom:756.285000px;}
.ydc{bottom:756.825000px;}
.y142{bottom:757.365000px;}
.yc7{bottom:761.145000px;}
.y6e{bottom:761.505000px;}
.ybd{bottom:762.765000px;}
.y120{bottom:767.265000px;}
.y158{bottom:767.445000px;}
.y10b{bottom:767.625000px;}
.y17c{bottom:769.830000px;}
.y86{bottom:774.645000px;}
.y51{bottom:778.425000px;}
.y1a5{bottom:778.785000px;}
.yf5{bottom:780.585000px;}
.y20{bottom:783.285000px;}
.y9{bottom:785.265000px;}
.y9e{bottom:786.705000px;}
.ydb{bottom:789.225000px;}
.y3a{bottom:794.445000px;}
.y12e{bottom:798.225000px;}
.y10a{bottom:798.585000px;}
.y85{bottom:805.605000px;}
.y141{bottom:806.505000px;}
.y50{bottom:809.565000px;}
.y6d{bottom:810.105000px;}
.yc6{bottom:810.465000px;}
.yf4{bottom:811.725000px;}
.y1b5{bottom:812.085000px;}
.y1f{bottom:814.425000px;}
.y9d{bottom:817.665000px;}
.yda{bottom:821.445000px;}
.y109{bottom:829.725000px;}
.y39{bottom:833.505000px;}
.y84{bottom:836.385000px;}
.yb2{bottom:836.745000px;}
.y140{bottom:837.465000px;}
.y4f{bottom:840.525000px;}
.yc5{bottom:841.605000px;}
.yf3{bottom:842.685000px;}
.y8{bottom:843.765000px;}
.y1e{bottom:845.385000px;}
.y9c{bottom:848.805000px;}
.y6c{bottom:852.585000px;}
.yd9{bottom:853.845000px;}
.y108{bottom:860.685000px;}
.ybc{bottom:867.705000px;}
.y13f{bottom:868.605000px;}
.y38{bottom:872.070000px;}
.yc4{bottom:872.610000px;}
.y1a4{bottom:873.330000px;}
.yf2{bottom:873.870000px;}
.y83{bottom:879.810000px;}
.y4e{bottom:883.590000px;}
.yd8{bottom:886.290000px;}
.y107{bottom:891.870000px;}
.y1d{bottom:894.570000px;}
.y13e{bottom:899.610000px;}
.y7{bottom:902.490000px;}
.yf1{bottom:904.830000px;}
.y37{bottom:910.590000px;}
.y6b{bottom:910.950000px;}
.y155{bottom:912.390000px;}
.y4d{bottom:914.730000px;}
.yd7{bottom:918.690000px;}
.yc3{bottom:921.750000px;}
.y106{bottom:922.830000px;}
.y157{bottom:924.810000px;}
.y1c{bottom:925.530000px;}
.y13d{bottom:930.750000px;}
.yf0{bottom:935.970000px;}
.y1a3{bottom:936.150000px;}
.y1b2{bottom:937.050000px;}
.y36{bottom:941.550000px;}
.y6a{bottom:941.910000px;}
.y4c{bottom:945.690000px;}
.yc2{bottom:952.710000px;}
.ya8{bottom:953.970000px;}
.y156{bottom:955.770000px;}
.y1b{bottom:956.670000px;}
.y6{bottom:960.990000px;}
.y13c{bottom:961.710000px;}
.yd6{bottom:961.890000px;}
.yef{bottom:966.930000px;}
.y1a2{bottom:968.010000px;}
.y69{bottom:972.870000px;}
.y4b{bottom:976.830000px;}
.y163{bottom:978.630000px;}
.y35{bottom:980.070000px;}
.yc1{bottom:983.850000px;}
.y9b{bottom:984.930000px;}
.y1a{bottom:987.630000px;}
.y13b{bottom:992.850000px;}
.yd5{bottom:993.930000px;}
.yee{bottom:998.070000px;}
.y1a1{bottom:999.870000px;}
.y68{bottom:1004.010000px;}
.y4a{bottom:1007.790000px;}
.yc0{bottom:1014.810000px;}
.y9a{bottom:1016.070000px;}
.y19{bottom:1018.770000px;}
.y5{bottom:1019.670000px;}
.y13a{bottom:1023.810000px;}
.yd4{bottom:1026.330000px;}
.y162{bottom:1029.030000px;}
.y1a0{bottom:1031.550000px;}
.y82{bottom:1034.970000px;}
.y49{bottom:1038.930000px;}
.ybf{bottom:1045.950000px;}
.y125{bottom:1046.670000px;}
.y67{bottom:1047.030000px;}
.y18{bottom:1049.730000px;}
.y139{bottom:1054.950000px;}
.y34{bottom:1056.930000px;}
.yd3{bottom:1058.730000px;}
.y1b1{bottom:1061.970000px;}
.y81{bottom:1066.110000px;}
.y48{bottom:1069.890000px;}
.y4{bottom:1075.650000px;}
.y19f{bottom:1077.810000px;}
.y66{bottom:1078.170000px;}
.y17{bottom:1080.690000px;}
.y138{bottom:1085.910000px;}
.yd2{bottom:1091.130000px;}
.y1b0{bottom:1093.650000px;}
.ybe{bottom:1094.550000px;}
.y33{bottom:1095.450000px;}
.y47{bottom:1101.030000px;}
.y12b{bottom:1108.770000px;}
.y65{bottom:1109.130000px;}
.y3{bottom:1131.630000px;}
.y16{bottom:1134.330000px;}
.y46{bottom:1137.030000px;}
.yd1{bottom:1139.940000px;}
.y11f{bottom:1140.120000px;}
.y64{bottom:1140.300000px;}
.h20{height:30.960000px;}
.h14{height:30.996000px;}
.h13{height:31.140000px;}
.h1e{height:31.320000px;}
.h1a{height:45.540000px;}
.h2{height:50.229844px;}
.h21{height:61.920000px;}
.h16{height:62.100000px;}
.h17{height:62.136000px;}
.hb{height:64.546875px;}
.h3{height:65.010937px;}
.h10{height:70.628906px;}
.h8{height:70.664062px;}
.h9{height:72.562500px;}
.h1f{height:73.296000px;}
.he{height:74.004654px;}
.hc{height:74.953125px;}
.h18{height:80.820000px;}
.h19{height:80.856000px;}
.hd{height:82.676953px;}
.h7{height:84.898125px;}
.ha{height:87.695156px;}
.h1c{height:91.260000px;}
.h1b{height:93.816000px;}
.h24{height:95.760000px;}
.h5{height:96.508125px;}
.h4{height:108.843750px;}
.hf{height:121.179375px;}
.h22{height:124.200000px;}
.h23{height:124.236000px;}
.h6{height:145.125000px;}
.h1d{height:295.995000px;}
.h15{height:496.905000px;}
.h11{height:892.980000px;}
.h12{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:96.840000px;}
.w1b{width:97.056000px;}
.w19{width:97.776000px;}
.w1f{width:158.430000px;}
.w1d{width:158.790000px;}
.w1c{width:166.530000px;}
.wf{width:168.870000px;}
.wb{width:174.060000px;}
.w6{width:174.090000px;}
.wd{width:174.240000px;}
.wa{width:174.270000px;}
.w12{width:187.920000px;}
.w20{width:190.650000px;}
.w18{width:218.010000px;}
.w14{width:264.990000px;}
.w16{width:265.170000px;}
.w17{width:265.350000px;}
.w21{width:285.915000px;}
.w11{width:335.415000px;}
.w7{width:349.050000px;}
.wc{width:349.230000px;}
.w10{width:354.090000px;}
.w1e{width:477.285000px;}
.w8{width:524.055000px;}
.w15{width:796.785000px;}
.w9{width:874.005000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.we{width:1048.830000px;}
.w13{width:1062.690000px;}
.w5{width:1262.879981px;}
.w3{width:1262.880000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x1e{left:7.740000px;}
.x2d{left:32.040000px;}
.x27{left:33.516000px;}
.x26{left:38.376000px;}
.x2c{left:47.880000px;}
.x1b{left:85.175987px;}
.x30{left:93.960000px;}
.x33{left:97.950000px;}
.x34{left:99.045000px;}
.x2{left:106.415987px;}
.x36{left:108.570000px;}
.xa{left:116.135987px;}
.x2a{left:117.570000px;}
.xf{left:122.975987px;}
.x1a{left:127.655987px;}
.x10{left:133.415987px;}
.x29{left:138.465000px;}
.x9{left:151.049987px;}
.x8{left:159.329987px;}
.x11{left:160.409987px;}
.x14{left:164.369987px;}
.x2f{left:167.610000px;}
.x1c{left:170.309987px;}
.x4{left:171.569987px;}
.x13{left:175.169987px;}
.x2e{left:176.985000px;}
.x19{left:185.789987px;}
.x18{left:187.409987px;}
.x17{left:191.369987px;}
.x3f{left:192.630000px;}
.x16{left:196.409987px;}
.x15{left:202.169987px;}
.x3{left:250.094987px;}
.x3e{left:265.935000px;}
.x28{left:276.870000px;}
.x1f{left:281.910000px;}
.x6{left:288.974987px;}
.x39{left:325.875000px;}
.xb{left:362.414987px;}
.x32{left:372.810000px;}
.x7{left:380.234987px;}
.x25{left:399.675000px;}
.x3a{left:424.365000px;}
.xc{left:425.804987px;}
.x5{left:436.064987px;}
.x21{left:456.915000px;}
.xd{left:468.824987px;}
.x31{left:473.835000px;}
.x3b{left:521.925000px;}
.x3c{left:619.710000px;}
.x20{left:631.875000px;}
.x35{left:638.535000px;}
.x12{left:749.159987px;}
.xe{left:757.439987px;}
.x1{left:765.719987px;}
.x3d{left:770.399987px;}
.x38{left:786.959987px;}
.x22{left:806.685000px;}
.x37{left:904.425000px;}
.x2b{left:968.010000px;}
.x23{left:981.690000px;}
.x24{left:1140.089981px;}
.x1d{left:1156.649981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-1.472000pt;}
.lse{letter-spacing:-1.280000pt;}
.ls1d{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.704000pt;}
.ls9{letter-spacing:1.189120pt;}
.ls13{letter-spacing:1.216000pt;}
.ls3{letter-spacing:1.264000pt;}
.ls8{letter-spacing:1.280000pt;}
.ls6{letter-spacing:1.600000pt;}
.lsd{letter-spacing:15.360000pt;}
.ls4{letter-spacing:16.922027pt;}
.ls17{letter-spacing:30.186667pt;}
.ls1a{letter-spacing:39.808000pt;}
.ls14{letter-spacing:41.088000pt;}
.ls15{letter-spacing:48.768000pt;}
.ls2{letter-spacing:53.120000pt;}
.ls12{letter-spacing:57.066667pt;}
.ls19{letter-spacing:57.088000pt;}
.ls18{letter-spacing:95.488000pt;}
.wsb{word-spacing:-64.000000pt;}
.ws3{word-spacing:-22.544000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws5{word-spacing:-20.320000pt;}
.wsa{word-spacing:-17.216000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.616000pt;}
.ws9{word-spacing:-15.360000pt;}
.ws8{word-spacing:-15.296000pt;}
.wsf{word-spacing:-15.168000pt;}
.ws12{word-spacing:-14.528000pt;}
.wsd{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._15{margin-left:-15.264000pt;}
._14{margin-left:-13.193387pt;}
._11{margin-left:-12.160000pt;}
._17{margin-left:-10.069333pt;}
._16{margin-left:-8.224000pt;}
._12{margin-left:-6.325333pt;}
._7{margin-left:-3.968000pt;}
._8{margin-left:-3.008000pt;}
._6{margin-left:-1.920000pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.566720pt;}
._9{width:3.059627pt;}
._a{width:4.517120pt;}
._1a{width:5.479680pt;}
._b{width:6.464000pt;}
._19{width:8.000000pt;}
._1b{width:9.003947pt;}
._5{width:10.112000pt;}
._3{width:11.456000pt;}
._4{width:12.416000pt;}
._f{width:13.632000pt;}
._2{width:14.720000pt;}
._c{width:17.792000pt;}
._d{width:18.816000pt;}
._e{width:19.712000pt;}
._13{width:21.098667pt;}
._21{width:22.006613pt;}
._22{width:22.964053pt;}
._23{width:24.009387pt;}
._1c{width:25.792000pt;}
._1d{width:27.018667pt;}
._24{width:28.001280pt;}
._1e{width:29.632000pt;}
._1f{width:30.656000pt;}
._20{width:32.170667pt;}
._26{width:39.360000pt;}
._2b{width:43.648000pt;}
._29{width:71.616000pt;}
._30{width:76.160000pt;}
._2c{width:107.648000pt;}
._2a{width:111.488000pt;}
._27{width:163.370667pt;}
._2e{width:221.376000pt;}
._2f{width:235.584000pt;}
._28{width:256.320000pt;}
._2d{width:289.856000pt;}
._10{width:751.521280pt;}
._25{width:753.418667pt;}
._18{width:754.831787pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs7{font-size:106.880000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y181{bottom:12.640000pt;}
.y17e{bottom:12.800000pt;}
.y169{bottom:12.960000pt;}
.y168{bottom:13.120000pt;}
.y19b{bottom:13.280000pt;}
.y1be{bottom:15.360000pt;}
.y186{bottom:20.960000pt;}
.y19e{bottom:23.040000pt;}
.y192{bottom:25.920000pt;}
.y183{bottom:26.400000pt;}
.y18e{bottom:29.280000pt;}
.y190{bottom:29.440000pt;}
.y187{bottom:34.720000pt;}
.y189{bottom:34.880000pt;}
.y180{bottom:40.320000pt;}
.y1a6{bottom:40.480000pt;}
.y17a{bottom:40.640000pt;}
.y1aa{bottom:40.666667pt;}
.y1bd{bottom:43.040000pt;}
.y185{bottom:48.640000pt;}
.y19d{bottom:50.560000pt;}
.y2{bottom:50.720000pt;}
.y18d{bottom:56.960000pt;}
.y196{bottom:66.560000pt;}
.y17b{bottom:67.520000pt;}
.y15{bottom:67.552000pt;}
.y164{bottom:68.000000pt;}
.y1{bottom:68.032000pt;}
.y1b4{bottom:68.160000pt;}
.y1b7{bottom:68.200000pt;}
.y1b9{bottom:68.320000pt;}
.y179{bottom:68.346667pt;}
.y194{bottom:68.840000pt;}
.y1bc{bottom:70.560000pt;}
.y1c0{bottom:95.520000pt;}
.y19c{bottom:95.680000pt;}
.y1b3{bottom:95.840000pt;}
.y178{bottom:95.866667pt;}
.y1b6{bottom:95.880000pt;}
.y18f{bottom:96.640000pt;}
.y128{bottom:98.272000pt;}
.y16b{bottom:98.880000pt;}
.y137{bottom:99.232000pt;}
.y154{bottom:100.992000pt;}
.y124{bottom:102.752000pt;}
.yb1{bottom:104.512000pt;}
.y32{bottom:104.992000pt;}
.y14{bottom:108.672000pt;}
.y105{bottom:117.152000pt;}
.y177{bottom:123.546667pt;}
.y80{bottom:126.752000pt;}
.y123{bottom:130.272000pt;}
.y198{bottom:130.760000pt;}
.yb0{bottom:132.192000pt;}
.y31{bottom:132.512000pt;}
.y63{bottom:135.546667pt;}
.y13{bottom:140.826667pt;}
.y127{bottom:141.946667pt;}
.y99{bottom:142.746667pt;}
.y153{bottom:144.506667pt;}
.y104{bottom:144.666667pt;}
.y11e{bottom:147.386667pt;}
.y176{bottom:151.066667pt;}
.yed{bottom:154.106667pt;}
.y7f{bottom:154.266667pt;}
.ya7{bottom:154.426667pt;}
.y122{bottom:157.946667pt;}
.yaf{bottom:159.706667pt;}
.y30{bottom:160.026667pt;}
.y19a{bottom:161.466667pt;}
.y18c{bottom:169.146667pt;}
.y98{bottom:170.426667pt;}
.y103{bottom:172.186667pt;}
.y62{bottom:173.786667pt;}
.y1c1{bottom:176.026667pt;}
.y161{bottom:176.666667pt;}
.y175{bottom:178.746667pt;}
.yec{bottom:181.626667pt;}
.y7e{bottom:181.946667pt;}
.y12d{bottom:185.146667pt;}
.y11d{bottom:185.466667pt;}
.yb5{bottom:187.386667pt;}
.y152{bottom:188.026667pt;}
.y197{bottom:190.106667pt;}
.y1bf{bottom:191.546667pt;}
.y97{bottom:197.946667pt;}
.y12{bottom:199.386667pt;}
.y102{bottom:199.866667pt;}
.y61{bottom:201.466667pt;}
.y2f{bottom:203.706667pt;}
.y160{bottom:204.186667pt;}
.y174{bottom:206.306667pt;}
.yeb{bottom:209.306667pt;}
.y7d{bottom:209.466667pt;}
.ya6{bottom:209.626667pt;}
.y11c{bottom:213.146667pt;}
.yb4{bottom:214.906667pt;}
.y151{bottom:215.706667pt;}
.yd0{bottom:220.346667pt;}
.y96{bottom:225.626667pt;}
.y101{bottom:227.386667pt;}
.y60{bottom:228.986667pt;}
.y2e{bottom:231.386667pt;}
.y173{bottom:233.986667pt;}
.yea{bottom:236.826667pt;}
.ya5{bottom:237.146667pt;}
.y12f{bottom:240.346667pt;}
.y11b{bottom:240.666667pt;}
.y18b{bottom:241.626667pt;}
.y15f{bottom:242.426667pt;}
.ybb{bottom:242.586667pt;}
.y150{bottom:243.226667pt;}
.y7c{bottom:247.866667pt;}
.y199{bottom:248.520000pt;}
.y95{bottom:253.146667pt;}
.y100{bottom:255.066667pt;}
.y5f{bottom:256.666667pt;}
.ycf{bottom:258.426667pt;}
.y2d{bottom:258.906667pt;}
.y172{bottom:261.506667pt;}
.ye9{bottom:264.506667pt;}
.y11a{bottom:268.186667pt;}
.yba{bottom:270.106667pt;}
.y11{bottom:270.586667pt;}
.y14f{bottom:270.906667pt;}
.ya4{bottom:275.386667pt;}
.y94{bottom:280.826667pt;}
.yff{bottom:282.266667pt;}
.y5e{bottom:284.186667pt;}
.y1af{bottom:285.466667pt;}
.y7b{bottom:286.106667pt;}
.y2c{bottom:286.426667pt;}
.y171{bottom:289.186667pt;}
.ye8{bottom:292.026667pt;}
.y119{bottom:295.866667pt;}
.y15e{bottom:297.626667pt;}
.yb9{bottom:297.786667pt;}
.y14e{bottom:298.426667pt;}
.ya3{bottom:302.786667pt;}
.yae{bottom:308.386667pt;}
.y1ae{bottom:313.186667pt;}
.y7a{bottom:313.666667pt;}
.y18a{bottom:314.146667pt;}
.y170{bottom:316.706667pt;}
.y93{bottom:319.106667pt;}
.y5d{bottom:322.466667pt;}
.y126{bottom:323.106667pt;}
.y118{bottom:323.426667pt;}
.yb8{bottom:325.346667pt;}
.y14d{bottom:325.986667pt;}
.yfe{bottom:326.306667pt;}
.y45{bottom:326.946667pt;}
.y1ad{bottom:328.706667pt;}
.y2b{bottom:330.146667pt;}
.ya2{bottom:330.306667pt;}
.y10{bottom:335.586667pt;}
.ye7{bottom:335.746667pt;}
.yad{bottom:336.066667pt;}
.y79{bottom:341.346667pt;}
.y16f{bottom:344.413333pt;}
.y92{bottom:346.626667pt;}
.y5c{bottom:350.146667pt;}
.y117{bottom:351.106667pt;}
.y136{bottom:352.066667pt;}
.yfd{bottom:353.826667pt;}
.y2a{bottom:357.826667pt;}
.ye6{bottom:363.266667pt;}
.yac{bottom:363.586667pt;}
.y44{bottom:364.546667pt;}
.yce{bottom:368.866667pt;}
.y14c{bottom:369.666667pt;}
.y16e{bottom:371.933333pt;}
.y91{bottom:374.306667pt;}
.yf{bottom:377.026667pt;}
.y5b{bottom:377.666667pt;}
.y116{bottom:378.626667pt;}
.y78{bottom:379.586667pt;}
.y1ac{bottom:384.546667pt;}
.y29{bottom:385.346667pt;}
.y188{bottom:386.626667pt;}
.ye5{bottom:390.946667pt;}
.y15d{bottom:391.106667pt;}
.yab{bottom:391.266667pt;}
.ycd{bottom:396.546667pt;}
.yfc{bottom:397.186667pt;}
.y14b{bottom:397.346667pt;}
.y43{bottom:397.826667pt;}
.y16d{bottom:399.613333pt;}
.y90{bottom:401.826667pt;}
.y5a{bottom:405.346667pt;}
.y115{bottom:406.306667pt;}
.y77{bottom:407.106667pt;}
.y135{bottom:407.266667pt;}
.y28{bottom:413.026667pt;}
.y1bb{bottom:413.826667pt;}
.ye4{bottom:418.146667pt;}
.yb3{bottom:418.466667pt;}
.yb7{bottom:418.786667pt;}
.ycc{bottom:424.066667pt;}
.y14a{bottom:424.866667pt;}
.y16c{bottom:427.133333pt;}
.y15c{bottom:429.346667pt;}
.y8f{bottom:429.506667pt;}
.y42{bottom:432.066667pt;}
.y59{bottom:432.866667pt;}
.y114{bottom:433.826667pt;}
.y76{bottom:434.786667pt;}
.y1ab{bottom:440.386667pt;}
.y27{bottom:440.546667pt;}
.ye{bottom:440.706667pt;}
.yfb{bottom:441.026667pt;}
.ycb{bottom:451.746667pt;}
.y149{bottom:452.546667pt;}
.y195{bottom:453.853333pt;}
.y8e{bottom:457.026667pt;}
.y184{bottom:459.133333pt;}
.y58{bottom:460.546667pt;}
.y113{bottom:461.506667pt;}
.ye3{bottom:462.146667pt;}
.y75{bottom:462.306667pt;}
.y134{bottom:462.466667pt;}
.y41{bottom:466.306667pt;}
.y26{bottom:468.066667pt;}
.yfa{bottom:468.706667pt;}
.yca{bottom:479.266667pt;}
.y148{bottom:480.066667pt;}
.y15b{bottom:484.546667pt;}
.ya1{bottom:484.706667pt;}
.y57{bottom:488.066667pt;}
.y112{bottom:489.026667pt;}
.y74{bottom:489.986667pt;}
.ye2{bottom:490.786667pt;}
.y8d{bottom:495.426667pt;}
.yd{bottom:495.906667pt;}
.yf9{bottom:496.226667pt;}
.y1ba{bottom:499.586667pt;}
.y40{bottom:500.866667pt;}
.yc9{bottom:506.946667pt;}
.y147{bottom:507.746667pt;}
.ya0{bottom:512.226667pt;}
.y25{bottom:515.746667pt;}
.y111{bottom:516.386667pt;}
.y121{bottom:516.706667pt;}
.y73{bottom:517.506667pt;}
.y133{bottom:517.666667pt;}
.ye1{bottom:519.426667pt;}
.y8c{bottom:522.946667pt;}
.yf8{bottom:523.906667pt;}
.y182{bottom:531.613333pt;}
.y3f{bottom:535.266667pt;}
.y193{bottom:535.613333pt;}
.y9f{bottom:539.933333pt;}
.y16a{bottom:541.213333pt;}
.y110{bottom:544.253333pt;}
.y132{bottom:545.213333pt;}
.ye0{bottom:548.253333pt;}
.y8b{bottom:550.493333pt;}
.y1a9{bottom:552.253333pt;}
.y56{bottom:554.013333pt;}
.y72{bottom:555.773333pt;}
.yc{bottom:558.813333pt;}
.y146{bottom:562.973333pt;}
.yaa{bottom:567.453333pt;}
.y3e{bottom:569.533333pt;}
.y24{bottom:569.853333pt;}
.y12a{bottom:571.613333pt;}
.y10f{bottom:571.933333pt;}
.y131{bottom:572.893333pt;}
.ydf{bottom:577.053333pt;}
.y8a{bottom:578.173333pt;}
.y55{bottom:581.533333pt;}
.y71{bottom:583.453333pt;}
.y17f{bottom:587.493333pt;}
.y15a{bottom:588.733333pt;}
.y145{bottom:590.493333pt;}
.ya9{bottom:594.813333pt;}
.yb6{bottom:595.133333pt;}
.y23{bottom:597.533333pt;}
.y167{bottom:597.733333pt;}
.y12c{bottom:599.133333pt;}
.y10e{bottom:599.453333pt;}
.y3d{bottom:603.773333pt;}
.y89{bottom:605.693333pt;}
.yde{bottom:605.853333pt;}
.y1a8{bottom:608.093333pt;}
.y54{bottom:609.213333pt;}
.y1b8{bottom:610.653333pt;}
.y70{bottom:610.973333pt;}
.yb{bottom:611.613333pt;}
.y130{bottom:616.093333pt;}
.y159{bottom:616.413333pt;}
.y144{bottom:618.173333pt;}
.y191{bottom:619.813333pt;}
.y22{bottom:625.053333pt;}
.y129{bottom:626.813333pt;}
.y10d{bottom:627.133333pt;}
.yc8{bottom:633.213333pt;}
.y88{bottom:633.373333pt;}
.y1a7{bottom:636.253333pt;}
.y53{bottom:636.733333pt;}
.y3c{bottom:638.013333pt;}
.yf7{bottom:638.653333pt;}
.y166{bottom:638.853333pt;}
.y17d{bottom:643.333333pt;}
.ydd{bottom:644.093333pt;}
.y143{bottom:645.693333pt;}
.ya{bottom:648.413333pt;}
.y6f{bottom:649.213333pt;}
.y10c{bottom:654.653333pt;}
.y87{bottom:660.893333pt;}
.y52{bottom:664.413333pt;}
.yf6{bottom:666.333333pt;}
.y21{bottom:668.733333pt;}
.y165{bottom:671.173333pt;}
.y3b{bottom:672.253333pt;}
.ydc{bottom:672.733333pt;}
.y142{bottom:673.213333pt;}
.yc7{bottom:676.573333pt;}
.y6e{bottom:676.893333pt;}
.ybd{bottom:678.013333pt;}
.y120{bottom:682.013333pt;}
.y158{bottom:682.173333pt;}
.y10b{bottom:682.333333pt;}
.y17c{bottom:684.293333pt;}
.y86{bottom:688.573333pt;}
.y51{bottom:691.933333pt;}
.y1a5{bottom:692.253333pt;}
.yf5{bottom:693.853333pt;}
.y20{bottom:696.253333pt;}
.y9{bottom:698.013333pt;}
.y9e{bottom:699.293333pt;}
.ydb{bottom:701.533333pt;}
.y3a{bottom:706.173333pt;}
.y12e{bottom:709.533333pt;}
.y10a{bottom:709.853333pt;}
.y85{bottom:716.093333pt;}
.y141{bottom:716.893333pt;}
.y50{bottom:719.613333pt;}
.y6d{bottom:720.093333pt;}
.yc6{bottom:720.413333pt;}
.yf4{bottom:721.533333pt;}
.y1b5{bottom:721.853333pt;}
.y1f{bottom:723.933333pt;}
.y9d{bottom:726.813333pt;}
.yda{bottom:730.173333pt;}
.y109{bottom:737.533333pt;}
.y39{bottom:740.893333pt;}
.y84{bottom:743.453333pt;}
.yb2{bottom:743.773333pt;}
.y140{bottom:744.413333pt;}
.y4f{bottom:747.133333pt;}
.yc5{bottom:748.093333pt;}
.yf3{bottom:749.053333pt;}
.y8{bottom:750.013333pt;}
.y1e{bottom:751.453333pt;}
.y9c{bottom:754.493333pt;}
.y6c{bottom:757.853333pt;}
.yd9{bottom:758.973333pt;}
.y108{bottom:765.053333pt;}
.ybc{bottom:771.293333pt;}
.y13f{bottom:772.093333pt;}
.y38{bottom:775.173333pt;}
.yc4{bottom:775.653333pt;}
.y1a4{bottom:776.293333pt;}
.yf2{bottom:776.773333pt;}
.y83{bottom:782.053333pt;}
.y4e{bottom:785.413333pt;}
.yd8{bottom:787.813333pt;}
.y107{bottom:792.773333pt;}
.y1d{bottom:795.173333pt;}
.y13e{bottom:799.653333pt;}
.y7{bottom:802.213333pt;}
.yf1{bottom:804.293333pt;}
.y37{bottom:809.413333pt;}
.y6b{bottom:809.733333pt;}
.y155{bottom:811.013333pt;}
.y4d{bottom:813.093333pt;}
.yd7{bottom:816.613333pt;}
.yc3{bottom:819.333333pt;}
.y106{bottom:820.293333pt;}
.y157{bottom:822.053333pt;}
.y1c{bottom:822.693333pt;}
.y13d{bottom:827.333333pt;}
.yf0{bottom:831.973333pt;}
.y1a3{bottom:832.133333pt;}
.y1b2{bottom:832.933333pt;}
.y36{bottom:836.933333pt;}
.y6a{bottom:837.253333pt;}
.y4c{bottom:840.613333pt;}
.yc2{bottom:846.853333pt;}
.ya8{bottom:847.973333pt;}
.y156{bottom:849.573333pt;}
.y1b{bottom:850.373333pt;}
.y6{bottom:854.213333pt;}
.y13c{bottom:854.853333pt;}
.yd6{bottom:855.013333pt;}
.yef{bottom:859.493333pt;}
.y1a2{bottom:860.453333pt;}
.y69{bottom:864.773333pt;}
.y4b{bottom:868.293333pt;}
.y163{bottom:869.893333pt;}
.y35{bottom:871.173333pt;}
.yc1{bottom:874.533333pt;}
.y9b{bottom:875.493333pt;}
.y1a{bottom:877.893333pt;}
.y13b{bottom:882.533333pt;}
.yd5{bottom:883.493333pt;}
.yee{bottom:887.173333pt;}
.y1a1{bottom:888.773333pt;}
.y68{bottom:892.453333pt;}
.y4a{bottom:895.813333pt;}
.yc0{bottom:902.053333pt;}
.y9a{bottom:903.173333pt;}
.y19{bottom:905.573333pt;}
.y5{bottom:906.373333pt;}
.y13a{bottom:910.053333pt;}
.yd4{bottom:912.293333pt;}
.y162{bottom:914.693333pt;}
.y1a0{bottom:916.933333pt;}
.y82{bottom:919.973333pt;}
.y49{bottom:923.493333pt;}
.ybf{bottom:929.733333pt;}
.y125{bottom:930.373333pt;}
.y67{bottom:930.693333pt;}
.y18{bottom:933.093333pt;}
.y139{bottom:937.733333pt;}
.y34{bottom:939.493333pt;}
.yd3{bottom:941.093333pt;}
.y1b1{bottom:943.973333pt;}
.y81{bottom:947.653333pt;}
.y48{bottom:951.013333pt;}
.y4{bottom:956.133333pt;}
.y19f{bottom:958.053333pt;}
.y66{bottom:958.373333pt;}
.y17{bottom:960.613333pt;}
.y138{bottom:965.253333pt;}
.yd2{bottom:969.893333pt;}
.y1b0{bottom:972.133333pt;}
.ybe{bottom:972.933333pt;}
.y33{bottom:973.733333pt;}
.y47{bottom:978.693333pt;}
.y12b{bottom:985.573333pt;}
.y65{bottom:985.893333pt;}
.y3{bottom:1005.893333pt;}
.y16{bottom:1008.293333pt;}
.y46{bottom:1010.693333pt;}
.yd1{bottom:1013.280000pt;}
.y11f{bottom:1013.440000pt;}
.y64{bottom:1013.600000pt;}
.h20{height:27.520000pt;}
.h14{height:27.552000pt;}
.h13{height:27.680000pt;}
.h1e{height:27.840000pt;}
.h1a{height:40.480000pt;}
.h2{height:44.648750pt;}
.h21{height:55.040000pt;}
.h16{height:55.200000pt;}
.h17{height:55.232000pt;}
.hb{height:57.375000pt;}
.h3{height:57.787500pt;}
.h10{height:62.781250pt;}
.h8{height:62.812500pt;}
.h9{height:64.500000pt;}
.h1f{height:65.152000pt;}
.he{height:65.781915pt;}
.hc{height:66.625000pt;}
.h18{height:71.840000pt;}
.h19{height:71.872000pt;}
.hd{height:73.490625pt;}
.h7{height:75.465000pt;}
.ha{height:77.951250pt;}
.h1c{height:81.120000pt;}
.h1b{height:83.392000pt;}
.h24{height:85.120000pt;}
.h5{height:85.785000pt;}
.h4{height:96.750000pt;}
.hf{height:107.715000pt;}
.h22{height:110.400000pt;}
.h23{height:110.432000pt;}
.h6{height:129.000000pt;}
.h1d{height:263.106667pt;}
.h15{height:441.693333pt;}
.h11{height:793.760000pt;}
.h12{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:86.080000pt;}
.w1b{width:86.272000pt;}
.w19{width:86.912000pt;}
.w1f{width:140.826667pt;}
.w1d{width:141.146667pt;}
.w1c{width:148.026667pt;}
.wf{width:150.106667pt;}
.wb{width:154.720000pt;}
.w6{width:154.746667pt;}
.wd{width:154.880000pt;}
.wa{width:154.906667pt;}
.w12{width:167.040000pt;}
.w20{width:169.466667pt;}
.w18{width:193.786667pt;}
.w14{width:235.546667pt;}
.w16{width:235.706667pt;}
.w17{width:235.866667pt;}
.w21{width:254.146667pt;}
.w11{width:298.146667pt;}
.w7{width:310.266667pt;}
.wc{width:310.426667pt;}
.w10{width:314.746667pt;}
.w1e{width:424.253333pt;}
.w8{width:465.826667pt;}
.w15{width:708.253333pt;}
.w9{width:776.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.we{width:932.293333pt;}
.w13{width:944.613333pt;}
.w5{width:1122.559983pt;}
.w3{width:1122.560000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1e{left:6.880000pt;}
.x2d{left:28.480000pt;}
.x27{left:29.792000pt;}
.x26{left:34.112000pt;}
.x2c{left:42.560000pt;}
.x1b{left:75.711988pt;}
.x30{left:83.520000pt;}
.x33{left:87.066667pt;}
.x34{left:88.040000pt;}
.x2{left:94.591988pt;}
.x36{left:96.506667pt;}
.xa{left:103.231988pt;}
.x2a{left:104.506667pt;}
.xf{left:109.311988pt;}
.x1a{left:113.471988pt;}
.x10{left:118.591988pt;}
.x29{left:123.080000pt;}
.x9{left:134.266655pt;}
.x8{left:141.626655pt;}
.x11{left:142.586655pt;}
.x14{left:146.106655pt;}
.x2f{left:148.986667pt;}
.x1c{left:151.386655pt;}
.x4{left:152.506655pt;}
.x13{left:155.706655pt;}
.x2e{left:157.320000pt;}
.x19{left:165.146655pt;}
.x18{left:166.586655pt;}
.x17{left:170.106655pt;}
.x3f{left:171.226667pt;}
.x16{left:174.586655pt;}
.x15{left:179.706655pt;}
.x3{left:222.306655pt;}
.x3e{left:236.386667pt;}
.x28{left:246.106667pt;}
.x1f{left:250.586667pt;}
.x6{left:256.866655pt;}
.x39{left:289.666667pt;}
.xb{left:322.146655pt;}
.x32{left:331.386667pt;}
.x7{left:337.986655pt;}
.x25{left:355.266667pt;}
.x3a{left:377.213333pt;}
.xc{left:378.493322pt;}
.x5{left:387.613322pt;}
.x21{left:406.146667pt;}
.xd{left:416.733322pt;}
.x31{left:421.186667pt;}
.x3b{left:463.933333pt;}
.x3c{left:550.853333pt;}
.x20{left:561.666667pt;}
.x35{left:567.586667pt;}
.x12{left:665.919988pt;}
.xe{left:673.279988pt;}
.x1{left:680.639988pt;}
.x3d{left:684.799988pt;}
.x38{left:699.519988pt;}
.x22{left:717.053333pt;}
.x37{left:803.933333pt;}
.x2b{left:860.453333pt;}
.x23{left:872.613333pt;}
.x24{left:1013.413317pt;}
.x1d{left:1028.133317pt;}
}




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