
    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_ce56eba3a20ae4cb6689fe3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_9c48654984f728ef70b752bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_45712c02cbcf53860ce3ab02.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.698000;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_09409fa8c4df9b35c99d0fa6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_385e96208be6c9412ba753e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_426e6e6b7d682e13d1c04183.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686000;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_76d784f161e78921665508a2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.713000;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_9a00e3f80d7e3f4d2ca533a5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;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_eb74b01b4c166444a0f5d5d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923000;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_aff654c8fdcbd6889257dd0e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2026cfa7b0276c059496ff46.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c14e288d47a0356a2ae44631.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.686000;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:ffd;src:url('chunks/assets/font_53f223541f8b198e5744f9b4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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:ffe;src:url('chunks/assets/font_b6cf0fb7554c3e686c3282c4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.810000;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:fff;src:url('chunks/assets/font_067e0e71870cace67935ae77.woff2')format("woff");}.fff{font-family:fff;line-height:0.653000;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:ff10;src:url('chunks/assets/font_a3cdbea1a9167dee3ed39ad9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893000;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:ff11;src:url('chunks/assets/font_a96af93304082aac16758982.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.723000;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:ff12;src:url('chunks/assets/font_2a06ef7cd577375d785d755c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.657000;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:ff13;src:url('chunks/assets/font_cf571466724585c776959e49.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.999000;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:ff14;src:url('chunks/assets/font_a8474e18271e1807f07b4b8b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.880000;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:ff15;src:url('chunks/assets/font_3dc891f475b5501783ef30b3.woff2')format("woff");}.ff15{font-family:ff15;line-height:3.000000;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:ff16;src:url('chunks/assets/font_96dcbb7c68093f76d86b03cc.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.895000;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:ff17;src:url('chunks/assets/font_e25908decf493021b040bb63.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.703000;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:ff18;src:url('chunks/assets/font_19b1f971db96e8a263dec522.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.713000;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:ff19;src:url('chunks/assets/font_a13e5e1e12fd843fdfda0e76.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.948000;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);}
.v2{vertical-align:-16.872000px;}
.v3{vertical-align:-8.964000px;}
.v14{vertical-align:-6.342000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:5.808000px;}
.v13{vertical-align:8.970000px;}
.v11{vertical-align:14.778000px;}
.vf{vertical-align:16.932000px;}
.v4{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.vd{vertical-align:30.054000px;}
.v9{vertical-align:31.476000px;}
.v10{vertical-align:38.622000px;}
.v5{vertical-align:40.440000px;}
.ve{vertical-align:66.354000px;}
.v7{vertical-align:81.444000px;}
.v6{vertical-align:84.288000px;}
.vc{vertical-align:107.358000px;}
.vb{vertical-align:112.902000px;}
.v8{vertical-align:113.922000px;}
.va{vertical-align:125.292000px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000062px;}
.ls1d{letter-spacing:0.000993px;}
.ls2b{letter-spacing:0.001120px;}
.ls55{letter-spacing:0.001545px;}
.ls3b{letter-spacing:0.002012px;}
.ls21{letter-spacing:0.002685px;}
.ls6{letter-spacing:0.002725px;}
.lsa{letter-spacing:0.002915px;}
.ls50{letter-spacing:0.003093px;}
.ls39{letter-spacing:0.003181px;}
.ls16{letter-spacing:0.003269px;}
.ls5d{letter-spacing:0.003413px;}
.ls48{letter-spacing:0.004200px;}
.ls27{letter-spacing:0.004276px;}
.ls59{letter-spacing:0.004352px;}
.ls5b{letter-spacing:0.005096px;}
.ls5c{letter-spacing:0.005374px;}
.ls64{letter-spacing:0.005691px;}
.ls3{letter-spacing:2.964877px;}
.ls3f{letter-spacing:2.984525px;}
.ls2{letter-spacing:2.984915px;}
.ls10{letter-spacing:2.987108px;}
.ls69{letter-spacing:2.987675px;}
.ls12{letter-spacing:2.988780px;}
.ls53{letter-spacing:2.989460px;}
.ls17{letter-spacing:2.990234px;}
.ls5f{letter-spacing:2.992317px;}
.lse{letter-spacing:2.992766px;}
.lsf{letter-spacing:2.993108px;}
.ls18{letter-spacing:4.490282px;}
.ls28{letter-spacing:7.173181px;}
.ls49{letter-spacing:7.174200px;}
.ls67{letter-spacing:9.956338px;}
.ls41{letter-spacing:9.960538px;}
.ls31{letter-spacing:9.962338px;}
.ls32{letter-spacing:9.963181px;}
.ls44{letter-spacing:9.963269px;}
.ls42{letter-spacing:9.969181px;}
.ls3a{letter-spacing:12.944525px;}
.ls43{letter-spacing:13.277369px;}
.ls2a{letter-spacing:13.278538px;}
.ls56{letter-spacing:13.280338px;}
.ls29{letter-spacing:13.280469px;}
.ls3c{letter-spacing:13.282200px;}
.ls3d{letter-spacing:13.283369px;}
.ls2f{letter-spacing:13.284538px;}
.ls3e{letter-spacing:13.286338px;}
.ls5e{letter-spacing:13.288188px;}
.ls37{letter-spacing:13.288200px;}
.ls25{letter-spacing:14.377120px;}
.ls46{letter-spacing:14.945249px;}
.ls8{letter-spacing:15.084538px;}
.ls2e{letter-spacing:15.426767px;}
.ls57{letter-spacing:16.273460px;}
.ls63{letter-spacing:16.373450px;}
.ls62{letter-spacing:16.376100px;}
.ls1a{letter-spacing:16.601607px;}
.ls4{letter-spacing:16.602538px;}
.ls40{letter-spacing:16.604012px;}
.ls4e{letter-spacing:16.605031px;}
.ls45{letter-spacing:16.605093px;}
.ls19{letter-spacing:16.605269px;}
.ls2d{letter-spacing:17.138338px;}
.ls14{letter-spacing:17.489607px;}
.ls1f{letter-spacing:18.263249px;}
.ls35{letter-spacing:18.587607px;}
.ls34{letter-spacing:18.591269px;}
.ls61{letter-spacing:19.366317px;}
.ls4f{letter-spacing:19.451306px;}
.lsb{letter-spacing:19.872532px;}
.ls22{letter-spacing:20.456338px;}
.ls65{letter-spacing:20.924802px;}
.ls9{letter-spacing:20.946532px;}
.ls7{letter-spacing:21.102538px;}
.ls26{letter-spacing:21.284525px;}
.ls15{letter-spacing:21.396062px;}
.ls51{letter-spacing:22.435460px;}
.ls52{letter-spacing:22.441460px;}
.ls1e{letter-spacing:23.151031px;}
.ls1c{letter-spacing:23.906525px;}
.ls13{letter-spacing:23.923866px;}
.ls36{letter-spacing:24.980525px;}
.ls68{letter-spacing:26.745269px;}
.ls66{letter-spacing:27.632802px;}
.ls23{letter-spacing:27.928200px;}
.ls58{letter-spacing:29.231607px;}
.ls5a{letter-spacing:30.728525px;}
.ls38{letter-spacing:31.359181px;}
.ls5{letter-spacing:32.778538px;}
.ls11{letter-spacing:35.863409px;}
.lsd{letter-spacing:35.869409px;}
.ls4d{letter-spacing:36.254525px;}
.ls4c{letter-spacing:39.455607px;}
.ls4b{letter-spacing:39.465093px;}
.ls54{letter-spacing:42.631460px;}
.lsc{letter-spacing:47.244532px;}
.ls47{letter-spacing:50.342338px;}
.ls1{letter-spacing:69.920915px;}
.ls30{letter-spacing:75.145866px;}
.ls20{letter-spacing:76.530538px;}
.ls2c{letter-spacing:77.377866px;}
.ls60{letter-spacing:118.523320px;}
.ls33{letter-spacing:331.754338px;}
.ls4a{letter-spacing:474.470338px;}
.ls24{letter-spacing:483.686338px;}
.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;}
}
.wsc3{word-spacing:-59.775600px;}
.wsb9{word-spacing:-47.324343px;}
.ws9c{word-spacing:-38.937826px;}
.wsae{word-spacing:-28.955301px;}
.ws1{word-spacing:-24.101616px;}
.wsb{word-spacing:-18.327288px;}
.ws35{word-spacing:-16.605662px;}
.ws18{word-spacing:-16.438350px;}
.ws64{word-spacing:-14.943900px;}
.ws29{word-spacing:-14.920027px;}
.ws25{word-spacing:-13.449600px;}
.ws47{word-spacing:-11.955150px;}
.wsb1{word-spacing:-10.460700px;}
.wsd7{word-spacing:-5.786278px;}
.wsdb{word-spacing:-3.327123px;}
.ws3a{word-spacing:-1.519262px;}
.ws8f{word-spacing:-1.195512px;}
.ws63{word-spacing:-1.075961px;}
.ws124{word-spacing:-0.908591px;}
.ws10f{word-spacing:-0.812950px;}
.ws20{word-spacing:-0.806976px;}
.ws146{word-spacing:-0.717309px;}
.wse8{word-spacing:-0.717307px;}
.ws12b{word-spacing:-0.669488px;}
.wsb3{word-spacing:-0.597756px;}
.ws14c{word-spacing:-0.573847px;}
.wsb2{word-spacing:-0.571691px;}
.ws5a{word-spacing:-0.537980px;}
.ws128{word-spacing:-0.526027px;}
.ws1f{word-spacing:-0.484186px;}
.ws80{word-spacing:-0.478205px;}
.ws78{word-spacing:-0.418429px;}
.wsbb{word-spacing:-0.303131px;}
.wsba{word-spacing:-0.297131px;}
.ws157{word-spacing:-0.239103px;}
.ws9d{word-spacing:-0.179327px;}
.ws129{word-spacing:-0.143462px;}
.wsf7{word-spacing:-0.119551px;}
.ws2f{word-spacing:-0.059776px;}
.ws19{word-spacing:-0.053798px;}
.ws4a{word-spacing:-0.047821px;}
.wsd9{word-spacing:-0.041843px;}
.wsd8{word-spacing:-0.029888px;}
.ws74{word-spacing:0.000000px;}
.ws34{word-spacing:0.059776px;}
.ws9{word-spacing:0.065455px;}
.ws13e{word-spacing:0.143462px;}
.ws14d{word-spacing:0.239103px;}
.ws105{word-spacing:0.334744px;}
.ws7d{word-spacing:0.537980px;}
.ws6{word-spacing:0.589091px;}
.ws8e{word-spacing:0.597756px;}
.ws5d{word-spacing:0.657532px;}
.ws46{word-spacing:0.669488px;}
.wscf{word-spacing:0.777083px;}
.ws154{word-spacing:0.781383px;}
.ws1b{word-spacing:0.806976px;}
.ws155{word-spacing:0.812950px;}
.wsa6{word-spacing:0.836858px;}
.ws139{word-spacing:0.956412px;}
.ws123{word-spacing:1.004233px;}
.ws131{word-spacing:1.061072px;}
.ws132{word-spacing:1.099874px;}
.ws5c{word-spacing:1.135736px;}
.ws11c{word-spacing:1.147694px;}
.ws50{word-spacing:1.195512px;}
.ws116{word-spacing:1.195515px;}
.ws7f{word-spacing:1.255288px;}
.ws101{word-spacing:1.315063px;}
.wsf4{word-spacing:1.386797px;}
.wsdc{word-spacing:1.434126px;}
.wsdd{word-spacing:1.434614px;}
.ws119{word-spacing:1.482439px;}
.wsb7{word-spacing:1.494390px;}
.wsf0{word-spacing:1.520938px;}
.ws117{word-spacing:1.530259px;}
.ws3f{word-spacing:1.554166px;}
.ws22{word-spacing:1.560154px;}
.ws5e{word-spacing:1.733492px;}
.wsfc{word-spacing:1.912819px;}
.ws11f{word-spacing:1.912824px;}
.wsc4{word-spacing:1.972595px;}
.ws150{word-spacing:2.008465px;}
.ws89{word-spacing:2.032370px;}
.wsff{word-spacing:2.092146px;}
.ws59{word-spacing:2.151922px;}
.ws149{word-spacing:2.151927px;}
.ws14a{word-spacing:2.199748px;}
.ws32{word-spacing:2.570351px;}
.wsd3{word-spacing:2.630126px;}
.ws12c{word-spacing:2.630133px;}
.ws102{word-spacing:2.689902px;}
.wsad{word-spacing:2.749678px;}
.ws11e{word-spacing:2.773595px;}
.wsa2{word-spacing:2.988780px;}
.ws142{word-spacing:3.108339px;}
.ws83{word-spacing:3.168107px;}
.ws27{word-spacing:3.174106px;}
.wsbd{word-spacing:3.227882px;}
.ws115{word-spacing:3.251801px;}
.wsa8{word-spacing:3.347434px;}
.ws71{word-spacing:3.466985px;}
.ws2{word-spacing:3.469094px;}
.wsa4{word-spacing:3.526760px;}
.ws15a{word-spacing:3.538724px;}
.ws8c{word-spacing:3.586536px;}
.ws13d{word-spacing:3.682186px;}
.ws87{word-spacing:3.706087px;}
.ws13c{word-spacing:3.730007px;}
.ws73{word-spacing:3.765863px;}
.ws24{word-spacing:3.819686px;}
.wsf2{word-spacing:3.825638px;}
.ws13b{word-spacing:3.873469px;}
.ws11{word-spacing:3.873474px;}
.ws12{word-spacing:3.959551px;}
.ws153{word-spacing:3.969110px;}
.ws12a{word-spacing:4.016930px;}
.ws13f{word-spacing:4.064751px;}
.wse0{word-spacing:4.244068px;}
.wsc6{word-spacing:4.303843px;}
.ws12e{word-spacing:4.351675px;}
.ws4e{word-spacing:4.423394px;}
.wse{word-spacing:4.450913px;}
.ws8b{word-spacing:4.483170px;}
.ws11b{word-spacing:4.495136px;}
.wsc0{word-spacing:4.503025px;}
.wsc1{word-spacing:4.505142px;}
.ws11a{word-spacing:4.542957px;}
.wsc5{word-spacing:4.602721px;}
.wsfb{word-spacing:4.662497px;}
.ws84{word-spacing:4.722272px;}
.ws112{word-spacing:4.734239px;}
.ws159{word-spacing:4.777760px;}
.ws141{word-spacing:4.779356px;}
.ws49{word-spacing:4.782060px;}
.ws158{word-spacing:4.829881px;}
.ws79{word-spacing:4.841824px;}
.ws107{word-spacing:4.877701px;}
.ws4b{word-spacing:4.925522px;}
.ws72{word-spacing:5.021150px;}
.wsac{word-spacing:5.140702px;}
.ws127{word-spacing:5.308087px;}
.wsef{word-spacing:5.439580px;}
.ws10a{word-spacing:5.451548px;}
.ws11d{word-spacing:5.499369px;}
.ws92{word-spacing:5.559131px;}
.ws111{word-spacing:5.595010px;}
.wsaf{word-spacing:5.618906px;}
.ws137{word-spacing:5.690651px;}
.wsd{word-spacing:5.694550px;}
.ws136{word-spacing:5.722423px;}
.wsf5{word-spacing:5.738472px;}
.wse9{word-spacing:5.798233px;}
.wsbc{word-spacing:5.815146px;}
.ws44{word-spacing:5.834113px;}
.ws52{word-spacing:5.858009px;}
.ws9e{word-spacing:5.917784px;}
.ws6b{word-spacing:5.922452px;}
.wsec{word-spacing:5.930000px;}
.wseb{word-spacing:5.940533px;}
.ws6a{word-spacing:5.947900px;}
.wsa1{word-spacing:5.953900px;}
.ws6c{word-spacing:5.963317px;}
.wsdf{word-spacing:5.974774px;}
.wsc7{word-spacing:5.975982px;}
.ws31{word-spacing:5.977560px;}
.ws48{word-spacing:5.977575px;}
.ws40{word-spacing:6.037336px;}
.wsf9{word-spacing:6.097111px;}
.ws110{word-spacing:6.121037px;}
.wsea{word-spacing:6.216662px;}
.wsa{word-spacing:6.283642px;}
.wsd6{word-spacing:6.336214px;}
.ws30{word-spacing:6.455765px;}
.ws1c{word-spacing:6.455808px;}
.wsde{word-spacing:6.515540px;}
.ws10e{word-spacing:6.551422px;}
.wsf8{word-spacing:6.575316px;}
.ws17{word-spacing:6.575340px;}
.ws143{word-spacing:6.647063px;}
.wsed{word-spacing:6.694867px;}
.ws3b{word-spacing:6.748738px;}
.wsb4{word-spacing:6.902869px;}
.ws21{word-spacing:6.939994px;}
.ws106{word-spacing:7.029628px;}
.wsb6{word-spacing:7.049083px;}
.ws2d{word-spacing:7.053521px;}
.ws138{word-spacing:7.077449px;}
.ws36{word-spacing:7.113296px;}
.wsc{word-spacing:7.134551px;}
.ws135{word-spacing:7.220911px;}
.ws14{word-spacing:7.396370px;}
.ws85{word-spacing:7.412174px;}
.wsd2{word-spacing:7.591501px;}
.ws70{word-spacing:7.651277px;}
.ws156{word-spacing:7.699117px;}
.ws53{word-spacing:7.830604px;}
.ws113{word-spacing:7.842578px;}
.ws76{word-spacing:8.009930px;}
.wsfe{word-spacing:8.069706px;}
.ws122{word-spacing:8.081681px;}
.ws120{word-spacing:8.094997px;}
.ws13{word-spacing:8.116370px;}
.ws9f{word-spacing:8.129482px;}
.ws121{word-spacing:8.129502px;}
.ws16{word-spacing:8.177323px;}
.ws0{word-spacing:8.177334px;}
.wsb0{word-spacing:8.189257px;}
.ws144{word-spacing:8.416426px;}
.ws3c{word-spacing:8.428360px;}
.ws12d{word-spacing:8.464246px;}
.ws91{word-spacing:8.488135px;}
.ws75{word-spacing:8.667462px;}
.ws68{word-spacing:8.787013px;}
.wsfa{word-spacing:8.906564px;}
.ws145{word-spacing:8.990273px;}
.wsb5{word-spacing:9.133146px;}
.wsb8{word-spacing:9.134869px;}
.wsf3{word-spacing:9.205442px;}
.ws130{word-spacing:9.229376px;}
.ws57{word-spacing:9.265218px;}
.ws152{word-spacing:9.325017px;}
.ws151{word-spacing:9.334423px;}
.ws60{word-spacing:9.504320px;}
.ws5{word-spacing:9.621826px;}
.ws114{word-spacing:9.707582px;}
.ws23{word-spacing:9.737510px;}
.wsaa{word-spacing:9.743423px;}
.ws10{word-spacing:9.812778px;}
.wsc2{word-spacing:9.982525px;}
.ws14f{word-spacing:10.042326px;}
.wsbf{word-spacing:10.161852px;}
.ws43{word-spacing:10.185788px;}
.ws61{word-spacing:10.221628px;}
.ws2c{word-spacing:10.341179px;}
.ws41{word-spacing:10.400954px;}
.wsa0{word-spacing:10.424891px;}
.ws98{word-spacing:10.460730px;}
.ws10d{word-spacing:10.472711px;}
.ws77{word-spacing:10.520506px;}
.wsf1{word-spacing:10.640057px;}
.ws99{word-spacing:10.699832px;}
.ws2e{word-spacing:10.819384px;}
.wse6{word-spacing:10.879159px;}
.ws1a{word-spacing:10.921075px;}
.ws33{word-spacing:10.938935px;}
.ws14b{word-spacing:10.950917px;}
.ws95{word-spacing:10.998710px;}
.ws51{word-spacing:11.118262px;}
.wscc{word-spacing:11.137077px;}
.ws82{word-spacing:11.178037px;}
.ws14e{word-spacing:11.190020px;}
.ws56{word-spacing:11.297588px;}
.ws67{word-spacing:11.417140px;}
.ws9b{word-spacing:11.476915px;}
.wsf{word-spacing:11.520010px;}
.ws8a{word-spacing:11.596466px;}
.ws5b{word-spacing:11.656242px;}
.wse7{word-spacing:11.775793px;}
.wsd0{word-spacing:11.835569px;}
.wsa3{word-spacing:11.895344px;}
.ws94{word-spacing:11.955120px;}
.ws126{word-spacing:12.002971px;}
.ws7b{word-spacing:12.014896px;}
.ws125{word-spacing:12.050791px;}
.ws4f{word-spacing:12.074671px;}
.ws103{word-spacing:12.134447px;}
.wsa9{word-spacing:12.194222px;}
.ws3d{word-spacing:12.253998px;}
.ws62{word-spacing:12.373549px;}
.ws10b{word-spacing:12.481177px;}
.ws9a{word-spacing:12.493100px;}
.ws58{word-spacing:12.612652px;}
.wse2{word-spacing:12.672427px;}
.wse1{word-spacing:12.689992px;}
.wse4{word-spacing:12.732203px;}
.ws140{word-spacing:12.768100px;}
.wsce{word-spacing:12.791978px;}
.wscd{word-spacing:12.794134px;}
.wsca{word-spacing:12.802309px;}
.wsab{word-spacing:12.851754px;}
.ws39{word-spacing:13.054738px;}
.ws37{word-spacing:13.150632px;}
.ws90{word-spacing:13.210408px;}
.ws8d{word-spacing:13.329959px;}
.ws45{word-spacing:13.437589px;}
.wsa7{word-spacing:13.509286px;}
.ws13a{word-spacing:13.581050px;}
.ws109{word-spacing:13.628871px;}
.ws81{word-spacing:13.688612px;}
.ws69{word-spacing:13.808164px;}
.wsf6{word-spacing:13.963615px;}
.ws66{word-spacing:14.047266px;}
.ws134{word-spacing:14.154898px;}
.wsa5{word-spacing:14.166817px;}
.ws147{word-spacing:14.202718px;}
.ws15{word-spacing:14.346180px;}
.ws15b{word-spacing:14.489642px;}
.ws133{word-spacing:14.633104px;}
.wsee{word-spacing:14.645022px;}
.ws38{word-spacing:14.704798px;}
.wsd5{word-spacing:14.764573px;}
.ws65{word-spacing:14.824349px;}
.ws7{word-spacing:14.989103px;}
.ws54{word-spacing:15.183002px;}
.wsd4{word-spacing:15.362329px;}
.ws108{word-spacing:15.589516px;}
.ws42{word-spacing:15.637336px;}
.ws2b{word-spacing:15.720983px;}
.ws148{word-spacing:15.876439px;}
.ws100{word-spacing:15.960085px;}
.ws1d{word-spacing:15.978125px;}
.wsfd{word-spacing:16.019861px;}
.wsd1{word-spacing:16.079636px;}
.ws55{word-spacing:16.199188px;}
.wsc8{word-spacing:16.226653px;}
.wse5{word-spacing:16.318739px;}
.ws26{word-spacing:16.569907px;}
.ws118{word-spacing:16.785031px;}
.ws6f{word-spacing:16.916495px;}
.ws1e{word-spacing:17.000294px;}
.ws6e{word-spacing:17.036046px;}
.ws8{word-spacing:17.083651px;}
.ws6d{word-spacing:17.095822px;}
.ws96{word-spacing:17.753353px;}
.ws5f{word-spacing:17.872904px;}
.ws28{word-spacing:17.932680px;}
.wsbe{word-spacing:18.291334px;}
.ws104{word-spacing:18.351109px;}
.ws7e{word-spacing:18.590212px;}
.ws93{word-spacing:18.649987px;}
.ws10c{word-spacing:18.650034px;}
.ws97{word-spacing:18.769538px;}
.ws7a{word-spacing:18.948865px;}
.wse3{word-spacing:19.307519px;}
.ws12f{word-spacing:19.319522px;}
.ws2a{word-spacing:19.486846px;}
.ws7c{word-spacing:19.666172px;}
.ws88{word-spacing:19.905275px;}
.ws86{word-spacing:21.399665px;}
.ws3e{word-spacing:23.491811px;}
.ws4d{word-spacing:29.648772px;}
.wscb{word-spacing:32.180653px;}
.ws4c{word-spacing:32.278905px;}
.ws3{word-spacing:33.564941px;}
.ws4{word-spacing:33.578210px;}
.wsda{word-spacing:62.690275px;}
.wsc9{word-spacing:409.004653px;}
._c{margin-left:-11.476944px;}
._7{margin-left:-9.606193px;}
._a{margin-left:-8.091257px;}
._9{margin-left:-6.972253px;}
._5{margin-left:-5.170913px;}
._8{margin-left:-3.202064px;}
._2{margin-left:-1.767274px;}
._3{width:1.767274px;}
._1{width:2.926625px;}
._18{width:4.918815px;}
._11{width:6.351187px;}
._d{width:11.620454px;}
._f{width:15.481880px;}
._e{width:17.630892px;}
._17{width:21.997421px;}
._14{width:26.731715px;}
._b{width:28.205722px;}
._13{width:29.887800px;}
._6{width:31.680026px;}
._10{width:33.474420px;}
._15{width:35.339423px;}
._0{width:43.038600px;}
._12{width:44.760082px;}
._16{width:51.837530px;}
._4{width:63.752780px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:29.887800px;}
.fs8{font-size:35.865600px;}
.fs9{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs7{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs4{font-size:65.753400px;}
.fs0{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.fs3{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.ya{bottom:68.958000px;}
.y48{bottom:113.332500px;}
.y19c{bottom:113.334000px;}
.y47{bottom:126.783000px;}
.y70{bottom:131.265000px;}
.yb7{bottom:131.266500px;}
.y9{bottom:132.649500px;}
.y46{bottom:140.232000px;}
.y19b{bottom:140.233500px;}
.y45{bottom:144.451500px;}
.y6f{bottom:149.197500px;}
.ya3{bottom:149.199000px;}
.ye2{bottom:150.361500px;}
.y8{bottom:152.973000px;}
.y44{bottom:153.681000px;}
.y19a{bottom:153.895500px;}
.y154{bottom:154.293000px;}
.ye1{bottom:164.061000px;}
.y6e{bottom:167.131500px;}
.y199{bottom:167.346000px;}
.y153{bottom:167.742000px;}
.ye0{bottom:168.294000px;}
.y43{bottom:171.351000px;}
.y7{bottom:173.296500px;}
.y42{bottom:180.580500px;}
.y198{bottom:180.795000px;}
.y152{bottom:181.192500px;}
.y6d{bottom:185.064000px;}
.ydf{bottom:186.226500px;}
.y6{bottom:193.620000px;}
.y197{bottom:194.458500px;}
.y151{bottom:194.641500px;}
.y41{bottom:198.249000px;}
.y6c{bottom:202.996500px;}
.y112{bottom:203.394000px;}
.ya2{bottom:203.476500px;}
.yde{bottom:204.159000px;}
.y40{bottom:207.480000px;}
.y196{bottom:207.907500px;}
.y150{bottom:208.702500px;}
.y5{bottom:213.943500px;}
.y3f{bottom:220.929000px;}
.y111{bottom:221.326500px;}
.y195{bottom:221.356500px;}
.ya1{bottom:221.409000px;}
.ydd{bottom:222.091500px;}
.y14f{bottom:222.151500px;}
.y4{bottom:234.268500px;}
.y3e{bottom:234.379500px;}
.y194{bottom:235.020000px;}
.y14e{bottom:235.602000px;}
.y6b{bottom:238.861500px;}
.yb6{bottom:238.863000px;}
.y110{bottom:239.259000px;}
.ya0{bottom:239.343000px;}
.y3d{bottom:247.828500px;}
.y193{bottom:248.470500px;}
.y14d{bottom:249.051000px;}
.ydc{bottom:254.409000px;}
.yb5{bottom:256.795500px;}
.y10f{bottom:257.191500px;}
.y9f{bottom:257.275500px;}
.y3c{bottom:261.277500px;}
.y192{bottom:262.132500px;}
.y14c{bottom:263.112000px;}
.ydb{bottom:264.660000px;}
.y6a{bottom:265.872000px;}
.y3b{bottom:274.728000px;}
.y10e{bottom:275.125500px;}
.y9e{bottom:275.208000px;}
.y191{bottom:275.583000px;}
.y14b{bottom:276.562500px;}
.y11a{bottom:276.961500px;}
.y190{bottom:289.032000px;}
.y14a{bottom:290.011500px;}
.yb4{bottom:292.660500px;}
.y10d{bottom:293.058000px;}
.y9d{bottom:293.140500px;}
.y119{bottom:294.894000px;}
.y69{bottom:300.084000px;}
.y18f{bottom:302.481000px;}
.y149{bottom:303.460500px;}
.y3a{bottom:305.727000px;}
.yda{bottom:306.855000px;}
.yb3{bottom:310.593000px;}
.y10c{bottom:310.990500px;}
.y9c{bottom:311.073000px;}
.y18e{bottom:315.931500px;}
.y148{bottom:316.911000px;}
.y68{bottom:318.016500px;}
.y39{bottom:323.659500px;}
.yd9{bottom:324.787500px;}
.yb2{bottom:328.525500px;}
.y9b{bottom:329.007000px;}
.y3{bottom:329.197500px;}
.y18d{bottom:329.593500px;}
.y147{bottom:330.972000px;}
.y67{bottom:335.949000px;}
.y10b{bottom:336.013500px;}
.y38{bottom:341.593500px;}
.y18c{bottom:343.044000px;}
.y146{bottom:344.421000px;}
.y9a{bottom:346.939500px;}
.y118{bottom:349.168500px;}
.y66{bottom:353.881500px;}
.yb1{bottom:355.180500px;}
.yd7{bottom:355.341000px;}
.y18b{bottom:356.493000px;}
.y145{bottom:357.870000px;}
.y37{bottom:359.526000px;}
.y2{bottom:362.080500px;}
.y117{bottom:362.619000px;}
.y99{bottom:364.872000px;}
.yd6{bottom:365.592000px;}
.y10a{bottom:367.408500px;}
.y18a{bottom:369.943500px;}
.y144{bottom:371.320500px;}
.y65{bottom:371.814000px;}
.y36{bottom:377.458500px;}
.y98{bottom:382.804500px;}
.y189{bottom:383.605500px;}
.y109{bottom:385.342500px;}
.y143{bottom:385.381500px;}
.y64{bottom:389.746500px;}
.yd8{bottom:390.549000px;}
.y1{bottom:394.965000px;}
.y35{bottom:395.391000px;}
.y188{bottom:397.056000px;}
.yd5{bottom:397.248000px;}
.y142{bottom:398.830500px;}
.y97{bottom:401.217000px;}
.y108{bottom:403.275000px;}
.yb0{bottom:404.598000px;}
.yd4{bottom:407.499000px;}
.y187{bottom:410.505000px;}
.y63{bottom:412.206000px;}
.y141{bottom:412.279500px;}
.y34{bottom:413.323500px;}
.yaf{bottom:418.048500px;}
.y96{bottom:419.151000px;}
.y107{bottom:421.207500px;}
.y186{bottom:424.168500px;}
.y140{bottom:426.340500px;}
.y62{bottom:430.138500px;}
.y33{bottom:431.256000px;}
.y95{bottom:437.083500px;}
.y185{bottom:437.617500px;}
.y106{bottom:439.140000px;}
.y13f{bottom:439.791000px;}
.y61{bottom:448.072500px;}
.y32{bottom:449.190000px;}
.y184{bottom:451.066500px;}
.y13e{bottom:453.240000px;}
.y94{bottom:455.016000px;}
.y105{bottom:457.072500px;}
.y183{bottom:464.517000px;}
.y60{bottom:466.005000px;}
.y13d{bottom:466.689000px;}
.y31{bottom:467.122500px;}
.yd3{bottom:471.523500px;}
.y93{bottom:472.948500px;}
.y104{bottom:475.006500px;}
.y182{bottom:478.179000px;}
.y13c{bottom:480.750000px;}
.y30{bottom:485.055000px;}
.y5f{bottom:488.464500px;}
.yd2{bottom:489.456000px;}
.y181{bottom:491.629500px;}
.y103{bottom:492.939000px;}
.y13b{bottom:494.200500px;}
.y92{bottom:494.884500px;}
.y2f{bottom:502.987500px;}
.y180{bottom:505.078500px;}
.y5e{bottom:507.124500px;}
.y13a{bottom:507.649500px;}
.yd1{bottom:508.552500px;}
.y102{bottom:510.871500px;}
.y91{bottom:512.817000px;}
.y17f{bottom:518.742000px;}
.y2e{bottom:520.920000px;}
.y139{bottom:521.098500px;}
.y5d{bottom:525.057000px;}
.yd0{bottom:526.485000px;}
.y101{bottom:528.804000px;}
.y90{bottom:530.749500px;}
.y17e{bottom:532.191000px;}
.y138{bottom:535.159500px;}
.y2d{bottom:539.268000px;}
.y5c{bottom:542.991000px;}
.y17d{bottom:545.641500px;}
.y100{bottom:546.736500px;}
.y137{bottom:548.610000px;}
.y8f{bottom:548.682000px;}
.y13{bottom:551.892000px;}
.y2c{bottom:557.200500px;}
.y116{bottom:557.236500px;}
.ycf{bottom:559.011000px;}
.y17c{bottom:559.303500px;}
.y5b{bottom:560.923500px;}
.y136{bottom:562.059000px;}
.yff{bottom:564.669000px;}
.y8e{bottom:566.616000px;}
.yce{bottom:569.262000px;}
.y115{bottom:570.685500px;}
.y12{bottom:572.217000px;}
.y17b{bottom:572.754000px;}
.y2b{bottom:575.133000px;}
.y135{bottom:576.120000px;}
.y5a{bottom:578.856000px;}
.yfe{bottom:582.603000px;}
.y8d{bottom:584.548500px;}
.y17a{bottom:586.203000px;}
.y134{bottom:589.569000px;}
.y11{bottom:592.540500px;}
.y2a{bottom:593.065500px;}
.y59{bottom:596.788500px;}
.y179{bottom:599.652000px;}
.yfd{bottom:600.535500px;}
.y8c{bottom:602.481000px;}
.y29{bottom:610.999500px;}
.y178{bottom:613.315500px;}
.y58{bottom:614.721000px;}
.ycd{bottom:615.193500px;}
.y133{bottom:618.364500px;}
.yfc{bottom:618.865500px;}
.y8b{bottom:620.413500px;}
.y177{bottom:626.766000px;}
.y10{bottom:628.585500px;}
.y28{bottom:628.932000px;}
.y57{bottom:632.655000px;}
.ycc{bottom:633.126000px;}
.yae{bottom:633.256500px;}
.yfb{bottom:636.798000px;}
.y176{bottom:640.215000px;}
.y8a{bottom:642.349500px;}
.y27{bottom:646.864500px;}
.y56{bottom:650.587500px;}
.yad{bottom:651.190500px;}
.ycb{bottom:652.221000px;}
.y175{bottom:653.878500px;}
.yfa{bottom:654.730500px;}
.y132{bottom:655.737000px;}
.y89{bottom:660.282000px;}
.y26{bottom:664.797000px;}
.y174{bottom:667.327500px;}
.y55{bottom:668.520000px;}
.yac{bottom:669.123000px;}
.yca{bottom:670.153500px;}
.y131{bottom:673.671000px;}
.y88{bottom:678.214500px;}
.y173{bottom:680.776500px;}
.yf9{bottom:681.421500px;}
.y54{bottom:686.452500px;}
.yab{bottom:687.055500px;}
.yf8{bottom:687.403500px;}
.y25{bottom:689.923500px;}
.y130{bottom:691.603500px;}
.y172{bottom:694.440000px;}
.y87{bottom:696.147000px;}
.yc9{bottom:699.150000px;}
.yf7{bottom:699.978000px;}
.y53{bottom:704.385000px;}
.yaa{bottom:704.988000px;}
.y171{bottom:707.889000px;}
.yc8{bottom:709.401000px;}
.y12f{bottom:709.536000px;}
.y86{bottom:714.079500px;}
.y170{bottom:721.339500px;}
.y52{bottom:722.317500px;}
.ya9{bottom:722.920500px;}
.yf{bottom:726.726000px;}
.y12e{bottom:727.468500px;}
.y85{bottom:732.013500px;}
.y16f{bottom:735.001500px;}
.yf6{bottom:738.006000px;}
.y51{bottom:740.251500px;}
.y24{bottom:740.565000px;}
.ya8{bottom:740.853000px;}
.y12d{bottom:746.502000px;}
.y16e{bottom:748.452000px;}
.y84{bottom:749.946000px;}
.yc7{bottom:753.984000px;}
.y23{bottom:755.923500px;}
.yf5{bottom:755.938500px;}
.y50{bottom:758.184000px;}
.ya7{bottom:758.787000px;}
.ye{bottom:759.609000px;}
.y16d{bottom:761.901000px;}
.y12c{bottom:764.434500px;}
.y83{bottom:767.878500px;}
.y114{bottom:767.910000px;}
.y22{bottom:770.868000px;}
.yc6{bottom:771.916500px;}
.yf4{bottom:773.871000px;}
.y16c{bottom:775.351500px;}
.y4f{bottom:776.116500px;}
.ya6{bottom:776.719500px;}
.y113{bottom:781.359000px;}
.y12b{bottom:782.367000px;}
.y21{bottom:785.811000px;}
.y82{bottom:786.291000px;}
.y16b{bottom:789.013500px;}
.yc5{bottom:789.850500px;}
.yf3{bottom:791.803500px;}
.yd{bottom:792.493500px;}
.y4e{bottom:794.049000px;}
.ya5{bottom:794.652000px;}
.y12a{bottom:800.299500px;}
.y20{bottom:800.755500px;}
.y16a{bottom:802.464000px;}
.y81{bottom:804.225000px;}
.yf2{bottom:809.736000px;}
.y4d{bottom:812.710500px;}
.yc4{bottom:813.225000px;}
.y1f{bottom:815.698500px;}
.y169{bottom:815.913000px;}
.y129{bottom:818.233500px;}
.y80{bottom:822.157500px;}
.yc{bottom:825.376500px;}
.yf1{bottom:827.670000px;}
.y168{bottom:829.576500px;}
.y1e{bottom:830.643000px;}
.yc3{bottom:831.159000px;}
.y128{bottom:836.166000px;}
.y7f{bottom:840.090000px;}
.y167{bottom:843.025500px;}
.ya4{bottom:844.753500px;}
.y1d{bottom:845.587500px;}
.yf0{bottom:845.602500px;}
.y4c{bottom:848.575500px;}
.yc2{bottom:849.091500px;}
.y127{bottom:854.098500px;}
.y166{bottom:856.474500px;}
.yb{bottom:858.261000px;}
.y1c{bottom:860.530500px;}
.y7e{bottom:862.026000px;}
.yef{bottom:863.535000px;}
.y4b{bottom:866.508000px;}
.y165{bottom:869.925000px;}
.y126{bottom:872.031000px;}
.yc1{bottom:872.467500px;}
.y1b{bottom:875.475000px;}
.y7d{bottom:879.958500px;}
.yee{bottom:881.467500px;}
.y164{bottom:883.587000px;}
.y4a{bottom:884.442000px;}
.y125{bottom:889.963500px;}
.yc0{bottom:890.400000px;}
.y1a{bottom:890.419500px;}
.y163{bottom:897.037500px;}
.y7c{bottom:897.891000px;}
.yed{bottom:899.797500px;}
.y49{bottom:902.374500px;}
.y19{bottom:905.362500px;}
.y124{bottom:908.997000px;}
.ybf{bottom:909.495000px;}
.y162{bottom:910.486500px;}
.y7b{bottom:915.823500px;}
.yec{bottom:917.730000px;}
.y18{bottom:920.307000px;}
.y161{bottom:923.937000px;}
.y123{bottom:926.929500px;}
.ybe{bottom:927.427500px;}
.y7a{bottom:933.756000px;}
.yeb{bottom:935.662500px;}
.y160{bottom:937.599000px;}
.y122{bottom:944.862000px;}
.ybd{bottom:945.360000px;}
.y15f{bottom:951.049500px;}
.y79{bottom:955.692000px;}
.yea{bottom:962.151000px;}
.y121{bottom:962.796000px;}
.ybc{bottom:963.292500px;}
.y15e{bottom:964.498500px;}
.ye9{bottom:965.845500px;}
.y17{bottom:972.262500px;}
.y78{bottom:973.624500px;}
.y15d{bottom:978.162000px;}
.y120{bottom:980.728500px;}
.ybb{bottom:981.226500px;}
.y77{bottom:991.557000px;}
.y15c{bottom:991.611000px;}
.y16{bottom:992.235000px;}
.y11f{bottom:998.661000px;}
.yba{bottom:999.159000px;}
.ye8{bottom:1003.873500px;}
.y15b{bottom:1005.060000px;}
.y76{bottom:1009.491000px;}
.y11e{bottom:1016.593500px;}
.yb9{bottom:1017.091500px;}
.y15a{bottom:1018.723500px;}
.ye7{bottom:1021.806000px;}
.y75{bottom:1027.423500px;}
.y159{bottom:1032.174000px;}
.y19f{bottom:1032.387000px;}
.y11d{bottom:1034.526000px;}
.y15{bottom:1039.309500px;}
.ye6{bottom:1039.738500px;}
.yb8{bottom:1043.800500px;}
.y74{bottom:1045.356000px;}
.y158{bottom:1045.623000px;}
.y19e{bottom:1045.837500px;}
.y11c{bottom:1052.458500px;}
.ye5{bottom:1057.671000px;}
.y157{bottom:1059.286500px;}
.y73{bottom:1063.288500px;}
.y11b{bottom:1070.392500px;}
.ye4{bottom:1071.372000px;}
.y156{bottom:1072.735500px;}
.ye3{bottom:1075.603500px;}
.y14{bottom:1081.152000px;}
.y72{bottom:1081.701000px;}
.y155{bottom:1086.184500px;}
.y19d{bottom:1086.186000px;}
.y71{bottom:1099.635000px;}
.hf{height:23.850624px;}
.h28{height:31.382100px;}
.he{height:32.900573px;}
.h2b{height:33.134573px;}
.h11{height:33.140573px;}
.h10{height:35.865450px;}
.hb{height:37.336090px;}
.ha{height:37.605082px;}
.h13{height:41.006062px;}
.hc{height:41.125613px;}
.h12{height:42.141798px;}
.h2a{height:43.576412px;}
.hd{height:44.831700px;}
.h9{height:45.568339px;}
.h3{height:46.865494px;}
.h29{height:48.506675px;}
.h1f{height:50.770746px;}
.h22{height:50.776746px;}
.h14{height:53.072100px;}
.h1e{height:53.078100px;}
.h24{height:53.758746px;}
.h8{height:55.554699px;}
.h21{height:58.057613px;}
.h26{height:59.609700px;}
.h5{height:61.459121px;}
.h23{height:61.757700px;}
.h2{height:64.557900px;}
.h20{height:67.702746px;}
.h25{height:68.536746px;}
.h4{height:77.469300px;}
.h1d{height:81.446062px;}
.h15{height:82.581798px;}
.h17{height:83.145798px;}
.h16{height:85.271700px;}
.h18{height:86.679024px;}
.h7{height:98.701718px;}
.h27{height:109.473024px;}
.h1b{height:116.313024px;}
.h19{height:126.275700px;}
.h1a{height:127.683024px;}
.h1c{height:144.284100px;}
.h6{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:73.446000px;}
.x5{left:85.039500px;}
.x13{left:88.390500px;}
.x3e{left:100.834500px;}
.x1b{left:103.479000px;}
.x15{left:104.649000px;}
.xf{left:107.215500px;}
.x4{left:112.039500px;}
.xb{left:116.770500px;}
.x24{left:124.740000px;}
.xe{left:128.025000px;}
.x9{left:134.142000px;}
.x12{left:138.060000px;}
.x41{left:150.432000px;}
.xc{left:154.848000px;}
.xa{left:163.387500px;}
.x8{left:167.104500px;}
.x22{left:173.808000px;}
.x11{left:179.811000px;}
.x16{left:188.551500px;}
.x14{left:203.430000px;}
.x26{left:205.450500px;}
.x29{left:209.488500px;}
.x1e{left:211.792500px;}
.x2b{left:225.183000px;}
.x25{left:229.092000px;}
.x27{left:232.357500px;}
.x1f{left:240.667500px;}
.x2{left:259.951500px;}
.x2a{left:262.149000px;}
.x3d{left:273.027000px;}
.x20{left:278.628000px;}
.x2c{left:279.790500px;}
.x23{left:291.811500px;}
.x21{left:293.082000px;}
.x40{left:300.540000px;}
.x36{left:323.784000px;}
.x1{left:328.078500px;}
.x3f{left:339.598500px;}
.x3{left:355.876500px;}
.xd{left:415.275000px;}
.x28{left:432.609000px;}
.x7{left:453.928500px;}
.x17{left:467.967000px;}
.x39{left:473.944500px;}
.x6{left:480.928500px;}
.x18{left:482.910000px;}
.x3a{left:495.355500px;}
.x19{left:498.000000px;}
.x1a{left:506.598000px;}
.x31{left:514.275000px;}
.x32{left:516.958500px;}
.x1d{left:530.097000px;}
.x1c{left:543.810000px;}
.x35{left:548.239500px;}
.x33{left:565.167000px;}
.x2e{left:586.906500px;}
.x2f{left:599.898000px;}
.x37{left:602.641500px;}
.x34{left:608.760000px;}
.x38{left:614.418000px;}
.x30{left:681.462000px;}
.x3c{left:700.366500px;}
.x3b{left:744.004500px;}
.x2d{left:808.785000px;}
@media print{
.v2{vertical-align:-14.997333pt;}
.v3{vertical-align:-7.968000pt;}
.v14{vertical-align:-5.637333pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:5.162667pt;}
.v13{vertical-align:7.973333pt;}
.v11{vertical-align:13.136000pt;}
.vf{vertical-align:15.050667pt;}
.v4{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.vd{vertical-align:26.714667pt;}
.v9{vertical-align:27.978667pt;}
.v10{vertical-align:34.330667pt;}
.v5{vertical-align:35.946667pt;}
.ve{vertical-align:58.981333pt;}
.v7{vertical-align:72.394667pt;}
.v6{vertical-align:74.922667pt;}
.vc{vertical-align:95.429333pt;}
.vb{vertical-align:100.357333pt;}
.v8{vertical-align:101.264000pt;}
.va{vertical-align:111.370667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000055pt;}
.ls1d{letter-spacing:0.000882pt;}
.ls2b{letter-spacing:0.000996pt;}
.ls55{letter-spacing:0.001373pt;}
.ls3b{letter-spacing:0.001788pt;}
.ls21{letter-spacing:0.002387pt;}
.ls6{letter-spacing:0.002422pt;}
.lsa{letter-spacing:0.002591pt;}
.ls50{letter-spacing:0.002750pt;}
.ls39{letter-spacing:0.002827pt;}
.ls16{letter-spacing:0.002906pt;}
.ls5d{letter-spacing:0.003033pt;}
.ls48{letter-spacing:0.003733pt;}
.ls27{letter-spacing:0.003801pt;}
.ls59{letter-spacing:0.003868pt;}
.ls5b{letter-spacing:0.004530pt;}
.ls5c{letter-spacing:0.004777pt;}
.ls64{letter-spacing:0.005059pt;}
.ls3{letter-spacing:2.635446pt;}
.ls3f{letter-spacing:2.652911pt;}
.ls2{letter-spacing:2.653258pt;}
.ls10{letter-spacing:2.655207pt;}
.ls69{letter-spacing:2.655711pt;}
.ls12{letter-spacing:2.656693pt;}
.ls53{letter-spacing:2.657298pt;}
.ls17{letter-spacing:2.657986pt;}
.ls5f{letter-spacing:2.659837pt;}
.lse{letter-spacing:2.660237pt;}
.lsf{letter-spacing:2.660541pt;}
.ls18{letter-spacing:3.991361pt;}
.ls28{letter-spacing:6.376161pt;}
.ls49{letter-spacing:6.377067pt;}
.ls67{letter-spacing:8.850079pt;}
.ls41{letter-spacing:8.853812pt;}
.ls31{letter-spacing:8.855412pt;}
.ls32{letter-spacing:8.856161pt;}
.ls44{letter-spacing:8.856239pt;}
.ls42{letter-spacing:8.861494pt;}
.ls3a{letter-spacing:11.506245pt;}
.ls43{letter-spacing:11.802106pt;}
.ls2a{letter-spacing:11.803145pt;}
.ls56{letter-spacing:11.804745pt;}
.ls29{letter-spacing:11.804861pt;}
.ls3c{letter-spacing:11.806400pt;}
.ls3d{letter-spacing:11.807439pt;}
.ls2f{letter-spacing:11.808479pt;}
.ls3e{letter-spacing:11.810079pt;}
.ls5e{letter-spacing:11.811723pt;}
.ls37{letter-spacing:11.811733pt;}
.ls25{letter-spacing:12.779663pt;}
.ls46{letter-spacing:13.284666pt;}
.ls8{letter-spacing:13.408479pt;}
.ls2e{letter-spacing:13.712681pt;}
.ls57{letter-spacing:14.465298pt;}
.ls63{letter-spacing:14.554178pt;}
.ls62{letter-spacing:14.556533pt;}
.ls1a{letter-spacing:14.756984pt;}
.ls4{letter-spacing:14.757812pt;}
.ls40{letter-spacing:14.759121pt;}
.ls4e{letter-spacing:14.760027pt;}
.ls45{letter-spacing:14.760083pt;}
.ls19{letter-spacing:14.760239pt;}
.ls2d{letter-spacing:15.234079pt;}
.ls14{letter-spacing:15.546318pt;}
.ls1f{letter-spacing:16.233999pt;}
.ls35{letter-spacing:16.522318pt;}
.ls34{letter-spacing:16.525573pt;}
.ls61{letter-spacing:17.214504pt;}
.ls4f{letter-spacing:17.290050pt;}
.lsb{letter-spacing:17.664473pt;}
.ls22{letter-spacing:18.183412pt;}
.ls65{letter-spacing:18.599824pt;}
.ls9{letter-spacing:18.619139pt;}
.ls7{letter-spacing:18.757812pt;}
.ls26{letter-spacing:18.919578pt;}
.ls15{letter-spacing:19.018721pt;}
.ls51{letter-spacing:19.942631pt;}
.ls52{letter-spacing:19.947964pt;}
.ls1e{letter-spacing:20.578694pt;}
.ls1c{letter-spacing:21.250245pt;}
.ls13{letter-spacing:21.265659pt;}
.ls36{letter-spacing:22.204911pt;}
.ls68{letter-spacing:23.773573pt;}
.ls66{letter-spacing:24.562491pt;}
.ls23{letter-spacing:24.825067pt;}
.ls58{letter-spacing:25.983651pt;}
.ls5a{letter-spacing:27.314245pt;}
.ls38{letter-spacing:27.874827pt;}
.ls5{letter-spacing:29.136479pt;}
.ls11{letter-spacing:31.878586pt;}
.lsd{letter-spacing:31.883919pt;}
.ls4d{letter-spacing:32.226245pt;}
.ls4c{letter-spacing:35.071651pt;}
.ls4b{letter-spacing:35.080083pt;}
.ls54{letter-spacing:37.894631pt;}
.lsc{letter-spacing:41.995139pt;}
.ls47{letter-spacing:44.748745pt;}
.ls1{letter-spacing:62.151925pt;}
.ls30{letter-spacing:66.796326pt;}
.ls20{letter-spacing:68.027145pt;}
.ls2c{letter-spacing:68.780326pt;}
.ls60{letter-spacing:105.354062pt;}
.ls33{letter-spacing:294.892745pt;}
.ls4a{letter-spacing:421.751412pt;}
.ls24{letter-spacing:429.943412pt;}
.wsc3{word-spacing:-53.133867pt;}
.wsb9{word-spacing:-42.066082pt;}
.ws9c{word-spacing:-34.611401pt;}
.wsae{word-spacing:-25.738045pt;}
.ws1{word-spacing:-21.423659pt;}
.wsb{word-spacing:-16.290923pt;}
.ws35{word-spacing:-14.760588pt;}
.ws18{word-spacing:-14.611867pt;}
.ws64{word-spacing:-13.283467pt;}
.ws29{word-spacing:-13.262246pt;}
.ws25{word-spacing:-11.955200pt;}
.ws47{word-spacing:-10.626800pt;}
.wsb1{word-spacing:-9.298400pt;}
.wsd7{word-spacing:-5.143358pt;}
.wsdb{word-spacing:-2.957443pt;}
.ws3a{word-spacing:-1.350455pt;}
.ws8f{word-spacing:-1.062677pt;}
.ws63{word-spacing:-0.956410pt;}
.ws124{word-spacing:-0.807637pt;}
.ws10f{word-spacing:-0.722622pt;}
.ws20{word-spacing:-0.717312pt;}
.ws146{word-spacing:-0.637608pt;}
.wse8{word-spacing:-0.637606pt;}
.ws12b{word-spacing:-0.595101pt;}
.wsb3{word-spacing:-0.531339pt;}
.ws14c{word-spacing:-0.510086pt;}
.wsb2{word-spacing:-0.508170pt;}
.ws5a{word-spacing:-0.478205pt;}
.ws128{word-spacing:-0.467579pt;}
.ws1f{word-spacing:-0.430387pt;}
.ws80{word-spacing:-0.425071pt;}
.ws78{word-spacing:-0.371937pt;}
.wsbb{word-spacing:-0.269450pt;}
.wsba{word-spacing:-0.264116pt;}
.ws157{word-spacing:-0.212536pt;}
.ws9d{word-spacing:-0.159402pt;}
.ws129{word-spacing:-0.127522pt;}
.wsf7{word-spacing:-0.106268pt;}
.ws2f{word-spacing:-0.053134pt;}
.ws19{word-spacing:-0.047821pt;}
.ws4a{word-spacing:-0.042507pt;}
.wsd9{word-spacing:-0.037194pt;}
.wsd8{word-spacing:-0.026567pt;}
.ws74{word-spacing:0.000000pt;}
.ws34{word-spacing:0.053134pt;}
.ws9{word-spacing:0.058182pt;}
.ws13e{word-spacing:0.127522pt;}
.ws14d{word-spacing:0.212536pt;}
.ws105{word-spacing:0.297550pt;}
.ws7d{word-spacing:0.478205pt;}
.ws6{word-spacing:0.523637pt;}
.ws8e{word-spacing:0.531339pt;}
.ws5d{word-spacing:0.584473pt;}
.ws46{word-spacing:0.595101pt;}
.wscf{word-spacing:0.690740pt;}
.ws154{word-spacing:0.694563pt;}
.ws1b{word-spacing:0.717312pt;}
.ws155{word-spacing:0.722622pt;}
.wsa6{word-spacing:0.743874pt;}
.ws139{word-spacing:0.850144pt;}
.ws123{word-spacing:0.892651pt;}
.ws131{word-spacing:0.943175pt;}
.ws132{word-spacing:0.977666pt;}
.ws5c{word-spacing:1.009543pt;}
.ws11c{word-spacing:1.020173pt;}
.ws50{word-spacing:1.062677pt;}
.ws116{word-spacing:1.062680pt;}
.ws7f{word-spacing:1.115811pt;}
.ws101{word-spacing:1.168945pt;}
.wsf4{word-spacing:1.232709pt;}
.wsdc{word-spacing:1.274779pt;}
.wsdd{word-spacing:1.275213pt;}
.ws119{word-spacing:1.317723pt;}
.wsb7{word-spacing:1.328347pt;}
.wsf0{word-spacing:1.351945pt;}
.ws117{word-spacing:1.360230pt;}
.ws3f{word-spacing:1.381481pt;}
.ws22{word-spacing:1.386803pt;}
.ws5e{word-spacing:1.540882pt;}
.wsfc{word-spacing:1.700284pt;}
.ws11f{word-spacing:1.700288pt;}
.wsc4{word-spacing:1.753418pt;}
.ws150{word-spacing:1.785302pt;}
.ws89{word-spacing:1.806551pt;}
.wsff{word-spacing:1.859685pt;}
.ws59{word-spacing:1.912819pt;}
.ws149{word-spacing:1.912824pt;}
.ws14a{word-spacing:1.955331pt;}
.ws32{word-spacing:2.284756pt;}
.wsd3{word-spacing:2.337890pt;}
.ws12c{word-spacing:2.337896pt;}
.ws102{word-spacing:2.391024pt;}
.wsad{word-spacing:2.444158pt;}
.ws11e{word-spacing:2.465418pt;}
.wsa2{word-spacing:2.656693pt;}
.ws142{word-spacing:2.762968pt;}
.ws83{word-spacing:2.816095pt;}
.ws27{word-spacing:2.821427pt;}
.wsbd{word-spacing:2.869229pt;}
.ws115{word-spacing:2.890490pt;}
.wsa8{word-spacing:2.975497pt;}
.ws71{word-spacing:3.081764pt;}
.ws2{word-spacing:3.083639pt;}
.wsa4{word-spacing:3.134898pt;}
.ws15a{word-spacing:3.145533pt;}
.ws8c{word-spacing:3.188032pt;}
.ws13d{word-spacing:3.273054pt;}
.ws87{word-spacing:3.294300pt;}
.ws13c{word-spacing:3.315562pt;}
.ws73{word-spacing:3.347434pt;}
.ws24{word-spacing:3.395277pt;}
.wsf2{word-spacing:3.400567pt;}
.ws13b{word-spacing:3.443083pt;}
.ws11{word-spacing:3.443088pt;}
.ws12{word-spacing:3.519601pt;}
.ws153{word-spacing:3.528098pt;}
.ws12a{word-spacing:3.570605pt;}
.ws13f{word-spacing:3.613112pt;}
.wse0{word-spacing:3.772505pt;}
.wsc6{word-spacing:3.825638pt;}
.ws12e{word-spacing:3.868155pt;}
.ws4e{word-spacing:3.931906pt;}
.wse{word-spacing:3.956367pt;}
.ws8b{word-spacing:3.985040pt;}
.ws11b{word-spacing:3.995677pt;}
.wsc0{word-spacing:4.002689pt;}
.wsc1{word-spacing:4.004571pt;}
.ws11a{word-spacing:4.038184pt;}
.wsc5{word-spacing:4.091308pt;}
.wsfb{word-spacing:4.144442pt;}
.ws84{word-spacing:4.197575pt;}
.ws112{word-spacing:4.208213pt;}
.ws159{word-spacing:4.246898pt;}
.ws141{word-spacing:4.248317pt;}
.ws49{word-spacing:4.250720pt;}
.ws158{word-spacing:4.293227pt;}
.ws79{word-spacing:4.303843pt;}
.ws107{word-spacing:4.335734pt;}
.ws4b{word-spacing:4.378242pt;}
.ws72{word-spacing:4.463245pt;}
.wsac{word-spacing:4.569513pt;}
.ws127{word-spacing:4.718299pt;}
.wsef{word-spacing:4.835182pt;}
.ws10a{word-spacing:4.845821pt;}
.ws11d{word-spacing:4.888328pt;}
.ws92{word-spacing:4.941450pt;}
.ws111{word-spacing:4.973342pt;}
.wsaf{word-spacing:4.994583pt;}
.ws137{word-spacing:5.058357pt;}
.wsd{word-spacing:5.061822pt;}
.ws136{word-spacing:5.086598pt;}
.wsf5{word-spacing:5.100864pt;}
.wse9{word-spacing:5.153985pt;}
.wsbc{word-spacing:5.169019pt;}
.ws44{word-spacing:5.185878pt;}
.ws52{word-spacing:5.207119pt;}
.ws9e{word-spacing:5.260253pt;}
.ws6b{word-spacing:5.264402pt;}
.wsec{word-spacing:5.271111pt;}
.wseb{word-spacing:5.280474pt;}
.ws6a{word-spacing:5.287022pt;}
.wsa1{word-spacing:5.292356pt;}
.ws6c{word-spacing:5.300726pt;}
.wsdf{word-spacing:5.310910pt;}
.wsc7{word-spacing:5.311984pt;}
.ws31{word-spacing:5.313387pt;}
.ws48{word-spacing:5.313400pt;}
.ws40{word-spacing:5.366521pt;}
.wsf9{word-spacing:5.419654pt;}
.ws110{word-spacing:5.440922pt;}
.wsea{word-spacing:5.525922pt;}
.wsa{word-spacing:5.585459pt;}
.wsd6{word-spacing:5.632190pt;}
.ws30{word-spacing:5.738458pt;}
.ws1c{word-spacing:5.738496pt;}
.wsde{word-spacing:5.791591pt;}
.ws10e{word-spacing:5.823486pt;}
.wsf8{word-spacing:5.844725pt;}
.ws17{word-spacing:5.844747pt;}
.ws143{word-spacing:5.908501pt;}
.wsed{word-spacing:5.950993pt;}
.ws3b{word-spacing:5.998879pt;}
.wsb4{word-spacing:6.135884pt;}
.ws21{word-spacing:6.168883pt;}
.ws106{word-spacing:6.248558pt;}
.wsb6{word-spacing:6.265852pt;}
.ws2d{word-spacing:6.269796pt;}
.ws138{word-spacing:6.291066pt;}
.ws36{word-spacing:6.322930pt;}
.wsc{word-spacing:6.341823pt;}
.ws135{word-spacing:6.418587pt;}
.ws14{word-spacing:6.574551pt;}
.ws85{word-spacing:6.588599pt;}
.wsd2{word-spacing:6.748001pt;}
.ws70{word-spacing:6.801135pt;}
.ws156{word-spacing:6.843659pt;}
.ws53{word-spacing:6.960537pt;}
.ws113{word-spacing:6.971181pt;}
.ws76{word-spacing:7.119938pt;}
.wsfe{word-spacing:7.173072pt;}
.ws122{word-spacing:7.183717pt;}
.ws120{word-spacing:7.195553pt;}
.ws13{word-spacing:7.214551pt;}
.ws9f{word-spacing:7.226206pt;}
.ws121{word-spacing:7.226224pt;}
.ws16{word-spacing:7.268731pt;}
.ws0{word-spacing:7.268741pt;}
.wsb0{word-spacing:7.279340pt;}
.ws144{word-spacing:7.481267pt;}
.ws3c{word-spacing:7.491875pt;}
.ws12d{word-spacing:7.523774pt;}
.ws91{word-spacing:7.545009pt;}
.ws75{word-spacing:7.704411pt;}
.ws68{word-spacing:7.810678pt;}
.wsfa{word-spacing:7.916946pt;}
.ws145{word-spacing:7.991354pt;}
.wsb5{word-spacing:8.118352pt;}
.wsb8{word-spacing:8.119884pt;}
.wsf3{word-spacing:8.182615pt;}
.ws130{word-spacing:8.203890pt;}
.ws57{word-spacing:8.235749pt;}
.ws152{word-spacing:8.288904pt;}
.ws151{word-spacing:8.297265pt;}
.ws60{word-spacing:8.448285pt;}
.ws5{word-spacing:8.552734pt;}
.ws114{word-spacing:8.628962pt;}
.ws23{word-spacing:8.655565pt;}
.wsaa{word-spacing:8.660820pt;}
.ws10{word-spacing:8.722469pt;}
.wsc2{word-spacing:8.873356pt;}
.ws14f{word-spacing:8.926512pt;}
.wsbf{word-spacing:9.032757pt;}
.ws43{word-spacing:9.054034pt;}
.ws61{word-spacing:9.085891pt;}
.ws2c{word-spacing:9.192159pt;}
.ws41{word-spacing:9.245293pt;}
.wsa0{word-spacing:9.266570pt;}
.ws98{word-spacing:9.298427pt;}
.ws10d{word-spacing:9.309077pt;}
.ws77{word-spacing:9.351561pt;}
.wsf1{word-spacing:9.457828pt;}
.ws99{word-spacing:9.510962pt;}
.ws2e{word-spacing:9.617230pt;}
.wse6{word-spacing:9.670364pt;}
.ws1a{word-spacing:9.707622pt;}
.ws33{word-spacing:9.723498pt;}
.ws14b{word-spacing:9.734149pt;}
.ws95{word-spacing:9.776631pt;}
.ws51{word-spacing:9.882899pt;}
.wscc{word-spacing:9.899624pt;}
.ws82{word-spacing:9.936033pt;}
.ws14e{word-spacing:9.946685pt;}
.ws56{word-spacing:10.042301pt;}
.ws67{word-spacing:10.148569pt;}
.ws9b{word-spacing:10.201702pt;}
.wsf{word-spacing:10.240009pt;}
.ws8a{word-spacing:10.307970pt;}
.ws5b{word-spacing:10.361104pt;}
.wse7{word-spacing:10.467372pt;}
.wsd0{word-spacing:10.520506pt;}
.wsa3{word-spacing:10.573639pt;}
.ws94{word-spacing:10.626773pt;}
.ws126{word-spacing:10.669307pt;}
.ws7b{word-spacing:10.679907pt;}
.ws125{word-spacing:10.711814pt;}
.ws4f{word-spacing:10.733041pt;}
.ws103{word-spacing:10.786175pt;}
.wsa9{word-spacing:10.839309pt;}
.ws3d{word-spacing:10.892443pt;}
.ws62{word-spacing:10.998710pt;}
.ws10b{word-spacing:11.094379pt;}
.ws9a{word-spacing:11.104978pt;}
.ws58{word-spacing:11.211246pt;}
.wse2{word-spacing:11.264380pt;}
.wse1{word-spacing:11.279993pt;}
.wse4{word-spacing:11.317514pt;}
.ws140{word-spacing:11.349422pt;}
.wsce{word-spacing:11.370647pt;}
.wscd{word-spacing:11.372563pt;}
.wsca{word-spacing:11.379830pt;}
.wsab{word-spacing:11.423781pt;}
.ws39{word-spacing:11.604212pt;}
.ws37{word-spacing:11.689451pt;}
.ws90{word-spacing:11.742585pt;}
.ws8d{word-spacing:11.848852pt;}
.ws45{word-spacing:11.944523pt;}
.wsa7{word-spacing:12.008254pt;}
.ws13a{word-spacing:12.072045pt;}
.ws109{word-spacing:12.114552pt;}
.ws81{word-spacing:12.167655pt;}
.ws69{word-spacing:12.273923pt;}
.wsf6{word-spacing:12.412102pt;}
.ws66{word-spacing:12.486459pt;}
.ws134{word-spacing:12.582131pt;}
.wsa5{word-spacing:12.592726pt;}
.ws147{word-spacing:12.624638pt;}
.ws15{word-spacing:12.752160pt;}
.ws15b{word-spacing:12.879682pt;}
.ws133{word-spacing:13.007203pt;}
.wsee{word-spacing:13.017797pt;}
.ws38{word-spacing:13.070931pt;}
.wsd5{word-spacing:13.124065pt;}
.ws65{word-spacing:13.177199pt;}
.ws7{word-spacing:13.323647pt;}
.ws54{word-spacing:13.496002pt;}
.wsd4{word-spacing:13.655404pt;}
.ws108{word-spacing:13.857347pt;}
.ws42{word-spacing:13.899854pt;}
.ws2b{word-spacing:13.974207pt;}
.ws148{word-spacing:14.112390pt;}
.ws100{word-spacing:14.186742pt;}
.ws1d{word-spacing:14.202778pt;}
.wsfd{word-spacing:14.239876pt;}
.wsd1{word-spacing:14.293010pt;}
.ws55{word-spacing:14.399278pt;}
.wsc8{word-spacing:14.423691pt;}
.wse5{word-spacing:14.505546pt;}
.ws26{word-spacing:14.728806pt;}
.ws118{word-spacing:14.920027pt;}
.ws6f{word-spacing:15.036884pt;}
.ws1e{word-spacing:15.111373pt;}
.ws6e{word-spacing:15.143152pt;}
.ws8{word-spacing:15.185467pt;}
.ws6d{word-spacing:15.196286pt;}
.ws96{word-spacing:15.780758pt;}
.ws5f{word-spacing:15.887026pt;}
.ws28{word-spacing:15.940160pt;}
.wsbe{word-spacing:16.258963pt;}
.ws104{word-spacing:16.312097pt;}
.ws7e{word-spacing:16.524633pt;}
.ws93{word-spacing:16.577766pt;}
.ws10c{word-spacing:16.577808pt;}
.ws97{word-spacing:16.684034pt;}
.ws7a{word-spacing:16.843436pt;}
.wse3{word-spacing:17.162239pt;}
.ws12f{word-spacing:17.172909pt;}
.ws2a{word-spacing:17.321641pt;}
.ws7c{word-spacing:17.481042pt;}
.ws88{word-spacing:17.693578pt;}
.ws86{word-spacing:19.021924pt;}
.ws3e{word-spacing:20.881610pt;}
.ws4d{word-spacing:26.354464pt;}
.wscb{word-spacing:28.605025pt;}
.ws4c{word-spacing:28.692360pt;}
.ws3{word-spacing:29.835503pt;}
.ws4{word-spacing:29.847298pt;}
.wsda{word-spacing:55.724689pt;}
.wsc9{word-spacing:363.559691pt;}
._c{margin-left:-10.201728pt;}
._7{margin-left:-8.538838pt;}
._a{margin-left:-7.192228pt;}
._9{margin-left:-6.197558pt;}
._5{margin-left:-4.596367pt;}
._8{margin-left:-2.846279pt;}
._2{margin-left:-1.570910pt;}
._3{width:1.570910pt;}
._1{width:2.601444pt;}
._18{width:4.372280pt;}
._11{width:5.645500pt;}
._d{width:10.329293pt;}
._f{width:13.761671pt;}
._e{width:15.671904pt;}
._17{width:19.553263pt;}
._14{width:23.761525pt;}
._b{width:25.071753pt;}
._13{width:26.566933pt;}
._6{width:28.160023pt;}
._10{width:29.755040pt;}
._15{width:31.412821pt;}
._0{width:38.256533pt;}
._12{width:39.786739pt;}
._16{width:46.077805pt;}
._4{width:56.669138pt;}
.fsa{font-size:26.566933pt;}
.fs8{font-size:31.880533pt;}
.fs9{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs7{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs4{font-size:58.447467pt;}
.fs0{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.fs3{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:61.296000pt;}
.y48{bottom:100.740000pt;}
.y19c{bottom:100.741333pt;}
.y47{bottom:112.696000pt;}
.y70{bottom:116.680000pt;}
.yb7{bottom:116.681333pt;}
.y9{bottom:117.910667pt;}
.y46{bottom:124.650667pt;}
.y19b{bottom:124.652000pt;}
.y45{bottom:128.401333pt;}
.y6f{bottom:132.620000pt;}
.ya3{bottom:132.621333pt;}
.ye2{bottom:133.654667pt;}
.y8{bottom:135.976000pt;}
.y44{bottom:136.605333pt;}
.y19a{bottom:136.796000pt;}
.y154{bottom:137.149333pt;}
.ye1{bottom:145.832000pt;}
.y6e{bottom:148.561333pt;}
.y199{bottom:148.752000pt;}
.y153{bottom:149.104000pt;}
.ye0{bottom:149.594667pt;}
.y43{bottom:152.312000pt;}
.y7{bottom:154.041333pt;}
.y42{bottom:160.516000pt;}
.y198{bottom:160.706667pt;}
.y152{bottom:161.060000pt;}
.y6d{bottom:164.501333pt;}
.ydf{bottom:165.534667pt;}
.y6{bottom:172.106667pt;}
.y197{bottom:172.852000pt;}
.y151{bottom:173.014667pt;}
.y41{bottom:176.221333pt;}
.y6c{bottom:180.441333pt;}
.y112{bottom:180.794667pt;}
.ya2{bottom:180.868000pt;}
.yde{bottom:181.474667pt;}
.y40{bottom:184.426667pt;}
.y196{bottom:184.806667pt;}
.y150{bottom:185.513333pt;}
.y5{bottom:190.172000pt;}
.y3f{bottom:196.381333pt;}
.y111{bottom:196.734667pt;}
.y195{bottom:196.761333pt;}
.ya1{bottom:196.808000pt;}
.ydd{bottom:197.414667pt;}
.y14f{bottom:197.468000pt;}
.y4{bottom:208.238667pt;}
.y3e{bottom:208.337333pt;}
.y194{bottom:208.906667pt;}
.y14e{bottom:209.424000pt;}
.y6b{bottom:212.321333pt;}
.yb6{bottom:212.322667pt;}
.y110{bottom:212.674667pt;}
.ya0{bottom:212.749333pt;}
.y3d{bottom:220.292000pt;}
.y193{bottom:220.862667pt;}
.y14d{bottom:221.378667pt;}
.ydc{bottom:226.141333pt;}
.yb5{bottom:228.262667pt;}
.y10f{bottom:228.614667pt;}
.y9f{bottom:228.689333pt;}
.y3c{bottom:232.246667pt;}
.y192{bottom:233.006667pt;}
.y14c{bottom:233.877333pt;}
.ydb{bottom:235.253333pt;}
.y6a{bottom:236.330667pt;}
.y3b{bottom:244.202667pt;}
.y10e{bottom:244.556000pt;}
.y9e{bottom:244.629333pt;}
.y191{bottom:244.962667pt;}
.y14b{bottom:245.833333pt;}
.y11a{bottom:246.188000pt;}
.y190{bottom:256.917333pt;}
.y14a{bottom:257.788000pt;}
.yb4{bottom:260.142667pt;}
.y10d{bottom:260.496000pt;}
.y9d{bottom:260.569333pt;}
.y119{bottom:262.128000pt;}
.y69{bottom:266.741333pt;}
.y18f{bottom:268.872000pt;}
.y149{bottom:269.742667pt;}
.y3a{bottom:271.757333pt;}
.yda{bottom:272.760000pt;}
.yb3{bottom:276.082667pt;}
.y10c{bottom:276.436000pt;}
.y9c{bottom:276.509333pt;}
.y18e{bottom:280.828000pt;}
.y148{bottom:281.698667pt;}
.y68{bottom:282.681333pt;}
.y39{bottom:287.697333pt;}
.yd9{bottom:288.700000pt;}
.yb2{bottom:292.022667pt;}
.y9b{bottom:292.450667pt;}
.y3{bottom:292.620000pt;}
.y18d{bottom:292.972000pt;}
.y147{bottom:294.197333pt;}
.y67{bottom:298.621333pt;}
.y10b{bottom:298.678667pt;}
.y38{bottom:303.638667pt;}
.y18c{bottom:304.928000pt;}
.y146{bottom:306.152000pt;}
.y9a{bottom:308.390667pt;}
.y118{bottom:310.372000pt;}
.y66{bottom:314.561333pt;}
.yb1{bottom:315.716000pt;}
.yd7{bottom:315.858667pt;}
.y18b{bottom:316.882667pt;}
.y145{bottom:318.106667pt;}
.y37{bottom:319.578667pt;}
.y2{bottom:321.849333pt;}
.y117{bottom:322.328000pt;}
.y99{bottom:324.330667pt;}
.yd6{bottom:324.970667pt;}
.y10a{bottom:326.585333pt;}
.y18a{bottom:328.838667pt;}
.y144{bottom:330.062667pt;}
.y65{bottom:330.501333pt;}
.y36{bottom:335.518667pt;}
.y98{bottom:340.270667pt;}
.y189{bottom:340.982667pt;}
.y109{bottom:342.526667pt;}
.y143{bottom:342.561333pt;}
.y64{bottom:346.441333pt;}
.yd8{bottom:347.154667pt;}
.y1{bottom:351.080000pt;}
.y35{bottom:351.458667pt;}
.y188{bottom:352.938667pt;}
.yd5{bottom:353.109333pt;}
.y142{bottom:354.516000pt;}
.y97{bottom:356.637333pt;}
.y108{bottom:358.466667pt;}
.yb0{bottom:359.642667pt;}
.yd4{bottom:362.221333pt;}
.y187{bottom:364.893333pt;}
.y63{bottom:366.405333pt;}
.y141{bottom:366.470667pt;}
.y34{bottom:367.398667pt;}
.yaf{bottom:371.598667pt;}
.y96{bottom:372.578667pt;}
.y107{bottom:374.406667pt;}
.y186{bottom:377.038667pt;}
.y140{bottom:378.969333pt;}
.y62{bottom:382.345333pt;}
.y33{bottom:383.338667pt;}
.y95{bottom:388.518667pt;}
.y185{bottom:388.993333pt;}
.y106{bottom:390.346667pt;}
.y13f{bottom:390.925333pt;}
.y61{bottom:398.286667pt;}
.y32{bottom:399.280000pt;}
.y184{bottom:400.948000pt;}
.y13e{bottom:402.880000pt;}
.y94{bottom:404.458667pt;}
.y105{bottom:406.286667pt;}
.y183{bottom:412.904000pt;}
.y60{bottom:414.226667pt;}
.y13d{bottom:414.834667pt;}
.y31{bottom:415.220000pt;}
.yd3{bottom:419.132000pt;}
.y93{bottom:420.398667pt;}
.y104{bottom:422.228000pt;}
.y182{bottom:425.048000pt;}
.y13c{bottom:427.333333pt;}
.y30{bottom:431.160000pt;}
.y5f{bottom:434.190667pt;}
.yd2{bottom:435.072000pt;}
.y181{bottom:437.004000pt;}
.y103{bottom:438.168000pt;}
.y13b{bottom:439.289333pt;}
.y92{bottom:439.897333pt;}
.y2f{bottom:447.100000pt;}
.y180{bottom:448.958667pt;}
.y5e{bottom:450.777333pt;}
.y13a{bottom:451.244000pt;}
.yd1{bottom:452.046667pt;}
.y102{bottom:454.108000pt;}
.y91{bottom:455.837333pt;}
.y17f{bottom:461.104000pt;}
.y2e{bottom:463.040000pt;}
.y139{bottom:463.198667pt;}
.y5d{bottom:466.717333pt;}
.yd0{bottom:467.986667pt;}
.y101{bottom:470.048000pt;}
.y90{bottom:471.777333pt;}
.y17e{bottom:473.058667pt;}
.y138{bottom:475.697333pt;}
.y2d{bottom:479.349333pt;}
.y5c{bottom:482.658667pt;}
.y17d{bottom:485.014667pt;}
.y100{bottom:485.988000pt;}
.y137{bottom:487.653333pt;}
.y8f{bottom:487.717333pt;}
.y13{bottom:490.570667pt;}
.y2c{bottom:495.289333pt;}
.y116{bottom:495.321333pt;}
.ycf{bottom:496.898667pt;}
.y17c{bottom:497.158667pt;}
.y5b{bottom:498.598667pt;}
.y136{bottom:499.608000pt;}
.yff{bottom:501.928000pt;}
.y8e{bottom:503.658667pt;}
.yce{bottom:506.010667pt;}
.y115{bottom:507.276000pt;}
.y12{bottom:508.637333pt;}
.y17b{bottom:509.114667pt;}
.y2b{bottom:511.229333pt;}
.y135{bottom:512.106667pt;}
.y5a{bottom:514.538667pt;}
.yfe{bottom:517.869333pt;}
.y8d{bottom:519.598667pt;}
.y17a{bottom:521.069333pt;}
.y134{bottom:524.061333pt;}
.y11{bottom:526.702667pt;}
.y2a{bottom:527.169333pt;}
.y59{bottom:530.478667pt;}
.y179{bottom:533.024000pt;}
.yfd{bottom:533.809333pt;}
.y8c{bottom:535.538667pt;}
.y29{bottom:543.110667pt;}
.y178{bottom:545.169333pt;}
.y58{bottom:546.418667pt;}
.ycd{bottom:546.838667pt;}
.y133{bottom:549.657333pt;}
.yfc{bottom:550.102667pt;}
.y8b{bottom:551.478667pt;}
.y177{bottom:557.125333pt;}
.y10{bottom:558.742667pt;}
.y28{bottom:559.050667pt;}
.y57{bottom:562.360000pt;}
.ycc{bottom:562.778667pt;}
.yae{bottom:562.894667pt;}
.yfb{bottom:566.042667pt;}
.y176{bottom:569.080000pt;}
.y8a{bottom:570.977333pt;}
.y27{bottom:574.990667pt;}
.y56{bottom:578.300000pt;}
.yad{bottom:578.836000pt;}
.ycb{bottom:579.752000pt;}
.y175{bottom:581.225333pt;}
.yfa{bottom:581.982667pt;}
.y132{bottom:582.877333pt;}
.y89{bottom:586.917333pt;}
.y26{bottom:590.930667pt;}
.y174{bottom:593.180000pt;}
.y55{bottom:594.240000pt;}
.yac{bottom:594.776000pt;}
.yca{bottom:595.692000pt;}
.y131{bottom:598.818667pt;}
.y88{bottom:602.857333pt;}
.y173{bottom:605.134667pt;}
.yf9{bottom:605.708000pt;}
.y54{bottom:610.180000pt;}
.yab{bottom:610.716000pt;}
.yf8{bottom:611.025333pt;}
.y25{bottom:613.265333pt;}
.y130{bottom:614.758667pt;}
.y172{bottom:617.280000pt;}
.y87{bottom:618.797333pt;}
.yc9{bottom:621.466667pt;}
.yf7{bottom:622.202667pt;}
.y53{bottom:626.120000pt;}
.yaa{bottom:626.656000pt;}
.y171{bottom:629.234667pt;}
.yc8{bottom:630.578667pt;}
.y12f{bottom:630.698667pt;}
.y86{bottom:634.737333pt;}
.y170{bottom:641.190667pt;}
.y52{bottom:642.060000pt;}
.ya9{bottom:642.596000pt;}
.yf{bottom:645.978667pt;}
.y12e{bottom:646.638667pt;}
.y85{bottom:650.678667pt;}
.y16f{bottom:653.334667pt;}
.yf6{bottom:656.005333pt;}
.y51{bottom:658.001333pt;}
.y24{bottom:658.280000pt;}
.ya8{bottom:658.536000pt;}
.y12d{bottom:663.557333pt;}
.y16e{bottom:665.290667pt;}
.y84{bottom:666.618667pt;}
.yc7{bottom:670.208000pt;}
.y23{bottom:671.932000pt;}
.yf5{bottom:671.945333pt;}
.y50{bottom:673.941333pt;}
.ya7{bottom:674.477333pt;}
.ye{bottom:675.208000pt;}
.y16d{bottom:677.245333pt;}
.y12c{bottom:679.497333pt;}
.y83{bottom:682.558667pt;}
.y114{bottom:682.586667pt;}
.y22{bottom:685.216000pt;}
.yc6{bottom:686.148000pt;}
.yf4{bottom:687.885333pt;}
.y16c{bottom:689.201333pt;}
.y4f{bottom:689.881333pt;}
.ya6{bottom:690.417333pt;}
.y113{bottom:694.541333pt;}
.y12b{bottom:695.437333pt;}
.y21{bottom:698.498667pt;}
.y82{bottom:698.925333pt;}
.y16b{bottom:701.345333pt;}
.yc5{bottom:702.089333pt;}
.yf3{bottom:703.825333pt;}
.yd{bottom:704.438667pt;}
.y4e{bottom:705.821333pt;}
.ya5{bottom:706.357333pt;}
.y12a{bottom:711.377333pt;}
.y20{bottom:711.782667pt;}
.y16a{bottom:713.301333pt;}
.y81{bottom:714.866667pt;}
.yf2{bottom:719.765333pt;}
.y4d{bottom:722.409333pt;}
.yc4{bottom:722.866667pt;}
.y1f{bottom:725.065333pt;}
.y169{bottom:725.256000pt;}
.y129{bottom:727.318667pt;}
.y80{bottom:730.806667pt;}
.yc{bottom:733.668000pt;}
.yf1{bottom:735.706667pt;}
.y168{bottom:737.401333pt;}
.y1e{bottom:738.349333pt;}
.yc3{bottom:738.808000pt;}
.y128{bottom:743.258667pt;}
.y7f{bottom:746.746667pt;}
.y167{bottom:749.356000pt;}
.ya4{bottom:750.892000pt;}
.y1d{bottom:751.633333pt;}
.yf0{bottom:751.646667pt;}
.y4c{bottom:754.289333pt;}
.yc2{bottom:754.748000pt;}
.y127{bottom:759.198667pt;}
.y166{bottom:761.310667pt;}
.yb{bottom:762.898667pt;}
.y1c{bottom:764.916000pt;}
.y7e{bottom:766.245333pt;}
.yef{bottom:767.586667pt;}
.y4b{bottom:770.229333pt;}
.y165{bottom:773.266667pt;}
.y126{bottom:775.138667pt;}
.yc1{bottom:775.526667pt;}
.y1b{bottom:778.200000pt;}
.y7d{bottom:782.185333pt;}
.yee{bottom:783.526667pt;}
.y164{bottom:785.410667pt;}
.y4a{bottom:786.170667pt;}
.y125{bottom:791.078667pt;}
.yc0{bottom:791.466667pt;}
.y1a{bottom:791.484000pt;}
.y163{bottom:797.366667pt;}
.y7c{bottom:798.125333pt;}
.yed{bottom:799.820000pt;}
.y49{bottom:802.110667pt;}
.y19{bottom:804.766667pt;}
.y124{bottom:807.997333pt;}
.ybf{bottom:808.440000pt;}
.y162{bottom:809.321333pt;}
.y7b{bottom:814.065333pt;}
.yec{bottom:815.760000pt;}
.y18{bottom:818.050667pt;}
.y161{bottom:821.277333pt;}
.y123{bottom:823.937333pt;}
.ybe{bottom:824.380000pt;}
.y7a{bottom:830.005333pt;}
.yeb{bottom:831.700000pt;}
.y160{bottom:833.421333pt;}
.y122{bottom:839.877333pt;}
.ybd{bottom:840.320000pt;}
.y15f{bottom:845.377333pt;}
.y79{bottom:849.504000pt;}
.yea{bottom:855.245333pt;}
.y121{bottom:855.818667pt;}
.ybc{bottom:856.260000pt;}
.y15e{bottom:857.332000pt;}
.ye9{bottom:858.529333pt;}
.y17{bottom:864.233333pt;}
.y78{bottom:865.444000pt;}
.y15d{bottom:869.477333pt;}
.y120{bottom:871.758667pt;}
.ybb{bottom:872.201333pt;}
.y77{bottom:881.384000pt;}
.y15c{bottom:881.432000pt;}
.y16{bottom:881.986667pt;}
.y11f{bottom:887.698667pt;}
.yba{bottom:888.141333pt;}
.ye8{bottom:892.332000pt;}
.y15b{bottom:893.386667pt;}
.y76{bottom:897.325333pt;}
.y11e{bottom:903.638667pt;}
.yb9{bottom:904.081333pt;}
.y15a{bottom:905.532000pt;}
.ye7{bottom:908.272000pt;}
.y75{bottom:913.265333pt;}
.y159{bottom:917.488000pt;}
.y19f{bottom:917.677333pt;}
.y11d{bottom:919.578667pt;}
.y15{bottom:923.830667pt;}
.ye6{bottom:924.212000pt;}
.yb8{bottom:927.822667pt;}
.y74{bottom:929.205333pt;}
.y158{bottom:929.442667pt;}
.y19e{bottom:929.633333pt;}
.y11c{bottom:935.518667pt;}
.ye5{bottom:940.152000pt;}
.y157{bottom:941.588000pt;}
.y73{bottom:945.145333pt;}
.y11b{bottom:951.460000pt;}
.ye4{bottom:952.330667pt;}
.y156{bottom:953.542667pt;}
.ye3{bottom:956.092000pt;}
.y14{bottom:961.024000pt;}
.y72{bottom:961.512000pt;}
.y155{bottom:965.497333pt;}
.y19d{bottom:965.498667pt;}
.y71{bottom:977.453333pt;}
.hf{height:21.200555pt;}
.h28{height:27.895200pt;}
.he{height:29.244954pt;}
.h2b{height:29.452954pt;}
.h11{height:29.458287pt;}
.h10{height:31.880400pt;}
.hb{height:33.187635pt;}
.ha{height:33.426739pt;}
.h13{height:36.449833pt;}
.hc{height:36.556100pt;}
.h12{height:37.459376pt;}
.h2a{height:38.734589pt;}
.hd{height:39.850400pt;}
.h9{height:40.505190pt;}
.h3{height:41.658217pt;}
.h29{height:43.117044pt;}
.h1f{height:45.129552pt;}
.h22{height:45.134885pt;}
.h14{height:47.175200pt;}
.h1e{height:47.180533pt;}
.h24{height:47.785552pt;}
.h8{height:49.381955pt;}
.h21{height:51.606767pt;}
.h26{height:52.986400pt;}
.h5{height:54.630330pt;}
.h23{height:54.895733pt;}
.h2{height:57.384800pt;}
.h20{height:60.180219pt;}
.h25{height:60.921552pt;}
.h4{height:68.861600pt;}
.h1d{height:72.396499pt;}
.h15{height:73.406043pt;}
.h17{height:73.907376pt;}
.h16{height:75.797067pt;}
.h18{height:77.048021pt;}
.h7{height:87.734861pt;}
.h27{height:97.309355pt;}
.h1b{height:103.389355pt;}
.h19{height:112.245067pt;}
.h1a{height:113.496021pt;}
.h1c{height:128.252533pt;}
.h6{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:65.285333pt;}
.x5{left:75.590667pt;}
.x13{left:78.569333pt;}
.x3e{left:89.630667pt;}
.x1b{left:91.981333pt;}
.x15{left:93.021333pt;}
.xf{left:95.302667pt;}
.x4{left:99.590667pt;}
.xb{left:103.796000pt;}
.x24{left:110.880000pt;}
.xe{left:113.800000pt;}
.x9{left:119.237333pt;}
.x12{left:122.720000pt;}
.x41{left:133.717333pt;}
.xc{left:137.642667pt;}
.xa{left:145.233333pt;}
.x8{left:148.537333pt;}
.x22{left:154.496000pt;}
.x11{left:159.832000pt;}
.x16{left:167.601333pt;}
.x14{left:180.826667pt;}
.x26{left:182.622667pt;}
.x29{left:186.212000pt;}
.x1e{left:188.260000pt;}
.x2b{left:200.162667pt;}
.x25{left:203.637333pt;}
.x27{left:206.540000pt;}
.x1f{left:213.926667pt;}
.x2{left:231.068000pt;}
.x2a{left:233.021333pt;}
.x3d{left:242.690667pt;}
.x20{left:247.669333pt;}
.x2c{left:248.702667pt;}
.x23{left:259.388000pt;}
.x21{left:260.517333pt;}
.x40{left:267.146667pt;}
.x36{left:287.808000pt;}
.x1{left:291.625333pt;}
.x3f{left:301.865333pt;}
.x3{left:316.334667pt;}
.xd{left:369.133333pt;}
.x28{left:384.541333pt;}
.x7{left:403.492000pt;}
.x17{left:415.970667pt;}
.x39{left:421.284000pt;}
.x6{left:427.492000pt;}
.x18{left:429.253333pt;}
.x3a{left:440.316000pt;}
.x19{left:442.666667pt;}
.x1a{left:450.309333pt;}
.x31{left:457.133333pt;}
.x32{left:459.518667pt;}
.x1d{left:471.197333pt;}
.x1c{left:483.386667pt;}
.x35{left:487.324000pt;}
.x33{left:502.370667pt;}
.x2e{left:521.694667pt;}
.x2f{left:533.242667pt;}
.x37{left:535.681333pt;}
.x34{left:541.120000pt;}
.x38{left:546.149333pt;}
.x30{left:605.744000pt;}
.x3c{left:622.548000pt;}
.x3b{left:661.337333pt;}
.x2d{left:718.920000pt;}
}




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