
    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_7aa290519aae85e4f7ab2c28.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_455cb071acaab84e98a39334.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_21ce1d36faf2e82b5f7f9034.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.994141;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7ab101e5f87ad27d256f78a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.994141;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_6dd2a188ace8605ed4119c17.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.187012;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_f716e528120b7afeae5126e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.187012;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_e95aa7898097bd6d249e51aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854004;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_ba63d2a1852bfddfcc1385d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.008301;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_3399cdd5639ec1b3a768f03a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.008301;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls14{letter-spacing:-2.376000px;}
.lsc{letter-spacing:-2.268000px;}
.lse{letter-spacing:-2.010000px;}
.ls16{letter-spacing:-1.980000px;}
.ls13{letter-spacing:-1.902000px;}
.lsd{letter-spacing:-1.800000px;}
.ls15{letter-spacing:-1.260000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.229200px;}
.lsb{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.109200px;}
.ls4{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.041760px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.270000px;}
.ls19{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.900000px;}
.lsf{letter-spacing:3.780000px;}
.ls11{letter-spacing:15.300000px;}
.ls9{letter-spacing:23.706720px;}
.ls12{letter-spacing:37.386720px;}
.ls17{letter-spacing:38.106720px;}
.ls8{letter-spacing:38.826720px;}
.ls10{letter-spacing:39.546720px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.450800px;}
.ws1{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.246600px;}
.ws2{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.898240px;}
.ws13{word-spacing:-14.886720px;}
.ws0{word-spacing:-14.833200px;}
.wse{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.710800px;}
.wsf{word-spacing:-14.292000px;}
.ws6{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.140000px;}
.ws12{word-spacing:-13.038000px;}
.ws11{word-spacing:-12.930000px;}
.ws3{word-spacing:-12.060000px;}
.ws5{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._26{margin-left:-4.842720px;}
._17{margin-left:-3.508320px;}
._4{margin-left:-2.298720px;}
._2{margin-left:-1.076160px;}
._1{width:1.819200px;}
._3{width:3.676080px;}
._5{width:5.048160px;}
._6{width:6.136080px;}
._8{width:8.059920px;}
._7{width:9.493680px;}
._11{width:10.802400px;}
._d{width:12.215280px;}
._e{width:13.266720px;}
._1c{width:16.463520px;}
._a{width:17.479200px;}
._9{width:18.697200px;}
._34{width:19.747440px;}
._b{width:20.822160px;}
._c{width:22.224960px;}
._12{width:23.724000px;}
._29{width:24.800400px;}
._14{width:25.816320px;}
._31{width:26.891760px;}
._23{width:28.013760px;}
._15{width:29.043360px;}
._18{width:30.653280px;}
._19{width:31.868160px;}
._24{width:33.417120px;}
._1b{width:34.709280px;}
._36{width:36.615120px;}
._22{width:37.864080px;}
._16{width:38.868240px;}
._28{width:39.955200px;}
._20{width:41.686080px;}
._1f{width:43.385760px;}
._25{width:45.537120px;}
._13{width:47.628720px;}
._35{width:49.726560px;}
._27{width:50.771520px;}
._1a{width:51.820080px;}
._10{width:53.305920px;}
._f{width:54.321840px;}
._30{width:55.469280px;}
._3a{width:57.011040px;}
._1d{width:58.146480px;}
._1e{width:59.261280px;}
._2e{width:60.732720px;}
._2f{width:62.344080px;}
._38{width:64.899360px;}
._37{width:66.871440px;}
._39{width:68.018400px;}
._2a{width:69.795600px;}
._2b{width:70.942080px;}
._43{width:72.488880px;}
._42{width:73.863360px;}
._3d{width:77.807520px;}
._44{width:80.018640px;}
._33{width:83.423520px;}
._32{width:84.687120px;}
._2d{width:87.887520px;}
._2c{width:89.298000px;}
._41{width:97.056480px;}
._40{width:98.663760px;}
._21{width:119.221200px;}
._46{width:131.774160px;}
._45{width:132.966000px;}
._3b{width:165.834000px;}
._3e{width:411.806160px;}
._0{width:763.500000px;}
._3c{width:934.586640px;}
._3f{width:984.964320px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs3{font-size:12.240000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.060000px;}
.y92{bottom:3.240000px;}
.y98{bottom:3.420000px;}
.y94{bottom:3.450000px;}
.y10b{bottom:3.600000px;}
.y10e{bottom:3.630000px;}
.y32{bottom:4.140000px;}
.y9{bottom:4.170000px;}
.y22{bottom:4.320000px;}
.y8{bottom:4.710000px;}
.yb{bottom:4.860000px;}
.y5{bottom:7.020000px;}
.y20{bottom:7.560000px;}
.y96{bottom:10.800000px;}
.y186{bottom:10.980000px;}
.y97{bottom:18.180000px;}
.y180{bottom:18.360000px;}
.y21{bottom:22.350000px;}
.y30{bottom:23.034000px;}
.y1f{bottom:23.790000px;}
.y4{bottom:25.200000px;}
.y185{bottom:25.920000px;}
.y6{bottom:26.820000px;}
.y188{bottom:33.300000px;}
.yc{bottom:33.840000px;}
.y184{bottom:40.860000px;}
.y3{bottom:43.200000px;}
.y187{bottom:48.240000px;}
.yf{bottom:57.240000px;}
.y34{bottom:58.140000px;}
.ye{bottom:72.216000px;}
.y9a{bottom:132.480000px;}
.yf1{bottom:133.920000px;}
.y2f{bottom:134.676000px;}
.y132{bottom:135.900000px;}
.y230{bottom:136.620000px;}
.y1b7{bottom:138.060000px;}
.yd3{bottom:142.200000px;}
.y1e2{bottom:144.540000px;}
.y134{bottom:146.160000px;}
.y99{bottom:147.600000px;}
.yf0{bottom:152.280000px;}
.y22f{bottom:155.340000px;}
.y1b6{bottom:156.600000px;}
.y182{bottom:157.860000px;}
.y1e1{bottom:163.080000px;}
.y131{bottom:163.800000px;}
.y133{bottom:164.700000px;}
.yd2{bottom:170.820000px;}
.y22e{bottom:173.880000px;}
.y1b5{bottom:175.140000px;}
.y95{bottom:178.200000px;}
.yef{bottom:179.820000px;}
.y1e0{bottom:181.800000px;}
.y181{bottom:188.460000px;}
.yd1{bottom:189.540000px;}
.y22d{bottom:192.600000px;}
.y1b4{bottom:194.580000px;}
.y1df{bottom:200.520000px;}
.yd0{bottom:208.080000px;}
.yee{bottom:208.440000px;}
.y93{bottom:208.620000px;}
.y130{bottom:208.800000px;}
.y22c{bottom:211.350000px;}
.y1b3{bottom:213.330000px;}
.y17f{bottom:219.090000px;}
.y91{bottom:224.310000px;}
.y12f{bottom:224.490000px;}
.ycf{bottom:226.830000px;}
.yed{bottom:227.190000px;}
.y22b{bottom:229.890000px;}
.y1b2{bottom:231.870000px;}
.y1de{bottom:237.450000px;}
.y12e{bottom:240.150000px;}
.y90{bottom:243.750000px;}
.yce{bottom:245.550000px;}
.yec{bottom:245.730000px;}
.y22a{bottom:248.610000px;}
.y17e{bottom:249.690000px;}
.y1b1{bottom:251.310000px;}
.y1dd{bottom:255.630000px;}
.y12d{bottom:255.810000px;}
.ycd{bottom:264.090000px;}
.yeb{bottom:264.450000px;}
.y229{bottom:267.150000px;}
.y17d{bottom:269.130000px;}
.y1b0{bottom:269.850000px;}
.y12c{bottom:271.470000px;}
.y1dc{bottom:273.990000px;}
.y8f{bottom:279.930000px;}
.y62{bottom:280.110000px;}
.ycc{bottom:282.810000px;}
.yea{bottom:283.170000px;}
.y228{bottom:285.870000px;}
.y12b{bottom:287.130000px;}
.y1af{bottom:288.390000px;}
.y2e{bottom:290.730000px;}
.y1db{bottom:292.530000px;}
.y8e{bottom:298.650000px;}
.y61{bottom:298.830000px;}
.ycb{bottom:301.350000px;}
.ye9{bottom:301.710000px;}
.y12a{bottom:302.790000px;}
.y227{bottom:304.410000px;}
.y155{bottom:305.310000px;}
.y1ae{bottom:307.830000px;}
.y2d{bottom:309.090000px;}
.y17c{bottom:309.630000px;}
.y1da{bottom:311.250000px;}
.y8d{bottom:317.190000px;}
.y60{bottom:317.550000px;}
.y129{bottom:318.450000px;}
.yca{bottom:320.070000px;}
.ye8{bottom:320.430000px;}
.y226{bottom:323.130000px;}
.y154{bottom:323.850000px;}
.y1ad{bottom:326.550000px;}
.y2c{bottom:327.090000px;}
.y17b{bottom:328.350000px;}
.y1d9{bottom:329.790000px;}
.y128{bottom:334.110000px;}
.y8c{bottom:335.910000px;}
.y5f{bottom:336.090000px;}
.yc9{bottom:338.610000px;}
.ye7{bottom:338.970000px;}
.y225{bottom:341.670000px;}
.y153{bottom:342.570000px;}
.y1ac{bottom:345.090000px;}
.y2b{bottom:345.315000px;}
.y17a{bottom:346.890000px;}
.y1d8{bottom:348.510000px;}
.y127{bottom:349.770000px;}
.y8b{bottom:354.630000px;}
.y5e{bottom:354.810000px;}
.yc8{bottom:357.330000px;}
.y224{bottom:360.390000px;}
.y152{bottom:361.110000px;}
.y2a{bottom:363.315000px;}
.y179{bottom:365.430000px;}
.ye6{bottom:366.510000px;}
.y1d7{bottom:367.050000px;}
.y126{bottom:369.210000px;}
.y8a{bottom:373.170000px;}
.y5d{bottom:373.350000px;}
.y1ab{bottom:373.710000px;}
.yc7{bottom:375.870000px;}
.y223{bottom:379.110000px;}
.y151{bottom:380.550000px;}
.y29{bottom:381.495000px;}
.y178{bottom:384.870000px;}
.y1d6{bottom:385.770000px;}
.y89{bottom:391.890000px;}
.y5c{bottom:392.070000px;}
.yc6{bottom:394.590000px;}
.ye5{bottom:395.490000px;}
.y222{bottom:397.650000px;}
.y150{bottom:399.090000px;}
.y28{bottom:399.495000px;}
.y1aa{bottom:402.330000px;}
.y177{bottom:403.590000px;}
.y1d5{bottom:404.490000px;}
.y11b{bottom:405.390000px;}
.y88{bottom:410.430000px;}
.y5b{bottom:410.610000px;}
.yc5{bottom:413.310000px;}
.ye4{bottom:414.030000px;}
.y27{bottom:417.495000px;}
.y14f{bottom:417.810000px;}
.y1a9{bottom:421.050000px;}
.y176{bottom:422.130000px;}
.y1d4{bottom:422.850000px;}
.y11a{bottom:423.930000px;}
.y221{bottom:425.190000px;}
.y87{bottom:429.150000px;}
.y5a{bottom:429.330000px;}
.yc4{bottom:431.850000px;}
.ye3{bottom:432.210000px;}
.y125{bottom:433.650000px;}
.y26{bottom:435.675000px;}
.y14e{bottom:436.350000px;}
.y1a8{bottom:439.410000px;}
.y175{bottom:440.850000px;}
.y119{bottom:442.650000px;}
.y86{bottom:447.735000px;}
.y59{bottom:447.915000px;}
.ye2{bottom:450.435000px;}
.yc3{bottom:450.615000px;}
.y124{bottom:452.235000px;}
.y25{bottom:453.675000px;}
.y220{bottom:454.215000px;}
.y1a7{bottom:458.895000px;}
.y1d3{bottom:459.255000px;}
.y174{bottom:459.435000px;}
.y118{bottom:461.235000px;}
.y14d{bottom:465.015000px;}
.y85{bottom:466.455000px;}
.y58{bottom:466.635000px;}
.ye1{bottom:468.975000px;}
.yc2{bottom:469.155000px;}
.y123{bottom:470.955000px;}
.y24{bottom:471.855000px;}
.y201{bottom:474.195000px;}
.y1a6{bottom:477.615000px;}
.y173{bottom:477.975000px;}
.y117{bottom:479.955000px;}
.y21f{bottom:481.215000px;}
.y84{bottom:485.175000px;}
.y57{bottom:485.355000px;}
.ye0{bottom:487.695000px;}
.yc1{bottom:487.875000px;}
.y122{bottom:489.675000px;}
.y200{bottom:492.735000px;}
.y14c{bottom:493.635000px;}
.y1a5{bottom:496.335000px;}
.y1d2{bottom:496.515000px;}
.y116{bottom:498.675000px;}
.y23{bottom:499.035000px;}
.y21e{bottom:499.935000px;}
.y83{bottom:503.715000px;}
.y56{bottom:503.895000px;}
.ydf{bottom:506.235000px;}
.yc0{bottom:506.415000px;}
.y172{bottom:506.775000px;}
.y121{bottom:508.215000px;}
.y1ff{bottom:511.455000px;}
.y14b{bottom:512.355000px;}
.y23f{bottom:514.155000px;}
.y1a4{bottom:514.875000px;}
.y1d1{bottom:515.235000px;}
.y115{bottom:517.215000px;}
.y21d{bottom:518.655000px;}
.y82{bottom:522.435000px;}
.y55{bottom:522.615000px;}
.yde{bottom:524.955000px;}
.ybf{bottom:525.135000px;}
.y171{bottom:526.755000px;}
.y120{bottom:526.935000px;}
.y1fe{bottom:529.995000px;}
.y14a{bottom:530.895000px;}
.y23e{bottom:532.875000px;}
.y1a3{bottom:533.415000px;}
.y1d0{bottom:533.775000px;}
.y114{bottom:535.935000px;}
.y21c{bottom:537.195000px;}
.y81{bottom:540.975000px;}
.y54{bottom:541.155000px;}
.ydd{bottom:543.495000px;}
.ybe{bottom:543.675000px;}
.y11f{bottom:545.475000px;}
.y1fd{bottom:548.535000px;}
.y149{bottom:549.615000px;}
.y23d{bottom:551.415000px;}
.y1cf{bottom:552.495000px;}
.y1a2{bottom:552.855000px;}
.y113{bottom:554.475000px;}
.y170{bottom:555.195000px;}
.y21b{bottom:555.915000px;}
.y80{bottom:559.695000px;}
.y53{bottom:559.875000px;}
.ybd{bottom:562.395000px;}
.ydc{bottom:562.935000px;}
.y11e{bottom:564.195000px;}
.y1fc{bottom:567.975000px;}
.y148{bottom:568.335000px;}
.y23c{bottom:570.135000px;}
.y1ce{bottom:571.035000px;}
.y1a1{bottom:571.575000px;}
.y112{bottom:573.195000px;}
.y16f{bottom:573.915000px;}
.y21a{bottom:574.455000px;}
.y7f{bottom:578.235000px;}
.y52{bottom:578.415000px;}
.ybc{bottom:581.115000px;}
.y1e{bottom:581.295000px;}
.ydb{bottom:581.475000px;}
.y1fb{bottom:586.695000px;}
.y23b{bottom:588.675000px;}
.y1cd{bottom:589.755000px;}
.y1a0{bottom:589.935000px;}
.y111{bottom:591.735000px;}
.y11d{bottom:592.095000px;}
.y16e{bottom:592.455000px;}
.y219{bottom:593.175000px;}
.y147{bottom:595.875000px;}
.y7e{bottom:596.955000px;}
.y51{bottom:597.135000px;}
.ybb{bottom:599.655000px;}
.yda{bottom:600.195000px;}
.y1fa{bottom:605.235000px;}
.y23a{bottom:607.395000px;}
.y1cc{bottom:608.295000px;}
.y19f{bottom:609.375000px;}
.y16d{bottom:611.175000px;}
.y218{bottom:611.715000px;}
.y7d{bottom:615.495000px;}
.y50{bottom:615.675000px;}
.yba{bottom:618.375000px;}
.yd9{bottom:618.735000px;}
.y110{bottom:619.635000px;}
.y11c{bottom:620.715000px;}
.y1f9{bottom:623.955000px;}
.y146{bottom:624.855000px;}
.y239{bottom:625.935000px;}
.y1cb{bottom:626.655000px;}
.y19e{bottom:628.095000px;}
.y16c{bottom:629.715000px;}
.y217{bottom:630.435000px;}
.y7c{bottom:634.215000px;}
.y4f{bottom:634.395000px;}
.yb9{bottom:636.915000px;}
.yd8{bottom:638.175000px;}
.y1f8{bottom:642.495000px;}
.y145{bottom:643.395000px;}
.y238{bottom:644.655000px;}
.y1ca{bottom:644.835000px;}
.y19d{bottom:646.635000px;}
.y216{bottom:648.975000px;}
.y16b{bottom:649.155000px;}
.y7b{bottom:652.935000px;}
.y4e{bottom:653.115000px;}
.yb8{bottom:655.635000px;}
.yd7{bottom:656.715000px;}
.y1f7{bottom:661.035000px;}
.y144{bottom:662.115000px;}
.y1c9{bottom:663.195000px;}
.y237{bottom:663.375000px;}
.y10f{bottom:664.635000px;}
.y19c{bottom:665.715000px;}
.y16a{bottom:667.695000px;}
.y7a{bottom:671.475000px;}
.y4d{bottom:671.655000px;}
.yd6{bottom:675.255000px;}
.y10d{bottom:680.295000px;}
.y1f6{bottom:680.475000px;}
.y143{bottom:680.655000px;}
.y1c8{bottom:681.765000px;}
.y236{bottom:681.945000px;}
.yb7{bottom:683.565000px;}
.y19b{bottom:683.925000px;}
.y169{bottom:686.445000px;}
.y79{bottom:690.225000px;}
.y4c{bottom:690.405000px;}
.yd5{bottom:694.725000px;}
.y10c{bottom:695.985000px;}
.y1f5{bottom:699.225000px;}
.y142{bottom:699.405000px;}
.y1c7{bottom:700.485000px;}
.y235{bottom:700.665000px;}
.y19a{bottom:701.925000px;}
.yb6{bottom:703.545000px;}
.y168{bottom:704.985000px;}
.y1d{bottom:707.325000px;}
.y4b{bottom:708.945000px;}
.y10a{bottom:711.645000px;}
.yd4{bottom:713.445000px;}
.y1f4{bottom:717.765000px;}
.y141{bottom:717.945000px;}
.y78{bottom:718.125000px;}
.y1c6{bottom:719.205000px;}
.y199{bottom:720.105000px;}
.y109{bottom:727.305000px;}
.y4a{bottom:727.665000px;}
.y1c{bottom:729.105000px;}
.yb5{bottom:731.985000px;}
.y215{bottom:732.885000px;}
.y167{bottom:733.605000px;}
.y1f3{bottom:736.485000px;}
.y1c5{bottom:737.745000px;}
.y234{bottom:737.925000px;}
.y77{bottom:738.105000px;}
.y1b{bottom:743.505000px;}
.y140{bottom:745.845000px;}
.y49{bottom:746.205000px;}
.y108{bottom:746.745000px;}
.y198{bottom:747.645000px;}
.yb4{bottom:750.705000px;}
.y1f2{bottom:755.205000px;}
.y1c4{bottom:756.465000px;}
.y214{bottom:761.505000px;}
.y166{bottom:762.225000px;}
.y48{bottom:764.925000px;}
.y1a{bottom:765.285000px;}
.y76{bottom:766.545000px;}
.yb3{bottom:769.245000px;}
.y1f1{bottom:773.745000px;}
.y13f{bottom:774.465000px;}
.y1c3{bottom:775.005000px;}
.y233{bottom:775.185000px;}
.y197{bottom:776.265000px;}
.y19{bottom:779.505000px;}
.y213{bottom:780.225000px;}
.y165{bottom:780.945000px;}
.y47{bottom:783.465000px;}
.yf6{bottom:792.285000px;}
.y13e{bottom:793.185000px;}
.y1c2{bottom:793.725000px;}
.y196{bottom:794.985000px;}
.y75{bottom:795.525000px;}
.y212{bottom:798.765000px;}
.y164{bottom:799.485000px;}
.y18{bottom:801.465000px;}
.y46{bottom:802.185000px;}
.yb2{bottom:803.085000px;}
.y107{bottom:807.045000px;}
.y1f0{bottom:811.725000px;}
.y13d{bottom:811.905000px;}
.y1c1{bottom:812.265000px;}
.y232{bottom:812.445000px;}
.y195{bottom:813.525000px;}
.y74{bottom:814.065000px;}
.y211{bottom:817.485000px;}
.y163{bottom:818.205000px;}
.yb1{bottom:818.745000px;}
.y17{bottom:819.465000px;}
.y45{bottom:820.905000px;}
.yf5{bottom:821.085000px;}
.y106{bottom:825.585000px;}
.y1ef{bottom:830.265000px;}
.y13c{bottom:830.445000px;}
.y1c0{bottom:830.985000px;}
.y231{bottom:831.165000px;}
.y194{bottom:832.245000px;}
.y73{bottom:832.785000px;}
.y16{bottom:833.865000px;}
.yb0{bottom:834.405000px;}
.y210{bottom:836.025000px;}
.y162{bottom:836.745000px;}
.y44{bottom:839.445000px;}
.y105{bottom:845.025000px;}
.y1ee{bottom:848.985000px;}
.y13b{bottom:849.165000px;}
.y1bf{bottom:849.345000px;}
.yf4{bottom:849.705000px;}
.yaf{bottom:850.065000px;}
.y193{bottom:850.785000px;}
.y72{bottom:851.325000px;}
.y15{bottom:851.865000px;}
.y20f{bottom:855.465000px;}
.y161{bottom:856.185000px;}
.y43{bottom:858.165000px;}
.y104{bottom:863.565000px;}
.y1be{bottom:867.345000px;}
.y13a{bottom:867.705000px;}
.yf3{bottom:868.425000px;}
.yae{bottom:869.505000px;}
.y71{bottom:870.045000px;}
.y192{bottom:870.225000px;}
.y20e{bottom:874.005000px;}
.y160{bottom:874.725000px;}
.y42{bottom:876.705000px;}
.y103{bottom:882.825000px;}
.y1ed{bottom:886.245000px;}
.y139{bottom:886.425000px;}
.yf2{bottom:886.965000px;}
.y70{bottom:888.585000px;}
.y14{bottom:888.630000px;}
.y191{bottom:888.765000px;}
.y20d{bottom:892.545000px;}
.y15f{bottom:893.445000px;}
.y1bd{bottom:895.065000px;}
.y41{bottom:895.425000px;}
.y1ec{bottom:904.785000px;}
.y138{bottom:904.965000px;}
.yad{bottom:905.685000px;}
.y6f{bottom:907.305000px;}
.y190{bottom:907.485000px;}
.y13{bottom:910.410000px;}
.y102{bottom:911.625000px;}
.y15e{bottom:911.985000px;}
.y40{bottom:913.965000px;}
.ya5{bottom:922.470000px;}
.y137{bottom:923.730000px;}
.yac{bottom:924.270000px;}
.y6e{bottom:926.070000px;}
.y15d{bottom:930.570000px;}
.y20c{bottom:930.750000px;}
.y3f{bottom:932.730000px;}
.y1eb{bottom:933.630000px;}
.y101{bottom:940.290000px;}
.ya4{bottom:941.190000px;}
.y136{bottom:942.270000px;}
.yab{bottom:942.990000px;}
.y6d{bottom:944.610000px;}
.y18f{bottom:945.510000px;}
.y20b{bottom:949.290000px;}
.y3e{bottom:951.270000px;}
.y100{bottom:958.830000px;}
.y15c{bottom:959.370000px;}
.ya3{bottom:959.730000px;}
.y12{bottom:960.990000px;}
.yaa{bottom:961.530000px;}
.y1ea{bottom:962.250000px;}
.y6c{bottom:963.330000px;}
.y18e{bottom:964.050000px;}
.y20a{bottom:967.830000px;}
.y3d{bottom:969.990000px;}
.yff{bottom:978.270000px;}
.ya2{bottom:978.450000px;}
.y1bc{bottom:979.710000px;}
.ya9{bottom:980.250000px;}
.y1e9{bottom:980.790000px;}
.y6b{bottom:981.870000px;}
.y18d{bottom:982.770000px;}
.y209{bottom:987.270000px;}
.y15b{bottom:988.170000px;}
.y3c{bottom:988.710000px;}
.y135{bottom:988.890000px;}
.y11{bottom:991.770000px;}
.yfe{bottom:996.810000px;}
.y1bb{bottom:998.250000px;}
.ya8{bottom:998.970000px;}
.y1e8{bottom:999.510000px;}
.y6a{bottom:1000.590000px;}
.y18c{bottom:1001.310000px;}
.y208{bottom:1005.990000px;}
.ya1{bottom:1006.350000px;}
.y3b{bottom:1007.250000px;}
.yfd{bottom:1015.530000px;}
.y15a{bottom:1016.790000px;}
.y1ba{bottom:1016.970000px;}
.ya7{bottom:1017.510000px;}
.y1e7{bottom:1018.050000px;}
.y69{bottom:1019.130000px;}
.y18b{bottom:1020.030000px;}
.y10{bottom:1022.550000px;}
.y207{bottom:1024.530000px;}
.y3a{bottom:1025.970000px;}
.ya0{bottom:1026.330000px;}
.yfc{bottom:1034.070000px;}
.y159{bottom:1035.510000px;}
.ya6{bottom:1036.230000px;}
.y1e6{bottom:1036.770000px;}
.y68{bottom:1037.850000px;}
.y18a{bottom:1038.570000px;}
.y206{bottom:1043.070000px;}
.y39{bottom:1044.510000px;}
.yfb{bottom:1053.510000px;}
.y158{bottom:1054.050000px;}
.y1b9{bottom:1054.230000px;}
.y9f{bottom:1054.770000px;}
.y1e5{bottom:1055.310000px;}
.y67{bottom:1056.390000px;}
.y205{bottom:1062.510000px;}
.y38{bottom:1063.230000px;}
.y189{bottom:1067.190000px;}
.yfa{bottom:1072.050000px;}
.y157{bottom:1072.770000px;}
.y9e{bottom:1073.490000px;}
.y1e4{bottom:1074.030000px;}
.y66{bottom:1074.930000px;}
.y204{bottom:1081.230000px;}
.y37{bottom:1081.770000px;}
.y183{bottom:1083.210000px;}
.yd{bottom:1083.390000px;}
.ya{bottom:1086.090000px;}
.y156{bottom:1091.310000px;}
.yf9{bottom:1091.490000px;}
.y9d{bottom:1092.030000px;}
.y1e3{bottom:1092.390000px;}
.y65{bottom:1092.930000px;}
.y203{bottom:1099.590000px;}
.y1b8{bottom:1100.310000px;}
.y36{bottom:1100.490000px;}
.yf8{bottom:1110.030000px;}
.y9c{bottom:1110.750000px;}
.y64{bottom:1110.930000px;}
.y35{bottom:1128.030000px;}
.y202{bottom:1128.390000px;}
.yf7{bottom:1128.570000px;}
.y63{bottom:1129.290000px;}
.y7{bottom:1133.790000px;}
.y1{bottom:1151.820000px;}
.y33{bottom:1186.920000px;}
.y9b{bottom:1188.180000px;}
.y31{bottom:1190.520000px;}
.h1c{height:4.868438px;}
.h8{height:10.345430px;}
.h1d{height:14.400000px;}
.h18{height:14.580000px;}
.h21{height:14.760000px;}
.h22{height:14.796000px;}
.h1e{height:14.940000px;}
.h1a{height:14.976000px;}
.h15{height:18.000000px;}
.h4{height:18.036000px;}
.hd{height:28.503633px;}
.h1b{height:29.700000px;}
.h23{height:29.880000px;}
.h24{height:29.916000px;}
.h20{height:35.002266px;}
.h19{height:35.167148px;}
.h1f{height:35.214258px;}
.h11{height:37.260000px;}
.h5{height:39.181641px;}
.hf{height:39.418945px;}
.h3{height:43.361016px;}
.h16{height:43.565273px;}
.hc{height:43.623633px;}
.h9{height:43.646836px;}
.h6{height:47.700000px;}
.h10{height:48.289219px;}
.h17{height:48.353906px;}
.h7{height:52.488281px;}
.h12{height:54.069961px;}
.h2{height:57.060000px;}
.h25{height:59.760000px;}
.hb{height:60.855469px;}
.ha{height:74.533359px;}
.he{height:121.716000px;}
.h14{height:1262.250000px;}
.h13{height:1262.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:33.876000px;}
.wd{width:68.616000px;}
.w1b{width:81.036000px;}
.w4{width:121.140000px;}
.w13{width:122.076000px;}
.w1d{width:124.740000px;}
.w10{width:135.036000px;}
.w1c{width:140.796000px;}
.w18{width:170.490000px;}
.w6{width:208.875000px;}
.w16{width:227.595000px;}
.w2{width:249.915000px;}
.w11{width:260.175000px;}
.w1a{width:262.155000px;}
.w15{width:275.475000px;}
.we{width:284.790000px;}
.w19{width:295.815000px;}
.w14{width:330.735000px;}
.w12{width:333.255000px;}
.wf{width:375.045000px;}
.w3{width:378.435000px;}
.w17{width:501.585000px;}
.w7{width:522.255000px;}
.wb{width:697.470000px;}
.w8{width:731.130000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.wc{width:893.159987px;}
.w9{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.060000px;}
.x1b{left:5.076000px;}
.x50{left:6.300000px;}
.x11{left:8.136000px;}
.x23{left:9.180000px;}
.x20{left:10.836000px;}
.x1f{left:12.096000px;}
.x4e{left:13.356000px;}
.x26{left:14.796000px;}
.x53{left:15.885000px;}
.x21{left:18.570000px;}
.x56{left:21.420000px;}
.x52{left:22.905000px;}
.x38{left:24.300000px;}
.x2d{left:26.460000px;}
.x35{left:27.936000px;}
.x37{left:29.880000px;}
.x33{left:32.256000px;}
.x2b{left:33.840000px;}
.x24{left:35.130000px;}
.x2c{left:37.116000px;}
.x51{left:39.420000px;}
.x2a{left:43.596000px;}
.x36{left:49.500000px;}
.x41{left:50.976000px;}
.x3f{left:52.056000px;}
.x4f{left:53.325000px;}
.x43{left:58.176000px;}
.x3c{left:63.036000px;}
.x3e{left:65.376000px;}
.x45{left:67.356000px;}
.x1e{left:72.750000px;}
.x47{left:78.690000px;}
.x1{left:81.000000px;}
.x4a{left:83.190000px;}
.x8{left:84.779987px;}
.x34{left:86.265000px;}
.x7{left:89.495987px;}
.xc{left:92.015987px;}
.x29{left:97.920000px;}
.xb{left:102.275987px;}
.x16{left:107.454000px;}
.x15{left:114.876000px;}
.x6{left:121.140000px;}
.x42{left:122.760000px;}
.x48{left:124.200000px;}
.x44{left:128.700000px;}
.x57{left:135.035987px;}
.x22{left:139.350000px;}
.x10{left:140.975987px;}
.x31{left:143.145000px;}
.x40{left:145.110000px;}
.x1c{left:151.050000px;}
.x9{left:158.429987px;}
.x13{left:162.180000px;}
.x54{left:163.470000px;}
.x49{left:167.430000px;}
.xf{left:170.309987px;}
.x1a{left:173.369987px;}
.x3d{left:178.230000px;}
.x46{left:181.830000px;}
.xe{left:182.909987px;}
.xa{left:186.689987px;}
.x4{left:199.110000px;}
.x3b{left:201.990000px;}
.x30{left:204.690000px;}
.x27{left:217.470000px;}
.x4c{left:252.930000px;}
.x17{left:255.449987px;}
.xd{left:281.954987px;}
.x12{left:289.875000px;}
.x55{left:304.995000px;}
.x39{left:308.774987px;}
.x3a{left:310.035000px;}
.x4b{left:328.574987px;}
.x2{left:330.915000px;}
.x2f{left:358.094987px;}
.x14{left:365.835000px;}
.x25{left:407.229000px;}
.x1d{left:436.575000px;}
.x18{left:462.884987px;}
.x28{left:478.365000px;}
.x19{left:483.404987px;}
.x2e{left:503.924987px;}
.x32{left:536.145000px;}
.x4d{left:549.465000px;}
.x5{left:709.350000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls14{letter-spacing:-2.112000pt;}
.lsc{letter-spacing:-2.016000pt;}
.lse{letter-spacing:-1.786667pt;}
.ls16{letter-spacing:-1.760000pt;}
.ls13{letter-spacing:-1.690667pt;}
.lsd{letter-spacing:-1.600000pt;}
.ls15{letter-spacing:-1.120000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.203733pt;}
.lsb{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.037120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.240000pt;}
.ls19{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.800000pt;}
.lsf{letter-spacing:3.360000pt;}
.ls11{letter-spacing:13.600000pt;}
.ls9{letter-spacing:21.072640pt;}
.ls12{letter-spacing:33.232640pt;}
.ls17{letter-spacing:33.872640pt;}
.ls8{letter-spacing:34.512640pt;}
.ls10{letter-spacing:35.152640pt;}
.ws10{word-spacing:-53.120000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.622933pt;}
.ws1{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.552533pt;}
.ws2{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.242880pt;}
.ws13{word-spacing:-13.232640pt;}
.ws0{word-spacing:-13.185067pt;}
.wse{word-spacing:-13.096533pt;}
.wsa{word-spacing:-13.076267pt;}
.wsf{word-spacing:-12.704000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws12{word-spacing:-11.589333pt;}
.ws11{word-spacing:-11.493333pt;}
.ws3{word-spacing:-10.720000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._26{margin-left:-4.304640pt;}
._17{margin-left:-3.118507pt;}
._4{margin-left:-2.043307pt;}
._2{margin-left:-0.956587pt;}
._1{width:1.617067pt;}
._3{width:3.267627pt;}
._5{width:4.487253pt;}
._6{width:5.454293pt;}
._8{width:7.164373pt;}
._7{width:8.438827pt;}
._11{width:9.602133pt;}
._d{width:10.858027pt;}
._e{width:11.792640pt;}
._1c{width:14.634240pt;}
._a{width:15.537067pt;}
._9{width:16.619733pt;}
._34{width:17.553280pt;}
._b{width:18.508587pt;}
._c{width:19.755520pt;}
._12{width:21.088000pt;}
._29{width:22.044800pt;}
._14{width:22.947840pt;}
._31{width:23.903787pt;}
._23{width:24.901120pt;}
._15{width:25.816320pt;}
._18{width:27.247360pt;}
._19{width:28.327253pt;}
._24{width:29.704107pt;}
._1b{width:30.852693pt;}
._36{width:32.546773pt;}
._22{width:33.656960pt;}
._16{width:34.549547pt;}
._28{width:35.515733pt;}
._20{width:37.054293pt;}
._1f{width:38.565120pt;}
._25{width:40.477440pt;}
._13{width:42.336640pt;}
._35{width:44.201387pt;}
._27{width:45.130240pt;}
._1a{width:46.062293pt;}
._10{width:47.383040pt;}
._f{width:48.286080pt;}
._30{width:49.306027pt;}
._3a{width:50.676480pt;}
._1d{width:51.685760pt;}
._1e{width:52.676693pt;}
._2e{width:53.984640pt;}
._2f{width:55.416960pt;}
._38{width:57.688320pt;}
._37{width:59.441280pt;}
._39{width:60.460800pt;}
._2a{width:62.040533pt;}
._2b{width:63.059627pt;}
._43{width:64.434560pt;}
._42{width:65.656320pt;}
._3d{width:69.162240pt;}
._44{width:71.127680pt;}
._33{width:74.154240pt;}
._32{width:75.277440pt;}
._2d{width:78.122240pt;}
._2c{width:79.376000pt;}
._41{width:86.272427pt;}
._40{width:87.701120pt;}
._21{width:105.974400pt;}
._46{width:117.132587pt;}
._45{width:118.192000pt;}
._3b{width:147.408000pt;}
._3e{width:366.049920pt;}
._0{width:678.666667pt;}
._3c{width:830.743680pt;}
._3f{width:875.523840pt;}
.fs8{font-size:5.120000pt;}
.fs3{font-size:10.880000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.720000pt;}
.y92{bottom:2.880000pt;}
.y98{bottom:3.040000pt;}
.y94{bottom:3.066667pt;}
.y10b{bottom:3.200000pt;}
.y10e{bottom:3.226667pt;}
.y32{bottom:3.680000pt;}
.y9{bottom:3.706667pt;}
.y22{bottom:3.840000pt;}
.y8{bottom:4.186667pt;}
.yb{bottom:4.320000pt;}
.y5{bottom:6.240000pt;}
.y20{bottom:6.720000pt;}
.y96{bottom:9.600000pt;}
.y186{bottom:9.760000pt;}
.y97{bottom:16.160000pt;}
.y180{bottom:16.320000pt;}
.y21{bottom:19.866667pt;}
.y30{bottom:20.474667pt;}
.y1f{bottom:21.146667pt;}
.y4{bottom:22.400000pt;}
.y185{bottom:23.040000pt;}
.y6{bottom:23.840000pt;}
.y188{bottom:29.600000pt;}
.yc{bottom:30.080000pt;}
.y184{bottom:36.320000pt;}
.y3{bottom:38.400000pt;}
.y187{bottom:42.880000pt;}
.yf{bottom:50.880000pt;}
.y34{bottom:51.680000pt;}
.ye{bottom:64.192000pt;}
.y9a{bottom:117.760000pt;}
.yf1{bottom:119.040000pt;}
.y2f{bottom:119.712000pt;}
.y132{bottom:120.800000pt;}
.y230{bottom:121.440000pt;}
.y1b7{bottom:122.720000pt;}
.yd3{bottom:126.400000pt;}
.y1e2{bottom:128.480000pt;}
.y134{bottom:129.920000pt;}
.y99{bottom:131.200000pt;}
.yf0{bottom:135.360000pt;}
.y22f{bottom:138.080000pt;}
.y1b6{bottom:139.200000pt;}
.y182{bottom:140.320000pt;}
.y1e1{bottom:144.960000pt;}
.y131{bottom:145.600000pt;}
.y133{bottom:146.400000pt;}
.yd2{bottom:151.840000pt;}
.y22e{bottom:154.560000pt;}
.y1b5{bottom:155.680000pt;}
.y95{bottom:158.400000pt;}
.yef{bottom:159.840000pt;}
.y1e0{bottom:161.600000pt;}
.y181{bottom:167.520000pt;}
.yd1{bottom:168.480000pt;}
.y22d{bottom:171.200000pt;}
.y1b4{bottom:172.960000pt;}
.y1df{bottom:178.240000pt;}
.yd0{bottom:184.960000pt;}
.yee{bottom:185.280000pt;}
.y93{bottom:185.440000pt;}
.y130{bottom:185.600000pt;}
.y22c{bottom:187.866667pt;}
.y1b3{bottom:189.626667pt;}
.y17f{bottom:194.746667pt;}
.y91{bottom:199.386667pt;}
.y12f{bottom:199.546667pt;}
.ycf{bottom:201.626667pt;}
.yed{bottom:201.946667pt;}
.y22b{bottom:204.346667pt;}
.y1b2{bottom:206.106667pt;}
.y1de{bottom:211.066667pt;}
.y12e{bottom:213.466667pt;}
.y90{bottom:216.666667pt;}
.yce{bottom:218.266667pt;}
.yec{bottom:218.426667pt;}
.y22a{bottom:220.986667pt;}
.y17e{bottom:221.946667pt;}
.y1b1{bottom:223.386667pt;}
.y1dd{bottom:227.226667pt;}
.y12d{bottom:227.386667pt;}
.ycd{bottom:234.746667pt;}
.yeb{bottom:235.066667pt;}
.y229{bottom:237.466667pt;}
.y17d{bottom:239.226667pt;}
.y1b0{bottom:239.866667pt;}
.y12c{bottom:241.306667pt;}
.y1dc{bottom:243.546667pt;}
.y8f{bottom:248.826667pt;}
.y62{bottom:248.986667pt;}
.ycc{bottom:251.386667pt;}
.yea{bottom:251.706667pt;}
.y228{bottom:254.106667pt;}
.y12b{bottom:255.226667pt;}
.y1af{bottom:256.346667pt;}
.y2e{bottom:258.426667pt;}
.y1db{bottom:260.026667pt;}
.y8e{bottom:265.466667pt;}
.y61{bottom:265.626667pt;}
.ycb{bottom:267.866667pt;}
.ye9{bottom:268.186667pt;}
.y12a{bottom:269.146667pt;}
.y227{bottom:270.586667pt;}
.y155{bottom:271.386667pt;}
.y1ae{bottom:273.626667pt;}
.y2d{bottom:274.746667pt;}
.y17c{bottom:275.226667pt;}
.y1da{bottom:276.666667pt;}
.y8d{bottom:281.946667pt;}
.y60{bottom:282.266667pt;}
.y129{bottom:283.066667pt;}
.yca{bottom:284.506667pt;}
.ye8{bottom:284.826667pt;}
.y226{bottom:287.226667pt;}
.y154{bottom:287.866667pt;}
.y1ad{bottom:290.266667pt;}
.y2c{bottom:290.746667pt;}
.y17b{bottom:291.866667pt;}
.y1d9{bottom:293.146667pt;}
.y128{bottom:296.986667pt;}
.y8c{bottom:298.586667pt;}
.y5f{bottom:298.746667pt;}
.yc9{bottom:300.986667pt;}
.ye7{bottom:301.306667pt;}
.y225{bottom:303.706667pt;}
.y153{bottom:304.506667pt;}
.y1ac{bottom:306.746667pt;}
.y2b{bottom:306.946667pt;}
.y17a{bottom:308.346667pt;}
.y1d8{bottom:309.786667pt;}
.y127{bottom:310.906667pt;}
.y8b{bottom:315.226667pt;}
.y5e{bottom:315.386667pt;}
.yc8{bottom:317.626667pt;}
.y224{bottom:320.346667pt;}
.y152{bottom:320.986667pt;}
.y2a{bottom:322.946667pt;}
.y179{bottom:324.826667pt;}
.ye6{bottom:325.786667pt;}
.y1d7{bottom:326.266667pt;}
.y126{bottom:328.186667pt;}
.y8a{bottom:331.706667pt;}
.y5d{bottom:331.866667pt;}
.y1ab{bottom:332.186667pt;}
.yc7{bottom:334.106667pt;}
.y223{bottom:336.986667pt;}
.y151{bottom:338.266667pt;}
.y29{bottom:339.106667pt;}
.y178{bottom:342.106667pt;}
.y1d6{bottom:342.906667pt;}
.y89{bottom:348.346667pt;}
.y5c{bottom:348.506667pt;}
.yc6{bottom:350.746667pt;}
.ye5{bottom:351.546667pt;}
.y222{bottom:353.466667pt;}
.y150{bottom:354.746667pt;}
.y28{bottom:355.106667pt;}
.y1aa{bottom:357.626667pt;}
.y177{bottom:358.746667pt;}
.y1d5{bottom:359.546667pt;}
.y11b{bottom:360.346667pt;}
.y88{bottom:364.826667pt;}
.y5b{bottom:364.986667pt;}
.yc5{bottom:367.386667pt;}
.ye4{bottom:368.026667pt;}
.y27{bottom:371.106667pt;}
.y14f{bottom:371.386667pt;}
.y1a9{bottom:374.266667pt;}
.y176{bottom:375.226667pt;}
.y1d4{bottom:375.866667pt;}
.y11a{bottom:376.826667pt;}
.y221{bottom:377.946667pt;}
.y87{bottom:381.466667pt;}
.y5a{bottom:381.626667pt;}
.yc4{bottom:383.866667pt;}
.ye3{bottom:384.186667pt;}
.y125{bottom:385.466667pt;}
.y26{bottom:387.266667pt;}
.y14e{bottom:387.866667pt;}
.y1a8{bottom:390.586667pt;}
.y175{bottom:391.866667pt;}
.y119{bottom:393.466667pt;}
.y86{bottom:397.986667pt;}
.y59{bottom:398.146667pt;}
.ye2{bottom:400.386667pt;}
.yc3{bottom:400.546667pt;}
.y124{bottom:401.986667pt;}
.y25{bottom:403.266667pt;}
.y220{bottom:403.746667pt;}
.y1a7{bottom:407.906667pt;}
.y1d3{bottom:408.226667pt;}
.y174{bottom:408.386667pt;}
.y118{bottom:409.986667pt;}
.y14d{bottom:413.346667pt;}
.y85{bottom:414.626667pt;}
.y58{bottom:414.786667pt;}
.ye1{bottom:416.866667pt;}
.yc2{bottom:417.026667pt;}
.y123{bottom:418.626667pt;}
.y24{bottom:419.426667pt;}
.y201{bottom:421.506667pt;}
.y1a6{bottom:424.546667pt;}
.y173{bottom:424.866667pt;}
.y117{bottom:426.626667pt;}
.y21f{bottom:427.746667pt;}
.y84{bottom:431.266667pt;}
.y57{bottom:431.426667pt;}
.ye0{bottom:433.506667pt;}
.yc1{bottom:433.666667pt;}
.y122{bottom:435.266667pt;}
.y200{bottom:437.986667pt;}
.y14c{bottom:438.786667pt;}
.y1a5{bottom:441.186667pt;}
.y1d2{bottom:441.346667pt;}
.y116{bottom:443.266667pt;}
.y23{bottom:443.586667pt;}
.y21e{bottom:444.386667pt;}
.y83{bottom:447.746667pt;}
.y56{bottom:447.906667pt;}
.ydf{bottom:449.986667pt;}
.yc0{bottom:450.146667pt;}
.y172{bottom:450.466667pt;}
.y121{bottom:451.746667pt;}
.y1ff{bottom:454.626667pt;}
.y14b{bottom:455.426667pt;}
.y23f{bottom:457.026667pt;}
.y1a4{bottom:457.666667pt;}
.y1d1{bottom:457.986667pt;}
.y115{bottom:459.746667pt;}
.y21d{bottom:461.026667pt;}
.y82{bottom:464.386667pt;}
.y55{bottom:464.546667pt;}
.yde{bottom:466.626667pt;}
.ybf{bottom:466.786667pt;}
.y171{bottom:468.226667pt;}
.y120{bottom:468.386667pt;}
.y1fe{bottom:471.106667pt;}
.y14a{bottom:471.906667pt;}
.y23e{bottom:473.666667pt;}
.y1a3{bottom:474.146667pt;}
.y1d0{bottom:474.466667pt;}
.y114{bottom:476.386667pt;}
.y21c{bottom:477.506667pt;}
.y81{bottom:480.866667pt;}
.y54{bottom:481.026667pt;}
.ydd{bottom:483.106667pt;}
.ybe{bottom:483.266667pt;}
.y11f{bottom:484.866667pt;}
.y1fd{bottom:487.586667pt;}
.y149{bottom:488.546667pt;}
.y23d{bottom:490.146667pt;}
.y1cf{bottom:491.106667pt;}
.y1a2{bottom:491.426667pt;}
.y113{bottom:492.866667pt;}
.y170{bottom:493.506667pt;}
.y21b{bottom:494.146667pt;}
.y80{bottom:497.506667pt;}
.y53{bottom:497.666667pt;}
.ybd{bottom:499.906667pt;}
.ydc{bottom:500.386667pt;}
.y11e{bottom:501.506667pt;}
.y1fc{bottom:504.866667pt;}
.y148{bottom:505.186667pt;}
.y23c{bottom:506.786667pt;}
.y1ce{bottom:507.586667pt;}
.y1a1{bottom:508.066667pt;}
.y112{bottom:509.506667pt;}
.y16f{bottom:510.146667pt;}
.y21a{bottom:510.626667pt;}
.y7f{bottom:513.986667pt;}
.y52{bottom:514.146667pt;}
.ybc{bottom:516.546667pt;}
.y1e{bottom:516.706667pt;}
.ydb{bottom:516.866667pt;}
.y1fb{bottom:521.506667pt;}
.y23b{bottom:523.266667pt;}
.y1cd{bottom:524.226667pt;}
.y1a0{bottom:524.386667pt;}
.y111{bottom:525.986667pt;}
.y11d{bottom:526.306667pt;}
.y16e{bottom:526.626667pt;}
.y219{bottom:527.266667pt;}
.y147{bottom:529.666667pt;}
.y7e{bottom:530.626667pt;}
.y51{bottom:530.786667pt;}
.ybb{bottom:533.026667pt;}
.yda{bottom:533.506667pt;}
.y1fa{bottom:537.986667pt;}
.y23a{bottom:539.906667pt;}
.y1cc{bottom:540.706667pt;}
.y19f{bottom:541.666667pt;}
.y16d{bottom:543.266667pt;}
.y218{bottom:543.746667pt;}
.y7d{bottom:547.106667pt;}
.y50{bottom:547.266667pt;}
.yba{bottom:549.666667pt;}
.yd9{bottom:549.986667pt;}
.y110{bottom:550.786667pt;}
.y11c{bottom:551.746667pt;}
.y1f9{bottom:554.626667pt;}
.y146{bottom:555.426667pt;}
.y239{bottom:556.386667pt;}
.y1cb{bottom:557.026667pt;}
.y19e{bottom:558.306667pt;}
.y16c{bottom:559.746667pt;}
.y217{bottom:560.386667pt;}
.y7c{bottom:563.746667pt;}
.y4f{bottom:563.906667pt;}
.yb9{bottom:566.146667pt;}
.yd8{bottom:567.266667pt;}
.y1f8{bottom:571.106667pt;}
.y145{bottom:571.906667pt;}
.y238{bottom:573.026667pt;}
.y1ca{bottom:573.186667pt;}
.y19d{bottom:574.786667pt;}
.y216{bottom:576.866667pt;}
.y16b{bottom:577.026667pt;}
.y7b{bottom:580.386667pt;}
.y4e{bottom:580.546667pt;}
.yb8{bottom:582.786667pt;}
.yd7{bottom:583.746667pt;}
.y1f7{bottom:587.586667pt;}
.y144{bottom:588.546667pt;}
.y1c9{bottom:589.506667pt;}
.y237{bottom:589.666667pt;}
.y10f{bottom:590.786667pt;}
.y19c{bottom:591.746667pt;}
.y16a{bottom:593.506667pt;}
.y7a{bottom:596.866667pt;}
.y4d{bottom:597.026667pt;}
.yd6{bottom:600.226667pt;}
.y10d{bottom:604.706667pt;}
.y1f6{bottom:604.866667pt;}
.y143{bottom:605.026667pt;}
.y1c8{bottom:606.013333pt;}
.y236{bottom:606.173333pt;}
.yb7{bottom:607.613333pt;}
.y19b{bottom:607.933333pt;}
.y169{bottom:610.173333pt;}
.y79{bottom:613.533333pt;}
.y4c{bottom:613.693333pt;}
.yd5{bottom:617.533333pt;}
.y10c{bottom:618.653333pt;}
.y1f5{bottom:621.533333pt;}
.y142{bottom:621.693333pt;}
.y1c7{bottom:622.653333pt;}
.y235{bottom:622.813333pt;}
.y19a{bottom:623.933333pt;}
.yb6{bottom:625.373333pt;}
.y168{bottom:626.653333pt;}
.y1d{bottom:628.733333pt;}
.y4b{bottom:630.173333pt;}
.y10a{bottom:632.573333pt;}
.yd4{bottom:634.173333pt;}
.y1f4{bottom:638.013333pt;}
.y141{bottom:638.173333pt;}
.y78{bottom:638.333333pt;}
.y1c6{bottom:639.293333pt;}
.y199{bottom:640.093333pt;}
.y109{bottom:646.493333pt;}
.y4a{bottom:646.813333pt;}
.y1c{bottom:648.093333pt;}
.yb5{bottom:650.653333pt;}
.y215{bottom:651.453333pt;}
.y167{bottom:652.093333pt;}
.y1f3{bottom:654.653333pt;}
.y1c5{bottom:655.773333pt;}
.y234{bottom:655.933333pt;}
.y77{bottom:656.093333pt;}
.y1b{bottom:660.893333pt;}
.y140{bottom:662.973333pt;}
.y49{bottom:663.293333pt;}
.y108{bottom:663.773333pt;}
.y198{bottom:664.573333pt;}
.yb4{bottom:667.293333pt;}
.y1f2{bottom:671.293333pt;}
.y1c4{bottom:672.413333pt;}
.y214{bottom:676.893333pt;}
.y166{bottom:677.533333pt;}
.y48{bottom:679.933333pt;}
.y1a{bottom:680.253333pt;}
.y76{bottom:681.373333pt;}
.yb3{bottom:683.773333pt;}
.y1f1{bottom:687.773333pt;}
.y13f{bottom:688.413333pt;}
.y1c3{bottom:688.893333pt;}
.y233{bottom:689.053333pt;}
.y197{bottom:690.013333pt;}
.y19{bottom:692.893333pt;}
.y213{bottom:693.533333pt;}
.y165{bottom:694.173333pt;}
.y47{bottom:696.413333pt;}
.yf6{bottom:704.253333pt;}
.y13e{bottom:705.053333pt;}
.y1c2{bottom:705.533333pt;}
.y196{bottom:706.653333pt;}
.y75{bottom:707.133333pt;}
.y212{bottom:710.013333pt;}
.y164{bottom:710.653333pt;}
.y18{bottom:712.413333pt;}
.y46{bottom:713.053333pt;}
.yb2{bottom:713.853333pt;}
.y107{bottom:717.373333pt;}
.y1f0{bottom:721.533333pt;}
.y13d{bottom:721.693333pt;}
.y1c1{bottom:722.013333pt;}
.y232{bottom:722.173333pt;}
.y195{bottom:723.133333pt;}
.y74{bottom:723.613333pt;}
.y211{bottom:726.653333pt;}
.y163{bottom:727.293333pt;}
.yb1{bottom:727.773333pt;}
.y17{bottom:728.413333pt;}
.y45{bottom:729.693333pt;}
.yf5{bottom:729.853333pt;}
.y106{bottom:733.853333pt;}
.y1ef{bottom:738.013333pt;}
.y13c{bottom:738.173333pt;}
.y1c0{bottom:738.653333pt;}
.y231{bottom:738.813333pt;}
.y194{bottom:739.773333pt;}
.y73{bottom:740.253333pt;}
.y16{bottom:741.213333pt;}
.yb0{bottom:741.693333pt;}
.y210{bottom:743.133333pt;}
.y162{bottom:743.773333pt;}
.y44{bottom:746.173333pt;}
.y105{bottom:751.133333pt;}
.y1ee{bottom:754.653333pt;}
.y13b{bottom:754.813333pt;}
.y1bf{bottom:754.973333pt;}
.yf4{bottom:755.293333pt;}
.yaf{bottom:755.613333pt;}
.y193{bottom:756.253333pt;}
.y72{bottom:756.733333pt;}
.y15{bottom:757.213333pt;}
.y20f{bottom:760.413333pt;}
.y161{bottom:761.053333pt;}
.y43{bottom:762.813333pt;}
.y104{bottom:767.613333pt;}
.y1be{bottom:770.973333pt;}
.y13a{bottom:771.293333pt;}
.yf3{bottom:771.933333pt;}
.yae{bottom:772.893333pt;}
.y71{bottom:773.373333pt;}
.y192{bottom:773.533333pt;}
.y20e{bottom:776.893333pt;}
.y160{bottom:777.533333pt;}
.y42{bottom:779.293333pt;}
.y103{bottom:784.733333pt;}
.y1ed{bottom:787.773333pt;}
.y139{bottom:787.933333pt;}
.yf2{bottom:788.413333pt;}
.y70{bottom:789.853333pt;}
.y14{bottom:789.893333pt;}
.y191{bottom:790.013333pt;}
.y20d{bottom:793.373333pt;}
.y15f{bottom:794.173333pt;}
.y1bd{bottom:795.613333pt;}
.y41{bottom:795.933333pt;}
.y1ec{bottom:804.253333pt;}
.y138{bottom:804.413333pt;}
.yad{bottom:805.053333pt;}
.y6f{bottom:806.493333pt;}
.y190{bottom:806.653333pt;}
.y13{bottom:809.253333pt;}
.y102{bottom:810.333333pt;}
.y15e{bottom:810.653333pt;}
.y40{bottom:812.413333pt;}
.ya5{bottom:819.973333pt;}
.y137{bottom:821.093333pt;}
.yac{bottom:821.573333pt;}
.y6e{bottom:823.173333pt;}
.y15d{bottom:827.173333pt;}
.y20c{bottom:827.333333pt;}
.y3f{bottom:829.093333pt;}
.y1eb{bottom:829.893333pt;}
.y101{bottom:835.813333pt;}
.ya4{bottom:836.613333pt;}
.y136{bottom:837.573333pt;}
.yab{bottom:838.213333pt;}
.y6d{bottom:839.653333pt;}
.y18f{bottom:840.453333pt;}
.y20b{bottom:843.813333pt;}
.y3e{bottom:845.573333pt;}
.y100{bottom:852.293333pt;}
.y15c{bottom:852.773333pt;}
.ya3{bottom:853.093333pt;}
.y12{bottom:854.213333pt;}
.yaa{bottom:854.693333pt;}
.y1ea{bottom:855.333333pt;}
.y6c{bottom:856.293333pt;}
.y18e{bottom:856.933333pt;}
.y20a{bottom:860.293333pt;}
.y3d{bottom:862.213333pt;}
.yff{bottom:869.573333pt;}
.ya2{bottom:869.733333pt;}
.y1bc{bottom:870.853333pt;}
.ya9{bottom:871.333333pt;}
.y1e9{bottom:871.813333pt;}
.y6b{bottom:872.773333pt;}
.y18d{bottom:873.573333pt;}
.y209{bottom:877.573333pt;}
.y15b{bottom:878.373333pt;}
.y3c{bottom:878.853333pt;}
.y135{bottom:879.013333pt;}
.y11{bottom:881.573333pt;}
.yfe{bottom:886.053333pt;}
.y1bb{bottom:887.333333pt;}
.ya8{bottom:887.973333pt;}
.y1e8{bottom:888.453333pt;}
.y6a{bottom:889.413333pt;}
.y18c{bottom:890.053333pt;}
.y208{bottom:894.213333pt;}
.ya1{bottom:894.533333pt;}
.y3b{bottom:895.333333pt;}
.yfd{bottom:902.693333pt;}
.y15a{bottom:903.813333pt;}
.y1ba{bottom:903.973333pt;}
.ya7{bottom:904.453333pt;}
.y1e7{bottom:904.933333pt;}
.y69{bottom:905.893333pt;}
.y18b{bottom:906.693333pt;}
.y10{bottom:908.933333pt;}
.y207{bottom:910.693333pt;}
.y3a{bottom:911.973333pt;}
.ya0{bottom:912.293333pt;}
.yfc{bottom:919.173333pt;}
.y159{bottom:920.453333pt;}
.ya6{bottom:921.093333pt;}
.y1e6{bottom:921.573333pt;}
.y68{bottom:922.533333pt;}
.y18a{bottom:923.173333pt;}
.y206{bottom:927.173333pt;}
.y39{bottom:928.453333pt;}
.yfb{bottom:936.453333pt;}
.y158{bottom:936.933333pt;}
.y1b9{bottom:937.093333pt;}
.y9f{bottom:937.573333pt;}
.y1e5{bottom:938.053333pt;}
.y67{bottom:939.013333pt;}
.y205{bottom:944.453333pt;}
.y38{bottom:945.093333pt;}
.y189{bottom:948.613333pt;}
.yfa{bottom:952.933333pt;}
.y157{bottom:953.573333pt;}
.y9e{bottom:954.213333pt;}
.y1e4{bottom:954.693333pt;}
.y66{bottom:955.493333pt;}
.y204{bottom:961.093333pt;}
.y37{bottom:961.573333pt;}
.y183{bottom:962.853333pt;}
.yd{bottom:963.013333pt;}
.ya{bottom:965.413333pt;}
.y156{bottom:970.053333pt;}
.yf9{bottom:970.213333pt;}
.y9d{bottom:970.693333pt;}
.y1e3{bottom:971.013333pt;}
.y65{bottom:971.493333pt;}
.y203{bottom:977.413333pt;}
.y1b8{bottom:978.053333pt;}
.y36{bottom:978.213333pt;}
.yf8{bottom:986.693333pt;}
.y9c{bottom:987.333333pt;}
.y64{bottom:987.493333pt;}
.y35{bottom:1002.693333pt;}
.y202{bottom:1003.013333pt;}
.yf7{bottom:1003.173333pt;}
.y63{bottom:1003.813333pt;}
.y7{bottom:1007.813333pt;}
.y1{bottom:1023.840000pt;}
.y33{bottom:1055.040000pt;}
.y9b{bottom:1056.160000pt;}
.y31{bottom:1058.240000pt;}
.h1c{height:4.327500pt;}
.h8{height:9.195937pt;}
.h1d{height:12.800000pt;}
.h18{height:12.960000pt;}
.h21{height:13.120000pt;}
.h22{height:13.152000pt;}
.h1e{height:13.280000pt;}
.h1a{height:13.312000pt;}
.h15{height:16.000000pt;}
.h4{height:16.032000pt;}
.hd{height:25.336563pt;}
.h1b{height:26.400000pt;}
.h23{height:26.560000pt;}
.h24{height:26.592000pt;}
.h20{height:31.113125pt;}
.h19{height:31.259687pt;}
.h1f{height:31.301562pt;}
.h11{height:33.120000pt;}
.h5{height:34.828125pt;}
.hf{height:35.039062pt;}
.h3{height:38.543125pt;}
.h16{height:38.724688pt;}
.hc{height:38.776563pt;}
.h9{height:38.797187pt;}
.h6{height:42.400000pt;}
.h10{height:42.923750pt;}
.h17{height:42.981250pt;}
.h7{height:46.656250pt;}
.h12{height:48.062188pt;}
.h2{height:50.720000pt;}
.h25{height:53.120000pt;}
.hb{height:54.093750pt;}
.ha{height:66.251875pt;}
.he{height:108.192000pt;}
.h14{height:1122.000000pt;}
.h13{height:1122.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:30.112000pt;}
.wd{width:60.992000pt;}
.w1b{width:72.032000pt;}
.w4{width:107.680000pt;}
.w13{width:108.512000pt;}
.w1d{width:110.880000pt;}
.w10{width:120.032000pt;}
.w1c{width:125.152000pt;}
.w18{width:151.546667pt;}
.w6{width:185.666667pt;}
.w16{width:202.306667pt;}
.w2{width:222.146667pt;}
.w11{width:231.266667pt;}
.w1a{width:233.026667pt;}
.w15{width:244.866667pt;}
.we{width:253.146667pt;}
.w19{width:262.946667pt;}
.w14{width:293.986667pt;}
.w12{width:296.226667pt;}
.wf{width:333.373333pt;}
.w3{width:336.386667pt;}
.w17{width:445.853333pt;}
.w7{width:464.226667pt;}
.wb{width:619.973333pt;}
.w8{width:649.893333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.wc{width:793.919988pt;}
.w9{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.720000pt;}
.x1b{left:4.512000pt;}
.x50{left:5.600000pt;}
.x11{left:7.232000pt;}
.x23{left:8.160000pt;}
.x20{left:9.632000pt;}
.x1f{left:10.752000pt;}
.x4e{left:11.872000pt;}
.x26{left:13.152000pt;}
.x53{left:14.120000pt;}
.x21{left:16.506667pt;}
.x56{left:19.040000pt;}
.x52{left:20.360000pt;}
.x38{left:21.600000pt;}
.x2d{left:23.520000pt;}
.x35{left:24.832000pt;}
.x37{left:26.560000pt;}
.x33{left:28.672000pt;}
.x2b{left:30.080000pt;}
.x24{left:31.226667pt;}
.x2c{left:32.992000pt;}
.x51{left:35.040000pt;}
.x2a{left:38.752000pt;}
.x36{left:44.000000pt;}
.x41{left:45.312000pt;}
.x3f{left:46.272000pt;}
.x4f{left:47.400000pt;}
.x43{left:51.712000pt;}
.x3c{left:56.032000pt;}
.x3e{left:58.112000pt;}
.x45{left:59.872000pt;}
.x1e{left:64.666667pt;}
.x47{left:69.946667pt;}
.x1{left:72.000000pt;}
.x4a{left:73.946667pt;}
.x8{left:75.359988pt;}
.x34{left:76.680000pt;}
.x7{left:79.551988pt;}
.xc{left:81.791988pt;}
.x29{left:87.040000pt;}
.xb{left:90.911988pt;}
.x16{left:95.514667pt;}
.x15{left:102.112000pt;}
.x6{left:107.680000pt;}
.x42{left:109.120000pt;}
.x48{left:110.400000pt;}
.x44{left:114.400000pt;}
.x57{left:120.031988pt;}
.x22{left:123.866667pt;}
.x10{left:125.311988pt;}
.x31{left:127.240000pt;}
.x40{left:128.986667pt;}
.x1c{left:134.266667pt;}
.x9{left:140.826655pt;}
.x13{left:144.160000pt;}
.x54{left:145.306667pt;}
.x49{left:148.826667pt;}
.xf{left:151.386655pt;}
.x1a{left:154.106655pt;}
.x3d{left:158.426667pt;}
.x46{left:161.626667pt;}
.xe{left:162.586655pt;}
.xa{left:165.946655pt;}
.x4{left:176.986667pt;}
.x3b{left:179.546667pt;}
.x30{left:181.946667pt;}
.x27{left:193.306667pt;}
.x4c{left:224.826667pt;}
.x17{left:227.066655pt;}
.xd{left:250.626655pt;}
.x12{left:257.666667pt;}
.x55{left:271.106667pt;}
.x39{left:274.466655pt;}
.x3a{left:275.586667pt;}
.x4b{left:292.066655pt;}
.x2{left:294.146667pt;}
.x2f{left:318.306655pt;}
.x14{left:325.186667pt;}
.x25{left:361.981333pt;}
.x1d{left:388.066667pt;}
.x18{left:411.453322pt;}
.x28{left:425.213333pt;}
.x19{left:429.693322pt;}
.x2e{left:447.933322pt;}
.x32{left:476.573333pt;}
.x4d{left:488.413333pt;}
.x5{left:630.533333pt;}
}




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