
    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_cd37b3aac400b899fafc2072.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e510aaa91809886fdc9c68de.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.156738;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_fef925e41175e07056bcfa9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f7d730caf4caaa1ca68de330.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d4020be39445d0caa8c581f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v4{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-2.244000px;}
.ls7{letter-spacing:-2.202000px;}
.ls4{letter-spacing:-1.458000px;}
.ls6{letter-spacing:-0.804000px;}
.ls5{letter-spacing:-0.762000px;}
.lsd{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.702000px;}
.ls19{letter-spacing:-0.642000px;}
.ls10{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.305400px;}
.ls23{letter-spacing:-0.262200px;}
.lsc{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.109200px;}
.ls14{letter-spacing:-0.108000px;}
.ls9{letter-spacing:-0.083400px;}
.lsa{letter-spacing:-0.043200px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.109200px;}
.ls1b{letter-spacing:0.135600px;}
.ls1a{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.262080px;}
.ls1f{letter-spacing:0.262200px;}
.ls21{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.480000px;}
.ls20{letter-spacing:0.540000px;}
.ls1d{letter-spacing:1.440000px;}
.ls17{letter-spacing:3.600000px;}
.ls13{letter-spacing:5.040000px;}
.ls1c{letter-spacing:17.280000px;}
.ls1e{letter-spacing:20.160000px;}
.ls0{letter-spacing:195.036480px;}
.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;}
}
.ws0{word-spacing:-18.083520px;}
.ws3{word-spacing:-18.040320px;}
.ws1{word-spacing:-17.321520px;}
.ws12{word-spacing:-16.822200px;}
.wsf{word-spacing:-16.712400px;}
.ws16{word-spacing:-16.669200px;}
.wsc{word-spacing:-16.560000px;}
.ws14{word-spacing:-16.450800px;}
.ws15{word-spacing:-16.297800px;}
.wse{word-spacing:-16.254600px;}
.ws2{word-spacing:-15.881520px;}
.ws6{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.284000px;}
.ws9{word-spacing:-13.140000px;}
.ws13{word-spacing:-12.960000px;}
.ws8{word-spacing:-12.798000px;}
.wsd{word-spacing:-10.440000px;}
.ws11{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._16{margin-left:-5.708400px;}
._a{margin-left:-4.188480px;}
._1{margin-left:-3.048000px;}
._0{margin-left:-1.457280px;}
._2{width:1.158960px;}
._8{width:3.008160px;}
._b{width:4.123440px;}
._c{width:5.199120px;}
._3{width:7.182000px;}
._5{width:8.182320px;}
._10{width:9.869760px;}
._15{width:10.929600px;}
._12{width:12.686160px;}
._d{width:13.877040px;}
._14{width:15.533520px;}
._13{width:17.785680px;}
._1a{width:19.342080px;}
._f{width:20.865600px;}
._26{width:21.925920px;}
._18{width:23.117760px;}
._17{width:24.508800px;}
._23{width:25.717200px;}
._19{width:27.258000px;}
._27{width:28.300800px;}
._1f{width:29.410560px;}
._2b{width:30.867840px;}
._1e{width:32.258880px;}
._1d{width:33.848640px;}
._25{width:35.637120px;}
._24{width:36.763200px;}
._29{width:38.617920px;}
._22{width:41.664960px;}
._21{width:43.254720px;}
._2f{width:44.579520px;}
._2a{width:46.897920px;}
._28{width:48.222720px;}
._1c{width:50.011200px;}
._2e{width:51.468480px;}
._2c{width:55.244160px;}
._2d{width:56.304000px;}
._9{width:61.997040px;}
._6{width:63.548400px;}
._7{width:64.948080px;}
._30{width:68.558400px;}
._4{width:72.282000px;}
._20{width:77.765760px;}
._1b{width:102.009600px;}
._11{width:651.216000px;}
._e{width:682.896000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:69.822393px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yde{bottom:3.240000px;}
.y190{bottom:3.285000px;}
.yda{bottom:3.420000px;}
.yc2{bottom:3.600000px;}
.y12d{bottom:3.630000px;}
.y1c8{bottom:3.645000px;}
.y1e9{bottom:4.860000px;}
.y1e1{bottom:5.580000px;}
.y39{bottom:6.120000px;}
.y1df{bottom:6.300000px;}
.y1e7{bottom:8.640000px;}
.y1ed{bottom:9.360000px;}
.y9{bottom:10.260000px;}
.y7{bottom:10.290000px;}
.yb{bottom:10.440000px;}
.y1e2{bottom:11.880000px;}
.y2{bottom:12.240000px;}
.y18d{bottom:18.720000px;}
.yd8{bottom:18.900000px;}
.y158{bottom:19.080000px;}
.y151{bottom:20.340000px;}
.y1a6{bottom:20.700000px;}
.y1e6{bottom:24.345000px;}
.ye2{bottom:26.640000px;}
.ydc{bottom:27.720000px;}
.y149{bottom:28.080000px;}
.y1ea{bottom:32.085000px;}
.yd9{bottom:34.380000px;}
.y157{bottom:34.560000px;}
.y14b{bottom:35.820000px;}
.y6{bottom:36.390000px;}
.y1e5{bottom:39.825000px;}
.y143{bottom:43.200000px;}
.y148{bottom:43.560000px;}
.y1de{bottom:49.860000px;}
.y150{bottom:51.480000px;}
.y1e4{bottom:55.305000px;}
.y12{bottom:58.716000px;}
.y11{bottom:76.536000px;}
.y10{bottom:94.356000px;}
.yf6{bottom:111.276000px;}
.y11f{bottom:111.816000px;}
.yf{bottom:112.176000px;}
.y4{bottom:116.310000px;}
.y67{bottom:116.676000px;}
.y1f1{bottom:120.096000px;}
.y231{bottom:123.156000px;}
.yb9{bottom:126.036000px;}
.yc5{bottom:126.216000px;}
.y20a{bottom:128.376000px;}
.y140{bottom:130.536000px;}
.y16f{bottom:130.896000px;}
.y1b4{bottom:131.076000px;}
.yf5{bottom:133.056000px;}
.ye{bottom:133.596000px;}
.y198{bottom:138.096000px;}
.y66{bottom:138.456000px;}
.y1f0{bottom:141.876000px;}
.y91{bottom:143.496000px;}
.y230{bottom:144.936000px;}
.yb8{bottom:148.896000px;}
.y209{bottom:150.150000px;}
.yd{bottom:151.230000px;}
.y16e{bottom:152.670000px;}
.y1b3{bottom:152.850000px;}
.y13f{bottom:153.210000px;}
.yf4{bottom:154.830000px;}
.y11e{bottom:155.550000px;}
.y65{bottom:160.230000px;}
.yc4{bottom:160.770000px;}
.y193{bottom:163.110000px;}
.y1ef{bottom:163.650000px;}
.y90{bottom:166.350000px;}
.y22f{bottom:166.710000px;}
.yb7{bottom:169.770000px;}
.y208{bottom:171.930000px;}
.y16d{bottom:174.630000px;}
.y13e{bottom:176.070000px;}
.yf3{bottom:176.790000px;}
.y11d{bottom:177.330000px;}
.yc3{bottom:177.870000px;}
.y197{bottom:178.770000px;}
.y64{bottom:182.190000px;}
.y22e{bottom:188.670000px;}
.y8f{bottom:189.030000px;}
.yb6{bottom:190.650000px;}
.y207{bottom:193.710000px;}
.y196{bottom:194.250000px;}
.y16c{bottom:196.410000px;}
.y1b2{bottom:196.590000px;}
.yc1{bottom:197.490000px;}
.yf2{bottom:198.570000px;}
.y13d{bottom:198.750000px;}
.y11c{bottom:199.110000px;}
.y36{bottom:199.470000px;}
.y63{bottom:203.970000px;}
.y195{bottom:209.730000px;}
.y22d{bottom:210.450000px;}
.yb5{bottom:211.530000px;}
.y8e{bottom:211.890000px;}
.y206{bottom:215.670000px;}
.y35{bottom:216.750000px;}
.y16b{bottom:218.190000px;}
.y1b1{bottom:218.370000px;}
.yf1{bottom:220.350000px;}
.y11b{bottom:220.890000px;}
.y13c{bottom:221.610000px;}
.y194{bottom:225.210000px;}
.y62{bottom:225.750000px;}
.y22c{bottom:232.230000px;}
.yb4{bottom:232.410000px;}
.yc0{bottom:232.770000px;}
.y34{bottom:233.850000px;}
.y8d{bottom:234.570000px;}
.y205{bottom:237.450000px;}
.y1cb{bottom:238.170000px;}
.y16a{bottom:239.970000px;}
.y1b0{bottom:240.150000px;}
.y18e{bottom:241.590000px;}
.yf0{bottom:242.130000px;}
.y11a{bottom:242.850000px;}
.y13b{bottom:244.290000px;}
.y1ee{bottom:246.990000px;}
.y61{bottom:247.530000px;}
.y33{bottom:251.130000px;}
.yb3{bottom:253.290000px;}
.y22b{bottom:254.010000px;}
.ybf{bottom:254.730000px;}
.y1ca{bottom:255.450000px;}
.y8c{bottom:257.430000px;}
.y192{bottom:257.790000px;}
.y204{bottom:259.230000px;}
.y169{bottom:261.750000px;}
.y1af{bottom:261.930000px;}
.yef{bottom:264.090000px;}
.y119{bottom:264.630000px;}
.y13a{bottom:267.150000px;}
.y32{bottom:268.410000px;}
.y60{bottom:269.490000px;}
.y1e3{bottom:272.010000px;}
.y1c9{bottom:272.550000px;}
.yb2{bottom:273.990000px;}
.y191{bottom:274.170000px;}
.y22a{bottom:275.790000px;}
.y8b{bottom:279.210000px;}
.y203{bottom:281.010000px;}
.y168{bottom:283.710000px;}
.y1ae{bottom:283.890000px;}
.y31{bottom:285.690000px;}
.yee{bottom:285.870000px;}
.ybe{bottom:286.410000px;}
.y139{bottom:289.830000px;}
.y18f{bottom:290.370000px;}
.y5f{bottom:291.315000px;}
.y1ec{bottom:293.655000px;}
.yb1{bottom:294.915000px;}
.y229{bottom:297.795000px;}
.y8a{bottom:301.035000px;}
.y202{bottom:302.835000px;}
.y30{bottom:303.015000px;}
.y167{bottom:305.535000px;}
.y1ad{bottom:305.715000px;}
.y1c7{bottom:307.155000px;}
.yed{bottom:307.695000px;}
.y118{bottom:308.235000px;}
.ybd{bottom:309.135000px;}
.y1eb{bottom:310.755000px;}
.y138{bottom:312.735000px;}
.y5e{bottom:313.095000px;}
.yb0{bottom:315.795000px;}
.y228{bottom:319.575000px;}
.y2f{bottom:320.115000px;}
.y89{bottom:322.815000px;}
.y201{bottom:324.795000px;}
.y1c6{bottom:326.595000px;}
.y166{bottom:327.315000px;}
.y1ac{bottom:327.495000px;}
.y1e8{bottom:327.855000px;}
.yec{bottom:329.475000px;}
.y117{bottom:330.015000px;}
.ybc{bottom:331.995000px;}
.y137{bottom:334.515000px;}
.y5d{bottom:334.875000px;}
.yaf{bottom:336.675000px;}
.y2e{bottom:337.395000px;}
.y227{bottom:341.355000px;}
.y88{bottom:344.595000px;}
.y1dd{bottom:345.675000px;}
.y200{bottom:346.575000px;}
.y165{bottom:349.095000px;}
.y1ab{bottom:349.275000px;}
.yeb{bottom:351.255000px;}
.y116{bottom:351.975000px;}
.y2d{bottom:354.675000px;}
.y136{bottom:356.295000px;}
.y5c{bottom:356.655000px;}
.yae{bottom:357.555000px;}
.y1c5{bottom:362.055000px;}
.y226{bottom:363.135000px;}
.y87{bottom:366.555000px;}
.y1ff{bottom:368.355000px;}
.y1e0{bottom:370.515000px;}
.y164{bottom:371.055000px;}
.y2c{bottom:371.955000px;}
.y18c{bottom:372.855000px;}
.yea{bottom:373.215000px;}
.y115{bottom:373.755000px;}
.ybb{bottom:377.535000px;}
.y135{bottom:378.075000px;}
.yad{bottom:378.435000px;}
.y5b{bottom:378.615000px;}
.y1c4{bottom:383.835000px;}
.y225{bottom:385.095000px;}
.y86{bottom:388.335000px;}
.y2b{bottom:389.235000px;}
.y1fe{bottom:390.135000px;}
.y163{bottom:392.835000px;}
.y18b{bottom:394.815000px;}
.ye9{bottom:394.995000px;}
.y114{bottom:395.535000px;}
.yac{bottom:399.855000px;}
.y134{bottom:400.035000px;}
.yba{bottom:400.215000px;}
.y5a{bottom:400.395000px;}
.y1aa{bottom:405.615000px;}
.y2a{bottom:406.515000px;}
.y224{bottom:406.875000px;}
.y1d9{bottom:408.495000px;}
.y85{bottom:411.015000px;}
.y1fd{bottom:412.095000px;}
.y162{bottom:414.615000px;}
.y18a{bottom:416.595000px;}
.ye8{bottom:416.775000px;}
.y113{bottom:417.315000px;}
.y133{bottom:421.815000px;}
.y59{bottom:422.175000px;}
.y1a9{bottom:422.895000px;}
.y29{bottom:423.615000px;}
.y1dc{bottom:424.875000px;}
.y223{bottom:428.655000px;}
.yab{bottom:430.815000px;}
.y84{bottom:433.875000px;}
.y161{bottom:436.395000px;}
.y1c3{bottom:436.575000px;}
.ye7{bottom:438.195000px;}
.y112{bottom:439.275000px;}
.y1a8{bottom:439.995000px;}
.y28{bottom:440.895000px;}
.y1db{bottom:441.075000px;}
.y132{bottom:443.595000px;}
.y58{bottom:443.955000px;}
.y189{bottom:447.375000px;}
.y222{bottom:450.435000px;}
.yaa{bottom:452.595000px;}
.y1fc{bottom:455.655000px;}
.y111{bottom:456.375000px;}
.y83{bottom:456.555000px;}
.y1a7{bottom:457.275000px;}
.y1da{bottom:457.455000px;}
.y27{bottom:458.175000px;}
.y1c2{bottom:458.355000px;}
.y188{bottom:464.475000px;}
.y131{bottom:465.375000px;}
.y57{bottom:465.915000px;}
.y221{bottom:472.215000px;}
.y110{bottom:473.655000px;}
.ye6{bottom:474.555000px;}
.y26{bottom:475.455000px;}
.y1a5{bottom:476.895000px;}
.y1fb{bottom:477.435000px;}
.y82{bottom:479.415000px;}
.y160{bottom:480.135000px;}
.y187{bottom:481.755000px;}
.ya9{bottom:483.735000px;}
.y130{bottom:487.335000px;}
.y56{bottom:487.695000px;}
.y1d5{bottom:489.855000px;}
.y10f{bottom:490.935000px;}
.y25{bottom:492.735000px;}
.y220{bottom:494.175000px;}
.y186{bottom:499.035000px;}
.y1fa{bottom:499.215000px;}
.ye1{bottom:499.575000px;}
.y81{bottom:501.195000px;}
.y15f{bottom:501.915000px;}
.ya8{bottom:505.515000px;}
.y1d8{bottom:506.235000px;}
.y10e{bottom:508.215000px;}
.y12f{bottom:509.115000px;}
.y55{bottom:509.475000px;}
.y24{bottom:510.015000px;}
.ye5{bottom:515.235000px;}
.y21f{bottom:515.955000px;}
.y185{bottom:516.315000px;}
.y1f9{bottom:521.175000px;}
.y1d7{bottom:522.435000px;}
.y80{bottom:522.975000px;}
.y15e{bottom:523.695000px;}
.y1c1{bottom:523.875000px;}
.y10d{bottom:525.315000px;}
.y23{bottom:527.115000px;}
.ya7{bottom:527.475000px;}
.y1a4{bottom:529.455000px;}
.ye4{bottom:530.715000px;}
.y12e{bottom:530.895000px;}
.y54{bottom:531.255000px;}
.y184{bottom:535.755000px;}
.y21e{bottom:537.735000px;}
.y1d6{bottom:538.815000px;}
.y1f8{bottom:542.955000px;}
.y22{bottom:544.395000px;}
.y7f{bottom:544.755000px;}
.y10c{bottom:544.935000px;}
.y15d{bottom:545.115000px;}
.y1c0{bottom:545.655000px;}
.ye3{bottom:546.195000px;}
.y12c{bottom:548.175000px;}
.y1a3{bottom:551.265000px;}
.y53{bottom:553.065000px;}
.y1d4{bottom:556.485000px;}
.ya6{bottom:557.925000px;}
.y21d{bottom:559.545000px;}
.y21{bottom:561.705000px;}
.ydb{bottom:562.425000px;}
.y1f7{bottom:564.765000px;}
.y12b{bottom:565.305000px;}
.y7e{bottom:566.745000px;}
.y1bf{bottom:567.465000px;}
.y183{bottom:571.245000px;}
.y1a2{bottom:573.045000px;}
.y52{bottom:575.025000px;}
.y15c{bottom:575.925000px;}
.ye0{bottom:578.805000px;}
.y20{bottom:578.985000px;}
.y10b{bottom:580.245000px;}
.y21c{bottom:581.505000px;}
.y12a{bottom:582.585000px;}
.y1f6{bottom:586.545000px;}
.y7d{bottom:588.525000px;}
.y1be{bottom:589.245000px;}
.y182{bottom:593.025000px;}
.ydf{bottom:595.005000px;}
.y1f{bottom:596.265000px;}
.y51{bottom:596.805000px;}
.y15b{bottom:597.885000px;}
.ya5{bottom:598.065000px;}
.y129{bottom:599.865000px;}
.y10a{bottom:602.025000px;}
.y21b{bottom:603.285000px;}
.y1a1{bottom:604.005000px;}
.y1f5{bottom:608.505000px;}
.y1bd{bottom:611.025000px;}
.y7c{bottom:611.205000px;}
.ydd{bottom:611.385000px;}
.y181{bottom:614.805000px;}
.y1e{bottom:616.785000px;}
.y50{bottom:618.585000px;}
.y128{bottom:619.305000px;}
.y15a{bottom:619.665000px;}
.ya4{bottom:619.845000px;}
.y1d3{bottom:621.285000px;}
.y109{bottom:623.985000px;}
.y21a{bottom:625.065000px;}
.y1a0{bottom:625.785000px;}
.yd7{bottom:629.025000px;}
.y1f4{bottom:630.285000px;}
.y1bc{bottom:632.985000px;}
.y7b{bottom:634.065000px;}
.y1d{bottom:638.565000px;}
.y4f{bottom:640.365000px;}
.ya3{bottom:641.625000px;}
.y1d2{bottom:643.065000px;}
.y180{bottom:645.585000px;}
.y219{bottom:646.845000px;}
.y19f{bottom:647.565000px;}
.y1f3{bottom:652.065000px;}
.y108{bottom:654.765000px;}
.y159{bottom:655.845000px;}
.y7a{bottom:656.745000px;}
.y4e{bottom:662.325000px;}
.y17f{bottom:662.865000px;}
.ya2{bottom:663.585000px;}
.y1c{bottom:664.845000px;}
.y218{bottom:668.625000px;}
.y19e{bottom:669.345000px;}
.y1f2{bottom:673.845000px;}
.y107{bottom:676.545000px;}
.y79{bottom:679.605000px;}
.y17e{bottom:680.145000px;}
.y156{bottom:681.045000px;}
.y4d{bottom:684.105000px;}
.ya1{bottom:685.365000px;}
.y217{bottom:690.585000px;}
.y1b{bottom:691.125000px;}
.yd6{bottom:693.825000px;}
.y1d1{bottom:695.625000px;}
.y17d{bottom:697.425000px;}
.y106{bottom:698.325000px;}
.y78{bottom:702.285000px;}
.y4c{bottom:705.885000px;}
.y216{bottom:712.365000px;}
.y19d{bottom:713.085000px;}
.y17c{bottom:714.525000px;}
.yd5{bottom:715.605000px;}
.ya0{bottom:715.785000px;}
.y1d0{bottom:717.585000px;}
.y105{bottom:720.285000px;}
.y77{bottom:725.145000px;}
.y4b{bottom:727.665000px;}
.y14f{bottom:728.925000px;}
.y127{bottom:729.285000px;}
.y17b{bottom:734.145000px;}
.y19c{bottom:734.865000px;}
.y1a{bottom:736.485000px;}
.yd4{bottom:737.385000px;}
.y1cf{bottom:739.365000px;}
.y104{bottom:742.065000px;}
.y155{bottom:745.305000px;}
.y235{bottom:746.565000px;}
.y9f{bottom:746.925000px;}
.y76{bottom:747.825000px;}
.y4a{bottom:749.445000px;}
.y126{bottom:751.065000px;}
.y215{bottom:755.925000px;}
.y19b{bottom:756.645000px;}
.y1ce{bottom:761.145000px;}
.y154{bottom:761.505000px;}
.y103{bottom:763.845000px;}
.y234{bottom:766.365000px;}
.yd3{bottom:768.345000px;}
.y9e{bottom:768.885000px;}
.y17a{bottom:769.425000px;}
.y75{bottom:770.685000px;}
.y49{bottom:771.405000px;}
.y125{bottom:772.845000px;}
.y153{bottom:777.705000px;}
.y214{bottom:777.885000px;}
.y19a{bottom:778.425000px;}
.y1cd{bottom:782.925000px;}
.y102{bottom:785.625000px;}
.y233{bottom:786.165000px;}
.y19{bottom:786.525000px;}
.yd2{bottom:790.125000px;}
.y9d{bottom:790.665000px;}
.y179{bottom:791.385000px;}
.y48{bottom:793.185000px;}
.y74{bottom:793.365000px;}
.y152{bottom:794.085000px;}
.y124{bottom:794.625000px;}
.y213{bottom:799.665000px;}
.y199{bottom:800.025000px;}
.y1cc{bottom:804.885000px;}
.y232{bottom:806.145000px;}
.y101{bottom:807.405000px;}
.y147{bottom:810.330000px;}
.yd1{bottom:811.950000px;}
.y9c{bottom:812.490000px;}
.y178{bottom:813.210000px;}
.y47{bottom:815.010000px;}
.y18{bottom:815.370000px;}
.y73{bottom:816.270000px;}
.y123{bottom:816.450000px;}
.y212{bottom:821.490000px;}
.y1bb{bottom:824.730000px;}
.y14e{bottom:826.710000px;}
.y100{bottom:829.410000px;}
.yd0{bottom:833.730000px;}
.y9b{bottom:834.270000px;}
.y46{bottom:836.790000px;}
.y17{bottom:837.150000px;}
.y122{bottom:838.410000px;}
.y72{bottom:838.950000px;}
.y1ba{bottom:842.010000px;}
.y14d{bottom:842.910000px;}
.y211{bottom:843.270000px;}
.yff{bottom:846.510000px;}
.y177{bottom:848.490000px;}
.ycf{bottom:855.510000px;}
.y9a{bottom:856.050000px;}
.y45{bottom:858.750000px;}
.y16{bottom:858.930000px;}
.y14c{bottom:859.110000px;}
.y1b9{bottom:859.290000px;}
.y121{bottom:860.190000px;}
.y71{bottom:861.810000px;}
.yfe{bottom:863.790000px;}
.y210{bottom:865.050000px;}
.y176{bottom:870.270000px;}
.y14a{bottom:875.490000px;}
.y1b8{bottom:876.390000px;}
.yce{bottom:877.470000px;}
.y44{bottom:880.530000px;}
.y15{bottom:880.710000px;}
.yfd{bottom:881.070000px;}
.y120{bottom:881.970000px;}
.y70{bottom:884.490000px;}
.y99{bottom:886.650000px;}
.y20f{bottom:887.010000px;}
.y142{bottom:891.690000px;}
.y175{bottom:892.050000px;}
.y1b7{bottom:893.670000px;}
.yfc{bottom:898.350000px;}
.ycd{bottom:899.250000px;}
.y43{bottom:902.310000px;}
.y14{bottom:902.490000px;}
.y6f{bottom:907.350000px;}
.y146{bottom:908.070000px;}
.y20e{bottom:908.790000px;}
.y1b6{bottom:913.290000px;}
.y174{bottom:914.010000px;}
.yfb{bottom:915.450000px;}
.ycc{bottom:916.350000px;}
.y98{bottom:917.790000px;}
.y42{bottom:924.090000px;}
.y145{bottom:924.270000px;}
.y13{bottom:924.450000px;}
.y6e{bottom:930.030000px;}
.y20d{bottom:930.570000px;}
.ycb{bottom:933.630000px;}
.yfa{bottom:935.070000px;}
.y173{bottom:935.790000px;}
.y97{bottom:939.570000px;}
.y144{bottom:940.650000px;}
.y41{bottom:945.870000px;}
.y1b5{bottom:948.570000px;}
.yca{bottom:950.910000px;}
.y20c{bottom:952.350000px;}
.y6d{bottom:952.890000px;}
.y172{bottom:957.570000px;}
.y141{bottom:958.290000px;}
.y96{bottom:961.350000px;}
.y40{bottom:964.410000px;}
.yc{bottom:966.750000px;}
.yc9{bottom:968.190000px;}
.yf9{bottom:970.350000px;}
.y6c{bottom:975.570000px;}
.y3{bottom:978.990000px;}
.y171{bottom:979.350000px;}
.y3f{bottom:981.690000px;}
.y20b{bottom:982.950000px;}
.y95{bottom:983.310000px;}
.yc8{bottom:987.630000px;}
.yf8{bottom:992.310000px;}
.y6b{bottom:998.430000px;}
.y3e{bottom:998.970000px;}
.y170{bottom:1001.310000px;}
.ya{bottom:1004.910000px;}
.y94{bottom:1005.090000px;}
.yf7{bottom:1014.090000px;}
.y3d{bottom:1016.250000px;}
.y6a{bottom:1021.110000px;}
.yc7{bottom:1023.090000px;}
.y8{bottom:1031.010000px;}
.y3c{bottom:1033.530000px;}
.y93{bottom:1035.510000px;}
.y69{bottom:1043.970000px;}
.yc6{bottom:1044.870000px;}
.y3b{bottom:1050.810000px;}
.y5{bottom:1056.930000px;}
.y92{bottom:1066.290000px;}
.y68{bottom:1066.650000px;}
.y3a{bottom:1067.940000px;}
.y1{bottom:1108.980000px;}
.y38{bottom:1114.740000px;}
.y37{bottom:1122.660000px;}
.h16{height:15.480000px;}
.h19{height:15.516000px;}
.h17{height:15.660000px;}
.h12{height:17.100000px;}
.h1a{height:17.136000px;}
.h11{height:17.280000px;}
.h1e{height:17.316000px;}
.h27{height:17.820000px;}
.h26{height:18.540000px;}
.hd{height:19.800000px;}
.h2a{height:21.636000px;}
.h28{height:24.120000px;}
.h1{height:25.920000px;}
.h7{height:26.100000px;}
.h22{height:34.380000px;}
.h13{height:46.620000px;}
.h1d{height:47.160000px;}
.h4{height:52.056000px;}
.h8{height:52.998047px;}
.h14{height:53.332031px;}
.hc{height:58.621992px;}
.h2{height:58.651172px;}
.h5{height:59.027344px;}
.he{height:59.383125px;}
.h25{height:62.100000px;}
.h18{height:62.136000px;}
.h6{height:62.219661px;}
.h1f{height:64.296000px;}
.h15{height:64.440000px;}
.h24{height:64.476000px;}
.h21{height:64.745156px;}
.h23{height:64.925156px;}
.h10{height:64.978594px;}
.h9{height:65.010937px;}
.hf{height:66.757500px;}
.h29{height:72.936000px;}
.h20{height:77.760000px;}
.h1b{height:80.640000px;}
.h1c{height:80.676000px;}
.hb{height:82.676953px;}
.ha{height:93.983203px;}
.h3{height:129.996000px;}
.h0{height:1188.000000px;}
.w4{width:15.120000px;}
.w5{width:19.260000px;}
.w28{width:46.116000px;}
.w1d{width:48.060000px;}
.w24{width:48.780000px;}
.wa{width:55.260000px;}
.w36{width:59.076000px;}
.we{width:59.256000px;}
.w32{width:64.620000px;}
.wd{width:64.800000px;}
.wc{width:64.836000px;}
.w1b{width:67.320000px;}
.w33{width:73.656000px;}
.w1a{width:74.556000px;}
.w34{width:77.580000px;}
.w35{width:77.760000px;}
.w1c{width:77.796000px;}
.w27{width:80.640000px;}
.w26{width:80.856000px;}
.w19{width:84.960000px;}
.w1e{width:96.300000px;}
.w25{width:96.480000px;}
.w15{width:97.236000px;}
.w16{width:97.416000px;}
.w2a{width:100.080000px;}
.w2b{width:100.116000px;}
.w10{width:101.880000px;}
.w13{width:101.916000px;}
.wb{width:102.240000px;}
.w7{width:104.940000px;}
.w8{width:104.976000px;}
.w18{width:109.476000px;}
.w2f{width:111.420000px;}
.w11{width:112.536000px;}
.w21{width:112.860000px;}
.w2d{width:116.676000px;}
.w2e{width:116.856000px;}
.w22{width:117.216000px;}
.w23{width:117.396000px;}
.w9{width:120.420000px;}
.w30{width:120.636000px;}
.w31{width:120.816000px;}
.w6{width:124.956000px;}
.w2c{width:128.160000px;}
.w1f{width:128.196000px;}
.w20{width:128.376000px;}
.w17{width:133.920000px;}
.w1{width:138.240000px;}
.wf{width:138.276000px;}
.w12{width:148.896000px;}
.w29{width:152.490000px;}
.w14{width:154.080000px;}
.w2{width:416.985000px;}
.w3{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x48{left:1.080000px;}
.x35{left:2.160000px;}
.x1c{left:4.320000px;}
.x27{left:6.480000px;}
.x14{left:8.100000px;}
.x34{left:10.080000px;}
.x23{left:11.160000px;}
.x3d{left:12.240000px;}
.x24{left:14.400000px;}
.x3c{left:15.660000px;}
.x1f{left:17.145000px;}
.x38{left:18.180000px;}
.x25{left:19.440000px;}
.x3f{left:20.880000px;}
.x3b{left:22.680000px;}
.x22{left:24.300000px;}
.x3e{left:25.920000px;}
.x49{left:27.405000px;}
.x30{left:35.505000px;}
.x4d{left:36.720000px;}
.x2a{left:37.800000px;}
.x18{left:39.240000px;}
.x4c{left:40.500000px;}
.x2e{left:41.580000px;}
.x17{left:43.020000px;}
.x31{left:44.865000px;}
.x29{left:47.160000px;}
.x1b{left:48.600000px;}
.x42{left:50.940000px;}
.x41{left:54.720000px;}
.x3{left:69.120000px;}
.x5{left:84.995986px;}
.x6{left:98.495986px;}
.x7{left:104.075986px;}
.xe{left:116.495986px;}
.x10{left:123.335986px;}
.xb{left:127.475986px;}
.x45{left:133.776000px;}
.x1d{left:140.256000px;}
.xf{left:142.415986px;}
.x40{left:181.290000px;}
.x50{left:196.410000px;}
.x43{left:197.850000px;}
.x19{left:205.410000px;}
.x8{left:209.549986px;}
.x4e{left:213.150000px;}
.x32{left:218.910000px;}
.x46{left:230.250000px;}
.x4{left:236.055000px;}
.xa{left:238.889986px;}
.x1e{left:242.490000px;}
.x9{left:256.934986px;}
.x1{left:277.995000px;}
.x20{left:307.335000px;}
.x1a{left:310.395000px;}
.x44{left:315.075000px;}
.x51{left:317.055000px;}
.x33{left:328.395000px;}
.x4f{left:329.835000px;}
.x2f{left:336.315000px;}
.xc{left:346.754986px;}
.x21{left:372.135000px;}
.x47{left:391.755000px;}
.x2{left:416.235000px;}
.x56{left:417.674986px;}
.x12{left:420.374986px;}
.x55{left:425.054986px;}
.x11{left:431.924986px;}
.x13{left:480.344986px;}
.x2b{left:499.424986px;}
.x52{left:544.965000px;}
.x36{left:565.305000px;}
.x59{left:580.604986px;}
.x5a{left:585.464986px;}
.x57{left:587.084986px;}
.x58{left:596.264986px;}
.x15{left:605.310000px;}
.x26{left:618.630000px;}
.x2c{left:629.250000px;}
.x4a{left:632.850000px;}
.x37{left:639.870000px;}
.x53{left:696.210000px;}
.x39{left:707.190000px;}
.x16{left:710.250000px;}
.x28{left:720.510000px;}
.x2d{left:731.130000px;}
.x4b{left:732.930000px;}
.x54{left:773.970000px;}
.x3a{left:784.980000px;}
.xd{left:817.020000px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-1.994667pt;}
.ls7{letter-spacing:-1.957333pt;}
.ls4{letter-spacing:-1.296000pt;}
.ls6{letter-spacing:-0.714667pt;}
.ls5{letter-spacing:-0.677333pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.624000pt;}
.ls19{letter-spacing:-0.570667pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.271467pt;}
.ls23{letter-spacing:-0.233067pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.097067pt;}
.ls14{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:-0.074133pt;}
.lsa{letter-spacing:-0.038400pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.097067pt;}
.ls1b{letter-spacing:0.120533pt;}
.ls1a{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.232960pt;}
.ls1f{letter-spacing:0.233067pt;}
.ls21{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls20{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls17{letter-spacing:3.200000pt;}
.ls13{letter-spacing:4.480000pt;}
.ls1c{letter-spacing:15.360000pt;}
.ls1e{letter-spacing:17.920000pt;}
.ls0{letter-spacing:173.365760pt;}
.ws0{word-spacing:-16.074240pt;}
.ws3{word-spacing:-16.035840pt;}
.ws1{word-spacing:-15.396907pt;}
.ws12{word-spacing:-14.953067pt;}
.wsf{word-spacing:-14.855467pt;}
.ws16{word-spacing:-14.817067pt;}
.wsc{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.622933pt;}
.ws15{word-spacing:-14.486933pt;}
.wse{word-spacing:-14.448533pt;}
.ws2{word-spacing:-14.116907pt;}
.ws6{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.808000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws13{word-spacing:-11.520000pt;}
.ws8{word-spacing:-11.376000pt;}
.wsd{word-spacing:-9.280000pt;}
.ws11{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._16{margin-left:-5.074133pt;}
._a{margin-left:-3.723093pt;}
._1{margin-left:-2.709333pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.030187pt;}
._8{width:2.673920pt;}
._b{width:3.665280pt;}
._c{width:4.621440pt;}
._3{width:6.384000pt;}
._5{width:7.273173pt;}
._10{width:8.773120pt;}
._15{width:9.715200pt;}
._12{width:11.276587pt;}
._d{width:12.335147pt;}
._14{width:13.807573pt;}
._13{width:15.809493pt;}
._1a{width:17.192960pt;}
._f{width:18.547200pt;}
._26{width:19.489707pt;}
._18{width:20.549120pt;}
._17{width:21.785600pt;}
._23{width:22.859733pt;}
._19{width:24.229333pt;}
._27{width:25.156267pt;}
._1f{width:26.142720pt;}
._2b{width:27.438080pt;}
._1e{width:28.674560pt;}
._1d{width:30.087680pt;}
._25{width:31.677440pt;}
._24{width:32.678400pt;}
._29{width:34.327040pt;}
._22{width:37.035520pt;}
._21{width:38.448640pt;}
._2f{width:39.626240pt;}
._2a{width:41.687040pt;}
._28{width:42.864640pt;}
._1c{width:44.454400pt;}
._2e{width:45.749760pt;}
._2c{width:49.105920pt;}
._2d{width:50.048000pt;}
._9{width:55.108480pt;}
._6{width:56.487467pt;}
._7{width:57.731627pt;}
._30{width:60.940800pt;}
._4{width:64.250667pt;}
._20{width:69.125120pt;}
._1b{width:90.675200pt;}
._11{width:578.858667pt;}
._e{width:607.018667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:62.064349pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:2.880000pt;}
.y190{bottom:2.920000pt;}
.yda{bottom:3.040000pt;}
.yc2{bottom:3.200000pt;}
.y12d{bottom:3.226667pt;}
.y1c8{bottom:3.240000pt;}
.y1e9{bottom:4.320000pt;}
.y1e1{bottom:4.960000pt;}
.y39{bottom:5.440000pt;}
.y1df{bottom:5.600000pt;}
.y1e7{bottom:7.680000pt;}
.y1ed{bottom:8.320000pt;}
.y9{bottom:9.120000pt;}
.y7{bottom:9.146667pt;}
.yb{bottom:9.280000pt;}
.y1e2{bottom:10.560000pt;}
.y2{bottom:10.880000pt;}
.y18d{bottom:16.640000pt;}
.yd8{bottom:16.800000pt;}
.y158{bottom:16.960000pt;}
.y151{bottom:18.080000pt;}
.y1a6{bottom:18.400000pt;}
.y1e6{bottom:21.640000pt;}
.ye2{bottom:23.680000pt;}
.ydc{bottom:24.640000pt;}
.y149{bottom:24.960000pt;}
.y1ea{bottom:28.520000pt;}
.yd9{bottom:30.560000pt;}
.y157{bottom:30.720000pt;}
.y14b{bottom:31.840000pt;}
.y6{bottom:32.346667pt;}
.y1e5{bottom:35.400000pt;}
.y143{bottom:38.400000pt;}
.y148{bottom:38.720000pt;}
.y1de{bottom:44.320000pt;}
.y150{bottom:45.760000pt;}
.y1e4{bottom:49.160000pt;}
.y12{bottom:52.192000pt;}
.y11{bottom:68.032000pt;}
.y10{bottom:83.872000pt;}
.yf6{bottom:98.912000pt;}
.y11f{bottom:99.392000pt;}
.yf{bottom:99.712000pt;}
.y4{bottom:103.386667pt;}
.y67{bottom:103.712000pt;}
.y1f1{bottom:106.752000pt;}
.y231{bottom:109.472000pt;}
.yb9{bottom:112.032000pt;}
.yc5{bottom:112.192000pt;}
.y20a{bottom:114.112000pt;}
.y140{bottom:116.032000pt;}
.y16f{bottom:116.352000pt;}
.y1b4{bottom:116.512000pt;}
.yf5{bottom:118.272000pt;}
.ye{bottom:118.752000pt;}
.y198{bottom:122.752000pt;}
.y66{bottom:123.072000pt;}
.y1f0{bottom:126.112000pt;}
.y91{bottom:127.552000pt;}
.y230{bottom:128.832000pt;}
.yb8{bottom:132.352000pt;}
.y209{bottom:133.466667pt;}
.yd{bottom:134.426667pt;}
.y16e{bottom:135.706667pt;}
.y1b3{bottom:135.866667pt;}
.y13f{bottom:136.186667pt;}
.yf4{bottom:137.626667pt;}
.y11e{bottom:138.266667pt;}
.y65{bottom:142.426667pt;}
.yc4{bottom:142.906667pt;}
.y193{bottom:144.986667pt;}
.y1ef{bottom:145.466667pt;}
.y90{bottom:147.866667pt;}
.y22f{bottom:148.186667pt;}
.yb7{bottom:150.906667pt;}
.y208{bottom:152.826667pt;}
.y16d{bottom:155.226667pt;}
.y13e{bottom:156.506667pt;}
.yf3{bottom:157.146667pt;}
.y11d{bottom:157.626667pt;}
.yc3{bottom:158.106667pt;}
.y197{bottom:158.906667pt;}
.y64{bottom:161.946667pt;}
.y22e{bottom:167.706667pt;}
.y8f{bottom:168.026667pt;}
.yb6{bottom:169.466667pt;}
.y207{bottom:172.186667pt;}
.y196{bottom:172.666667pt;}
.y16c{bottom:174.586667pt;}
.y1b2{bottom:174.746667pt;}
.yc1{bottom:175.546667pt;}
.yf2{bottom:176.506667pt;}
.y13d{bottom:176.666667pt;}
.y11c{bottom:176.986667pt;}
.y36{bottom:177.306667pt;}
.y63{bottom:181.306667pt;}
.y195{bottom:186.426667pt;}
.y22d{bottom:187.066667pt;}
.yb5{bottom:188.026667pt;}
.y8e{bottom:188.346667pt;}
.y206{bottom:191.706667pt;}
.y35{bottom:192.666667pt;}
.y16b{bottom:193.946667pt;}
.y1b1{bottom:194.106667pt;}
.yf1{bottom:195.866667pt;}
.y11b{bottom:196.346667pt;}
.y13c{bottom:196.986667pt;}
.y194{bottom:200.186667pt;}
.y62{bottom:200.666667pt;}
.y22c{bottom:206.426667pt;}
.yb4{bottom:206.586667pt;}
.yc0{bottom:206.906667pt;}
.y34{bottom:207.866667pt;}
.y8d{bottom:208.506667pt;}
.y205{bottom:211.066667pt;}
.y1cb{bottom:211.706667pt;}
.y16a{bottom:213.306667pt;}
.y1b0{bottom:213.466667pt;}
.y18e{bottom:214.746667pt;}
.yf0{bottom:215.226667pt;}
.y11a{bottom:215.866667pt;}
.y13b{bottom:217.146667pt;}
.y1ee{bottom:219.546667pt;}
.y61{bottom:220.026667pt;}
.y33{bottom:223.226667pt;}
.yb3{bottom:225.146667pt;}
.y22b{bottom:225.786667pt;}
.ybf{bottom:226.426667pt;}
.y1ca{bottom:227.066667pt;}
.y8c{bottom:228.826667pt;}
.y192{bottom:229.146667pt;}
.y204{bottom:230.426667pt;}
.y169{bottom:232.666667pt;}
.y1af{bottom:232.826667pt;}
.yef{bottom:234.746667pt;}
.y119{bottom:235.226667pt;}
.y13a{bottom:237.466667pt;}
.y32{bottom:238.586667pt;}
.y60{bottom:239.546667pt;}
.y1e3{bottom:241.786667pt;}
.y1c9{bottom:242.266667pt;}
.yb2{bottom:243.546667pt;}
.y191{bottom:243.706667pt;}
.y22a{bottom:245.146667pt;}
.y8b{bottom:248.186667pt;}
.y203{bottom:249.786667pt;}
.y168{bottom:252.186667pt;}
.y1ae{bottom:252.346667pt;}
.y31{bottom:253.946667pt;}
.yee{bottom:254.106667pt;}
.ybe{bottom:254.586667pt;}
.y139{bottom:257.626667pt;}
.y18f{bottom:258.106667pt;}
.y5f{bottom:258.946667pt;}
.y1ec{bottom:261.026667pt;}
.yb1{bottom:262.146667pt;}
.y229{bottom:264.706667pt;}
.y8a{bottom:267.586667pt;}
.y202{bottom:269.186667pt;}
.y30{bottom:269.346667pt;}
.y167{bottom:271.586667pt;}
.y1ad{bottom:271.746667pt;}
.y1c7{bottom:273.026667pt;}
.yed{bottom:273.506667pt;}
.y118{bottom:273.986667pt;}
.ybd{bottom:274.786667pt;}
.y1eb{bottom:276.226667pt;}
.y138{bottom:277.986667pt;}
.y5e{bottom:278.306667pt;}
.yb0{bottom:280.706667pt;}
.y228{bottom:284.066667pt;}
.y2f{bottom:284.546667pt;}
.y89{bottom:286.946667pt;}
.y201{bottom:288.706667pt;}
.y1c6{bottom:290.306667pt;}
.y166{bottom:290.946667pt;}
.y1ac{bottom:291.106667pt;}
.y1e8{bottom:291.426667pt;}
.yec{bottom:292.866667pt;}
.y117{bottom:293.346667pt;}
.ybc{bottom:295.106667pt;}
.y137{bottom:297.346667pt;}
.y5d{bottom:297.666667pt;}
.yaf{bottom:299.266667pt;}
.y2e{bottom:299.906667pt;}
.y227{bottom:303.426667pt;}
.y88{bottom:306.306667pt;}
.y1dd{bottom:307.266667pt;}
.y200{bottom:308.066667pt;}
.y165{bottom:310.306667pt;}
.y1ab{bottom:310.466667pt;}
.yeb{bottom:312.226667pt;}
.y116{bottom:312.866667pt;}
.y2d{bottom:315.266667pt;}
.y136{bottom:316.706667pt;}
.y5c{bottom:317.026667pt;}
.yae{bottom:317.826667pt;}
.y1c5{bottom:321.826667pt;}
.y226{bottom:322.786667pt;}
.y87{bottom:325.826667pt;}
.y1ff{bottom:327.426667pt;}
.y1e0{bottom:329.346667pt;}
.y164{bottom:329.826667pt;}
.y2c{bottom:330.626667pt;}
.y18c{bottom:331.426667pt;}
.yea{bottom:331.746667pt;}
.y115{bottom:332.226667pt;}
.ybb{bottom:335.586667pt;}
.y135{bottom:336.066667pt;}
.yad{bottom:336.386667pt;}
.y5b{bottom:336.546667pt;}
.y1c4{bottom:341.186667pt;}
.y225{bottom:342.306667pt;}
.y86{bottom:345.186667pt;}
.y2b{bottom:345.986667pt;}
.y1fe{bottom:346.786667pt;}
.y163{bottom:349.186667pt;}
.y18b{bottom:350.946667pt;}
.ye9{bottom:351.106667pt;}
.y114{bottom:351.586667pt;}
.yac{bottom:355.426667pt;}
.y134{bottom:355.586667pt;}
.yba{bottom:355.746667pt;}
.y5a{bottom:355.906667pt;}
.y1aa{bottom:360.546667pt;}
.y2a{bottom:361.346667pt;}
.y224{bottom:361.666667pt;}
.y1d9{bottom:363.106667pt;}
.y85{bottom:365.346667pt;}
.y1fd{bottom:366.306667pt;}
.y162{bottom:368.546667pt;}
.y18a{bottom:370.306667pt;}
.ye8{bottom:370.466667pt;}
.y113{bottom:370.946667pt;}
.y133{bottom:374.946667pt;}
.y59{bottom:375.266667pt;}
.y1a9{bottom:375.906667pt;}
.y29{bottom:376.546667pt;}
.y1dc{bottom:377.666667pt;}
.y223{bottom:381.026667pt;}
.yab{bottom:382.946667pt;}
.y84{bottom:385.666667pt;}
.y161{bottom:387.906667pt;}
.y1c3{bottom:388.066667pt;}
.ye7{bottom:389.506667pt;}
.y112{bottom:390.466667pt;}
.y1a8{bottom:391.106667pt;}
.y28{bottom:391.906667pt;}
.y1db{bottom:392.066667pt;}
.y132{bottom:394.306667pt;}
.y58{bottom:394.626667pt;}
.y189{bottom:397.666667pt;}
.y222{bottom:400.386667pt;}
.yaa{bottom:402.306667pt;}
.y1fc{bottom:405.026667pt;}
.y111{bottom:405.666667pt;}
.y83{bottom:405.826667pt;}
.y1a7{bottom:406.466667pt;}
.y1da{bottom:406.626667pt;}
.y27{bottom:407.266667pt;}
.y1c2{bottom:407.426667pt;}
.y188{bottom:412.866667pt;}
.y131{bottom:413.666667pt;}
.y57{bottom:414.146667pt;}
.y221{bottom:419.746667pt;}
.y110{bottom:421.026667pt;}
.ye6{bottom:421.826667pt;}
.y26{bottom:422.626667pt;}
.y1a5{bottom:423.906667pt;}
.y1fb{bottom:424.386667pt;}
.y82{bottom:426.146667pt;}
.y160{bottom:426.786667pt;}
.y187{bottom:428.226667pt;}
.ya9{bottom:429.986667pt;}
.y130{bottom:433.186667pt;}
.y56{bottom:433.506667pt;}
.y1d5{bottom:435.426667pt;}
.y10f{bottom:436.386667pt;}
.y25{bottom:437.986667pt;}
.y220{bottom:439.266667pt;}
.y186{bottom:443.586667pt;}
.y1fa{bottom:443.746667pt;}
.ye1{bottom:444.066667pt;}
.y81{bottom:445.506667pt;}
.y15f{bottom:446.146667pt;}
.ya8{bottom:449.346667pt;}
.y1d8{bottom:449.986667pt;}
.y10e{bottom:451.746667pt;}
.y12f{bottom:452.546667pt;}
.y55{bottom:452.866667pt;}
.y24{bottom:453.346667pt;}
.ye5{bottom:457.986667pt;}
.y21f{bottom:458.626667pt;}
.y185{bottom:458.946667pt;}
.y1f9{bottom:463.266667pt;}
.y1d7{bottom:464.386667pt;}
.y80{bottom:464.866667pt;}
.y15e{bottom:465.506667pt;}
.y1c1{bottom:465.666667pt;}
.y10d{bottom:466.946667pt;}
.y23{bottom:468.546667pt;}
.ya7{bottom:468.866667pt;}
.y1a4{bottom:470.626667pt;}
.ye4{bottom:471.746667pt;}
.y12e{bottom:471.906667pt;}
.y54{bottom:472.226667pt;}
.y184{bottom:476.226667pt;}
.y21e{bottom:477.986667pt;}
.y1d6{bottom:478.946667pt;}
.y1f8{bottom:482.626667pt;}
.y22{bottom:483.906667pt;}
.y7f{bottom:484.226667pt;}
.y10c{bottom:484.386667pt;}
.y15d{bottom:484.546667pt;}
.y1c0{bottom:485.026667pt;}
.ye3{bottom:485.506667pt;}
.y12c{bottom:487.266667pt;}
.y1a3{bottom:490.013333pt;}
.y53{bottom:491.613333pt;}
.y1d4{bottom:494.653333pt;}
.ya6{bottom:495.933333pt;}
.y21d{bottom:497.373333pt;}
.y21{bottom:499.293333pt;}
.ydb{bottom:499.933333pt;}
.y1f7{bottom:502.013333pt;}
.y12b{bottom:502.493333pt;}
.y7e{bottom:503.773333pt;}
.y1bf{bottom:504.413333pt;}
.y183{bottom:507.773333pt;}
.y1a2{bottom:509.373333pt;}
.y52{bottom:511.133333pt;}
.y15c{bottom:511.933333pt;}
.ye0{bottom:514.493333pt;}
.y20{bottom:514.653333pt;}
.y10b{bottom:515.773333pt;}
.y21c{bottom:516.893333pt;}
.y12a{bottom:517.853333pt;}
.y1f6{bottom:521.373333pt;}
.y7d{bottom:523.133333pt;}
.y1be{bottom:523.773333pt;}
.y182{bottom:527.133333pt;}
.ydf{bottom:528.893333pt;}
.y1f{bottom:530.013333pt;}
.y51{bottom:530.493333pt;}
.y15b{bottom:531.453333pt;}
.ya5{bottom:531.613333pt;}
.y129{bottom:533.213333pt;}
.y10a{bottom:535.133333pt;}
.y21b{bottom:536.253333pt;}
.y1a1{bottom:536.893333pt;}
.y1f5{bottom:540.893333pt;}
.y1bd{bottom:543.133333pt;}
.y7c{bottom:543.293333pt;}
.ydd{bottom:543.453333pt;}
.y181{bottom:546.493333pt;}
.y1e{bottom:548.253333pt;}
.y50{bottom:549.853333pt;}
.y128{bottom:550.493333pt;}
.y15a{bottom:550.813333pt;}
.ya4{bottom:550.973333pt;}
.y1d3{bottom:552.253333pt;}
.y109{bottom:554.653333pt;}
.y21a{bottom:555.613333pt;}
.y1a0{bottom:556.253333pt;}
.yd7{bottom:559.133333pt;}
.y1f4{bottom:560.253333pt;}
.y1bc{bottom:562.653333pt;}
.y7b{bottom:563.613333pt;}
.y1d{bottom:567.613333pt;}
.y4f{bottom:569.213333pt;}
.ya3{bottom:570.333333pt;}
.y1d2{bottom:571.613333pt;}
.y180{bottom:573.853333pt;}
.y219{bottom:574.973333pt;}
.y19f{bottom:575.613333pt;}
.y1f3{bottom:579.613333pt;}
.y108{bottom:582.013333pt;}
.y159{bottom:582.973333pt;}
.y7a{bottom:583.773333pt;}
.y4e{bottom:588.733333pt;}
.y17f{bottom:589.213333pt;}
.ya2{bottom:589.853333pt;}
.y1c{bottom:590.973333pt;}
.y218{bottom:594.333333pt;}
.y19e{bottom:594.973333pt;}
.y1f2{bottom:598.973333pt;}
.y107{bottom:601.373333pt;}
.y79{bottom:604.093333pt;}
.y17e{bottom:604.573333pt;}
.y156{bottom:605.373333pt;}
.y4d{bottom:608.093333pt;}
.ya1{bottom:609.213333pt;}
.y217{bottom:613.853333pt;}
.y1b{bottom:614.333333pt;}
.yd6{bottom:616.733333pt;}
.y1d1{bottom:618.333333pt;}
.y17d{bottom:619.933333pt;}
.y106{bottom:620.733333pt;}
.y78{bottom:624.253333pt;}
.y4c{bottom:627.453333pt;}
.y216{bottom:633.213333pt;}
.y19d{bottom:633.853333pt;}
.y17c{bottom:635.133333pt;}
.yd5{bottom:636.093333pt;}
.ya0{bottom:636.253333pt;}
.y1d0{bottom:637.853333pt;}
.y105{bottom:640.253333pt;}
.y77{bottom:644.573333pt;}
.y4b{bottom:646.813333pt;}
.y14f{bottom:647.933333pt;}
.y127{bottom:648.253333pt;}
.y17b{bottom:652.573333pt;}
.y19c{bottom:653.213333pt;}
.y1a{bottom:654.653333pt;}
.yd4{bottom:655.453333pt;}
.y1cf{bottom:657.213333pt;}
.y104{bottom:659.613333pt;}
.y155{bottom:662.493333pt;}
.y235{bottom:663.613333pt;}
.y9f{bottom:663.933333pt;}
.y76{bottom:664.733333pt;}
.y4a{bottom:666.173333pt;}
.y126{bottom:667.613333pt;}
.y215{bottom:671.933333pt;}
.y19b{bottom:672.573333pt;}
.y1ce{bottom:676.573333pt;}
.y154{bottom:676.893333pt;}
.y103{bottom:678.973333pt;}
.y234{bottom:681.213333pt;}
.yd3{bottom:682.973333pt;}
.y9e{bottom:683.453333pt;}
.y17a{bottom:683.933333pt;}
.y75{bottom:685.053333pt;}
.y49{bottom:685.693333pt;}
.y125{bottom:686.973333pt;}
.y153{bottom:691.293333pt;}
.y214{bottom:691.453333pt;}
.y19a{bottom:691.933333pt;}
.y1cd{bottom:695.933333pt;}
.y102{bottom:698.333333pt;}
.y233{bottom:698.813333pt;}
.y19{bottom:699.133333pt;}
.yd2{bottom:702.333333pt;}
.y9d{bottom:702.813333pt;}
.y179{bottom:703.453333pt;}
.y48{bottom:705.053333pt;}
.y74{bottom:705.213333pt;}
.y152{bottom:705.853333pt;}
.y124{bottom:706.333333pt;}
.y213{bottom:710.813333pt;}
.y199{bottom:711.133333pt;}
.y1cc{bottom:715.453333pt;}
.y232{bottom:716.573333pt;}
.y101{bottom:717.693333pt;}
.y147{bottom:720.293333pt;}
.yd1{bottom:721.733333pt;}
.y9c{bottom:722.213333pt;}
.y178{bottom:722.853333pt;}
.y47{bottom:724.453333pt;}
.y18{bottom:724.773333pt;}
.y73{bottom:725.573333pt;}
.y123{bottom:725.733333pt;}
.y212{bottom:730.213333pt;}
.y1bb{bottom:733.093333pt;}
.y14e{bottom:734.853333pt;}
.y100{bottom:737.253333pt;}
.yd0{bottom:741.093333pt;}
.y9b{bottom:741.573333pt;}
.y46{bottom:743.813333pt;}
.y17{bottom:744.133333pt;}
.y122{bottom:745.253333pt;}
.y72{bottom:745.733333pt;}
.y1ba{bottom:748.453333pt;}
.y14d{bottom:749.253333pt;}
.y211{bottom:749.573333pt;}
.yff{bottom:752.453333pt;}
.y177{bottom:754.213333pt;}
.ycf{bottom:760.453333pt;}
.y9a{bottom:760.933333pt;}
.y45{bottom:763.333333pt;}
.y16{bottom:763.493333pt;}
.y14c{bottom:763.653333pt;}
.y1b9{bottom:763.813333pt;}
.y121{bottom:764.613333pt;}
.y71{bottom:766.053333pt;}
.yfe{bottom:767.813333pt;}
.y210{bottom:768.933333pt;}
.y176{bottom:773.573333pt;}
.y14a{bottom:778.213333pt;}
.y1b8{bottom:779.013333pt;}
.yce{bottom:779.973333pt;}
.y44{bottom:782.693333pt;}
.y15{bottom:782.853333pt;}
.yfd{bottom:783.173333pt;}
.y120{bottom:783.973333pt;}
.y70{bottom:786.213333pt;}
.y99{bottom:788.133333pt;}
.y20f{bottom:788.453333pt;}
.y142{bottom:792.613333pt;}
.y175{bottom:792.933333pt;}
.y1b7{bottom:794.373333pt;}
.yfc{bottom:798.533333pt;}
.ycd{bottom:799.333333pt;}
.y43{bottom:802.053333pt;}
.y14{bottom:802.213333pt;}
.y6f{bottom:806.533333pt;}
.y146{bottom:807.173333pt;}
.y20e{bottom:807.813333pt;}
.y1b6{bottom:811.813333pt;}
.y174{bottom:812.453333pt;}
.yfb{bottom:813.733333pt;}
.ycc{bottom:814.533333pt;}
.y98{bottom:815.813333pt;}
.y42{bottom:821.413333pt;}
.y145{bottom:821.573333pt;}
.y13{bottom:821.733333pt;}
.y6e{bottom:826.693333pt;}
.y20d{bottom:827.173333pt;}
.ycb{bottom:829.893333pt;}
.yfa{bottom:831.173333pt;}
.y173{bottom:831.813333pt;}
.y97{bottom:835.173333pt;}
.y144{bottom:836.133333pt;}
.y41{bottom:840.773333pt;}
.y1b5{bottom:843.173333pt;}
.yca{bottom:845.253333pt;}
.y20c{bottom:846.533333pt;}
.y6d{bottom:847.013333pt;}
.y172{bottom:851.173333pt;}
.y141{bottom:851.813333pt;}
.y96{bottom:854.533333pt;}
.y40{bottom:857.253333pt;}
.yc{bottom:859.333333pt;}
.yc9{bottom:860.613333pt;}
.yf9{bottom:862.533333pt;}
.y6c{bottom:867.173333pt;}
.y3{bottom:870.213333pt;}
.y171{bottom:870.533333pt;}
.y3f{bottom:872.613333pt;}
.y20b{bottom:873.733333pt;}
.y95{bottom:874.053333pt;}
.yc8{bottom:877.893333pt;}
.yf8{bottom:882.053333pt;}
.y6b{bottom:887.493333pt;}
.y3e{bottom:887.973333pt;}
.y170{bottom:890.053333pt;}
.ya{bottom:893.253333pt;}
.y94{bottom:893.413333pt;}
.yf7{bottom:901.413333pt;}
.y3d{bottom:903.333333pt;}
.y6a{bottom:907.653333pt;}
.yc7{bottom:909.413333pt;}
.y8{bottom:916.453333pt;}
.y3c{bottom:918.693333pt;}
.y93{bottom:920.453333pt;}
.y69{bottom:927.973333pt;}
.yc6{bottom:928.773333pt;}
.y3b{bottom:934.053333pt;}
.y5{bottom:939.493333pt;}
.y92{bottom:947.813333pt;}
.y68{bottom:948.133333pt;}
.y3a{bottom:949.280000pt;}
.y1{bottom:985.760000pt;}
.y38{bottom:990.880000pt;}
.y37{bottom:997.920000pt;}
.h16{height:13.760000pt;}
.h19{height:13.792000pt;}
.h17{height:13.920000pt;}
.h12{height:15.200000pt;}
.h1a{height:15.232000pt;}
.h11{height:15.360000pt;}
.h1e{height:15.392000pt;}
.h27{height:15.840000pt;}
.h26{height:16.480000pt;}
.hd{height:17.600000pt;}
.h2a{height:19.232000pt;}
.h28{height:21.440000pt;}
.h1{height:23.040000pt;}
.h7{height:23.200000pt;}
.h22{height:30.560000pt;}
.h13{height:41.440000pt;}
.h1d{height:41.920000pt;}
.h4{height:46.272000pt;}
.h8{height:47.109375pt;}
.h14{height:47.406250pt;}
.hc{height:52.108438pt;}
.h2{height:52.134375pt;}
.h5{height:52.468750pt;}
.he{height:52.785000pt;}
.h25{height:55.200000pt;}
.h18{height:55.232000pt;}
.h6{height:55.306366pt;}
.h1f{height:57.152000pt;}
.h15{height:57.280000pt;}
.h24{height:57.312000pt;}
.h21{height:57.551250pt;}
.h23{height:57.711250pt;}
.h10{height:57.758750pt;}
.h9{height:57.787500pt;}
.hf{height:59.340000pt;}
.h29{height:64.832000pt;}
.h20{height:69.120000pt;}
.h1b{height:71.680000pt;}
.h1c{height:71.712000pt;}
.hb{height:73.490625pt;}
.ha{height:83.540625pt;}
.h3{height:115.552000pt;}
.h0{height:1056.000000pt;}
.w4{width:13.440000pt;}
.w5{width:17.120000pt;}
.w28{width:40.992000pt;}
.w1d{width:42.720000pt;}
.w24{width:43.360000pt;}
.wa{width:49.120000pt;}
.w36{width:52.512000pt;}
.we{width:52.672000pt;}
.w32{width:57.440000pt;}
.wd{width:57.600000pt;}
.wc{width:57.632000pt;}
.w1b{width:59.840000pt;}
.w33{width:65.472000pt;}
.w1a{width:66.272000pt;}
.w34{width:68.960000pt;}
.w35{width:69.120000pt;}
.w1c{width:69.152000pt;}
.w27{width:71.680000pt;}
.w26{width:71.872000pt;}
.w19{width:75.520000pt;}
.w1e{width:85.600000pt;}
.w25{width:85.760000pt;}
.w15{width:86.432000pt;}
.w16{width:86.592000pt;}
.w2a{width:88.960000pt;}
.w2b{width:88.992000pt;}
.w10{width:90.560000pt;}
.w13{width:90.592000pt;}
.wb{width:90.880000pt;}
.w7{width:93.280000pt;}
.w8{width:93.312000pt;}
.w18{width:97.312000pt;}
.w2f{width:99.040000pt;}
.w11{width:100.032000pt;}
.w21{width:100.320000pt;}
.w2d{width:103.712000pt;}
.w2e{width:103.872000pt;}
.w22{width:104.192000pt;}
.w23{width:104.352000pt;}
.w9{width:107.040000pt;}
.w30{width:107.232000pt;}
.w31{width:107.392000pt;}
.w6{width:111.072000pt;}
.w2c{width:113.920000pt;}
.w1f{width:113.952000pt;}
.w20{width:114.112000pt;}
.w17{width:119.040000pt;}
.w1{width:122.880000pt;}
.wf{width:122.912000pt;}
.w12{width:132.352000pt;}
.w29{width:135.546667pt;}
.w14{width:136.960000pt;}
.w2{width:370.653333pt;}
.w3{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x48{left:0.960000pt;}
.x35{left:1.920000pt;}
.x1c{left:3.840000pt;}
.x27{left:5.760000pt;}
.x14{left:7.200000pt;}
.x34{left:8.960000pt;}
.x23{left:9.920000pt;}
.x3d{left:10.880000pt;}
.x24{left:12.800000pt;}
.x3c{left:13.920000pt;}
.x1f{left:15.240000pt;}
.x38{left:16.160000pt;}
.x25{left:17.280000pt;}
.x3f{left:18.560000pt;}
.x3b{left:20.160000pt;}
.x22{left:21.600000pt;}
.x3e{left:23.040000pt;}
.x49{left:24.360000pt;}
.x30{left:31.560000pt;}
.x4d{left:32.640000pt;}
.x2a{left:33.600000pt;}
.x18{left:34.880000pt;}
.x4c{left:36.000000pt;}
.x2e{left:36.960000pt;}
.x17{left:38.240000pt;}
.x31{left:39.880000pt;}
.x29{left:41.920000pt;}
.x1b{left:43.200000pt;}
.x42{left:45.280000pt;}
.x41{left:48.640000pt;}
.x3{left:61.440000pt;}
.x5{left:75.551988pt;}
.x6{left:87.551988pt;}
.x7{left:92.511988pt;}
.xe{left:103.551988pt;}
.x10{left:109.631988pt;}
.xb{left:113.311988pt;}
.x45{left:118.912000pt;}
.x1d{left:124.672000pt;}
.xf{left:126.591988pt;}
.x40{left:161.146667pt;}
.x50{left:174.586667pt;}
.x43{left:175.866667pt;}
.x19{left:182.586667pt;}
.x8{left:186.266655pt;}
.x4e{left:189.466667pt;}
.x32{left:194.586667pt;}
.x46{left:204.666667pt;}
.x4{left:209.826667pt;}
.xa{left:212.346655pt;}
.x1e{left:215.546667pt;}
.x9{left:228.386655pt;}
.x1{left:247.106667pt;}
.x20{left:273.186667pt;}
.x1a{left:275.906667pt;}
.x44{left:280.066667pt;}
.x51{left:281.826667pt;}
.x33{left:291.906667pt;}
.x4f{left:293.186667pt;}
.x2f{left:298.946667pt;}
.xc{left:308.226655pt;}
.x21{left:330.786667pt;}
.x47{left:348.226667pt;}
.x2{left:369.986667pt;}
.x56{left:371.266655pt;}
.x12{left:373.666655pt;}
.x55{left:377.826655pt;}
.x11{left:383.933321pt;}
.x13{left:426.973321pt;}
.x2b{left:443.933321pt;}
.x52{left:484.413333pt;}
.x36{left:502.493333pt;}
.x59{left:516.093321pt;}
.x5a{left:520.413321pt;}
.x57{left:521.853321pt;}
.x58{left:530.013321pt;}
.x15{left:538.053333pt;}
.x26{left:549.893333pt;}
.x2c{left:559.333333pt;}
.x4a{left:562.533333pt;}
.x37{left:568.773333pt;}
.x53{left:618.853333pt;}
.x39{left:628.613333pt;}
.x16{left:631.333333pt;}
.x28{left:640.453333pt;}
.x2d{left:649.893333pt;}
.x4b{left:651.493333pt;}
.x54{left:687.973333pt;}
.x3a{left:697.760000pt;}
.xd{left:726.240000pt;}
}




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