
    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_418b82aae95d14ac1d6d1389.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_f76f344170fdc3a409c28f66.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_c5bdf2774b52db9fffebb42f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_3c0a3ac28f249541586c6dcf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a235f17faf4ed2cbc5085063.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8efdefadfac85ed397240e32.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901855;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_9c11a2fc73244939f800c750.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.993164;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_c9856294d0813bdda62e9cd1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_7f344ed855183fad9a21fdc1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988281;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_a8f1a85e3e52cb00ae8ce483.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.988281;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_574b76bb6259467b2039accb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-14.400000px;}
.v7{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.v6{vertical-align:36.000000px;}
.v5{vertical-align:42.480000px;}
.v4{vertical-align:48.240000px;}
.v3{vertical-align:54.720000px;}
.ls6{letter-spacing:-5.112000px;}
.ls19{letter-spacing:-2.880000px;}
.ls12{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.181200px;}
.ls14{letter-spacing:-0.053280px;}
.ls17{letter-spacing:-0.035280px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.144720px;}
.ls7{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.360000px;}
.lse{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.684000px;}
.ls15{letter-spacing:0.684720px;}
.ls1{letter-spacing:0.720000px;}
.lsc{letter-spacing:2.801520px;}
.lsa{letter-spacing:12.067200px;}
.lsb{letter-spacing:24.283200px;}
.lsd{letter-spacing:24.307200px;}
.ls0{letter-spacing:33.960000px;}
.ls10{letter-spacing:33.984000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws14{word-spacing:-69.120000px;}
.ws12{word-spacing:-36.719280px;}
.ws13{word-spacing:-36.035280px;}
.ws11{word-spacing:-36.000000px;}
.ws2{word-spacing:-20.340000px;}
.wsa{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.wse{word-spacing:-17.784000px;}
.wsd{word-spacing:-16.056000px;}
.wsb{word-spacing:-15.840000px;}
.ws9{word-spacing:-13.608000px;}
.ws8{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.410720px;}
.ws0{word-spacing:-13.229520px;}
.ws7{word-spacing:-12.888000px;}
.wsf{word-spacing:-11.246400px;}
.ws5{word-spacing:0.000000px;}
.ws10{word-spacing:7.575120px;}
.wsc{word-spacing:12.340800px;}
._1b{margin-left:-9.705120px;}
._4{margin-left:-7.942560px;}
._18{margin-left:-6.696000px;}
._5{margin-left:-5.129760px;}
._3{margin-left:-3.600000px;}
._1{margin-left:-2.065440px;}
._0{margin-left:-1.013040px;}
._2{width:1.469760px;}
._13{width:2.952000px;}
._14{width:4.074240px;}
._b{width:6.060000px;}
._d{width:7.332000px;}
._a{width:8.496000px;}
._c{width:9.552000px;}
._11{width:11.520000px;}
._12{width:13.373760px;}
._f{width:15.048000px;}
._7{width:16.723200px;}
._e{width:19.128000px;}
._8{width:20.688000px;}
._1c{width:21.744000px;}
._6{width:22.800000px;}
._9{width:24.005760px;}
._16{width:25.374000px;}
._1d{width:26.784000px;}
._10{width:32.400000px;}
._15{width:33.792240px;}
._17{width:59.994000px;}
._1a{width:75.870000px;}
._19{width:79.966800px;}
._1f{width:114.031440px;}
._1e{width:226.098000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:1.080000px;}
.y40{bottom:2.880000px;}
.y42{bottom:3.060000px;}
.y108{bottom:3.240000px;}
.y142{bottom:3.960000px;}
.y74{bottom:7.200000px;}
.y50{bottom:10.260000px;}
.y52{bottom:11.880000px;}
.yc6{bottom:12.600000px;}
.y68{bottom:12.780000px;}
.y66{bottom:13.140000px;}
.ycc{bottom:13.320000px;}
.yd2{bottom:15.300000px;}
.y3f{bottom:18.360000px;}
.y45{bottom:18.540000px;}
.y64{bottom:20.880000px;}
.y107{bottom:21.240000px;}
.y73{bottom:22.680000px;}
.y141{bottom:24.660000px;}
.y65{bottom:28.620000px;}
.y6b{bottom:34.020000px;}
.y106{bottom:39.240000px;}
.y140{bottom:45.360000px;}
.y6d{bottom:49.500000px;}
.y6a{bottom:49.530000px;}
.y27{bottom:56.880000px;}
.y105{bottom:57.240000px;}
.y13f{bottom:66.060000px;}
.y10f{bottom:75.240000px;}
.y104{bottom:75.270000px;}
.y26{bottom:77.580000px;}
.y13e{bottom:86.760000px;}
.y103{bottom:93.270000px;}
.y13d{bottom:106.740000px;}
.y109{bottom:109.980000px;}
.y7f{bottom:111.060000px;}
.y102{bottom:111.270000px;}
.yca{bottom:111.960000px;}
.yae{bottom:113.400000px;}
.y7e{bottom:116.280000px;}
.yd3{bottom:118.980000px;}
.y13c{bottom:124.740000px;}
.y4e{bottom:126.720000px;}
.ya2{bottom:128.340000px;}
.y7d{bottom:129.060000px;}
.y101{bottom:129.270000px;}
.ycf{bottom:132.120000px;}
.ya1{bottom:133.560000px;}
.y23{bottom:138.960000px;}
.yc4{bottom:140.760000px;}
.y13b{bottom:142.740000px;}
.yc9{bottom:143.100000px;}
.yad{bottom:144.360000px;}
.ya0{bottom:146.340000px;}
.y100{bottom:147.270000px;}
.yce{bottom:152.820000px;}
.y4d{bottom:157.680000px;}
.y61{bottom:158.580000px;}
.yc7{bottom:159.840000px;}
.y13a{bottom:160.740000px;}
.y7c{bottom:164.160000px;}
.yff{bottom:165.270000px;}
.ycd{bottom:169.560000px;}
.y22{bottom:170.100000px;}
.yc3{bottom:171.720000px;}
.yac{bottom:175.500000px;}
.y139{bottom:178.740000px;}
.y9f{bottom:181.440000px;}
.yfe{bottom:183.270000px;}
.y4c{bottom:188.820000px;}
.y144{bottom:189.000000px;}
.y60{bottom:189.720000px;}
.y7b{bottom:195.150000px;}
.y138{bottom:196.785000px;}
.y21{bottom:201.090000px;}
.yfd{bottom:201.270000px;}
.yc2{bottom:202.890000px;}
.yab{bottom:206.490000px;}
.y9e{bottom:212.430000px;}
.y137{bottom:214.785000px;}
.yfc{bottom:219.270000px;}
.y4b{bottom:219.810000px;}
.y5f{bottom:220.710000px;}
.y143{bottom:223.770000px;}
.y7a{bottom:226.290000px;}
.y20{bottom:232.230000px;}
.y136{bottom:232.785000px;}
.yc1{bottom:233.850000px;}
.yfb{bottom:237.270000px;}
.yaa{bottom:237.630000px;}
.y4a{bottom:239.430000px;}
.y110{bottom:240.510000px;}
.y9d{bottom:243.570000px;}
.y135{bottom:250.785000px;}
.y5e{bottom:251.850000px;}
.y49{bottom:252.930000px;}
.yfa{bottom:255.270000px;}
.y79{bottom:257.250000px;}
.y1f{bottom:263.190000px;}
.yc0{bottom:264.990000px;}
.y48{bottom:268.410000px;}
.ya9{bottom:268.590000px;}
.y134{bottom:268.785000px;}
.yf9{bottom:273.270000px;}
.y9c{bottom:274.530000px;}
.y5d{bottom:282.810000px;}
.y133{bottom:286.785000px;}
.y78{bottom:288.390000px;}
.yf8{bottom:291.270000px;}
.y1e{bottom:294.150000px;}
.ybf{bottom:295.950000px;}
.y47{bottom:299.370000px;}
.ya8{bottom:299.730000px;}
.y132{bottom:304.785000px;}
.y9b{bottom:305.670000px;}
.yf7{bottom:309.270000px;}
.y5c{bottom:313.950000px;}
.y77{bottom:319.350000px;}
.y131{bottom:322.785000px;}
.y1d{bottom:325.290000px;}
.ybe{bottom:327.090000px;}
.yf6{bottom:327.315000px;}
.y46{bottom:330.510000px;}
.ya7{bottom:330.690000px;}
.y9a{bottom:336.630000px;}
.y130{bottom:340.785000px;}
.y5b{bottom:344.910000px;}
.yf5{bottom:345.315000px;}
.y76{bottom:350.490000px;}
.y1c{bottom:356.250000px;}
.ybd{bottom:358.050000px;}
.y12f{bottom:358.785000px;}
.y44{bottom:361.470000px;}
.ya6{bottom:361.830000px;}
.yf4{bottom:363.315000px;}
.y99{bottom:367.770000px;}
.y5a{bottom:376.050000px;}
.y12e{bottom:376.785000px;}
.yf3{bottom:381.315000px;}
.y75{bottom:381.450000px;}
.y1b{bottom:387.390000px;}
.ybc{bottom:389.190000px;}
.y43{bottom:392.610000px;}
.ya5{bottom:392.790000px;}
.y12d{bottom:394.785000px;}
.y72{bottom:398.190000px;}
.y98{bottom:398.730000px;}
.yf2{bottom:399.315000px;}
.y59{bottom:407.010000px;}
.y12c{bottom:412.785000px;}
.yf1{bottom:417.315000px;}
.y1a{bottom:418.350000px;}
.ybb{bottom:420.150000px;}
.ya4{bottom:423.930000px;}
.y41{bottom:424.290000px;}
.y97{bottom:429.915000px;}
.y12b{bottom:430.815000px;}
.y71{bottom:434.235000px;}
.yf0{bottom:435.315000px;}
.y58{bottom:438.015000px;}
.y3e{bottom:440.715000px;}
.y12a{bottom:448.815000px;}
.y19{bottom:449.535000px;}
.y70{bottom:449.715000px;}
.yba{bottom:451.155000px;}
.yef{bottom:453.315000px;}
.ya3{bottom:454.935000px;}
.y96{bottom:460.875000px;}
.y129{bottom:466.815000px;}
.y57{bottom:469.155000px;}
.yee{bottom:471.315000px;}
.y18{bottom:480.495000px;}
.y6f{bottom:480.855000px;}
.yb9{bottom:482.295000px;}
.y128{bottom:484.815000px;}
.y3d{bottom:486.075000px;}
.yed{bottom:489.315000px;}
.y95{bottom:492.015000px;}
.y56{bottom:500.115000px;}
.y127{bottom:502.815000px;}
.yec{bottom:507.315000px;}
.y17{bottom:511.635000px;}
.y6e{bottom:511.815000px;}
.yb8{bottom:513.255000px;}
.y3c{bottom:517.035000px;}
.y126{bottom:520.815000px;}
.y94{bottom:522.975000px;}
.yeb{bottom:525.315000px;}
.y55{bottom:531.255000px;}
.y125{bottom:538.815000px;}
.y16{bottom:542.595000px;}
.yea{bottom:543.315000px;}
.yb7{bottom:544.395000px;}
.y3b{bottom:548.175000px;}
.y93{bottom:554.115000px;}
.y124{bottom:556.815000px;}
.y6c{bottom:558.435000px;}
.ye9{bottom:561.345000px;}
.y54{bottom:562.215000px;}
.y15{bottom:573.735000px;}
.y123{bottom:574.815000px;}
.yb6{bottom:575.355000px;}
.y3a{bottom:579.135000px;}
.ye8{bottom:579.345000px;}
.y92{bottom:585.075000px;}
.y122{bottom:592.815000px;}
.y53{bottom:593.355000px;}
.ye7{bottom:597.345000px;}
.y14{bottom:604.695000px;}
.yb5{bottom:606.495000px;}
.y51{bottom:610.095000px;}
.y39{bottom:610.275000px;}
.y121{bottom:610.815000px;}
.ye6{bottom:615.345000px;}
.y91{bottom:616.215000px;}
.y69{bottom:620.535000px;}
.y120{bottom:628.815000px;}
.ye5{bottom:633.345000px;}
.y13{bottom:635.835000px;}
.y4f{bottom:636.015000px;}
.yb4{bottom:637.455000px;}
.y38{bottom:641.235000px;}
.y11f{bottom:646.815000px;}
.y90{bottom:647.175000px;}
.ye4{bottom:651.345000px;}
.y11e{bottom:664.860000px;}
.y12{bottom:666.795000px;}
.yb3{bottom:668.625000px;}
.ye3{bottom:669.345000px;}
.y37{bottom:672.405000px;}
.y8e{bottom:678.165000px;}
.y11d{bottom:682.860000px;}
.y63{bottom:683.385000px;}
.y8f{bottom:685.005000px;}
.ye2{bottom:687.345000px;}
.y11{bottom:697.965000px;}
.y67{bottom:699.585000px;}
.y11c{bottom:700.860000px;}
.y36{bottom:703.365000px;}
.ye1{bottom:705.345000px;}
.y8d{bottom:709.305000px;}
.y11b{bottom:718.860000px;}
.ye0{bottom:723.345000px;}
.y10{bottom:728.925000px;}
.yb2{bottom:730.725000px;}
.y35{bottom:734.505000px;}
.y62{bottom:735.585000px;}
.y11a{bottom:736.860000px;}
.y8c{bottom:740.265000px;}
.ydf{bottom:741.345000px;}
.y119{bottom:754.860000px;}
.yde{bottom:759.345000px;}
.yf{bottom:760.065000px;}
.yb1{bottom:761.685000px;}
.y34{bottom:765.465000px;}
.y8b{bottom:771.585000px;}
.y118{bottom:772.860000px;}
.ydd{bottom:777.345000px;}
.y8a{bottom:782.025000px;}
.y117{bottom:790.860000px;}
.ye{bottom:791.025000px;}
.yb0{bottom:792.825000px;}
.ydc{bottom:795.390000px;}
.y33{bottom:796.605000px;}
.y116{bottom:808.860000px;}
.ydb{bottom:813.390000px;}
.yd{bottom:822.165000px;}
.y89{bottom:823.605000px;}
.yaf{bottom:823.785000px;}
.y115{bottom:826.860000px;}
.y32{bottom:827.565000px;}
.yda{bottom:831.390000px;}
.y114{bottom:844.860000px;}
.yd9{bottom:849.390000px;}
.yc{bottom:853.125000px;}
.y88{bottom:854.745000px;}
.y31{bottom:858.705000px;}
.y113{bottom:862.860000px;}
.yd8{bottom:867.390000px;}
.y112{bottom:880.860000px;}
.yb{bottom:884.265000px;}
.yd7{bottom:885.390000px;}
.y87{bottom:885.705000px;}
.y30{bottom:889.665000px;}
.y111{bottom:898.860000px;}
.yd6{bottom:903.390000px;}
.ya{bottom:915.270000px;}
.y86{bottom:916.890000px;}
.y2f{bottom:920.850000px;}
.yd5{bottom:921.390000px;}
.yd4{bottom:939.390000px;}
.y9{bottom:946.410000px;}
.y85{bottom:947.850000px;}
.y2e{bottom:951.810000px;}
.y10e{bottom:957.390000px;}
.y10d{bottom:975.390000px;}
.y8{bottom:977.370000px;}
.y84{bottom:978.990000px;}
.y2d{bottom:982.950000px;}
.y10c{bottom:993.390000px;}
.y83{bottom:1006.350000px;}
.y7{bottom:1008.510000px;}
.y10b{bottom:1011.390000px;}
.y2c{bottom:1013.910000px;}
.y82{bottom:1015.350000px;}
.y10a{bottom:1029.390000px;}
.yc5{bottom:1032.450000px;}
.y6{bottom:1039.470000px;}
.y2b{bottom:1045.050000px;}
.y81{bottom:1051.890000px;}
.y80{bottom:1063.950000px;}
.y5{bottom:1070.610000px;}
.yd1{bottom:1073.850000px;}
.y2a{bottom:1076.010000px;}
.y29{bottom:1107.150000px;}
.y4{bottom:1112.730000px;}
.yd0{bottom:1117.410000px;}
.ycb{bottom:1126.770000px;}
.y3{bottom:1135.950000px;}
.y28{bottom:1138.110000px;}
.y25{bottom:1178.460000px;}
.y2{bottom:1184.760000px;}
.y24{bottom:1195.740000px;}
.y1{bottom:1198.440000px;}
.hb{height:15.480000px;}
.he{height:15.660000px;}
.h9{height:15.696000px;}
.hd{height:25.920000px;}
.h15{height:27.147656px;}
.h20{height:28.116000px;}
.h1e{height:29.340000px;}
.h7{height:30.960000px;}
.ha{height:31.140000px;}
.h1d{height:33.683203px;}
.h2{height:35.261367px;}
.h10{height:35.280000px;}
.h14{height:35.316000px;}
.h8{height:37.705078px;}
.h6{height:41.726953px;}
.h13{height:46.620000px;}
.h23{height:46.804219px;}
.h4{height:50.273438px;}
.h1b{height:50.941406px;}
.hf{height:51.480000px;}
.h5{height:52.628906px;}
.h3{height:57.404883px;}
.h12{height:62.100000px;}
.h11{height:62.136000px;}
.h1a{height:86.273438px;}
.h19{height:108.027422px;}
.h1c{height:134.080312px;}
.h18{height:140.560312px;}
.h16{height:147.040313px;}
.h17{height:195.280313px;}
.hc{height:208.290000px;}
.h1f{height:871.890000px;}
.h25{height:913.650000px;}
.h22{height:954.150000px;}
.h21{height:956.490000px;}
.h24{height:1044.180000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:20.340000px;}
.wc{width:93.060000px;}
.w4{width:128.340000px;}
.wf{width:156.990000px;}
.wb{width:179.130000px;}
.we{width:193.170000px;}
.w5{width:236.235000px;}
.w6{width:258.510000px;}
.wd{width:350.175000px;}
.w7{width:541.725000px;}
.wa{width:602.025000px;}
.w10{width:622.365000px;}
.w3{width:623.085000px;}
.w11{width:627.945000px;}
.w12{width:644.685000px;}
.w8{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x17{left:11.880000px;}
.xf{left:22.320000px;}
.x10{left:25.020000px;}
.x23{left:40.494000px;}
.xd{left:44.814000px;}
.x15{left:49.680000px;}
.x16{left:55.254000px;}
.x13{left:63.000000px;}
.x2{left:135.035987px;}
.xc{left:155.370000px;}
.x12{left:156.990000px;}
.x1{left:162.029987px;}
.x19{left:164.729987px;}
.x4{left:167.429987px;}
.x1d{left:187.229987px;}
.x6{left:189.029987px;}
.xa{left:211.529973px;}
.x3{left:216.029987px;}
.xb{left:220.529987px;}
.x8{left:263.370000px;}
.x1a{left:281.729987px;}
.xe{left:314.175000px;}
.x11{left:407.235000px;}
.x18{left:432.074987px;}
.x1b{left:451.874987px;}
.x22{left:478.004987px;}
.x5{left:482.504987px;}
.x9{left:499.605000px;}
.x21{left:514.869000px;}
.x20{left:546.774000px;}
.x1c{left:563.504987px;}
.x14{left:600.405000px;}
.x1e{left:613.544973px;}
.x1f{left:619.664987px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v7{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.v6{vertical-align:32.000000pt;}
.v5{vertical-align:37.760000pt;}
.v4{vertical-align:42.880000pt;}
.v3{vertical-align:48.640000pt;}
.ls6{letter-spacing:-4.544000pt;}
.ls19{letter-spacing:-2.560000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.161067pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls17{letter-spacing:-0.031360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.128640pt;}
.ls7{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.608000pt;}
.ls15{letter-spacing:0.608640pt;}
.ls1{letter-spacing:0.640000pt;}
.lsc{letter-spacing:2.490240pt;}
.lsa{letter-spacing:10.726400pt;}
.lsb{letter-spacing:21.585067pt;}
.lsd{letter-spacing:21.606400pt;}
.ls0{letter-spacing:30.186667pt;}
.ls10{letter-spacing:30.208000pt;}
.ws6{word-spacing:-64.000000pt;}
.ws14{word-spacing:-61.440000pt;}
.ws12{word-spacing:-32.639360pt;}
.ws13{word-spacing:-32.031360pt;}
.ws11{word-spacing:-32.000000pt;}
.ws2{word-spacing:-18.080000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.808000pt;}
.wsd{word-spacing:-14.272000pt;}
.wsb{word-spacing:-14.080000pt;}
.ws9{word-spacing:-12.096000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.920640pt;}
.ws0{word-spacing:-11.759573pt;}
.ws7{word-spacing:-11.456000pt;}
.wsf{word-spacing:-9.996800pt;}
.ws5{word-spacing:0.000000pt;}
.ws10{word-spacing:6.733440pt;}
.wsc{word-spacing:10.969600pt;}
._1b{margin-left:-8.626773pt;}
._4{margin-left:-7.060053pt;}
._18{margin-left:-5.952000pt;}
._5{margin-left:-4.559787pt;}
._3{margin-left:-3.200000pt;}
._1{margin-left:-1.835947pt;}
._0{margin-left:-0.900480pt;}
._2{width:1.306453pt;}
._13{width:2.624000pt;}
._14{width:3.621547pt;}
._b{width:5.386667pt;}
._d{width:6.517333pt;}
._a{width:7.552000pt;}
._c{width:8.490667pt;}
._11{width:10.240000pt;}
._12{width:11.887787pt;}
._f{width:13.376000pt;}
._7{width:14.865067pt;}
._e{width:17.002667pt;}
._8{width:18.389333pt;}
._1c{width:19.328000pt;}
._6{width:20.266667pt;}
._9{width:21.338453pt;}
._16{width:22.554667pt;}
._1d{width:23.808000pt;}
._10{width:28.800000pt;}
._15{width:30.037547pt;}
._17{width:53.328000pt;}
._1a{width:67.440000pt;}
._19{width:71.081600pt;}
._1f{width:101.361280pt;}
._1e{width:200.976000pt;}
.fs5{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:0.960000pt;}
.y40{bottom:2.560000pt;}
.y42{bottom:2.720000pt;}
.y108{bottom:2.880000pt;}
.y142{bottom:3.520000pt;}
.y74{bottom:6.400000pt;}
.y50{bottom:9.120000pt;}
.y52{bottom:10.560000pt;}
.yc6{bottom:11.200000pt;}
.y68{bottom:11.360000pt;}
.y66{bottom:11.680000pt;}
.ycc{bottom:11.840000pt;}
.yd2{bottom:13.600000pt;}
.y3f{bottom:16.320000pt;}
.y45{bottom:16.480000pt;}
.y64{bottom:18.560000pt;}
.y107{bottom:18.880000pt;}
.y73{bottom:20.160000pt;}
.y141{bottom:21.920000pt;}
.y65{bottom:25.440000pt;}
.y6b{bottom:30.240000pt;}
.y106{bottom:34.880000pt;}
.y140{bottom:40.320000pt;}
.y6d{bottom:44.000000pt;}
.y6a{bottom:44.026667pt;}
.y27{bottom:50.560000pt;}
.y105{bottom:50.880000pt;}
.y13f{bottom:58.720000pt;}
.y10f{bottom:66.880000pt;}
.y104{bottom:66.906667pt;}
.y26{bottom:68.960000pt;}
.y13e{bottom:77.120000pt;}
.y103{bottom:82.906667pt;}
.y13d{bottom:94.880000pt;}
.y109{bottom:97.760000pt;}
.y7f{bottom:98.720000pt;}
.y102{bottom:98.906667pt;}
.yca{bottom:99.520000pt;}
.yae{bottom:100.800000pt;}
.y7e{bottom:103.360000pt;}
.yd3{bottom:105.760000pt;}
.y13c{bottom:110.880000pt;}
.y4e{bottom:112.640000pt;}
.ya2{bottom:114.080000pt;}
.y7d{bottom:114.720000pt;}
.y101{bottom:114.906667pt;}
.ycf{bottom:117.440000pt;}
.ya1{bottom:118.720000pt;}
.y23{bottom:123.520000pt;}
.yc4{bottom:125.120000pt;}
.y13b{bottom:126.880000pt;}
.yc9{bottom:127.200000pt;}
.yad{bottom:128.320000pt;}
.ya0{bottom:130.080000pt;}
.y100{bottom:130.906667pt;}
.yce{bottom:135.840000pt;}
.y4d{bottom:140.160000pt;}
.y61{bottom:140.960000pt;}
.yc7{bottom:142.080000pt;}
.y13a{bottom:142.880000pt;}
.y7c{bottom:145.920000pt;}
.yff{bottom:146.906667pt;}
.ycd{bottom:150.720000pt;}
.y22{bottom:151.200000pt;}
.yc3{bottom:152.640000pt;}
.yac{bottom:156.000000pt;}
.y139{bottom:158.880000pt;}
.y9f{bottom:161.280000pt;}
.yfe{bottom:162.906667pt;}
.y4c{bottom:167.840000pt;}
.y144{bottom:168.000000pt;}
.y60{bottom:168.640000pt;}
.y7b{bottom:173.466667pt;}
.y138{bottom:174.920000pt;}
.y21{bottom:178.746667pt;}
.yfd{bottom:178.906667pt;}
.yc2{bottom:180.346667pt;}
.yab{bottom:183.546667pt;}
.y9e{bottom:188.826667pt;}
.y137{bottom:190.920000pt;}
.yfc{bottom:194.906667pt;}
.y4b{bottom:195.386667pt;}
.y5f{bottom:196.186667pt;}
.y143{bottom:198.906667pt;}
.y7a{bottom:201.146667pt;}
.y20{bottom:206.426667pt;}
.y136{bottom:206.920000pt;}
.yc1{bottom:207.866667pt;}
.yfb{bottom:210.906667pt;}
.yaa{bottom:211.226667pt;}
.y4a{bottom:212.826667pt;}
.y110{bottom:213.786667pt;}
.y9d{bottom:216.506667pt;}
.y135{bottom:222.920000pt;}
.y5e{bottom:223.866667pt;}
.y49{bottom:224.826667pt;}
.yfa{bottom:226.906667pt;}
.y79{bottom:228.666667pt;}
.y1f{bottom:233.946667pt;}
.yc0{bottom:235.546667pt;}
.y48{bottom:238.586667pt;}
.ya9{bottom:238.746667pt;}
.y134{bottom:238.920000pt;}
.yf9{bottom:242.906667pt;}
.y9c{bottom:244.026667pt;}
.y5d{bottom:251.386667pt;}
.y133{bottom:254.920000pt;}
.y78{bottom:256.346667pt;}
.yf8{bottom:258.906667pt;}
.y1e{bottom:261.466667pt;}
.ybf{bottom:263.066667pt;}
.y47{bottom:266.106667pt;}
.ya8{bottom:266.426667pt;}
.y132{bottom:270.920000pt;}
.y9b{bottom:271.706667pt;}
.yf7{bottom:274.906667pt;}
.y5c{bottom:279.066667pt;}
.y77{bottom:283.866667pt;}
.y131{bottom:286.920000pt;}
.y1d{bottom:289.146667pt;}
.ybe{bottom:290.746667pt;}
.yf6{bottom:290.946667pt;}
.y46{bottom:293.786667pt;}
.ya7{bottom:293.946667pt;}
.y9a{bottom:299.226667pt;}
.y130{bottom:302.920000pt;}
.y5b{bottom:306.586667pt;}
.yf5{bottom:306.946667pt;}
.y76{bottom:311.546667pt;}
.y1c{bottom:316.666667pt;}
.ybd{bottom:318.266667pt;}
.y12f{bottom:318.920000pt;}
.y44{bottom:321.306667pt;}
.ya6{bottom:321.626667pt;}
.yf4{bottom:322.946667pt;}
.y99{bottom:326.906667pt;}
.y5a{bottom:334.266667pt;}
.y12e{bottom:334.920000pt;}
.yf3{bottom:338.946667pt;}
.y75{bottom:339.066667pt;}
.y1b{bottom:344.346667pt;}
.ybc{bottom:345.946667pt;}
.y43{bottom:348.986667pt;}
.ya5{bottom:349.146667pt;}
.y12d{bottom:350.920000pt;}
.y72{bottom:353.946667pt;}
.y98{bottom:354.426667pt;}
.yf2{bottom:354.946667pt;}
.y59{bottom:361.786667pt;}
.y12c{bottom:366.920000pt;}
.yf1{bottom:370.946667pt;}
.y1a{bottom:371.866667pt;}
.ybb{bottom:373.466667pt;}
.ya4{bottom:376.826667pt;}
.y41{bottom:377.146667pt;}
.y97{bottom:382.146667pt;}
.y12b{bottom:382.946667pt;}
.y71{bottom:385.986667pt;}
.yf0{bottom:386.946667pt;}
.y58{bottom:389.346667pt;}
.y3e{bottom:391.746667pt;}
.y12a{bottom:398.946667pt;}
.y19{bottom:399.586667pt;}
.y70{bottom:399.746667pt;}
.yba{bottom:401.026667pt;}
.yef{bottom:402.946667pt;}
.ya3{bottom:404.386667pt;}
.y96{bottom:409.666667pt;}
.y129{bottom:414.946667pt;}
.y57{bottom:417.026667pt;}
.yee{bottom:418.946667pt;}
.y18{bottom:427.106667pt;}
.y6f{bottom:427.426667pt;}
.yb9{bottom:428.706667pt;}
.y128{bottom:430.946667pt;}
.y3d{bottom:432.066667pt;}
.yed{bottom:434.946667pt;}
.y95{bottom:437.346667pt;}
.y56{bottom:444.546667pt;}
.y127{bottom:446.946667pt;}
.yec{bottom:450.946667pt;}
.y17{bottom:454.786667pt;}
.y6e{bottom:454.946667pt;}
.yb8{bottom:456.226667pt;}
.y3c{bottom:459.586667pt;}
.y126{bottom:462.946667pt;}
.y94{bottom:464.866667pt;}
.yeb{bottom:466.946667pt;}
.y55{bottom:472.226667pt;}
.y125{bottom:478.946667pt;}
.y16{bottom:482.306667pt;}
.yea{bottom:482.946667pt;}
.yb7{bottom:483.906667pt;}
.y3b{bottom:487.266667pt;}
.y93{bottom:492.546667pt;}
.y124{bottom:494.946667pt;}
.y6c{bottom:496.386667pt;}
.ye9{bottom:498.973333pt;}
.y54{bottom:499.746667pt;}
.y15{bottom:509.986667pt;}
.y123{bottom:510.946667pt;}
.yb6{bottom:511.426667pt;}
.y3a{bottom:514.786667pt;}
.ye8{bottom:514.973333pt;}
.y92{bottom:520.066667pt;}
.y122{bottom:526.946667pt;}
.y53{bottom:527.426667pt;}
.ye7{bottom:530.973333pt;}
.y14{bottom:537.506667pt;}
.yb5{bottom:539.106667pt;}
.y51{bottom:542.306667pt;}
.y39{bottom:542.466667pt;}
.y121{bottom:542.946667pt;}
.ye6{bottom:546.973333pt;}
.y91{bottom:547.746667pt;}
.y69{bottom:551.586667pt;}
.y120{bottom:558.946667pt;}
.ye5{bottom:562.973333pt;}
.y13{bottom:565.186667pt;}
.y4f{bottom:565.346667pt;}
.yb4{bottom:566.626667pt;}
.y38{bottom:569.986667pt;}
.y11f{bottom:574.946667pt;}
.y90{bottom:575.266667pt;}
.ye4{bottom:578.973333pt;}
.y11e{bottom:590.986667pt;}
.y12{bottom:592.706667pt;}
.yb3{bottom:594.333333pt;}
.ye3{bottom:594.973333pt;}
.y37{bottom:597.693333pt;}
.y8e{bottom:602.813333pt;}
.y11d{bottom:606.986667pt;}
.y63{bottom:607.453333pt;}
.y8f{bottom:608.893333pt;}
.ye2{bottom:610.973333pt;}
.y11{bottom:620.413333pt;}
.y67{bottom:621.853333pt;}
.y11c{bottom:622.986667pt;}
.y36{bottom:625.213333pt;}
.ye1{bottom:626.973333pt;}
.y8d{bottom:630.493333pt;}
.y11b{bottom:638.986667pt;}
.ye0{bottom:642.973333pt;}
.y10{bottom:647.933333pt;}
.yb2{bottom:649.533333pt;}
.y35{bottom:652.893333pt;}
.y62{bottom:653.853333pt;}
.y11a{bottom:654.986667pt;}
.y8c{bottom:658.013333pt;}
.ydf{bottom:658.973333pt;}
.y119{bottom:670.986667pt;}
.yde{bottom:674.973333pt;}
.yf{bottom:675.613333pt;}
.yb1{bottom:677.053333pt;}
.y34{bottom:680.413333pt;}
.y8b{bottom:685.853333pt;}
.y118{bottom:686.986667pt;}
.ydd{bottom:690.973333pt;}
.y8a{bottom:695.133333pt;}
.y117{bottom:702.986667pt;}
.ye{bottom:703.133333pt;}
.yb0{bottom:704.733333pt;}
.ydc{bottom:707.013333pt;}
.y33{bottom:708.093333pt;}
.y116{bottom:718.986667pt;}
.ydb{bottom:723.013333pt;}
.yd{bottom:730.813333pt;}
.y89{bottom:732.093333pt;}
.yaf{bottom:732.253333pt;}
.y115{bottom:734.986667pt;}
.y32{bottom:735.613333pt;}
.yda{bottom:739.013333pt;}
.y114{bottom:750.986667pt;}
.yd9{bottom:755.013333pt;}
.yc{bottom:758.333333pt;}
.y88{bottom:759.773333pt;}
.y31{bottom:763.293333pt;}
.y113{bottom:766.986667pt;}
.yd8{bottom:771.013333pt;}
.y112{bottom:782.986667pt;}
.yb{bottom:786.013333pt;}
.yd7{bottom:787.013333pt;}
.y87{bottom:787.293333pt;}
.y30{bottom:790.813333pt;}
.y111{bottom:798.986667pt;}
.yd6{bottom:803.013333pt;}
.ya{bottom:813.573333pt;}
.y86{bottom:815.013333pt;}
.y2f{bottom:818.533333pt;}
.yd5{bottom:819.013333pt;}
.yd4{bottom:835.013333pt;}
.y9{bottom:841.253333pt;}
.y85{bottom:842.533333pt;}
.y2e{bottom:846.053333pt;}
.y10e{bottom:851.013333pt;}
.y10d{bottom:867.013333pt;}
.y8{bottom:868.773333pt;}
.y84{bottom:870.213333pt;}
.y2d{bottom:873.733333pt;}
.y10c{bottom:883.013333pt;}
.y83{bottom:894.533333pt;}
.y7{bottom:896.453333pt;}
.y10b{bottom:899.013333pt;}
.y2c{bottom:901.253333pt;}
.y82{bottom:902.533333pt;}
.y10a{bottom:915.013333pt;}
.yc5{bottom:917.733333pt;}
.y6{bottom:923.973333pt;}
.y2b{bottom:928.933333pt;}
.y81{bottom:935.013333pt;}
.y80{bottom:945.733333pt;}
.y5{bottom:951.653333pt;}
.yd1{bottom:954.533333pt;}
.y2a{bottom:956.453333pt;}
.y29{bottom:984.133333pt;}
.y4{bottom:989.093333pt;}
.yd0{bottom:993.253333pt;}
.ycb{bottom:1001.573333pt;}
.y3{bottom:1009.733333pt;}
.y28{bottom:1011.653333pt;}
.y25{bottom:1047.520000pt;}
.y2{bottom:1053.120000pt;}
.y24{bottom:1062.880000pt;}
.y1{bottom:1065.280000pt;}
.hb{height:13.760000pt;}
.he{height:13.920000pt;}
.h9{height:13.952000pt;}
.hd{height:23.040000pt;}
.h15{height:24.131250pt;}
.h20{height:24.992000pt;}
.h1e{height:26.080000pt;}
.h7{height:27.520000pt;}
.ha{height:27.680000pt;}
.h1d{height:29.940625pt;}
.h2{height:31.343437pt;}
.h10{height:31.360000pt;}
.h14{height:31.392000pt;}
.h8{height:33.515625pt;}
.h6{height:37.090625pt;}
.h13{height:41.440000pt;}
.h23{height:41.603750pt;}
.h4{height:44.687500pt;}
.h1b{height:45.281250pt;}
.hf{height:45.760000pt;}
.h5{height:46.781250pt;}
.h3{height:51.026562pt;}
.h12{height:55.200000pt;}
.h11{height:55.232000pt;}
.h1a{height:76.687500pt;}
.h19{height:96.024375pt;}
.h1c{height:119.182500pt;}
.h18{height:124.942500pt;}
.h16{height:130.702500pt;}
.h17{height:173.582500pt;}
.hc{height:185.146667pt;}
.h1f{height:775.013333pt;}
.h25{height:812.133333pt;}
.h22{height:848.133333pt;}
.h21{height:850.213333pt;}
.h24{height:928.160000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.080000pt;}
.wc{width:82.720000pt;}
.w4{width:114.080000pt;}
.wf{width:139.546667pt;}
.wb{width:159.226667pt;}
.we{width:171.706667pt;}
.w5{width:209.986667pt;}
.w6{width:229.786667pt;}
.wd{width:311.266667pt;}
.w7{width:481.533333pt;}
.wa{width:535.133333pt;}
.w10{width:553.213333pt;}
.w3{width:553.853333pt;}
.w11{width:558.173333pt;}
.w12{width:573.053333pt;}
.w8{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x17{left:10.560000pt;}
.xf{left:19.840000pt;}
.x10{left:22.240000pt;}
.x23{left:35.994667pt;}
.xd{left:39.834667pt;}
.x15{left:44.160000pt;}
.x16{left:49.114667pt;}
.x13{left:56.000000pt;}
.x2{left:120.031988pt;}
.xc{left:138.106667pt;}
.x12{left:139.546667pt;}
.x1{left:144.026655pt;}
.x19{left:146.426655pt;}
.x4{left:148.826655pt;}
.x1d{left:166.426655pt;}
.x6{left:168.026655pt;}
.xa{left:188.026643pt;}
.x3{left:192.026655pt;}
.xb{left:196.026655pt;}
.x8{left:234.106667pt;}
.x1a{left:250.426655pt;}
.xe{left:279.266667pt;}
.x11{left:361.986667pt;}
.x18{left:384.066655pt;}
.x1b{left:401.666655pt;}
.x22{left:424.893322pt;}
.x5{left:428.893322pt;}
.x9{left:444.093333pt;}
.x21{left:457.661333pt;}
.x20{left:486.021333pt;}
.x1c{left:500.893322pt;}
.x14{left:533.693333pt;}
.x1e{left:545.373310pt;}
.x1f{left:550.813322pt;}
}




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