
    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_b60056590adfc1a62781c4d8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.951172;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_d3a4e5008ca7defd890c492b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.966797;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_663fbf762b0306cdccbe30d4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_51d7697c73b3f292a1678398.woff')format("woff");}.ff5{font-family:ff5;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_aa7e07aa5f9f1352d49bd6c4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.961914;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_868112290bde75c7a7ff9b03.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3b797ab64c23653d7e43a575.woff')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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_82a5300f01306f24be4589a1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_72d46b8ac169432bdbaeb264.woff')format("woff");}.ffa{font-family:ffa;line-height:0.966797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.000000px;}
.ls5{letter-spacing:-0.480000px;}
.ls3{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.006000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.312000px;}
.lsb{letter-spacing:0.456000px;}
.ls6{letter-spacing:0.480000px;}
.ls0{letter-spacing:1.500000px;}
.ls7{letter-spacing:41.820000px;}
.ls1{letter-spacing:846.330000px;}
.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;}
}
.ws1{word-spacing:-60.000000px;}
.ws7{word-spacing:-17.160000px;}
.ws5{word-spacing:-16.860000px;}
.ws3{word-spacing:-16.680000px;}
.ws9{word-spacing:-16.500000px;}
.ws0{word-spacing:-16.320000px;}
.ws6{word-spacing:-16.200000px;}
.wsa{word-spacing:-13.656000px;}
.ws8{word-spacing:-10.842000px;}
.ws2{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-2.040000px;}
._0{margin-left:-1.020000px;}
._1{width:1.080000px;}
._3{width:2.310000px;}
._4{width:3.930000px;}
._8{width:7.920000px;}
._a{width:37.320000px;}
._5{width:42.000000px;}
._6{width:44.640000px;}
._2{width:55.080000px;}
._b{width:58.320000px;}
._9{width:199.320000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.000000px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y22c{bottom:2.610000px;}
.y21d{bottom:2.625000px;}
.y25a{bottom:2.640000px;}
.y245{bottom:2.655000px;}
.ye0{bottom:2.985000px;}
.y67{bottom:3.000000px;}
.y106{bottom:3.375000px;}
.y1fa{bottom:3.420000px;}
.y139{bottom:3.735000px;}
.y102{bottom:3.750000px;}
.y104{bottom:4.125000px;}
.y111{bottom:4.140000px;}
.y109{bottom:4.500000px;}
.yba{bottom:4.860000px;}
.yd9{bottom:4.875000px;}
.y16a{bottom:4.905000px;}
.yf2{bottom:4.920000px;}
.yb7{bottom:5.250000px;}
.y15d{bottom:5.265000px;}
.y188{bottom:5.610000px;}
.y197{bottom:5.625000px;}
.y31{bottom:5.985000px;}
.y2a{bottom:6.000000px;}
.y46{bottom:6.045000px;}
.y2f{bottom:6.375000px;}
.y52{bottom:6.390000px;}
.y60{bottom:6.735000px;}
.y28{bottom:6.750000px;}
.y59{bottom:6.780000px;}
.y9c{bottom:6.795000px;}
.y96{bottom:7.125000px;}
.yf3{bottom:7.170000px;}
.ye8{bottom:7.500000px;}
.y62{bottom:9.000000px;}
.y69{bottom:10.125000px;}
.y64{bottom:10.500000px;}
.ye1{bottom:11.610000px;}
.y92{bottom:11.625000px;}
.y22b{bottom:16.110000px;}
.y21c{bottom:16.500000px;}
.y221{bottom:16.530000px;}
.ydf{bottom:20.235000px;}
.y66{bottom:20.250000px;}
.y1e5{bottom:20.280000px;}
.y1dc{bottom:21.375000px;}
.y1b2{bottom:22.125000px;}
.y1a0{bottom:28.125000px;}
.y1f1{bottom:30.000000px;}
.y22e{bottom:31.125000px;}
.y1db{bottom:38.625000px;}
.y1b1{bottom:39.375000px;}
.y228{bottom:45.405000px;}
.y258{bottom:46.132500px;}
.y1da{bottom:55.875000px;}
.yb5{bottom:57.375000px;}
.y3{bottom:57.750000px;}
.y227{bottom:59.280000px;}
.yec{bottom:61.125000px;}
.y2{bottom:75.037500px;}
.y252{bottom:75.375000px;}
.yb4{bottom:77.287500px;}
.y24a{bottom:90.795000px;}
.y160{bottom:93.037500px;}
.y132{bottom:95.662500px;}
.y55{bottom:103.162500px;}
.y20c{bottom:103.912500px;}
.y249{bottom:104.670000px;}
.y1c1{bottom:106.912500px;}
.y131{bottom:112.912500px;}
.y15f{bottom:115.537500px;}
.y25c{bottom:115.912500px;}
.y21f{bottom:117.405000px;}
.y54{bottom:118.162500px;}
.y247{bottom:118.170000px;}
.y20b{bottom:121.162500px;}
.y193{bottom:123.412500px;}
.y1c0{bottom:124.162500px;}
.y257{bottom:129.412500px;}
.y130{bottom:130.162500px;}
.y15e{bottom:137.662500px;}
.y20a{bottom:138.412500px;}
.y192{bottom:140.662500px;}
.y1bf{bottom:141.412500px;}
.y53{bottom:142.162500px;}
.y25b{bottom:144.037500px;}
.y12f{bottom:147.412500px;}
.y23e{bottom:148.200000px;}
.y209{bottom:155.670000px;}
.y191{bottom:157.905000px;}
.y15c{bottom:158.655000px;}
.y1be{bottom:158.670000px;}
.y12e{bottom:164.655000px;}
.y51{bottom:167.655000px;}
.y259{bottom:172.905000px;}
.y208{bottom:172.920000px;}
.y190{bottom:175.155000px;}
.y1bd{bottom:175.920000px;}
.y12d{bottom:179.655000px;}
.y15b{bottom:184.170000px;}
.y219{bottom:186.450000px;}
.y251{bottom:187.575000px;}
.y207{bottom:190.200000px;}
.y18f{bottom:192.450000px;}
.y50{bottom:192.825000px;}
.y1bc{bottom:193.200000px;}
.y12c{bottom:200.325000px;}
.y15a{bottom:201.450000px;}
.y256{bottom:202.200000px;}
.y218{bottom:203.700000px;}
.y206{bottom:207.450000px;}
.y18e{bottom:209.700000px;}
.y1bb{bottom:210.450000px;}
.y4f{bottom:216.825000px;}
.y159{bottom:218.700000px;}
.y12b{bottom:219.450000px;}
.y217{bottom:220.950000px;}
.yb3{bottom:222.450000px;}
.y205{bottom:224.700000px;}
.y18d{bottom:226.950000px;}
.y1ba{bottom:227.700000px;}
.y255{bottom:231.450000px;}
.y158{bottom:235.950000px;}
.y216{bottom:238.200000px;}
.yb2{bottom:239.700000px;}
.y18c{bottom:244.200000px;}
.y1b9{bottom:244.950000px;}
.y4e{bottom:245.325000px;}
.y254{bottom:245.700000px;}
.y157{bottom:253.200000px;}
.yb1{bottom:254.700000px;}
.y253{bottom:260.325000px;}
.y18b{bottom:261.450000px;}
.y1b8{bottom:262.200000px;}
.y4d{bottom:262.575000px;}
.y204{bottom:263.700000px;}
.y156{bottom:270.450000px;}
.y215{bottom:271.200000px;}
.y12a{bottom:274.200000px;}
.y246{bottom:274.950000px;}
.y1e3{bottom:276.075000px;}
.y18a{bottom:278.700000px;}
.y1b7{bottom:279.450000px;}
.y4c{bottom:279.825000px;}
.yb0{bottom:280.200000px;}
.y155{bottom:287.700000px;}
.y214{bottom:289.200000px;}
.y250{bottom:289.575000px;}
.y1e2{bottom:293.325000px;}
.y4b{bottom:294.825000px;}
.y189{bottom:295.950000px;}
.y1b6{bottom:296.700000px;}
.y129{bottom:297.825000px;}
.y24f{bottom:304.245000px;}
.y154{bottom:304.995000px;}
.yaf{bottom:305.745000px;}
.yff{bottom:307.995000px;}
.y213{bottom:310.230000px;}
.y1e1{bottom:310.605000px;}
.y187{bottom:310.995000px;}
.y203{bottom:311.745000px;}
.y1b5{bottom:313.980000px;}
.y128{bottom:315.120000px;}
.y24e{bottom:318.495000px;}
.y4a{bottom:318.870000px;}
.y153{bottom:322.245000px;}
.yfe{bottom:325.245000px;}
.y1e0{bottom:327.495000px;}
.y1b4{bottom:331.245000px;}
.yae{bottom:331.620000px;}
.y127{bottom:332.370000px;}
.y24d{bottom:333.120000px;}
.y202{bottom:335.745000px;}
.y152{bottom:339.495000px;}
.yfd{bottom:342.495000px;}
.y49{bottom:343.995000px;}
.y1df{bottom:344.745000px;}
.yd4{bottom:346.245000px;}
.y126{bottom:349.620000px;}
.y186{bottom:351.120000px;}
.y151{bottom:356.745000px;}
.yad{bottom:357.120000px;}
.yfc{bottom:359.745000px;}
.y212{bottom:360.495000px;}
.y24c{bottom:361.620000px;}
.y1de{bottom:361.995000px;}
.yd3{bottom:363.495000px;}
.y125{bottom:366.870000px;}
.y48{bottom:369.495000px;}
.y185{bottom:370.245000px;}
.y1b0{bottom:370.995000px;}
.y150{bottom:371.745000px;}
.y24b{bottom:376.245000px;}
.yfb{bottom:376.995000px;}
.y211{bottom:378.495000px;}
.yd2{bottom:380.745000px;}
.yac{bottom:382.620000px;}
.y124{bottom:384.120000px;}
.y201{bottom:388.245000px;}
.y184{bottom:389.745000px;}
.y248{bottom:390.495000px;}
.yfa{bottom:394.245000px;}
.y47{bottom:394.995000px;}
.y230{bottom:395.010000px;}
.y1b3{bottom:395.745000px;}
.y14f{bottom:397.245000px;}
.yd1{bottom:397.995000px;}
.y210{bottom:399.495000px;}
.y90{bottom:400.245000px;}
.y123{bottom:400.995000px;}
.y22f{bottom:405.120000px;}
.y200{bottom:405.495000px;}
.yab{bottom:408.120000px;}
.y183{bottom:408.870000px;}
.yf9{bottom:411.495000px;}
.yd0{bottom:415.245000px;}
.y20f{bottom:416.745000px;}
.y8f{bottom:417.495000px;}
.y122{bottom:418.245000px;}
.y244{bottom:419.745000px;}
.y45{bottom:420.105000px;}
.y1af{bottom:420.480000px;}
.y14e{bottom:422.775000px;}
.y1d9{bottom:425.025000px;}
.y182{bottom:428.400000px;}
.yf8{bottom:428.775000px;}
.y20e{bottom:431.025000px;}
.ycf{bottom:432.525000px;}
.yaa{bottom:433.650000px;}
.y243{bottom:434.400000px;}
.y8e{bottom:434.775000px;}
.y121{bottom:435.525000px;}
.y1ff{bottom:437.775000px;}
.y44{bottom:444.150000px;}
.y1ae{bottom:445.275000px;}
.yf7{bottom:446.025000px;}
.y181{bottom:447.525000px;}
.y14d{bottom:448.275000px;}
.y1dd{bottom:449.025000px;}
.yce{bottom:449.775000px;}
.y120{bottom:450.525000px;}
.y8d{bottom:452.025000px;}
.y1fe{bottom:458.025000px;}
.ya9{bottom:459.525000px;}
.yf6{bottom:463.275000px;}
.ycd{bottom:467.025000px;}
.y180{bottom:468.150000px;}
.y8c{bottom:469.275000px;}
.y11f{bottom:471.150000px;}
.y43{bottom:472.650000px;}
.y1d8{bottom:473.025000px;}
.y14c{bottom:473.775000px;}
.y1fd{bottom:477.525000px;}
.y242{bottom:477.900000px;}
.yf5{bottom:480.525000px;}
.ycc{bottom:484.275000px;}
.y8b{bottom:486.525000px;}
.y17f{bottom:487.650000px;}
.y42{bottom:489.900000px;}
.y11e{bottom:490.650000px;}
.y241{bottom:492.525000px;}
.y1fc{bottom:496.650000px;}
.y1d7{bottom:497.025000px;}
.y1ad{bottom:497.400000px;}
.ya8{bottom:497.775000px;}
.ycb{bottom:501.525000px;}
.y8a{bottom:503.775000px;}
.y41{bottom:504.900000px;}
.y240{bottom:507.150000px;}
.y11d{bottom:510.900000px;}
.y14b{bottom:512.025000px;}
.yf4{bottom:512.775000px;}
.y1ac{bottom:514.650000px;}
.ya7{bottom:515.025000px;}
.y1fb{bottom:516.150000px;}
.y89{bottom:518.775000px;}
.y1d6{bottom:521.025000px;}
.y23f{bottom:521.775000px;}
.y17e{bottom:528.150000px;}
.y40{bottom:528.900000px;}
.y14a{bottom:529.275000px;}
.y11c{bottom:530.400000px;}
.y1ab{bottom:531.900000px;}
.ya6{bottom:532.275000px;}
.yf1{bottom:535.275000px;}
.yca{bottom:536.025000px;}
.y1f9{bottom:536.775000px;}
.y88{bottom:543.945000px;}
.y1d5{bottom:545.070000px;}
.y17d{bottom:545.445000px;}
.y149{bottom:546.570000px;}
.y1aa{bottom:546.945000px;}
.ya5{bottom:549.570000px;}
.y23d{bottom:550.695000px;}
.yc9{bottom:553.320000px;}
.y11b{bottom:553.695000px;}
.y3f{bottom:554.070000px;}
.y1f8{bottom:555.945000px;}
.yeb{bottom:557.445000px;}
.y17c{bottom:562.695000px;}
.y148{bottom:563.820000px;}
.ya4{bottom:564.570000px;}
.y23c{bottom:565.320000px;}
.y1a9{bottom:567.570000px;}
.y87{bottom:567.945000px;}
.yc8{bottom:570.570000px;}
.y11a{bottom:570.945000px;}
.y1d4{bottom:573.570000px;}
.y3e{bottom:579.570000px;}
.yf0{bottom:579.945000px;}
.y147{bottom:581.070000px;}
.y22{bottom:583.320000px;}
.y1a8{bottom:586.695000px;}
.yc7{bottom:587.820000px;}
.y119{bottom:588.195000px;}
.y1d3{bottom:588.570000px;}
.ya3{bottom:590.070000px;}
.y86{bottom:593.445000px;}
.y1f7{bottom:594.195000px;}
.y23b{bottom:594.570000px;}
.y17b{bottom:597.195000px;}
.y146{bottom:598.320000px;}
.y21{bottom:600.570000px;}
.yef{bottom:602.070000px;}
.y3d{bottom:605.070000px;}
.y118{bottom:605.445000px;}
.y1a7{bottom:606.195000px;}
.y23a{bottom:608.820000px;}
.y1d2{bottom:609.195000px;}
.y1f6{bottom:611.445000px;}
.y17a{bottom:614.445000px;}
.ya2{bottom:615.570000px;}
.y20{bottom:617.820000px;}
.y85{bottom:618.945000px;}
.yc6{bottom:620.070000px;}
.y117{bottom:622.695000px;}
.y239{bottom:623.445000px;}
.yee{bottom:624.570000px;}
.y1a6{bottom:625.695000px;}
.y1f5{bottom:628.695000px;}
.y3c{bottom:629.070000px;}
.y1d1{bottom:629.445000px;}
.y179{bottom:631.695000px;}
.y145{bottom:632.820000px;}
.y1f{bottom:635.070000px;}
.yc5{bottom:638.070000px;}
.y116{bottom:639.945000px;}
.ya1{bottom:641.070000px;}
.y84{bottom:642.945000px;}
.y1f4{bottom:643.695000px;}
.y1a5{bottom:645.945000px;}
.yed{bottom:647.070000px;}
.y178{bottom:648.945000px;}
.y144{bottom:650.070000px;}
.y1e{bottom:652.320000px;}
.y238{bottom:652.695000px;}
.y3b{bottom:657.195000px;}
.y1a4{bottom:665.475000px;}
.y177{bottom:666.225000px;}
.ya0{bottom:666.600000px;}
.y143{bottom:667.350000px;}
.y1f3{bottom:667.725000px;}
.y6d{bottom:669.225000px;}
.y1d{bottom:669.600000px;}
.y1d0{bottom:670.350000px;}
.y83{bottom:671.100000px;}
.yc4{bottom:673.350000px;}
.y3a{bottom:674.475000px;}
.y237{bottom:681.600000px;}
.y176{bottom:683.475000px;}
.y142{bottom:684.600000px;}
.y6c{bottom:686.475000px;}
.y1c{bottom:686.850000px;}
.y82{bottom:688.350000px;}
.y39{bottom:689.475000px;}
.y1cf{bottom:689.850000px;}
.yc3{bottom:691.350000px;}
.yea{bottom:691.725000px;}
.y236{bottom:696.225000px;}
.y175{bottom:700.725000px;}
.y6b{bottom:701.475000px;}
.y141{bottom:701.850000px;}
.y1b{bottom:703.725000px;}
.y9f{bottom:704.850000px;}
.y81{bottom:705.600000px;}
.y115{bottom:706.725000px;}
.y1ce{bottom:709.350000px;}
.y235{bottom:710.850000px;}
.y38{bottom:713.475000px;}
.ye9{bottom:713.850000px;}
.y1f2{bottom:715.725000px;}
.y174{bottom:717.975000px;}
.y140{bottom:719.100000px;}
.y9e{bottom:719.850000px;}
.y1a{bottom:720.975000px;}
.y80{bottom:722.850000px;}
.y234{bottom:725.475000px;}
.yc2{bottom:726.600000px;}
.y6a{bottom:726.975000px;}
.y114{bottom:727.350000px;}
.y1cd{bottom:728.475000px;}
.y173{bottom:735.225000px;}
.y1a3{bottom:735.975000px;}
.ye7{bottom:736.350000px;}
.y19{bottom:738.225000px;}
.y37{bottom:738.975000px;}
.y1f0{bottom:739.725000px;}
.y7f{bottom:740.100000px;}
.y9d{bottom:745.725000px;}
.y113{bottom:746.850000px;}
.y172{bottom:752.475000px;}
.y13f{bottom:753.600000px;}
.y18{bottom:755.475000px;}
.y7e{bottom:757.350000px;}
.y1a2{bottom:758.100000px;}
.ye6{bottom:761.850000px;}
.y68{bottom:762.225000px;}
.y1ef{bottom:763.725000px;}
.y36{bottom:764.100000px;}
.yc1{bottom:764.850000px;}
.y1cc{bottom:766.725000px;}
.y112{bottom:767.100000px;}
.y233{bottom:768.225000px;}
.y171{bottom:769.725000px;}
.y13e{bottom:770.850000px;}
.y9b{bottom:771.225000px;}
.y20d{bottom:771.600000px;}
.y17{bottom:772.725000px;}
.y7d{bottom:774.600000px;}
.ye5{bottom:779.130000px;}
.y19f{bottom:781.380000px;}
.yc0{bottom:782.130000px;}
.y232{bottom:782.880000px;}
.y1cb{bottom:784.020000px;}
.y110{bottom:786.630000px;}
.y170{bottom:787.005000px;}
.y65{bottom:787.380000px;}
.y1ee{bottom:787.755000px;}
.y13d{bottom:788.145000px;}
.y35{bottom:789.630000px;}
.y16{bottom:790.005000px;}
.y7c{bottom:791.880000px;}
.ye4{bottom:796.380000px;}
.y9a{bottom:796.755000px;}
.y231{bottom:797.505000px;}
.ybf{bottom:799.380000px;}
.y1ca{bottom:801.255000px;}
.y16f{bottom:804.255000px;}
.y1a1{bottom:804.630000px;}
.y13c{bottom:805.380000px;}
.y15{bottom:807.255000px;}
.y7b{bottom:809.130000px;}
.y10f{bottom:809.880000px;}
.y1ed{bottom:811.755000px;}
.y34{bottom:813.630000px;}
.ybe{bottom:816.630000px;}
.y1c9{bottom:818.505000px;}
.y16e{bottom:821.505000px;}
.y63{bottom:822.630000px;}
.y14{bottom:824.505000px;}
.y7a{bottom:826.380000px;}
.y10e{bottom:827.130000px;}
.y19e{bottom:827.505000px;}
.ye3{bottom:830.880000px;}
.ybd{bottom:833.880000px;}
.y99{bottom:835.005000px;}
.y1c8{bottom:835.755000px;}
.y13b{bottom:837.630000px;}
.y16d{bottom:838.755000px;}
.y1ec{bottom:840.255000px;}
.y13{bottom:841.755000px;}
.y33{bottom:842.130000px;}
.y79{bottom:843.630000px;}
.y10d{bottom:844.380000px;}
.ye2{bottom:845.880000px;}
.y61{bottom:848.130000px;}
.y98{bottom:850.005000px;}
.y19d{bottom:850.755000px;}
.ybc{bottom:851.130000px;}
.y22d{bottom:854.880000px;}
.y226{bottom:854.895000px;}
.y1eb{bottom:855.255000px;}
.y16c{bottom:856.005000px;}
.y13a{bottom:858.255000px;}
.y12{bottom:859.005000px;}
.y32{bottom:859.380000px;}
.y78{bottom:860.880000px;}
.y10c{bottom:861.630000px;}
.ybb{bottom:866.130000px;}
.yde{bottom:868.020000px;}
.y22a{bottom:869.520000px;}
.y1c7{bottom:869.880000px;}
.y16b{bottom:871.005000px;}
.y5f{bottom:872.145000px;}
.y19c{bottom:872.880000px;}
.y30{bottom:874.395000px;}
.y1ea{bottom:875.505000px;}
.y97{bottom:875.520000px;}
.y11{bottom:876.255000px;}
.y138{bottom:877.395000px;}
.y77{bottom:878.130000px;}
.y10b{bottom:878.880000px;}
.y1c6{bottom:887.895000px;}
.yb9{bottom:888.645000px;}
.y10{bottom:893.505000px;}
.y169{bottom:893.520000px;}
.y76{bottom:895.380000px;}
.y10a{bottom:896.175000px;}
.y137{bottom:896.925000px;}
.y229{bottom:897.675000px;}
.y2e{bottom:898.425000px;}
.y5e{bottom:900.675000px;}
.y95{bottom:901.050000px;}
.ydd{bottom:903.300000px;}
.y1c5{bottom:905.925000px;}
.yf{bottom:910.800000px;}
.y108{bottom:911.175000px;}
.y75{bottom:912.675000px;}
.y168{bottom:915.675000px;}
.y136{bottom:916.425000px;}
.y1e9{bottom:916.800000px;}
.y5d{bottom:917.925000px;}
.y2d{bottom:923.550000px;}
.y1c4{bottom:923.925000px;}
.ydc{bottom:925.800000px;}
.y21e{bottom:926.175000px;}
.y94{bottom:926.925000px;}
.ye{bottom:928.050000px;}
.y74{bottom:929.925000px;}
.y107{bottom:931.800000px;}
.y5c{bottom:932.925000px;}
.yb8{bottom:933.300000px;}
.y135{bottom:935.550000px;}
.y167{bottom:936.675000px;}
.y1e8{bottom:937.050000px;}
.y225{bottom:940.800000px;}
.yd{bottom:945.300000px;}
.y73{bottom:947.175000px;}
.y2c{bottom:947.550000px;}
.ydb{bottom:947.925000px;}
.y19b{bottom:950.175000px;}
.y105{bottom:951.300000px;}
.y93{bottom:952.425000px;}
.y224{bottom:955.050000px;}
.yb6{bottom:955.425000px;}
.y134{bottom:956.175000px;}
.y1e7{bottom:956.550000px;}
.y5b{bottom:956.925000px;}
.y1c3{bottom:959.175000px;}
.y166{bottom:962.175000px;}
.yc{bottom:962.550000px;}
.y72{bottom:964.425000px;}
.y19a{bottom:967.425000px;}
.y223{bottom:969.675000px;}
.yda{bottom:970.425000px;}
.y2b{bottom:973.050000px;}
.y133{bottom:975.300000px;}
.y1e6{bottom:975.675000px;}
.y1c2{bottom:977.175000px;}
.y91{bottom:977.925000px;}
.y165{bottom:979.425000px;}
.yb{bottom:979.800000px;}
.y71{bottom:981.675000px;}
.y5a{bottom:982.050000px;}
.y199{bottom:982.425000px;}
.y222{bottom:984.300000px;}
.y103{bottom:989.925000px;}
.yd8{bottom:992.925000px;}
.y164{bottom:994.425000px;}
.y1e4{bottom:995.175000px;}
.ya{bottom:997.050000px;}
.y29{bottom:998.175000px;}
.y70{bottom:998.925000px;}
.y198{bottom:1003.050000px;}
.y58{bottom:1007.550000px;}
.y101{bottom:1010.175000px;}
.y9{bottom:1014.330000px;}
.yd7{bottom:1015.080000px;}
.y6f{bottom:1016.205000px;}
.y163{bottom:1016.580000px;}
.y27{bottom:1022.205000px;}
.y220{bottom:1027.080000px;}
.y100{bottom:1029.705000px;}
.y8{bottom:1031.580000px;}
.y57{bottom:1032.705000px;}
.y6e{bottom:1033.455000px;}
.yd6{bottom:1037.580000px;}
.y162{bottom:1038.705000px;}
.y196{bottom:1042.830000px;}
.y7{bottom:1048.830000px;}
.y26{bottom:1050.705000px;}
.y21b{bottom:1055.580000px;}
.y56{bottom:1056.705000px;}
.yd5{bottom:1059.705000px;}
.y161{bottom:1060.080000px;}
.y195{bottom:1061.955000px;}
.y6{bottom:1066.080000px;}
.y25{bottom:1067.955000px;}
.y194{bottom:1081.455000px;}
.y5{bottom:1083.330000px;}
.y24{bottom:1085.205000px;}
.y21a{bottom:1086.705000px;}
.y4{bottom:1100.955000px;}
.y23{bottom:1102.455000px;}
.y1{bottom:1119.705000px;}
.h3e{height:13.485000px;}
.h38{height:13.500000px;}
.h37{height:13.875000px;}
.h3d{height:13.912500px;}
.h17{height:17.250000px;}
.h2e{height:17.272500px;}
.h31{height:17.287500px;}
.h2d{height:18.000000px;}
.h1f{height:18.375000px;}
.h28{height:18.412500px;}
.h2b{height:18.735000px;}
.h1e{height:18.750000px;}
.h25{height:18.772500px;}
.h1c{height:18.787500px;}
.h1d{height:19.500000px;}
.h23{height:19.537500px;}
.h20{height:19.875000px;}
.h24{height:19.912500px;}
.h26{height:20.250000px;}
.h27{height:20.625000px;}
.h15{height:21.375000px;}
.h16{height:21.397500px;}
.h19{height:21.412500px;}
.h14{height:21.750000px;}
.h2a{height:21.787500px;}
.hd{height:23.235000px;}
.ha{height:23.250000px;}
.hb{height:23.272500px;}
.h8{height:23.287500px;}
.h9{height:24.375000px;}
.h11{height:24.397500px;}
.he{height:24.412500px;}
.h13{height:24.735000px;}
.h7{height:24.750000px;}
.hf{height:24.772500px;}
.hc{height:24.787500px;}
.h12{height:25.125000px;}
.h3a{height:27.397500px;}
.h36{height:27.412500px;}
.h32{height:27.750000px;}
.h10{height:34.500000px;}
.h1a{height:34.522500px;}
.h18{height:34.537500px;}
.h35{height:35.554688px;}
.h33{height:36.093750px;}
.h43{height:40.605469px;}
.h3b{height:42.375000px;}
.h1{height:44.443359px;}
.h5{height:45.087891px;}
.h4{height:45.117188px;}
.h3{height:49.628906px;}
.h21{height:49.888184px;}
.h6{height:49.992188px;}
.h22{height:50.008184px;}
.h42{height:57.412500px;}
.h2{height:59.677734px;}
.h29{height:67.875000px;}
.h39{height:70.522500px;}
.h2f{height:71.250000px;}
.h30{height:71.287500px;}
.h2c{height:72.787500px;}
.h41{height:86.625000px;}
.h34{height:128.662500px;}
.h40{height:129.412500px;}
.h1b{height:133.537500px;}
.h3f{height:159.450000px;}
.h3c{height:405.900000px;}
.h0{height:1188.000000px;}
.w31{width:69.000000px;}
.w2c{width:73.500000px;}
.w13{width:73.537500px;}
.w12{width:73.912500px;}
.w2e{width:84.787500px;}
.w2f{width:96.075000px;}
.w3{width:102.037500px;}
.w30{width:105.037500px;}
.wf{width:107.287500px;}
.w26{width:111.075000px;}
.wb{width:113.700000px;}
.we{width:114.037500px;}
.wc{width:114.075000px;}
.wa{width:114.450000px;}
.w16{width:115.200000px;}
.w1d{width:120.037500px;}
.w1c{width:120.412500px;}
.w7{width:120.787500px;}
.w1b{width:121.162500px;}
.w6{width:121.950000px;}
.w2a{width:124.200000px;}
.w29{width:124.537500px;}
.w2b{width:124.575000px;}
.w15{width:125.287500px;}
.w1f{width:125.700000px;}
.w4{width:133.200000px;}
.w24{width:134.287500px;}
.w9{width:147.412500px;}
.w11{width:147.825000px;}
.w21{width:151.950000px;}
.w27{width:152.700000px;}
.w20{width:153.075000px;}
.w22{width:161.325000px;}
.wd{width:162.450000px;}
.w28{width:167.700000px;}
.w1a{width:169.200000px;}
.w18{width:173.700000px;}
.w17{width:174.825000px;}
.w34{width:181.605000px;}
.w2d{width:182.700000px;}
.w10{width:189.450000px;}
.w32{width:193.980000px;}
.w1e{width:198.825000px;}
.w14{width:199.245000px;}
.w25{width:213.450000px;}
.w2{width:215.325000px;}
.w23{width:223.245000px;}
.w8{width:243.495000px;}
.w33{width:287.400000px;}
.w19{width:299.775000px;}
.w5{width:452.070000px;}
.w35{width:551.880000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:7.875000px;}
.x40{left:11.625000px;}
.x43{left:17.670000px;}
.x42{left:25.920000px;}
.x20{left:36.750000px;}
.xf{left:40.912500px;}
.x11{left:43.125000px;}
.x4{left:54.037486px;}
.x15{left:60.045000px;}
.xc{left:61.155000px;}
.x22{left:66.045000px;}
.x21{left:68.250000px;}
.x16{left:72.420000px;}
.x27{left:73.912500px;}
.x1a{left:77.280000px;}
.x5{left:81.037486px;}
.x1b{left:83.280000px;}
.x12{left:86.662500px;}
.x17{left:89.670000px;}
.x25{left:92.295000px;}
.x36{left:96.795000px;}
.x3a{left:99.412500px;}
.x32{left:100.920000px;}
.x14{left:106.537500px;}
.x6{left:108.037486px;}
.x3e{left:110.295000px;}
.x33{left:113.295000px;}
.xe{left:120.787500px;}
.x2a{left:121.912500px;}
.x1e{left:123.825000px;}
.x4b{left:129.037500px;}
.x7{left:135.074986px;}
.x3b{left:137.325000px;}
.x2c{left:140.655000px;}
.x28{left:142.155000px;}
.x31{left:145.155000px;}
.x1d{left:148.207500px;}
.x24{left:157.957500px;}
.x3d{left:160.207500px;}
.xd{left:162.074986px;}
.x44{left:172.575000px;}
.x34{left:177.825000px;}
.x3f{left:181.957500px;}
.x2e{left:190.199986px;}
.x2d{left:194.324986px;}
.x37{left:196.950000px;}
.x13{left:202.950000px;}
.xb{left:207.832500px;}
.x26{left:236.745000px;}
.x2b{left:237.870000px;}
.x10{left:243.495000px;}
.x30{left:258.862500px;}
.x9{left:270.495000px;}
.x47{left:277.245000px;}
.x19{left:283.995000px;}
.x1c{left:310.995000px;}
.x4c{left:312.495000px;}
.x38{left:319.650000px;}
.x23{left:320.775000px;}
.x3c{left:344.775000px;}
.x1f{left:365.025000px;}
.xa{left:373.275000px;}
.x35{left:377.400000px;}
.x41{left:392.025000px;}
.x4d{left:398.025000px;}
.x48{left:402.525000px;}
.x2f{left:421.320000px;}
.x39{left:441.195000px;}
.x3{left:445.694986px;}
.x4e{left:494.850000px;}
.x49{left:527.475000px;}
.x4f{left:600.645000px;}
.x1{left:625.004986px;}
.x4a{left:652.770000px;}
.x50{left:670.395000px;}
.x2{left:818.594986px;}
.x46{left:820.829986px;}
.x45{left:826.829986px;}
.x29{left:847.829986px;}
.x18{left:856.124986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.666667pt;}
.ls5{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.005333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.277333pt;}
.lsb{letter-spacing:0.405333pt;}
.ls6{letter-spacing:0.426667pt;}
.ls0{letter-spacing:1.333333pt;}
.ls7{letter-spacing:37.173333pt;}
.ls1{letter-spacing:752.293333pt;}
.ws1{word-spacing:-53.333333pt;}
.ws7{word-spacing:-15.253333pt;}
.ws5{word-spacing:-14.986667pt;}
.ws3{word-spacing:-14.826667pt;}
.ws9{word-spacing:-14.666667pt;}
.ws0{word-spacing:-14.506667pt;}
.ws6{word-spacing:-14.400000pt;}
.wsa{word-spacing:-12.138667pt;}
.ws8{word-spacing:-9.637333pt;}
.ws2{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-1.813333pt;}
._0{margin-left:-0.906667pt;}
._1{width:0.960000pt;}
._3{width:2.053333pt;}
._4{width:3.493333pt;}
._8{width:7.040000pt;}
._a{width:33.173333pt;}
._5{width:37.333333pt;}
._6{width:39.680000pt;}
._2{width:48.960000pt;}
._b{width:51.840000pt;}
._9{width:177.173333pt;}
.fs3{font-size:34.666667pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y22c{bottom:2.320000pt;}
.y21d{bottom:2.333333pt;}
.y25a{bottom:2.346667pt;}
.y245{bottom:2.360000pt;}
.ye0{bottom:2.653333pt;}
.y67{bottom:2.666667pt;}
.y106{bottom:3.000000pt;}
.y1fa{bottom:3.040000pt;}
.y139{bottom:3.320000pt;}
.y102{bottom:3.333333pt;}
.y104{bottom:3.666667pt;}
.y111{bottom:3.680000pt;}
.y109{bottom:4.000000pt;}
.yba{bottom:4.320000pt;}
.yd9{bottom:4.333333pt;}
.y16a{bottom:4.360000pt;}
.yf2{bottom:4.373333pt;}
.yb7{bottom:4.666667pt;}
.y15d{bottom:4.680000pt;}
.y188{bottom:4.986667pt;}
.y197{bottom:5.000000pt;}
.y31{bottom:5.320000pt;}
.y2a{bottom:5.333333pt;}
.y46{bottom:5.373333pt;}
.y2f{bottom:5.666667pt;}
.y52{bottom:5.680000pt;}
.y60{bottom:5.986667pt;}
.y28{bottom:6.000000pt;}
.y59{bottom:6.026667pt;}
.y9c{bottom:6.040000pt;}
.y96{bottom:6.333333pt;}
.yf3{bottom:6.373333pt;}
.ye8{bottom:6.666667pt;}
.y62{bottom:8.000000pt;}
.y69{bottom:9.000000pt;}
.y64{bottom:9.333333pt;}
.ye1{bottom:10.320000pt;}
.y92{bottom:10.333333pt;}
.y22b{bottom:14.320000pt;}
.y21c{bottom:14.666667pt;}
.y221{bottom:14.693333pt;}
.ydf{bottom:17.986667pt;}
.y66{bottom:18.000000pt;}
.y1e5{bottom:18.026667pt;}
.y1dc{bottom:19.000000pt;}
.y1b2{bottom:19.666667pt;}
.y1a0{bottom:25.000000pt;}
.y1f1{bottom:26.666667pt;}
.y22e{bottom:27.666667pt;}
.y1db{bottom:34.333333pt;}
.y1b1{bottom:35.000000pt;}
.y228{bottom:40.360000pt;}
.y258{bottom:41.006667pt;}
.y1da{bottom:49.666667pt;}
.yb5{bottom:51.000000pt;}
.y3{bottom:51.333333pt;}
.y227{bottom:52.693333pt;}
.yec{bottom:54.333333pt;}
.y2{bottom:66.700000pt;}
.y252{bottom:67.000000pt;}
.yb4{bottom:68.700000pt;}
.y24a{bottom:80.706667pt;}
.y160{bottom:82.700000pt;}
.y132{bottom:85.033333pt;}
.y55{bottom:91.700000pt;}
.y20c{bottom:92.366667pt;}
.y249{bottom:93.040000pt;}
.y1c1{bottom:95.033333pt;}
.y131{bottom:100.366667pt;}
.y15f{bottom:102.700000pt;}
.y25c{bottom:103.033333pt;}
.y21f{bottom:104.360000pt;}
.y54{bottom:105.033333pt;}
.y247{bottom:105.040000pt;}
.y20b{bottom:107.700000pt;}
.y193{bottom:109.700000pt;}
.y1c0{bottom:110.366667pt;}
.y257{bottom:115.033333pt;}
.y130{bottom:115.700000pt;}
.y15e{bottom:122.366667pt;}
.y20a{bottom:123.033333pt;}
.y192{bottom:125.033333pt;}
.y1bf{bottom:125.700000pt;}
.y53{bottom:126.366667pt;}
.y25b{bottom:128.033333pt;}
.y12f{bottom:131.033333pt;}
.y23e{bottom:131.733333pt;}
.y209{bottom:138.373333pt;}
.y191{bottom:140.360000pt;}
.y15c{bottom:141.026667pt;}
.y1be{bottom:141.040000pt;}
.y12e{bottom:146.360000pt;}
.y51{bottom:149.026667pt;}
.y259{bottom:153.693333pt;}
.y208{bottom:153.706667pt;}
.y190{bottom:155.693333pt;}
.y1bd{bottom:156.373333pt;}
.y12d{bottom:159.693333pt;}
.y15b{bottom:163.706667pt;}
.y219{bottom:165.733333pt;}
.y251{bottom:166.733333pt;}
.y207{bottom:169.066667pt;}
.y18f{bottom:171.066667pt;}
.y50{bottom:171.400000pt;}
.y1bc{bottom:171.733333pt;}
.y12c{bottom:178.066667pt;}
.y15a{bottom:179.066667pt;}
.y256{bottom:179.733333pt;}
.y218{bottom:181.066667pt;}
.y206{bottom:184.400000pt;}
.y18e{bottom:186.400000pt;}
.y1bb{bottom:187.066667pt;}
.y4f{bottom:192.733333pt;}
.y159{bottom:194.400000pt;}
.y12b{bottom:195.066667pt;}
.y217{bottom:196.400000pt;}
.yb3{bottom:197.733333pt;}
.y205{bottom:199.733333pt;}
.y18d{bottom:201.733333pt;}
.y1ba{bottom:202.400000pt;}
.y255{bottom:205.733333pt;}
.y158{bottom:209.733333pt;}
.y216{bottom:211.733333pt;}
.yb2{bottom:213.066667pt;}
.y18c{bottom:217.066667pt;}
.y1b9{bottom:217.733333pt;}
.y4e{bottom:218.066667pt;}
.y254{bottom:218.400000pt;}
.y157{bottom:225.066667pt;}
.yb1{bottom:226.400000pt;}
.y253{bottom:231.400000pt;}
.y18b{bottom:232.400000pt;}
.y1b8{bottom:233.066667pt;}
.y4d{bottom:233.400000pt;}
.y204{bottom:234.400000pt;}
.y156{bottom:240.400000pt;}
.y215{bottom:241.066667pt;}
.y12a{bottom:243.733333pt;}
.y246{bottom:244.400000pt;}
.y1e3{bottom:245.400000pt;}
.y18a{bottom:247.733333pt;}
.y1b7{bottom:248.400000pt;}
.y4c{bottom:248.733333pt;}
.yb0{bottom:249.066667pt;}
.y155{bottom:255.733333pt;}
.y214{bottom:257.066667pt;}
.y250{bottom:257.400000pt;}
.y1e2{bottom:260.733333pt;}
.y4b{bottom:262.066667pt;}
.y189{bottom:263.066667pt;}
.y1b6{bottom:263.733333pt;}
.y129{bottom:264.733333pt;}
.y24f{bottom:270.440000pt;}
.y154{bottom:271.106667pt;}
.yaf{bottom:271.773333pt;}
.yff{bottom:273.773333pt;}
.y213{bottom:275.760000pt;}
.y1e1{bottom:276.093333pt;}
.y187{bottom:276.440000pt;}
.y203{bottom:277.106667pt;}
.y1b5{bottom:279.093333pt;}
.y128{bottom:280.106667pt;}
.y24e{bottom:283.106667pt;}
.y4a{bottom:283.440000pt;}
.y153{bottom:286.440000pt;}
.yfe{bottom:289.106667pt;}
.y1e0{bottom:291.106667pt;}
.y1b4{bottom:294.440000pt;}
.yae{bottom:294.773333pt;}
.y127{bottom:295.440000pt;}
.y24d{bottom:296.106667pt;}
.y202{bottom:298.440000pt;}
.y152{bottom:301.773333pt;}
.yfd{bottom:304.440000pt;}
.y49{bottom:305.773333pt;}
.y1df{bottom:306.440000pt;}
.yd4{bottom:307.773333pt;}
.y126{bottom:310.773333pt;}
.y186{bottom:312.106667pt;}
.y151{bottom:317.106667pt;}
.yad{bottom:317.440000pt;}
.yfc{bottom:319.773333pt;}
.y212{bottom:320.440000pt;}
.y24c{bottom:321.440000pt;}
.y1de{bottom:321.773333pt;}
.yd3{bottom:323.106667pt;}
.y125{bottom:326.106667pt;}
.y48{bottom:328.440000pt;}
.y185{bottom:329.106667pt;}
.y1b0{bottom:329.773333pt;}
.y150{bottom:330.440000pt;}
.y24b{bottom:334.440000pt;}
.yfb{bottom:335.106667pt;}
.y211{bottom:336.440000pt;}
.yd2{bottom:338.440000pt;}
.yac{bottom:340.106667pt;}
.y124{bottom:341.440000pt;}
.y201{bottom:345.106667pt;}
.y184{bottom:346.440000pt;}
.y248{bottom:347.106667pt;}
.yfa{bottom:350.440000pt;}
.y47{bottom:351.106667pt;}
.y230{bottom:351.120000pt;}
.y1b3{bottom:351.773333pt;}
.y14f{bottom:353.106667pt;}
.yd1{bottom:353.773333pt;}
.y210{bottom:355.106667pt;}
.y90{bottom:355.773333pt;}
.y123{bottom:356.440000pt;}
.y22f{bottom:360.106667pt;}
.y200{bottom:360.440000pt;}
.yab{bottom:362.773333pt;}
.y183{bottom:363.440000pt;}
.yf9{bottom:365.773333pt;}
.yd0{bottom:369.106667pt;}
.y20f{bottom:370.440000pt;}
.y8f{bottom:371.106667pt;}
.y122{bottom:371.773333pt;}
.y244{bottom:373.106667pt;}
.y45{bottom:373.426667pt;}
.y1af{bottom:373.760000pt;}
.y14e{bottom:375.800000pt;}
.y1d9{bottom:377.800000pt;}
.y182{bottom:380.800000pt;}
.yf8{bottom:381.133333pt;}
.y20e{bottom:383.133333pt;}
.ycf{bottom:384.466667pt;}
.yaa{bottom:385.466667pt;}
.y243{bottom:386.133333pt;}
.y8e{bottom:386.466667pt;}
.y121{bottom:387.133333pt;}
.y1ff{bottom:389.133333pt;}
.y44{bottom:394.800000pt;}
.y1ae{bottom:395.800000pt;}
.yf7{bottom:396.466667pt;}
.y181{bottom:397.800000pt;}
.y14d{bottom:398.466667pt;}
.y1dd{bottom:399.133333pt;}
.yce{bottom:399.800000pt;}
.y120{bottom:400.466667pt;}
.y8d{bottom:401.800000pt;}
.y1fe{bottom:407.133333pt;}
.ya9{bottom:408.466667pt;}
.yf6{bottom:411.800000pt;}
.ycd{bottom:415.133333pt;}
.y180{bottom:416.133333pt;}
.y8c{bottom:417.133333pt;}
.y11f{bottom:418.800000pt;}
.y43{bottom:420.133333pt;}
.y1d8{bottom:420.466667pt;}
.y14c{bottom:421.133333pt;}
.y1fd{bottom:424.466667pt;}
.y242{bottom:424.800000pt;}
.yf5{bottom:427.133333pt;}
.ycc{bottom:430.466667pt;}
.y8b{bottom:432.466667pt;}
.y17f{bottom:433.466667pt;}
.y42{bottom:435.466667pt;}
.y11e{bottom:436.133333pt;}
.y241{bottom:437.800000pt;}
.y1fc{bottom:441.466667pt;}
.y1d7{bottom:441.800000pt;}
.y1ad{bottom:442.133333pt;}
.ya8{bottom:442.466667pt;}
.ycb{bottom:445.800000pt;}
.y8a{bottom:447.800000pt;}
.y41{bottom:448.800000pt;}
.y240{bottom:450.800000pt;}
.y11d{bottom:454.133333pt;}
.y14b{bottom:455.133333pt;}
.yf4{bottom:455.800000pt;}
.y1ac{bottom:457.466667pt;}
.ya7{bottom:457.800000pt;}
.y1fb{bottom:458.800000pt;}
.y89{bottom:461.133333pt;}
.y1d6{bottom:463.133333pt;}
.y23f{bottom:463.800000pt;}
.y17e{bottom:469.466667pt;}
.y40{bottom:470.133333pt;}
.y14a{bottom:470.466667pt;}
.y11c{bottom:471.466667pt;}
.y1ab{bottom:472.800000pt;}
.ya6{bottom:473.133333pt;}
.yf1{bottom:475.800000pt;}
.yca{bottom:476.466667pt;}
.y1f9{bottom:477.133333pt;}
.y88{bottom:483.506667pt;}
.y1d5{bottom:484.506667pt;}
.y17d{bottom:484.840000pt;}
.y149{bottom:485.840000pt;}
.y1aa{bottom:486.173333pt;}
.ya5{bottom:488.506667pt;}
.y23d{bottom:489.506667pt;}
.yc9{bottom:491.840000pt;}
.y11b{bottom:492.173333pt;}
.y3f{bottom:492.506667pt;}
.y1f8{bottom:494.173333pt;}
.yeb{bottom:495.506667pt;}
.y17c{bottom:500.173333pt;}
.y148{bottom:501.173333pt;}
.ya4{bottom:501.840000pt;}
.y23c{bottom:502.506667pt;}
.y1a9{bottom:504.506667pt;}
.y87{bottom:504.840000pt;}
.yc8{bottom:507.173333pt;}
.y11a{bottom:507.506667pt;}
.y1d4{bottom:509.840000pt;}
.y3e{bottom:515.173333pt;}
.yf0{bottom:515.506667pt;}
.y147{bottom:516.506667pt;}
.y22{bottom:518.506667pt;}
.y1a8{bottom:521.506667pt;}
.yc7{bottom:522.506667pt;}
.y119{bottom:522.840000pt;}
.y1d3{bottom:523.173333pt;}
.ya3{bottom:524.506667pt;}
.y86{bottom:527.506667pt;}
.y1f7{bottom:528.173333pt;}
.y23b{bottom:528.506667pt;}
.y17b{bottom:530.840000pt;}
.y146{bottom:531.840000pt;}
.y21{bottom:533.840000pt;}
.yef{bottom:535.173333pt;}
.y3d{bottom:537.840000pt;}
.y118{bottom:538.173333pt;}
.y1a7{bottom:538.840000pt;}
.y23a{bottom:541.173333pt;}
.y1d2{bottom:541.506667pt;}
.y1f6{bottom:543.506667pt;}
.y17a{bottom:546.173333pt;}
.ya2{bottom:547.173333pt;}
.y20{bottom:549.173333pt;}
.y85{bottom:550.173333pt;}
.yc6{bottom:551.173333pt;}
.y117{bottom:553.506667pt;}
.y239{bottom:554.173333pt;}
.yee{bottom:555.173333pt;}
.y1a6{bottom:556.173333pt;}
.y1f5{bottom:558.840000pt;}
.y3c{bottom:559.173333pt;}
.y1d1{bottom:559.506667pt;}
.y179{bottom:561.506667pt;}
.y145{bottom:562.506667pt;}
.y1f{bottom:564.506667pt;}
.yc5{bottom:567.173333pt;}
.y116{bottom:568.840000pt;}
.ya1{bottom:569.840000pt;}
.y84{bottom:571.506667pt;}
.y1f4{bottom:572.173333pt;}
.y1a5{bottom:574.173333pt;}
.yed{bottom:575.173333pt;}
.y178{bottom:576.840000pt;}
.y144{bottom:577.840000pt;}
.y1e{bottom:579.840000pt;}
.y238{bottom:580.173333pt;}
.y3b{bottom:584.173333pt;}
.y1a4{bottom:591.533333pt;}
.y177{bottom:592.200000pt;}
.ya0{bottom:592.533333pt;}
.y143{bottom:593.200000pt;}
.y1f3{bottom:593.533333pt;}
.y6d{bottom:594.866667pt;}
.y1d{bottom:595.200000pt;}
.y1d0{bottom:595.866667pt;}
.y83{bottom:596.533333pt;}
.yc4{bottom:598.533333pt;}
.y3a{bottom:599.533333pt;}
.y237{bottom:605.866667pt;}
.y176{bottom:607.533333pt;}
.y142{bottom:608.533333pt;}
.y6c{bottom:610.200000pt;}
.y1c{bottom:610.533333pt;}
.y82{bottom:611.866667pt;}
.y39{bottom:612.866667pt;}
.y1cf{bottom:613.200000pt;}
.yc3{bottom:614.533333pt;}
.yea{bottom:614.866667pt;}
.y236{bottom:618.866667pt;}
.y175{bottom:622.866667pt;}
.y6b{bottom:623.533333pt;}
.y141{bottom:623.866667pt;}
.y1b{bottom:625.533333pt;}
.y9f{bottom:626.533333pt;}
.y81{bottom:627.200000pt;}
.y115{bottom:628.200000pt;}
.y1ce{bottom:630.533333pt;}
.y235{bottom:631.866667pt;}
.y38{bottom:634.200000pt;}
.ye9{bottom:634.533333pt;}
.y1f2{bottom:636.200000pt;}
.y174{bottom:638.200000pt;}
.y140{bottom:639.200000pt;}
.y9e{bottom:639.866667pt;}
.y1a{bottom:640.866667pt;}
.y80{bottom:642.533333pt;}
.y234{bottom:644.866667pt;}
.yc2{bottom:645.866667pt;}
.y6a{bottom:646.200000pt;}
.y114{bottom:646.533333pt;}
.y1cd{bottom:647.533333pt;}
.y173{bottom:653.533333pt;}
.y1a3{bottom:654.200000pt;}
.ye7{bottom:654.533333pt;}
.y19{bottom:656.200000pt;}
.y37{bottom:656.866667pt;}
.y1f0{bottom:657.533333pt;}
.y7f{bottom:657.866667pt;}
.y9d{bottom:662.866667pt;}
.y113{bottom:663.866667pt;}
.y172{bottom:668.866667pt;}
.y13f{bottom:669.866667pt;}
.y18{bottom:671.533333pt;}
.y7e{bottom:673.200000pt;}
.y1a2{bottom:673.866667pt;}
.ye6{bottom:677.200000pt;}
.y68{bottom:677.533333pt;}
.y1ef{bottom:678.866667pt;}
.y36{bottom:679.200000pt;}
.yc1{bottom:679.866667pt;}
.y1cc{bottom:681.533333pt;}
.y112{bottom:681.866667pt;}
.y233{bottom:682.866667pt;}
.y171{bottom:684.200000pt;}
.y13e{bottom:685.200000pt;}
.y9b{bottom:685.533333pt;}
.y20d{bottom:685.866667pt;}
.y17{bottom:686.866667pt;}
.y7d{bottom:688.533333pt;}
.ye5{bottom:692.560000pt;}
.y19f{bottom:694.560000pt;}
.yc0{bottom:695.226667pt;}
.y232{bottom:695.893333pt;}
.y1cb{bottom:696.906667pt;}
.y110{bottom:699.226667pt;}
.y170{bottom:699.560000pt;}
.y65{bottom:699.893333pt;}
.y1ee{bottom:700.226667pt;}
.y13d{bottom:700.573333pt;}
.y35{bottom:701.893333pt;}
.y16{bottom:702.226667pt;}
.y7c{bottom:703.893333pt;}
.ye4{bottom:707.893333pt;}
.y9a{bottom:708.226667pt;}
.y231{bottom:708.893333pt;}
.ybf{bottom:710.560000pt;}
.y1ca{bottom:712.226667pt;}
.y16f{bottom:714.893333pt;}
.y1a1{bottom:715.226667pt;}
.y13c{bottom:715.893333pt;}
.y15{bottom:717.560000pt;}
.y7b{bottom:719.226667pt;}
.y10f{bottom:719.893333pt;}
.y1ed{bottom:721.560000pt;}
.y34{bottom:723.226667pt;}
.ybe{bottom:725.893333pt;}
.y1c9{bottom:727.560000pt;}
.y16e{bottom:730.226667pt;}
.y63{bottom:731.226667pt;}
.y14{bottom:732.893333pt;}
.y7a{bottom:734.560000pt;}
.y10e{bottom:735.226667pt;}
.y19e{bottom:735.560000pt;}
.ye3{bottom:738.560000pt;}
.ybd{bottom:741.226667pt;}
.y99{bottom:742.226667pt;}
.y1c8{bottom:742.893333pt;}
.y13b{bottom:744.560000pt;}
.y16d{bottom:745.560000pt;}
.y1ec{bottom:746.893333pt;}
.y13{bottom:748.226667pt;}
.y33{bottom:748.560000pt;}
.y79{bottom:749.893333pt;}
.y10d{bottom:750.560000pt;}
.ye2{bottom:751.893333pt;}
.y61{bottom:753.893333pt;}
.y98{bottom:755.560000pt;}
.y19d{bottom:756.226667pt;}
.ybc{bottom:756.560000pt;}
.y22d{bottom:759.893333pt;}
.y226{bottom:759.906667pt;}
.y1eb{bottom:760.226667pt;}
.y16c{bottom:760.893333pt;}
.y13a{bottom:762.893333pt;}
.y12{bottom:763.560000pt;}
.y32{bottom:763.893333pt;}
.y78{bottom:765.226667pt;}
.y10c{bottom:765.893333pt;}
.ybb{bottom:769.893333pt;}
.yde{bottom:771.573333pt;}
.y22a{bottom:772.906667pt;}
.y1c7{bottom:773.226667pt;}
.y16b{bottom:774.226667pt;}
.y5f{bottom:775.240000pt;}
.y19c{bottom:775.893333pt;}
.y30{bottom:777.240000pt;}
.y1ea{bottom:778.226667pt;}
.y97{bottom:778.240000pt;}
.y11{bottom:778.893333pt;}
.y138{bottom:779.906667pt;}
.y77{bottom:780.560000pt;}
.y10b{bottom:781.226667pt;}
.y1c6{bottom:789.240000pt;}
.yb9{bottom:789.906667pt;}
.y10{bottom:794.226667pt;}
.y169{bottom:794.240000pt;}
.y76{bottom:795.893333pt;}
.y10a{bottom:796.600000pt;}
.y137{bottom:797.266667pt;}
.y229{bottom:797.933333pt;}
.y2e{bottom:798.600000pt;}
.y5e{bottom:800.600000pt;}
.y95{bottom:800.933333pt;}
.ydd{bottom:802.933333pt;}
.y1c5{bottom:805.266667pt;}
.yf{bottom:809.600000pt;}
.y108{bottom:809.933333pt;}
.y75{bottom:811.266667pt;}
.y168{bottom:813.933333pt;}
.y136{bottom:814.600000pt;}
.y1e9{bottom:814.933333pt;}
.y5d{bottom:815.933333pt;}
.y2d{bottom:820.933333pt;}
.y1c4{bottom:821.266667pt;}
.ydc{bottom:822.933333pt;}
.y21e{bottom:823.266667pt;}
.y94{bottom:823.933333pt;}
.ye{bottom:824.933333pt;}
.y74{bottom:826.600000pt;}
.y107{bottom:828.266667pt;}
.y5c{bottom:829.266667pt;}
.yb8{bottom:829.600000pt;}
.y135{bottom:831.600000pt;}
.y167{bottom:832.600000pt;}
.y1e8{bottom:832.933333pt;}
.y225{bottom:836.266667pt;}
.yd{bottom:840.266667pt;}
.y73{bottom:841.933333pt;}
.y2c{bottom:842.266667pt;}
.ydb{bottom:842.600000pt;}
.y19b{bottom:844.600000pt;}
.y105{bottom:845.600000pt;}
.y93{bottom:846.600000pt;}
.y224{bottom:848.933333pt;}
.yb6{bottom:849.266667pt;}
.y134{bottom:849.933333pt;}
.y1e7{bottom:850.266667pt;}
.y5b{bottom:850.600000pt;}
.y1c3{bottom:852.600000pt;}
.y166{bottom:855.266667pt;}
.yc{bottom:855.600000pt;}
.y72{bottom:857.266667pt;}
.y19a{bottom:859.933333pt;}
.y223{bottom:861.933333pt;}
.yda{bottom:862.600000pt;}
.y2b{bottom:864.933333pt;}
.y133{bottom:866.933333pt;}
.y1e6{bottom:867.266667pt;}
.y1c2{bottom:868.600000pt;}
.y91{bottom:869.266667pt;}
.y165{bottom:870.600000pt;}
.yb{bottom:870.933333pt;}
.y71{bottom:872.600000pt;}
.y5a{bottom:872.933333pt;}
.y199{bottom:873.266667pt;}
.y222{bottom:874.933333pt;}
.y103{bottom:879.933333pt;}
.yd8{bottom:882.600000pt;}
.y164{bottom:883.933333pt;}
.y1e4{bottom:884.600000pt;}
.ya{bottom:886.266667pt;}
.y29{bottom:887.266667pt;}
.y70{bottom:887.933333pt;}
.y198{bottom:891.600000pt;}
.y58{bottom:895.600000pt;}
.y101{bottom:897.933333pt;}
.y9{bottom:901.626667pt;}
.yd7{bottom:902.293333pt;}
.y6f{bottom:903.293333pt;}
.y163{bottom:903.626667pt;}
.y27{bottom:908.626667pt;}
.y220{bottom:912.960000pt;}
.y100{bottom:915.293333pt;}
.y8{bottom:916.960000pt;}
.y57{bottom:917.960000pt;}
.y6e{bottom:918.626667pt;}
.yd6{bottom:922.293333pt;}
.y162{bottom:923.293333pt;}
.y196{bottom:926.960000pt;}
.y7{bottom:932.293333pt;}
.y26{bottom:933.960000pt;}
.y21b{bottom:938.293333pt;}
.y56{bottom:939.293333pt;}
.yd5{bottom:941.960000pt;}
.y161{bottom:942.293333pt;}
.y195{bottom:943.960000pt;}
.y6{bottom:947.626667pt;}
.y25{bottom:949.293333pt;}
.y194{bottom:961.293333pt;}
.y5{bottom:962.960000pt;}
.y24{bottom:964.626667pt;}
.y21a{bottom:965.960000pt;}
.y4{bottom:978.626667pt;}
.y23{bottom:979.960000pt;}
.y1{bottom:995.293333pt;}
.h3e{height:11.986667pt;}
.h38{height:12.000000pt;}
.h37{height:12.333333pt;}
.h3d{height:12.366667pt;}
.h17{height:15.333333pt;}
.h2e{height:15.353333pt;}
.h31{height:15.366667pt;}
.h2d{height:16.000000pt;}
.h1f{height:16.333333pt;}
.h28{height:16.366667pt;}
.h2b{height:16.653333pt;}
.h1e{height:16.666667pt;}
.h25{height:16.686667pt;}
.h1c{height:16.700000pt;}
.h1d{height:17.333333pt;}
.h23{height:17.366667pt;}
.h20{height:17.666667pt;}
.h24{height:17.700000pt;}
.h26{height:18.000000pt;}
.h27{height:18.333333pt;}
.h15{height:19.000000pt;}
.h16{height:19.020000pt;}
.h19{height:19.033333pt;}
.h14{height:19.333333pt;}
.h2a{height:19.366667pt;}
.hd{height:20.653333pt;}
.ha{height:20.666667pt;}
.hb{height:20.686667pt;}
.h8{height:20.700000pt;}
.h9{height:21.666667pt;}
.h11{height:21.686667pt;}
.he{height:21.700000pt;}
.h13{height:21.986667pt;}
.h7{height:22.000000pt;}
.hf{height:22.020000pt;}
.hc{height:22.033333pt;}
.h12{height:22.333333pt;}
.h3a{height:24.353333pt;}
.h36{height:24.366667pt;}
.h32{height:24.666667pt;}
.h10{height:30.666667pt;}
.h1a{height:30.686667pt;}
.h18{height:30.700000pt;}
.h35{height:31.604167pt;}
.h33{height:32.083333pt;}
.h43{height:36.093750pt;}
.h3b{height:37.666667pt;}
.h1{height:39.505208pt;}
.h5{height:40.078125pt;}
.h4{height:40.104167pt;}
.h3{height:44.114583pt;}
.h21{height:44.345052pt;}
.h6{height:44.437500pt;}
.h22{height:44.451719pt;}
.h42{height:51.033333pt;}
.h2{height:53.046875pt;}
.h29{height:60.333333pt;}
.h39{height:62.686667pt;}
.h2f{height:63.333333pt;}
.h30{height:63.366667pt;}
.h2c{height:64.700000pt;}
.h41{height:77.000000pt;}
.h34{height:114.366667pt;}
.h40{height:115.033333pt;}
.h1b{height:118.700000pt;}
.h3f{height:141.733333pt;}
.h3c{height:360.800000pt;}
.h0{height:1056.000000pt;}
.w31{width:61.333333pt;}
.w2c{width:65.333333pt;}
.w13{width:65.366667pt;}
.w12{width:65.700000pt;}
.w2e{width:75.366667pt;}
.w2f{width:85.400000pt;}
.w3{width:90.700000pt;}
.w30{width:93.366667pt;}
.wf{width:95.366667pt;}
.w26{width:98.733333pt;}
.wb{width:101.066667pt;}
.we{width:101.366667pt;}
.wc{width:101.400000pt;}
.wa{width:101.733333pt;}
.w16{width:102.400000pt;}
.w1d{width:106.700000pt;}
.w1c{width:107.033333pt;}
.w7{width:107.366667pt;}
.w1b{width:107.700000pt;}
.w6{width:108.400000pt;}
.w2a{width:110.400000pt;}
.w29{width:110.700000pt;}
.w2b{width:110.733333pt;}
.w15{width:111.366667pt;}
.w1f{width:111.733333pt;}
.w4{width:118.400000pt;}
.w24{width:119.366667pt;}
.w9{width:131.033333pt;}
.w11{width:131.400000pt;}
.w21{width:135.066667pt;}
.w27{width:135.733333pt;}
.w20{width:136.066667pt;}
.w22{width:143.400000pt;}
.wd{width:144.400000pt;}
.w28{width:149.066667pt;}
.w1a{width:150.400000pt;}
.w18{width:154.400000pt;}
.w17{width:155.400000pt;}
.w34{width:161.426667pt;}
.w2d{width:162.400000pt;}
.w10{width:168.400000pt;}
.w32{width:172.426667pt;}
.w1e{width:176.733333pt;}
.w14{width:177.106667pt;}
.w25{width:189.733333pt;}
.w2{width:191.400000pt;}
.w23{width:198.440000pt;}
.w8{width:216.440000pt;}
.w33{width:255.466667pt;}
.w19{width:266.466667pt;}
.w5{width:401.840000pt;}
.w35{width:490.560000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.000000pt;}
.x40{left:10.333333pt;}
.x43{left:15.706667pt;}
.x42{left:23.040000pt;}
.x20{left:32.666667pt;}
.xf{left:36.366667pt;}
.x11{left:38.333333pt;}
.x4{left:48.033321pt;}
.x15{left:53.373333pt;}
.xc{left:54.360000pt;}
.x22{left:58.706667pt;}
.x21{left:60.666667pt;}
.x16{left:64.373333pt;}
.x27{left:65.700000pt;}
.x1a{left:68.693333pt;}
.x5{left:72.033321pt;}
.x1b{left:74.026667pt;}
.x12{left:77.033333pt;}
.x17{left:79.706667pt;}
.x25{left:82.040000pt;}
.x36{left:86.040000pt;}
.x3a{left:88.366667pt;}
.x32{left:89.706667pt;}
.x14{left:94.700000pt;}
.x6{left:96.033321pt;}
.x3e{left:98.040000pt;}
.x33{left:100.706667pt;}
.xe{left:107.366667pt;}
.x2a{left:108.366667pt;}
.x1e{left:110.066667pt;}
.x4b{left:114.700000pt;}
.x7{left:120.066655pt;}
.x3b{left:122.066667pt;}
.x2c{left:125.026667pt;}
.x28{left:126.360000pt;}
.x31{left:129.026667pt;}
.x1d{left:131.740000pt;}
.x24{left:140.406667pt;}
.x3d{left:142.406667pt;}
.xd{left:144.066655pt;}
.x44{left:153.400000pt;}
.x34{left:158.066667pt;}
.x3f{left:161.740000pt;}
.x2e{left:169.066655pt;}
.x2d{left:172.733321pt;}
.x37{left:175.066667pt;}
.x13{left:180.400000pt;}
.xb{left:184.740000pt;}
.x26{left:210.440000pt;}
.x2b{left:211.440000pt;}
.x10{left:216.440000pt;}
.x30{left:230.100000pt;}
.x9{left:240.440000pt;}
.x47{left:246.440000pt;}
.x19{left:252.440000pt;}
.x1c{left:276.440000pt;}
.x4c{left:277.773333pt;}
.x38{left:284.133333pt;}
.x23{left:285.133333pt;}
.x3c{left:306.466667pt;}
.x1f{left:324.466667pt;}
.xa{left:331.800000pt;}
.x35{left:335.466667pt;}
.x41{left:348.466667pt;}
.x4d{left:353.800000pt;}
.x48{left:357.800000pt;}
.x2f{left:374.506667pt;}
.x39{left:392.173333pt;}
.x3{left:396.173321pt;}
.x4e{left:439.866667pt;}
.x49{left:468.866667pt;}
.x4f{left:533.906667pt;}
.x1{left:555.559988pt;}
.x4a{left:580.240000pt;}
.x50{left:595.906667pt;}
.x2{left:727.639988pt;}
.x46{left:729.626655pt;}
.x45{left:734.959988pt;}
.x29{left:753.626655pt;}
.x18{left:760.999988pt;}
}




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