
    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_c8539f428ec9765697966b57.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a36c489e64755c01af069a89.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.828613;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_03e054567ddabd37d163638a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_6ed8bf873d1ab4e9ee1a907b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_11dc0f887c7f07a00c9a95c3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ea44afa70fa046edd7343691.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d51eef081332cc75cba16e36.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_7cc993c1a166c7a4a51dc81b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d90c02f583129924a9bfc3cc.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_57ff3c692713b85d82829505.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_41565fbc9ceeba91c7df1fb4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.794922;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:ffc;src:url('chunks/assets/font_b7d55734997a10c1b040198e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-33.120000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.lsb{letter-spacing:-0.513600px;}
.ls7{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053400px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053400px;}
.ls4{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.328320px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.900000px;}
.lse{letter-spacing:72.180000px;}
.lsd{letter-spacing:75.060000px;}
.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;}
}
.ws7{word-spacing:-16.613280px;}
.ws8{word-spacing:-16.559880px;}
.wsa{word-spacing:-16.506480px;}
.wsb{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.012000px;}
.ws2{word-spacing:-14.940000px;}
.wsd{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.626000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.060000px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:-9.000000px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-1.482000px;}
._1{width:1.134000px;}
._2{width:2.152080px;}
._3{width:3.427920px;}
._7{width:5.199120px;}
._6{width:6.513840px;}
._4{width:8.370000px;}
._5{width:9.444000px;}
._13{width:10.517760px;}
._9{width:11.690400px;}
._8{width:12.848400px;}
._1f{width:13.925520px;}
._b{width:16.196400px;}
._a{width:17.449920px;}
._21{width:19.051440px;}
._14{width:20.139120px;}
._12{width:21.692880px;}
._11{width:23.067360px;}
._f{width:24.143040px;}
._10{width:25.220160px;}
._c{width:27.011520px;}
._d{width:28.505520px;}
._18{width:30.060720px;}
._e{width:31.314240px;}
._1a{width:33.166800px;}
._25{width:35.198640px;}
._16{width:37.520160px;}
._20{width:38.594400px;}
._17{width:39.620880px;}
._1d{width:41.773680px;}
._1e{width:43.205040px;}
._1c{width:45.716400px;}
._1b{width:46.851840px;}
._22{width:51.632640px;}
._23{width:52.769520px;}
._28{width:56.057760px;}
._29{width:57.249360px;}
._15{width:66.357360px;}
._19{width:70.038720px;}
._2c{width:73.326960px;}
._2b{width:74.878560px;}
._24{width:87.309360px;}
._26{width:90.540000px;}
._2a{width:113.901840px;}
._2e{width:152.654400px;}
._2d{width:259.716960px;}
._27{width:759.609120px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:53.986500px;}
.y1{bottom:63.540000px;}
.y49{bottom:71.302500px;}
.y2e{bottom:91.260000px;}
.y1a3{bottom:91.800000px;}
.y44{bottom:91.980000px;}
.ya2{bottom:100.080000px;}
.yf9{bottom:100.440000px;}
.y144{bottom:104.400000px;}
.yd3{bottom:106.200000px;}
.y19b{bottom:107.100000px;}
.y172{bottom:107.820000px;}
.y2d{bottom:108.540000px;}
.y43{bottom:109.080000px;}
.y11f{bottom:110.520000px;}
.ya1{bottom:117.216000px;}
.yf8{bottom:117.756000px;}
.y143{bottom:121.716000px;}
.y72{bottom:122.076000px;}
.yd2{bottom:123.336000px;}
.y19a{bottom:124.416000px;}
.y171{bottom:124.956000px;}
.y2c{bottom:125.856000px;}
.y42{bottom:126.396000px;}
.y1a2{bottom:127.116000px;}
.y11e{bottom:127.836000px;}
.y1c9{bottom:130.176000px;}
.ya0{bottom:134.496000px;}
.yf7{bottom:134.856000px;}
.y142{bottom:138.816000px;}
.yd1{bottom:140.976000px;}
.y199{bottom:141.696000px;}
.y170{bottom:142.236000px;}
.y2b{bottom:143.136000px;}
.y71{bottom:143.316000px;}
.y41{bottom:143.676000px;}
.y1a1{bottom:144.216000px;}
.y11d{bottom:145.116000px;}
.y1c8{bottom:147.456000px;}
.y9f{bottom:151.770000px;}
.yf6{bottom:152.130000px;}
.y141{bottom:156.090000px;}
.yd0{bottom:158.250000px;}
.y198{bottom:158.970000px;}
.y16f{bottom:159.510000px;}
.y2a{bottom:160.050000px;}
.y1a0{bottom:161.490000px;}
.y11c{bottom:162.390000px;}
.y1c7{bottom:164.550000px;}
.y9e{bottom:169.050000px;}
.yf5{bottom:169.410000px;}
.y40{bottom:173.370000px;}
.ycf{bottom:175.530000px;}
.y197{bottom:176.250000px;}
.y16e{bottom:176.790000px;}
.y11b{bottom:179.670000px;}
.y1c6{bottom:181.830000px;}
.y9d{bottom:186.330000px;}
.yf4{bottom:186.690000px;}
.y140{bottom:190.650000px;}
.yce{bottom:192.810000px;}
.y196{bottom:193.350000px;}
.y16d{bottom:194.070000px;}
.y11a{bottom:196.950000px;}
.y19f{bottom:197.130000px;}
.y1c5{bottom:199.110000px;}
.y29{bottom:203.430000px;}
.y9c{bottom:203.610000px;}
.yf3{bottom:203.970000px;}
.y13f{bottom:207.930000px;}
.ycd{bottom:209.910000px;}
.y195{bottom:210.630000px;}
.y16c{bottom:211.350000px;}
.y119{bottom:214.050000px;}
.y3f{bottom:216.390000px;}
.y9b{bottom:220.710000px;}
.yf2{bottom:221.070000px;}
.y13e{bottom:225.210000px;}
.ycc{bottom:227.190000px;}
.y194{bottom:227.910000px;}
.y16b{bottom:228.450000px;}
.y118{bottom:231.330000px;}
.y3e{bottom:233.670000px;}
.y19e{bottom:234.930000px;}
.y9a{bottom:237.990000px;}
.yf1{bottom:238.350000px;}
.y13d{bottom:242.310000px;}
.ycb{bottom:244.470000px;}
.y193{bottom:245.190000px;}
.y16a{bottom:245.730000px;}
.y19d{bottom:247.350000px;}
.y117{bottom:248.610000px;}
.y28{bottom:249.330000px;}
.y3d{bottom:250.950000px;}
.y99{bottom:255.270000px;}
.yf0{bottom:255.630000px;}
.y13c{bottom:259.590000px;}
.yca{bottom:261.750000px;}
.y192{bottom:262.470000px;}
.y169{bottom:263.010000px;}
.y116{bottom:265.890000px;}
.y27{bottom:266.610000px;}
.y1c4{bottom:268.050000px;}
.y3c{bottom:268.230000px;}
.y98{bottom:272.550000px;}
.yef{bottom:272.910000px;}
.y13b{bottom:276.870000px;}
.yc9{bottom:279.030000px;}
.y191{bottom:279.570000px;}
.y168{bottom:280.290000px;}
.y115{bottom:283.170000px;}
.y26{bottom:283.710000px;}
.y3b{bottom:285.330000px;}
.y97{bottom:289.830000px;}
.yee{bottom:290.190000px;}
.y13a{bottom:294.150000px;}
.yc8{bottom:296.310000px;}
.y190{bottom:296.850000px;}
.y167{bottom:297.570000px;}
.y114{bottom:300.270000px;}
.y25{bottom:300.990000px;}
.y3a{bottom:302.610000px;}
.y96{bottom:307.110000px;}
.yed{bottom:307.470000px;}
.y139{bottom:311.430000px;}
.yc7{bottom:313.410000px;}
.y18f{bottom:314.130000px;}
.y166{bottom:314.850000px;}
.y70{bottom:316.830000px;}
.y113{bottom:317.550000px;}
.y24{bottom:318.270000px;}
.y39{bottom:319.890000px;}
.y95{bottom:324.210000px;}
.yec{bottom:324.570000px;}
.yc6{bottom:330.690000px;}
.y18e{bottom:331.410000px;}
.y165{bottom:331.950000px;}
.y6f{bottom:334.110000px;}
.y112{bottom:334.830000px;}
.y23{bottom:335.550000px;}
.y38{bottom:336.630000px;}
.y1c3{bottom:337.170000px;}
.y94{bottom:341.490000px;}
.y138{bottom:341.670000px;}
.yeb{bottom:341.850000px;}
.yc5{bottom:347.970000px;}
.y18d{bottom:348.690000px;}
.y164{bottom:349.230000px;}
.y6e{bottom:351.390000px;}
.y111{bottom:352.110000px;}
.y37{bottom:352.290000px;}
.y22{bottom:352.830000px;}
.y1c2{bottom:354.450000px;}
.y93{bottom:358.770000px;}
.yea{bottom:359.130000px;}
.yc4{bottom:365.250000px;}
.y18c{bottom:365.970000px;}
.y163{bottom:366.510000px;}
.y6d{bottom:368.670000px;}
.y110{bottom:369.390000px;}
.y21{bottom:369.975000px;}
.y1c1{bottom:371.595000px;}
.y36{bottom:373.575000px;}
.y92{bottom:376.095000px;}
.ye9{bottom:376.455000px;}
.yc3{bottom:382.575000px;}
.y18b{bottom:383.115000px;}
.y162{bottom:383.835000px;}
.y6c{bottom:385.815000px;}
.y10f{bottom:386.715000px;}
.y137{bottom:387.075000px;}
.y20{bottom:387.255000px;}
.y1c0{bottom:388.875000px;}
.y91{bottom:393.375000px;}
.ye8{bottom:393.735000px;}
.yc2{bottom:399.675000px;}
.y18a{bottom:400.395000px;}
.y161{bottom:401.115000px;}
.y6b{bottom:403.095000px;}
.y10e{bottom:403.815000px;}
.y1f{bottom:404.535000px;}
.y1bf{bottom:406.155000px;}
.y136{bottom:408.315000px;}
.y90{bottom:410.475000px;}
.ye7{bottom:411.015000px;}
.yc1{bottom:416.955000px;}
.y189{bottom:417.675000px;}
.y160{bottom:418.395000px;}
.y6a{bottom:420.375000px;}
.y10d{bottom:421.095000px;}
.y1e{bottom:421.815000px;}
.y1be{bottom:423.435000px;}
.y8f{bottom:427.755000px;}
.ye6{bottom:428.115000px;}
.yc0{bottom:434.235000px;}
.y188{bottom:434.955000px;}
.y15f{bottom:435.495000px;}
.y69{bottom:437.655000px;}
.y10c{bottom:438.375000px;}
.y1d{bottom:439.095000px;}
.y1bd{bottom:440.715000px;}
.y8e{bottom:445.035000px;}
.ye5{bottom:445.395000px;}
.ybf{bottom:451.515000px;}
.y187{bottom:452.235000px;}
.y15e{bottom:452.775000px;}
.y68{bottom:454.935000px;}
.y10b{bottom:455.655000px;}
.y1c{bottom:456.375000px;}
.y1bc{bottom:457.815000px;}
.y8d{bottom:462.315000px;}
.ye4{bottom:462.675000px;}
.ybe{bottom:468.795000px;}
.y186{bottom:469.515000px;}
.y15d{bottom:470.055000px;}
.y67{bottom:472.215000px;}
.y10a{bottom:472.935000px;}
.y1b{bottom:473.475000px;}
.y1bb{bottom:475.095000px;}
.y8c{bottom:479.595000px;}
.ye3{bottom:479.955000px;}
.ybd{bottom:486.075000px;}
.y185{bottom:486.615000px;}
.y15c{bottom:487.335000px;}
.y66{bottom:489.315000px;}
.y109{bottom:490.215000px;}
.y1a{bottom:490.755000px;}
.y1ba{bottom:492.375000px;}
.y8b{bottom:496.875000px;}
.ye2{bottom:497.235000px;}
.ybc{bottom:503.175000px;}
.y184{bottom:503.895000px;}
.y15b{bottom:504.615000px;}
.y65{bottom:506.595000px;}
.y108{bottom:507.315000px;}
.y19{bottom:508.035000px;}
.y1b9{bottom:509.655000px;}
.y8a{bottom:513.975000px;}
.ye1{bottom:514.515000px;}
.ybb{bottom:520.455000px;}
.y183{bottom:521.175000px;}
.y15a{bottom:521.715000px;}
.y64{bottom:523.875000px;}
.y107{bottom:524.595000px;}
.y18{bottom:525.315000px;}
.y1b8{bottom:526.935000px;}
.y89{bottom:531.255000px;}
.ye0{bottom:531.615000px;}
.yba{bottom:537.735000px;}
.y182{bottom:538.455000px;}
.y159{bottom:538.995000px;}
.y63{bottom:541.155000px;}
.y106{bottom:541.875000px;}
.y17{bottom:542.595000px;}
.y1b7{bottom:544.215000px;}
.y19c{bottom:547.815000px;}
.y88{bottom:548.535000px;}
.yb9{bottom:555.015000px;}
.y181{bottom:555.735000px;}
.y158{bottom:556.275000px;}
.y62{bottom:558.435000px;}
.y105{bottom:559.155000px;}
.y16{bottom:559.875000px;}
.y1b6{bottom:561.315000px;}
.ydf{bottom:561.495000px;}
.y135{bottom:565.095000px;}
.y87{bottom:565.815000px;}
.yb8{bottom:572.295000px;}
.y180{bottom:573.015000px;}
.y157{bottom:573.555000px;}
.y61{bottom:575.535000px;}
.y104{bottom:576.435000px;}
.y15{bottom:576.975000px;}
.y1b5{bottom:578.595000px;}
.y134{bottom:582.375000px;}
.y86{bottom:583.095000px;}
.yb7{bottom:589.575000px;}
.y17f{bottom:590.115000px;}
.y156{bottom:590.835000px;}
.y60{bottom:592.815000px;}
.y35{bottom:592.995000px;}
.y103{bottom:593.535000px;}
.y14{bottom:594.255000px;}
.y1b4{bottom:595.875000px;}
.y133{bottom:599.655000px;}
.y85{bottom:600.375000px;}
.yde{bottom:604.695000px;}
.yb6{bottom:606.675000px;}
.y17e{bottom:607.395000px;}
.y155{bottom:608.115000px;}
.y5f{bottom:610.095000px;}
.y34{bottom:610.455000px;}
.y102{bottom:610.815000px;}
.y13{bottom:611.535000px;}
.y1b3{bottom:613.155000px;}
.y132{bottom:616.935000px;}
.y84{bottom:617.475000px;}
.yb5{bottom:623.955000px;}
.y17d{bottom:624.675000px;}
.y154{bottom:625.245000px;}
.y5e{bottom:627.405000px;}
.y33{bottom:627.765000px;}
.y101{bottom:628.125000px;}
.y12{bottom:628.845000px;}
.y1b2{bottom:630.465000px;}
.y131{bottom:634.065000px;}
.y83{bottom:634.785000px;}
.yb4{bottom:641.265000px;}
.y17c{bottom:641.985000px;}
.y153{bottom:642.525000px;}
.y32{bottom:645.045000px;}
.y100{bottom:645.405000px;}
.y11{bottom:646.125000px;}
.y1b1{bottom:647.745000px;}
.ydd{bottom:650.625000px;}
.y130{bottom:651.345000px;}
.y5d{bottom:657.105000px;}
.yb3{bottom:658.545000px;}
.y17b{bottom:659.265000px;}
.y152{bottom:659.805000px;}
.y31{bottom:662.325000px;}
.yff{bottom:662.685000px;}
.y10{bottom:663.405000px;}
.y82{bottom:664.665000px;}
.y1b0{bottom:664.845000px;}
.ydc{bottom:667.905000px;}
.y12f{bottom:668.625000px;}
.yb2{bottom:675.825000px;}
.y17a{bottom:676.365000px;}
.y151{bottom:677.085000px;}
.y30{bottom:679.605000px;}
.yfe{bottom:679.965000px;}
.y1af{bottom:682.125000px;}
.ydb{bottom:685.185000px;}
.y12e{bottom:685.905000px;}
.yb1{bottom:693.105000px;}
.yf{bottom:693.645000px;}
.y150{bottom:694.365000px;}
.y2f{bottom:696.705000px;}
.yfd{bottom:697.065000px;}
.y1ae{bottom:699.405000px;}
.y5c{bottom:699.765000px;}
.yda{bottom:702.465000px;}
.y12d{bottom:703.185000px;}
.y81{bottom:707.865000px;}
.yb0{bottom:710.205000px;}
.y179{bottom:710.925000px;}
.y14f{bottom:711.645000px;}
.y1ad{bottom:716.685000px;}
.yd9{bottom:719.565000px;}
.y12c{bottom:720.465000px;}
.y5b{bottom:721.005000px;}
.yfc{bottom:726.945000px;}
.yaf{bottom:727.485000px;}
.y178{bottom:728.205000px;}
.y14e{bottom:728.745000px;}
.y1ac{bottom:733.965000px;}
.yd8{bottom:736.845000px;}
.y12b{bottom:737.565000px;}
.yae{bottom:744.765000px;}
.y177{bottom:745.485000px;}
.y14d{bottom:746.025000px;}
.y1ab{bottom:751.065000px;}
.y80{bottom:753.225000px;}
.yd7{bottom:754.125000px;}
.y12a{bottom:754.845000px;}
.ye{bottom:758.445000px;}
.yad{bottom:762.045000px;}
.y14c{bottom:763.305000px;}
.y1aa{bottom:768.345000px;}
.yfb{bottom:769.425000px;}
.yd6{bottom:771.405000px;}
.y129{bottom:772.125000px;}
.y7f{bottom:774.465000px;}
.y176{bottom:775.185000px;}
.yd{bottom:776.265000px;}
.yac{bottom:779.325000px;}
.y14b{bottom:780.585000px;}
.y1a9{bottom:785.625000px;}
.y128{bottom:789.405000px;}
.yfa{bottom:790.665000px;}
.yc{bottom:794.085000px;}
.yab{bottom:796.425000px;}
.y14a{bottom:797.865000px;}
.yd5{bottom:806.145000px;}
.y127{bottom:806.685000px;}
.yb{bottom:811.905000px;}
.yaa{bottom:813.705000px;}
.y149{bottom:814.965000px;}
.y1a8{bottom:816.045000px;}
.y175{bottom:818.565000px;}
.y126{bottom:823.965000px;}
.yd4{bottom:827.565000px;}
.ya{bottom:829.905000px;}
.ya9{bottom:830.985000px;}
.y148{bottom:832.245000px;}
.y125{bottom:841.065000px;}
.ya8{bottom:848.265000px;}
.y147{bottom:849.525000px;}
.y124{bottom:858.345000px;}
.y1a7{bottom:861.765000px;}
.y174{bottom:863.925000px;}
.ya7{bottom:865.545000px;}
.y146{bottom:866.805000px;}
.y123{bottom:875.625000px;}
.y9{bottom:876.705000px;}
.y1a6{bottom:879.045000px;}
.ya6{bottom:882.870000px;}
.y145{bottom:884.130000px;}
.y173{bottom:885.390000px;}
.y8{bottom:887.190000px;}
.y1a5{bottom:896.370000px;}
.y5a{bottom:901.410000px;}
.y7{bottom:902.670000px;}
.y122{bottom:905.550000px;}
.ya5{bottom:912.570000px;}
.y6{bottom:918.150000px;}
.y59{bottom:918.510000px;}
.y1a4{bottom:932.010000px;}
.y58{bottom:935.790000px;}
.y7e{bottom:940.290000px;}
.y5{bottom:941.010000px;}
.y121{bottom:948.030000px;}
.y57{bottom:953.070000px;}
.ya4{bottom:955.050000px;}
.y7d{bottom:957.570000px;}
.y120{bottom:969.270000px;}
.y56{bottom:970.350000px;}
.y7c{bottom:974.850000px;}
.ya3{bottom:976.290000px;}
.y4{bottom:985.650000px;}
.y55{bottom:987.630000px;}
.y7b{bottom:992.130000px;}
.y54{bottom:1004.910000px;}
.y7a{bottom:1009.410000px;}
.y3{bottom:1013.010000px;}
.y53{bottom:1022.010000px;}
.y79{bottom:1026.510000px;}
.y52{bottom:1039.290000px;}
.y2{bottom:1040.730000px;}
.y78{bottom:1043.790000px;}
.y51{bottom:1056.570000px;}
.y77{bottom:1061.070000px;}
.y50{bottom:1073.850000px;}
.y76{bottom:1078.350000px;}
.y4f{bottom:1091.130000px;}
.y75{bottom:1095.630000px;}
.y4e{bottom:1108.410000px;}
.y74{bottom:1112.910000px;}
.y4d{bottom:1125.510000px;}
.y73{bottom:1142.640000px;}
.y4c{bottom:1142.820000px;}
.y48{bottom:1146.226500px;}
.y47{bottom:1163.506500px;}
.y46{bottom:1180.786500px;}
.y4b{bottom:1192.140000px;}
.y45{bottom:1198.066500px;}
.h6{height:5.653125px;}
.h5{height:35.332031px;}
.hf{height:41.493516px;}
.ha{height:42.894141px;}
.h10{height:47.037656px;}
.h2{height:47.344922px;}
.h8{height:52.998047px;}
.hd{height:54.421875px;}
.h7{height:56.320312px;}
.hc{height:57.937500px;}
.he{height:58.651172px;}
.hb{height:62.327813px;}
.h4{height:65.518594px;}
.h9{height:75.093750px;}
.h3{height:99.874688px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:84.996000px;}
.xa{left:87.861000px;}
.x1{left:97.956000px;}
.xd{left:106.236000px;}
.x11{left:110.556000px;}
.x15{left:119.016000px;}
.x2{left:170.310000px;}
.x9{left:255.831000px;}
.x8{left:279.591000px;}
.x7{left:299.391000px;}
.xf{left:359.535000px;}
.x13{left:364.035000px;}
.xe{left:374.655000px;}
.x17{left:379.695000px;}
.xb{left:441.816000px;}
.xc{left:449.376000px;}
.x4{left:463.605000px;}
.x5{left:484.845000px;}
.x18{left:497.445000px;}
.x6{left:723.570000px;}
.x12{left:738.180000px;}
.x14{left:744.840000px;}
.x10{left:757.260000px;}
.x16{left:758.880000px;}
@media print{
.v1{vertical-align:-29.440000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.lsb{letter-spacing:-0.456533pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047467pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047467pt;}
.ls4{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.291840pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.800000pt;}
.lse{letter-spacing:64.160000pt;}
.lsd{letter-spacing:66.720000pt;}
.ws7{word-spacing:-14.767360pt;}
.ws8{word-spacing:-14.719893pt;}
.wsa{word-spacing:-14.672427pt;}
.wsb{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.344000pt;}
.ws2{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.112000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:-8.000000pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-1.317333pt;}
._1{width:1.008000pt;}
._2{width:1.912960pt;}
._3{width:3.047040pt;}
._7{width:4.621440pt;}
._6{width:5.790080pt;}
._4{width:7.440000pt;}
._5{width:8.394667pt;}
._13{width:9.349120pt;}
._9{width:10.391467pt;}
._8{width:11.420800pt;}
._1f{width:12.378240pt;}
._b{width:14.396800pt;}
._a{width:15.511040pt;}
._21{width:16.934613pt;}
._14{width:17.901440pt;}
._12{width:19.282560pt;}
._11{width:20.504320pt;}
._f{width:21.460480pt;}
._10{width:22.417920pt;}
._c{width:24.010240pt;}
._d{width:25.338240pt;}
._18{width:26.720640pt;}
._e{width:27.834880pt;}
._1a{width:29.481600pt;}
._25{width:31.287680pt;}
._16{width:33.351253pt;}
._20{width:34.306133pt;}
._17{width:35.218560pt;}
._1d{width:37.132160pt;}
._1e{width:38.404480pt;}
._1c{width:40.636800pt;}
._1b{width:41.646080pt;}
._22{width:45.895680pt;}
._23{width:46.906240pt;}
._28{width:49.829120pt;}
._29{width:50.888320pt;}
._15{width:58.984320pt;}
._19{width:62.256640pt;}
._2c{width:65.179520pt;}
._2b{width:66.558720pt;}
._24{width:77.608320pt;}
._26{width:80.480000pt;}
._2a{width:101.246080pt;}
._2e{width:135.692800pt;}
._2d{width:230.859520pt;}
._27{width:675.208107pt;}
.fs6{font-size:5.120000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:47.988000pt;}
.y1{bottom:56.480000pt;}
.y49{bottom:63.380000pt;}
.y2e{bottom:81.120000pt;}
.y1a3{bottom:81.600000pt;}
.y44{bottom:81.760000pt;}
.ya2{bottom:88.960000pt;}
.yf9{bottom:89.280000pt;}
.y144{bottom:92.800000pt;}
.yd3{bottom:94.400000pt;}
.y19b{bottom:95.200000pt;}
.y172{bottom:95.840000pt;}
.y2d{bottom:96.480000pt;}
.y43{bottom:96.960000pt;}
.y11f{bottom:98.240000pt;}
.ya1{bottom:104.192000pt;}
.yf8{bottom:104.672000pt;}
.y143{bottom:108.192000pt;}
.y72{bottom:108.512000pt;}
.yd2{bottom:109.632000pt;}
.y19a{bottom:110.592000pt;}
.y171{bottom:111.072000pt;}
.y2c{bottom:111.872000pt;}
.y42{bottom:112.352000pt;}
.y1a2{bottom:112.992000pt;}
.y11e{bottom:113.632000pt;}
.y1c9{bottom:115.712000pt;}
.ya0{bottom:119.552000pt;}
.yf7{bottom:119.872000pt;}
.y142{bottom:123.392000pt;}
.yd1{bottom:125.312000pt;}
.y199{bottom:125.952000pt;}
.y170{bottom:126.432000pt;}
.y2b{bottom:127.232000pt;}
.y71{bottom:127.392000pt;}
.y41{bottom:127.712000pt;}
.y1a1{bottom:128.192000pt;}
.y11d{bottom:128.992000pt;}
.y1c8{bottom:131.072000pt;}
.y9f{bottom:134.906667pt;}
.yf6{bottom:135.226667pt;}
.y141{bottom:138.746667pt;}
.yd0{bottom:140.666667pt;}
.y198{bottom:141.306667pt;}
.y16f{bottom:141.786667pt;}
.y2a{bottom:142.266667pt;}
.y1a0{bottom:143.546667pt;}
.y11c{bottom:144.346667pt;}
.y1c7{bottom:146.266667pt;}
.y9e{bottom:150.266667pt;}
.yf5{bottom:150.586667pt;}
.y40{bottom:154.106667pt;}
.ycf{bottom:156.026667pt;}
.y197{bottom:156.666667pt;}
.y16e{bottom:157.146667pt;}
.y11b{bottom:159.706667pt;}
.y1c6{bottom:161.626667pt;}
.y9d{bottom:165.626667pt;}
.yf4{bottom:165.946667pt;}
.y140{bottom:169.466667pt;}
.yce{bottom:171.386667pt;}
.y196{bottom:171.866667pt;}
.y16d{bottom:172.506667pt;}
.y11a{bottom:175.066667pt;}
.y19f{bottom:175.226667pt;}
.y1c5{bottom:176.986667pt;}
.y29{bottom:180.826667pt;}
.y9c{bottom:180.986667pt;}
.yf3{bottom:181.306667pt;}
.y13f{bottom:184.826667pt;}
.ycd{bottom:186.586667pt;}
.y195{bottom:187.226667pt;}
.y16c{bottom:187.866667pt;}
.y119{bottom:190.266667pt;}
.y3f{bottom:192.346667pt;}
.y9b{bottom:196.186667pt;}
.yf2{bottom:196.506667pt;}
.y13e{bottom:200.186667pt;}
.ycc{bottom:201.946667pt;}
.y194{bottom:202.586667pt;}
.y16b{bottom:203.066667pt;}
.y118{bottom:205.626667pt;}
.y3e{bottom:207.706667pt;}
.y19e{bottom:208.826667pt;}
.y9a{bottom:211.546667pt;}
.yf1{bottom:211.866667pt;}
.y13d{bottom:215.386667pt;}
.ycb{bottom:217.306667pt;}
.y193{bottom:217.946667pt;}
.y16a{bottom:218.426667pt;}
.y19d{bottom:219.866667pt;}
.y117{bottom:220.986667pt;}
.y28{bottom:221.626667pt;}
.y3d{bottom:223.066667pt;}
.y99{bottom:226.906667pt;}
.yf0{bottom:227.226667pt;}
.y13c{bottom:230.746667pt;}
.yca{bottom:232.666667pt;}
.y192{bottom:233.306667pt;}
.y169{bottom:233.786667pt;}
.y116{bottom:236.346667pt;}
.y27{bottom:236.986667pt;}
.y1c4{bottom:238.266667pt;}
.y3c{bottom:238.426667pt;}
.y98{bottom:242.266667pt;}
.yef{bottom:242.586667pt;}
.y13b{bottom:246.106667pt;}
.yc9{bottom:248.026667pt;}
.y191{bottom:248.506667pt;}
.y168{bottom:249.146667pt;}
.y115{bottom:251.706667pt;}
.y26{bottom:252.186667pt;}
.y3b{bottom:253.626667pt;}
.y97{bottom:257.626667pt;}
.yee{bottom:257.946667pt;}
.y13a{bottom:261.466667pt;}
.yc8{bottom:263.386667pt;}
.y190{bottom:263.866667pt;}
.y167{bottom:264.506667pt;}
.y114{bottom:266.906667pt;}
.y25{bottom:267.546667pt;}
.y3a{bottom:268.986667pt;}
.y96{bottom:272.986667pt;}
.yed{bottom:273.306667pt;}
.y139{bottom:276.826667pt;}
.yc7{bottom:278.586667pt;}
.y18f{bottom:279.226667pt;}
.y166{bottom:279.866667pt;}
.y70{bottom:281.626667pt;}
.y113{bottom:282.266667pt;}
.y24{bottom:282.906667pt;}
.y39{bottom:284.346667pt;}
.y95{bottom:288.186667pt;}
.yec{bottom:288.506667pt;}
.yc6{bottom:293.946667pt;}
.y18e{bottom:294.586667pt;}
.y165{bottom:295.066667pt;}
.y6f{bottom:296.986667pt;}
.y112{bottom:297.626667pt;}
.y23{bottom:298.266667pt;}
.y38{bottom:299.226667pt;}
.y1c3{bottom:299.706667pt;}
.y94{bottom:303.546667pt;}
.y138{bottom:303.706667pt;}
.yeb{bottom:303.866667pt;}
.yc5{bottom:309.306667pt;}
.y18d{bottom:309.946667pt;}
.y164{bottom:310.426667pt;}
.y6e{bottom:312.346667pt;}
.y111{bottom:312.986667pt;}
.y37{bottom:313.146667pt;}
.y22{bottom:313.626667pt;}
.y1c2{bottom:315.066667pt;}
.y93{bottom:318.906667pt;}
.yea{bottom:319.226667pt;}
.yc4{bottom:324.666667pt;}
.y18c{bottom:325.306667pt;}
.y163{bottom:325.786667pt;}
.y6d{bottom:327.706667pt;}
.y110{bottom:328.346667pt;}
.y21{bottom:328.866667pt;}
.y1c1{bottom:330.306667pt;}
.y36{bottom:332.066667pt;}
.y92{bottom:334.306667pt;}
.ye9{bottom:334.626667pt;}
.yc3{bottom:340.066667pt;}
.y18b{bottom:340.546667pt;}
.y162{bottom:341.186667pt;}
.y6c{bottom:342.946667pt;}
.y10f{bottom:343.746667pt;}
.y137{bottom:344.066667pt;}
.y20{bottom:344.226667pt;}
.y1c0{bottom:345.666667pt;}
.y91{bottom:349.666667pt;}
.ye8{bottom:349.986667pt;}
.yc2{bottom:355.266667pt;}
.y18a{bottom:355.906667pt;}
.y161{bottom:356.546667pt;}
.y6b{bottom:358.306667pt;}
.y10e{bottom:358.946667pt;}
.y1f{bottom:359.586667pt;}
.y1bf{bottom:361.026667pt;}
.y136{bottom:362.946667pt;}
.y90{bottom:364.866667pt;}
.ye7{bottom:365.346667pt;}
.yc1{bottom:370.626667pt;}
.y189{bottom:371.266667pt;}
.y160{bottom:371.906667pt;}
.y6a{bottom:373.666667pt;}
.y10d{bottom:374.306667pt;}
.y1e{bottom:374.946667pt;}
.y1be{bottom:376.386667pt;}
.y8f{bottom:380.226667pt;}
.ye6{bottom:380.546667pt;}
.yc0{bottom:385.986667pt;}
.y188{bottom:386.626667pt;}
.y15f{bottom:387.106667pt;}
.y69{bottom:389.026667pt;}
.y10c{bottom:389.666667pt;}
.y1d{bottom:390.306667pt;}
.y1bd{bottom:391.746667pt;}
.y8e{bottom:395.586667pt;}
.ye5{bottom:395.906667pt;}
.ybf{bottom:401.346667pt;}
.y187{bottom:401.986667pt;}
.y15e{bottom:402.466667pt;}
.y68{bottom:404.386667pt;}
.y10b{bottom:405.026667pt;}
.y1c{bottom:405.666667pt;}
.y1bc{bottom:406.946667pt;}
.y8d{bottom:410.946667pt;}
.ye4{bottom:411.266667pt;}
.ybe{bottom:416.706667pt;}
.y186{bottom:417.346667pt;}
.y15d{bottom:417.826667pt;}
.y67{bottom:419.746667pt;}
.y10a{bottom:420.386667pt;}
.y1b{bottom:420.866667pt;}
.y1bb{bottom:422.306667pt;}
.y8c{bottom:426.306667pt;}
.ye3{bottom:426.626667pt;}
.ybd{bottom:432.066667pt;}
.y185{bottom:432.546667pt;}
.y15c{bottom:433.186667pt;}
.y66{bottom:434.946667pt;}
.y109{bottom:435.746667pt;}
.y1a{bottom:436.226667pt;}
.y1ba{bottom:437.666667pt;}
.y8b{bottom:441.666667pt;}
.ye2{bottom:441.986667pt;}
.ybc{bottom:447.266667pt;}
.y184{bottom:447.906667pt;}
.y15b{bottom:448.546667pt;}
.y65{bottom:450.306667pt;}
.y108{bottom:450.946667pt;}
.y19{bottom:451.586667pt;}
.y1b9{bottom:453.026667pt;}
.y8a{bottom:456.866667pt;}
.ye1{bottom:457.346667pt;}
.ybb{bottom:462.626667pt;}
.y183{bottom:463.266667pt;}
.y15a{bottom:463.746667pt;}
.y64{bottom:465.666667pt;}
.y107{bottom:466.306667pt;}
.y18{bottom:466.946667pt;}
.y1b8{bottom:468.386667pt;}
.y89{bottom:472.226667pt;}
.ye0{bottom:472.546667pt;}
.yba{bottom:477.986667pt;}
.y182{bottom:478.626667pt;}
.y159{bottom:479.106667pt;}
.y63{bottom:481.026667pt;}
.y106{bottom:481.666667pt;}
.y17{bottom:482.306667pt;}
.y1b7{bottom:483.746667pt;}
.y19c{bottom:486.946667pt;}
.y88{bottom:487.586667pt;}
.yb9{bottom:493.346667pt;}
.y181{bottom:493.986667pt;}
.y158{bottom:494.466667pt;}
.y62{bottom:496.386667pt;}
.y105{bottom:497.026667pt;}
.y16{bottom:497.666667pt;}
.y1b6{bottom:498.946667pt;}
.ydf{bottom:499.106667pt;}
.y135{bottom:502.306667pt;}
.y87{bottom:502.946667pt;}
.yb8{bottom:508.706667pt;}
.y180{bottom:509.346667pt;}
.y157{bottom:509.826667pt;}
.y61{bottom:511.586667pt;}
.y104{bottom:512.386667pt;}
.y15{bottom:512.866667pt;}
.y1b5{bottom:514.306667pt;}
.y134{bottom:517.666667pt;}
.y86{bottom:518.306667pt;}
.yb7{bottom:524.066667pt;}
.y17f{bottom:524.546667pt;}
.y156{bottom:525.186667pt;}
.y60{bottom:526.946667pt;}
.y35{bottom:527.106667pt;}
.y103{bottom:527.586667pt;}
.y14{bottom:528.226667pt;}
.y1b4{bottom:529.666667pt;}
.y133{bottom:533.026667pt;}
.y85{bottom:533.666667pt;}
.yde{bottom:537.506667pt;}
.yb6{bottom:539.266667pt;}
.y17e{bottom:539.906667pt;}
.y155{bottom:540.546667pt;}
.y5f{bottom:542.306667pt;}
.y34{bottom:542.626667pt;}
.y102{bottom:542.946667pt;}
.y13{bottom:543.586667pt;}
.y1b3{bottom:545.026667pt;}
.y132{bottom:548.386667pt;}
.y84{bottom:548.866667pt;}
.yb5{bottom:554.626667pt;}
.y17d{bottom:555.266667pt;}
.y154{bottom:555.773333pt;}
.y5e{bottom:557.693333pt;}
.y33{bottom:558.013333pt;}
.y101{bottom:558.333333pt;}
.y12{bottom:558.973333pt;}
.y1b2{bottom:560.413333pt;}
.y131{bottom:563.613333pt;}
.y83{bottom:564.253333pt;}
.yb4{bottom:570.013333pt;}
.y17c{bottom:570.653333pt;}
.y153{bottom:571.133333pt;}
.y32{bottom:573.373333pt;}
.y100{bottom:573.693333pt;}
.y11{bottom:574.333333pt;}
.y1b1{bottom:575.773333pt;}
.ydd{bottom:578.333333pt;}
.y130{bottom:578.973333pt;}
.y5d{bottom:584.093333pt;}
.yb3{bottom:585.373333pt;}
.y17b{bottom:586.013333pt;}
.y152{bottom:586.493333pt;}
.y31{bottom:588.733333pt;}
.yff{bottom:589.053333pt;}
.y10{bottom:589.693333pt;}
.y82{bottom:590.813333pt;}
.y1b0{bottom:590.973333pt;}
.ydc{bottom:593.693333pt;}
.y12f{bottom:594.333333pt;}
.yb2{bottom:600.733333pt;}
.y17a{bottom:601.213333pt;}
.y151{bottom:601.853333pt;}
.y30{bottom:604.093333pt;}
.yfe{bottom:604.413333pt;}
.y1af{bottom:606.333333pt;}
.ydb{bottom:609.053333pt;}
.y12e{bottom:609.693333pt;}
.yb1{bottom:616.093333pt;}
.yf{bottom:616.573333pt;}
.y150{bottom:617.213333pt;}
.y2f{bottom:619.293333pt;}
.yfd{bottom:619.613333pt;}
.y1ae{bottom:621.693333pt;}
.y5c{bottom:622.013333pt;}
.yda{bottom:624.413333pt;}
.y12d{bottom:625.053333pt;}
.y81{bottom:629.213333pt;}
.yb0{bottom:631.293333pt;}
.y179{bottom:631.933333pt;}
.y14f{bottom:632.573333pt;}
.y1ad{bottom:637.053333pt;}
.yd9{bottom:639.613333pt;}
.y12c{bottom:640.413333pt;}
.y5b{bottom:640.893333pt;}
.yfc{bottom:646.173333pt;}
.yaf{bottom:646.653333pt;}
.y178{bottom:647.293333pt;}
.y14e{bottom:647.773333pt;}
.y1ac{bottom:652.413333pt;}
.yd8{bottom:654.973333pt;}
.y12b{bottom:655.613333pt;}
.yae{bottom:662.013333pt;}
.y177{bottom:662.653333pt;}
.y14d{bottom:663.133333pt;}
.y1ab{bottom:667.613333pt;}
.y80{bottom:669.533333pt;}
.yd7{bottom:670.333333pt;}
.y12a{bottom:670.973333pt;}
.ye{bottom:674.173333pt;}
.yad{bottom:677.373333pt;}
.y14c{bottom:678.493333pt;}
.y1aa{bottom:682.973333pt;}
.yfb{bottom:683.933333pt;}
.yd6{bottom:685.693333pt;}
.y129{bottom:686.333333pt;}
.y7f{bottom:688.413333pt;}
.y176{bottom:689.053333pt;}
.yd{bottom:690.013333pt;}
.yac{bottom:692.733333pt;}
.y14b{bottom:693.853333pt;}
.y1a9{bottom:698.333333pt;}
.y128{bottom:701.693333pt;}
.yfa{bottom:702.813333pt;}
.yc{bottom:705.853333pt;}
.yab{bottom:707.933333pt;}
.y14a{bottom:709.213333pt;}
.yd5{bottom:716.573333pt;}
.y127{bottom:717.053333pt;}
.yb{bottom:721.693333pt;}
.yaa{bottom:723.293333pt;}
.y149{bottom:724.413333pt;}
.y1a8{bottom:725.373333pt;}
.y175{bottom:727.613333pt;}
.y126{bottom:732.413333pt;}
.yd4{bottom:735.613333pt;}
.ya{bottom:737.693333pt;}
.ya9{bottom:738.653333pt;}
.y148{bottom:739.773333pt;}
.y125{bottom:747.613333pt;}
.ya8{bottom:754.013333pt;}
.y147{bottom:755.133333pt;}
.y124{bottom:762.973333pt;}
.y1a7{bottom:766.013333pt;}
.y174{bottom:767.933333pt;}
.ya7{bottom:769.373333pt;}
.y146{bottom:770.493333pt;}
.y123{bottom:778.333333pt;}
.y9{bottom:779.293333pt;}
.y1a6{bottom:781.373333pt;}
.ya6{bottom:784.773333pt;}
.y145{bottom:785.893333pt;}
.y173{bottom:787.013333pt;}
.y8{bottom:788.613333pt;}
.y1a5{bottom:796.773333pt;}
.y5a{bottom:801.253333pt;}
.y7{bottom:802.373333pt;}
.y122{bottom:804.933333pt;}
.ya5{bottom:811.173333pt;}
.y6{bottom:816.133333pt;}
.y59{bottom:816.453333pt;}
.y1a4{bottom:828.453333pt;}
.y58{bottom:831.813333pt;}
.y7e{bottom:835.813333pt;}
.y5{bottom:836.453333pt;}
.y121{bottom:842.693333pt;}
.y57{bottom:847.173333pt;}
.ya4{bottom:848.933333pt;}
.y7d{bottom:851.173333pt;}
.y120{bottom:861.573333pt;}
.y56{bottom:862.533333pt;}
.y7c{bottom:866.533333pt;}
.ya3{bottom:867.813333pt;}
.y4{bottom:876.133333pt;}
.y55{bottom:877.893333pt;}
.y7b{bottom:881.893333pt;}
.y54{bottom:893.253333pt;}
.y7a{bottom:897.253333pt;}
.y3{bottom:900.453333pt;}
.y53{bottom:908.453333pt;}
.y79{bottom:912.453333pt;}
.y52{bottom:923.813333pt;}
.y2{bottom:925.093333pt;}
.y78{bottom:927.813333pt;}
.y51{bottom:939.173333pt;}
.y77{bottom:943.173333pt;}
.y50{bottom:954.533333pt;}
.y76{bottom:958.533333pt;}
.y4f{bottom:969.893333pt;}
.y75{bottom:973.893333pt;}
.y4e{bottom:985.253333pt;}
.y74{bottom:989.253333pt;}
.y4d{bottom:1000.453333pt;}
.y73{bottom:1015.680000pt;}
.y4c{bottom:1015.840000pt;}
.y48{bottom:1018.868000pt;}
.y47{bottom:1034.228000pt;}
.y46{bottom:1049.588000pt;}
.y4b{bottom:1059.680000pt;}
.y45{bottom:1064.948000pt;}
.h6{height:5.025000pt;}
.h5{height:31.406250pt;}
.hf{height:36.883125pt;}
.ha{height:38.128125pt;}
.h10{height:41.811250pt;}
.h2{height:42.084375pt;}
.h8{height:47.109375pt;}
.hd{height:48.375000pt;}
.h7{height:50.062500pt;}
.hc{height:51.500000pt;}
.he{height:52.134375pt;}
.hb{height:55.402500pt;}
.h4{height:58.238750pt;}
.h9{height:66.750000pt;}
.h3{height:88.777500pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:75.552000pt;}
.xa{left:78.098667pt;}
.x1{left:87.072000pt;}
.xd{left:94.432000pt;}
.x11{left:98.272000pt;}
.x15{left:105.792000pt;}
.x2{left:151.386667pt;}
.x9{left:227.405333pt;}
.x8{left:248.525333pt;}
.x7{left:266.125333pt;}
.xf{left:319.586667pt;}
.x13{left:323.586667pt;}
.xe{left:333.026667pt;}
.x17{left:337.506667pt;}
.xb{left:392.725333pt;}
.xc{left:399.445333pt;}
.x4{left:412.093333pt;}
.x5{left:430.973333pt;}
.x18{left:442.173333pt;}
.x6{left:643.173333pt;}
.x12{left:656.160000pt;}
.x14{left:662.080000pt;}
.x10{left:673.120000pt;}
.x16{left:674.560000pt;}
}




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