
    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_c69cbf71a51b4d9a8c7ea058.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_8e8c2b05aee2000a6284f5df.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;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_8813437559238994ace314c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.744000;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_1cb1b56f1ea07dc0f6bb8532.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_0aa92d10b3ee040c533e29ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_a18ec1a839496663995c98ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_63c7ef2f4c03601c471cfcac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_239113df3a79c2a6c58f8089.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_0247850800bc8ac4c1190fb9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b2d0b00a05a5bd5da854ad5f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692383;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_e338290c87a8b0c403ff291d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.694824;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_4e89459e1073cd5b59f474b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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_765d9812242c95e62554f1b9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740723;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_4005c5da4e0c46c531772c76.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_08a938f6dc25f62e63d232c9.woff2')format("woff");}.fff{font-family:fff;line-height:0.666992;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_6fa7bc8d168a5887ff2b8d7d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.721000;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_1dbe13a8c43cc30a40e803ff.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.927246;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_f9b174dcfdd0e2567591f68e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.073242;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_737f673f80a91ed32b426292.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.065918;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_f947d43768ad2a35ef56b1d9.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.860840;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;}
.m3{transform:matrix(0.000000,-0.249980,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249980,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249980,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.734600px;}
.v2{vertical-align:23.511600px;}
.ls1d{letter-spacing:-1.565298px;}
.ls23{letter-spacing:-1.320000px;}
.ls26{letter-spacing:-1.254000px;}
.ls2b{letter-spacing:-1.200000px;}
.ls2a{letter-spacing:-1.140000px;}
.ls25{letter-spacing:-1.122000px;}
.ls19{letter-spacing:-1.118070px;}
.ls28{letter-spacing:-1.056000px;}
.lsf{letter-spacing:-0.990000px;}
.ls1f{letter-spacing:-0.939179px;}
.ls24{letter-spacing:-0.924000px;}
.ls27{letter-spacing:-0.858000px;}
.ls1c{letter-spacing:-0.670842px;}
.ls10{letter-spacing:-0.660000px;}
.ls29{letter-spacing:-0.600000px;}
.ls58{letter-spacing:-0.528000px;}
.ls15{letter-spacing:-0.462000px;}
.ls1b{letter-spacing:-0.402505px;}
.ls55{letter-spacing:-0.396000px;}
.ls11{letter-spacing:-0.330000px;}
.ls14{letter-spacing:-0.264000px;}
.ls42{letter-spacing:-0.247061px;}
.ls8{letter-spacing:-0.210000px;}
.ls59{letter-spacing:-0.198000px;}
.ls41{letter-spacing:-0.185760px;}
.ls1a{letter-spacing:-0.134168px;}
.ls1e{letter-spacing:-0.089446px;}
.ls22{letter-spacing:-0.066000px;}
.ls40{letter-spacing:-0.061920px;}
.ls7{letter-spacing:0.000000px;}
.ls6b{letter-spacing:0.000600px;}
.ls84{letter-spacing:0.007200px;}
.ls5e{letter-spacing:0.009000px;}
.ls60{letter-spacing:0.009600px;}
.ls5f{letter-spacing:0.010200px;}
.lsbc{letter-spacing:0.013200px;}
.lsa4{letter-spacing:0.043200px;}
.lsa6{letter-spacing:0.043800px;}
.ls16{letter-spacing:0.044723px;}
.ls6{letter-spacing:0.045000px;}
.lsa3{letter-spacing:0.053400px;}
.lsa5{letter-spacing:0.054000px;}
.ls47{letter-spacing:0.060000px;}
.ls3f{letter-spacing:0.061920px;}
.ls3d{letter-spacing:0.066000px;}
.ls18{letter-spacing:0.089446px;}
.lsa7{letter-spacing:0.105000px;}
.ls87{letter-spacing:0.115800px;}
.lsd3{letter-spacing:0.119400px;}
.ls49{letter-spacing:0.120000px;}
.ls3c{letter-spacing:0.123840px;}
.lsa8{letter-spacing:0.124800px;}
.ls86{letter-spacing:0.125400px;}
.ls88{letter-spacing:0.126000px;}
.ls85{letter-spacing:0.126600px;}
.lsd5{letter-spacing:0.129000px;}
.lsd4{letter-spacing:0.129600px;}
.lse{letter-spacing:0.132000px;}
.ls9{letter-spacing:0.135000px;}
.lsab{letter-spacing:0.141000px;}
.lsac{letter-spacing:0.141600px;}
.ls67{letter-spacing:0.149400px;}
.lsb7{letter-spacing:0.150000px;}
.lsad{letter-spacing:0.151200px;}
.lsaa{letter-spacing:0.151800px;}
.ls6a{letter-spacing:0.158400px;}
.lsba{letter-spacing:0.159600px;}
.lsbd{letter-spacing:0.166200px;}
.lsbb{letter-spacing:0.166500px;}
.ls69{letter-spacing:0.168600px;}
.lsb9{letter-spacing:0.169200px;}
.ls7a{letter-spacing:0.172800px;}
.ls68{letter-spacing:0.180000px;}
.ls7d{letter-spacing:0.182400px;}
.ls7c{letter-spacing:0.191400px;}
.ls7b{letter-spacing:0.192000px;}
.ls21{letter-spacing:0.198000px;}
.ls5{letter-spacing:0.225000px;}
.ls73{letter-spacing:0.229200px;}
.ls48{letter-spacing:0.231000px;}
.ls75{letter-spacing:0.238200px;}
.ls4f{letter-spacing:0.240000px;}
.ls3b{letter-spacing:0.247680px;}
.ls74{letter-spacing:0.247800px;}
.ls81{letter-spacing:0.248400px;}
.ls7f{letter-spacing:0.257400px;}
.ls13{letter-spacing:0.264000px;}
.lsb3{letter-spacing:0.265200px;}
.ls83{letter-spacing:0.265500px;}
.lsb2{letter-spacing:0.266400px;}
.ls80{letter-spacing:0.267000px;}
.ls82{letter-spacing:0.267600px;}
.ls70{letter-spacing:0.270000px;}
.ls6e{letter-spacing:0.270600px;}
.lsb1{letter-spacing:0.275400px;}
.ls71{letter-spacing:0.279600px;}
.ls72{letter-spacing:0.289200px;}
.ls6c{letter-spacing:0.289800px;}
.ls6f{letter-spacing:0.290400px;}
.ls91{letter-spacing:0.292500px;}
.ls90{letter-spacing:0.299400px;}
.ls6d{letter-spacing:0.300000px;}
.ls93{letter-spacing:0.307800px;}
.ls92{letter-spacing:0.309000px;}
.ls8e{letter-spacing:0.309600px;}
.ls8f{letter-spacing:0.310200px;}
.ls43{letter-spacing:0.330000px;}
.ls2{letter-spacing:0.336000px;}
.lsc0{letter-spacing:0.357000px;}
.lsbe{letter-spacing:0.357600px;}
.lsbf{letter-spacing:0.360000px;}
.ls4d{letter-spacing:0.363000px;}
.ls44{letter-spacing:0.396000px;}
.ls5a{letter-spacing:0.405000px;}
.ls3{letter-spacing:0.420000px;}
.ls5d{letter-spacing:0.423000px;}
.ls5b{letter-spacing:0.423600px;}
.ls5c{letter-spacing:0.424800px;}
.lsd8{letter-spacing:0.433800px;}
.lsd6{letter-spacing:0.434400px;}
.lsd7{letter-spacing:0.450000px;}
.lsd9{letter-spacing:0.451800px;}
.lsda{letter-spacing:0.453000px;}
.ls12{letter-spacing:0.462000px;}
.ls9e{letter-spacing:0.480000px;}
.lsa0{letter-spacing:0.491400px;}
.lsa2{letter-spacing:0.495000px;}
.ls9f{letter-spacing:0.511200px;}
.lsa1{letter-spacing:0.511800px;}
.lsb5{letter-spacing:0.516000px;}
.lsb6{letter-spacing:0.516600px;}
.lsb4{letter-spacing:0.517200px;}
.lsc{letter-spacing:0.528000px;}
.ls56{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.588000px;}
.lscc{letter-spacing:0.590400px;}
.ls46{letter-spacing:0.594000px;}
.ls9a{letter-spacing:0.598500px;}
.ls17{letter-spacing:0.600000px;}
.lsce{letter-spacing:0.607500px;}
.lsca{letter-spacing:0.609000px;}
.lscd{letter-spacing:0.609600px;}
.lscb{letter-spacing:0.610200px;}
.ls76{letter-spacing:0.645600px;}
.ls78{letter-spacing:0.646200px;}
.ls79{letter-spacing:0.652500px;}
.ls77{letter-spacing:0.655800px;}
.ls20{letter-spacing:0.660000px;}
.lsdd{letter-spacing:0.673800px;}
.lsdb{letter-spacing:0.674400px;}
.lsdc{letter-spacing:0.684000px;}
.ls98{letter-spacing:0.697800px;}
.ls96{letter-spacing:0.707400px;}
.ls99{letter-spacing:0.708000px;}
.ls97{letter-spacing:0.715500px;}
.ls95{letter-spacing:0.717600px;}
.ls94{letter-spacing:0.720000px;}
.ls3e{letter-spacing:0.726000px;}
.ls34{letter-spacing:0.792000px;}
.ls31{letter-spacing:0.858000px;}
.ls9c{letter-spacing:0.879600px;}
.ls9d{letter-spacing:0.889800px;}
.lsa{letter-spacing:0.900000px;}
.ls35{letter-spacing:0.924000px;}
.lsd{letter-spacing:0.990000px;}
.lsae{letter-spacing:1.020000px;}
.lsd2{letter-spacing:1.032600px;}
.lsb0{letter-spacing:1.035000px;}
.lsd0{letter-spacing:1.041600px;}
.lscf{letter-spacing:1.051200px;}
.lsd1{letter-spacing:1.052400px;}
.lsaf{letter-spacing:1.053600px;}
.ls36{letter-spacing:1.056000px;}
.ls9b{letter-spacing:1.080000px;}
.lsc2{letter-spacing:1.090800px;}
.lsc3{letter-spacing:1.100400px;}
.lsc4{letter-spacing:1.101600px;}
.ls33{letter-spacing:1.188000px;}
.ls4c{letter-spacing:1.254000px;}
.ls2d{letter-spacing:1.320000px;}
.lsc9{letter-spacing:1.350000px;}
.lsc6{letter-spacing:1.354200px;}
.lsc8{letter-spacing:1.354800px;}
.lsc7{letter-spacing:1.380000px;}
.ls30{letter-spacing:1.386000px;}
.ls2e{letter-spacing:1.452000px;}
.ls52{letter-spacing:1.485000px;}
.ls45{letter-spacing:1.518000px;}
.ls32{letter-spacing:1.584000px;}
.ls4b{letter-spacing:1.650000px;}
.ls62{letter-spacing:1.680000px;}
.ls63{letter-spacing:1.691400px;}
.ls61{letter-spacing:1.699800px;}
.ls65{letter-spacing:1.700400px;}
.ls66{letter-spacing:1.710000px;}
.ls64{letter-spacing:1.710600px;}
.ls2c{letter-spacing:1.716000px;}
.ls38{letter-spacing:1.848000px;}
.ls39{letter-spacing:1.914000px;}
.ls2f{letter-spacing:1.980000px;}
.lsc5{letter-spacing:2.040000px;}
.ls50{letter-spacing:2.046000px;}
.ls37{letter-spacing:2.112000px;}
.ls3a{letter-spacing:2.178000px;}
.ls51{letter-spacing:2.244000px;}
.ls4a{letter-spacing:2.310000px;}
.ls53{letter-spacing:2.574000px;}
.ls8d{letter-spacing:2.722800px;}
.ls89{letter-spacing:2.731800px;}
.ls8a{letter-spacing:2.732400px;}
.ls8c{letter-spacing:2.741400px;}
.ls8b{letter-spacing:2.745000px;}
.lsa9{letter-spacing:2.760000px;}
.ls57{letter-spacing:2.815800px;}
.ls54{letter-spacing:2.970000px;}
.ls7e{letter-spacing:3.599400px;}
.ls4e{letter-spacing:4.031420px;}
.lsb8{letter-spacing:7.660200px;}
.lsc1{letter-spacing:7.846800px;}
.ls4{letter-spacing:12.510000px;}
.lsb{letter-spacing:1341.729600px;}
.ls0{letter-spacing:1890.921600px;}
.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;}
}
.wsfe{word-spacing:-60.000000px;}
.wsdf{word-spacing:-45.000000px;}
.ws7d{word-spacing:-22.894301px;}
.ws7e{word-spacing:-22.647240px;}
.wsad{word-spacing:-18.612000px;}
.ws7f{word-spacing:-17.461440px;}
.ws7c{word-spacing:-17.337600px;}
.ws79{word-spacing:-17.275680px;}
.ws7a{word-spacing:-17.151840px;}
.ws7b{word-spacing:-17.028000px;}
.ws1f{word-spacing:-15.000000px;}
.ws97{word-spacing:-14.705422px;}
.wsc3{word-spacing:-13.995000px;}
.wsb0{word-spacing:-12.960000px;}
.wsed{word-spacing:-12.600000px;}
.wsdd{word-spacing:-12.285000px;}
.wsc6{word-spacing:-11.970000px;}
.wsc5{word-spacing:-11.965500px;}
.wsc1{word-spacing:-11.902500px;}
.wsee{word-spacing:-11.857500px;}
.wsc7{word-spacing:-11.848500px;}
.wsc8{word-spacing:-11.745000px;}
.wsef{word-spacing:-11.700000px;}
.wsaf{word-spacing:-11.673000px;}
.wsec{word-spacing:-11.610000px;}
.wsc4{word-spacing:-11.542500px;}
.wsc0{word-spacing:-11.520000px;}
.wsc2{word-spacing:-11.515500px;}
.wsde{word-spacing:-11.416500px;}
.wsdc{word-spacing:-11.385000px;}
.wsc9{word-spacing:-11.295000px;}
.wsae{word-spacing:-11.250000px;}
.ws47{word-spacing:-10.725000px;}
.ws3d{word-spacing:-10.152076px;}
.ws44{word-spacing:-10.107353px;}
.ws41{word-spacing:-10.017907px;}
.ws3c{word-spacing:-9.973184px;}
.ws45{word-spacing:-9.436511px;}
.ws0{word-spacing:-9.324000px;}
.ws98{word-spacing:-8.823220px;}
.ws81{word-spacing:-2.291040px;}
.wsf6{word-spacing:-1.020000px;}
.wsf7{word-spacing:-0.900000px;}
.ws6e{word-spacing:-0.660000px;}
.wsd7{word-spacing:-0.600000px;}
.ws9a{word-spacing:-0.330000px;}
.wsd3{word-spacing:-0.300000px;}
.ws3b{word-spacing:-0.134168px;}
.wsda{word-spacing:-0.120000px;}
.ws39{word-spacing:-0.089446px;}
.ws3a{word-spacing:-0.044723px;}
.ws1{word-spacing:0.000000px;}
.wsd5{word-spacing:0.060000px;}
.ws80{word-spacing:0.061920px;}
.ws9f{word-spacing:0.120000px;}
.wsa8{word-spacing:0.132000px;}
.wsb1{word-spacing:0.198000px;}
.ws7{word-spacing:0.210000px;}
.ws6{word-spacing:0.252000px;}
.ws5d{word-spacing:0.264000px;}
.wsf8{word-spacing:0.300000px;}
.ws3f{word-spacing:0.317532px;}
.ws4e{word-spacing:0.330000px;}
.ws2e{word-spacing:0.396000px;}
.ws4a{word-spacing:0.402505px;}
.wsba{word-spacing:0.420000px;}
.ws31{word-spacing:0.462000px;}
.wsa4{word-spacing:0.528000px;}
.wsff{word-spacing:0.540000px;}
.ws1d{word-spacing:0.585000px;}
.wsb4{word-spacing:0.600000px;}
.ws59{word-spacing:0.660000px;}
.wsb7{word-spacing:0.720000px;}
.ws15{word-spacing:0.765000px;}
.ws8c{word-spacing:0.792000px;}
.wsdb{word-spacing:0.840000px;}
.ws8d{word-spacing:0.858000px;}
.ws42{word-spacing:0.894456px;}
.ws1e{word-spacing:0.900000px;}
.wsa5{word-spacing:0.924000px;}
.ws54{word-spacing:0.990000px;}
.ws2a{word-spacing:1.056000px;}
.wsd0{word-spacing:1.080000px;}
.ws49{word-spacing:1.118070px;}
.wsd1{word-spacing:1.140000px;}
.ws36{word-spacing:1.188000px;}
.ws9b{word-spacing:1.200000px;}
.wsab{word-spacing:1.254000px;}
.ws19{word-spacing:1.305000px;}
.wsaa{word-spacing:1.320000px;}
.ws3e{word-spacing:1.355101px;}
.ws93{word-spacing:1.380000px;}
.wsf4{word-spacing:1.440000px;}
.ws38{word-spacing:1.452000px;}
.ws2f{word-spacing:1.518000px;}
.wsf9{word-spacing:1.560000px;}
.ws17{word-spacing:1.575000px;}
.ws62{word-spacing:1.584000px;}
.ws18{word-spacing:1.620000px;}
.ws5f{word-spacing:1.650000px;}
.wsd2{word-spacing:1.680000px;}
.ws43{word-spacing:1.699466px;}
.ws12{word-spacing:1.710000px;}
.ws88{word-spacing:1.716000px;}
.wsa6{word-spacing:1.782000px;}
.wsac{word-spacing:1.800000px;}
.ws48{word-spacing:1.848000px;}
.wsce{word-spacing:1.860000px;}
.ws10{word-spacing:1.890000px;}
.ws30{word-spacing:1.914000px;}
.ws37{word-spacing:1.980000px;}
.wse1{word-spacing:2.040000px;}
.ws4f{word-spacing:2.046000px;}
.wse2{word-spacing:2.100000px;}
.ws8a{word-spacing:2.112000px;}
.wsfc{word-spacing:2.160000px;}
.ws6a{word-spacing:2.178000px;}
.ws46{word-spacing:2.236140px;}
.ws99{word-spacing:2.244000px;}
.wscf{word-spacing:2.280000px;}
.ws9d{word-spacing:2.310000px;}
.wsca{word-spacing:2.340000px;}
.ws8e{word-spacing:2.376000px;}
.wse6{word-spacing:2.400000px;}
.wsf3{word-spacing:2.460000px;}
.ws51{word-spacing:2.508000px;}
.ws1a{word-spacing:2.520000px;}
.ws26{word-spacing:2.574000px;}
.ws96{word-spacing:2.640000px;}
.ws5e{word-spacing:2.706000px;}
.wsf1{word-spacing:2.760000px;}
.wsd9{word-spacing:2.820000px;}
.ws20{word-spacing:2.838000px;}
.ws32{word-spacing:2.904000px;}
.wsbf{word-spacing:2.940000px;}
.ws35{word-spacing:2.970000px;}
.ws89{word-spacing:3.000000px;}
.ws5a{word-spacing:3.036000px;}
.wseb{word-spacing:3.060000px;}
.ws6c{word-spacing:3.102000px;}
.ws11{word-spacing:3.150000px;}
.ws60{word-spacing:3.168000px;}
.wse8{word-spacing:3.180000px;}
.ws8f{word-spacing:3.234000px;}
.ws1b{word-spacing:3.240000px;}
.ws40{word-spacing:3.251348px;}
.ws91{word-spacing:3.300000px;}
.ws9c{word-spacing:3.366000px;}
.ws5{word-spacing:3.402000px;}
.ws8{word-spacing:3.420000px;}
.wsb6{word-spacing:3.480000px;}
.ws2c{word-spacing:3.498000px;}
.wsd{word-spacing:3.510000px;}
.wsbb{word-spacing:3.540000px;}
.wsb8{word-spacing:3.600000px;}
.ws92{word-spacing:3.630000px;}
.wsa{word-spacing:3.645000px;}
.wsd8{word-spacing:3.660000px;}
.wsa9{word-spacing:3.696000px;}
.ws13{word-spacing:3.735000px;}
.wse4{word-spacing:3.780000px;}
.ws68{word-spacing:3.828000px;}
.wsea{word-spacing:3.840000px;}
.ws9{word-spacing:3.870000px;}
.wscd{word-spacing:3.900000px;}
.ws4c{word-spacing:3.960000px;}
.ws16{word-spacing:4.005000px;}
.wsfd{word-spacing:4.020000px;}
.ws71{word-spacing:4.026000px;}
.wsfb{word-spacing:4.080000px;}
.ws6f{word-spacing:4.092000px;}
.wsf5{word-spacing:4.140000px;}
.ws63{word-spacing:4.158000px;}
.ws95{word-spacing:4.224000px;}
.wsb5{word-spacing:4.260000px;}
.ws27{word-spacing:4.290000px;}
.ws74{word-spacing:4.356000px;}
.wsf{word-spacing:4.365000px;}
.wse7{word-spacing:4.380000px;}
.ws61{word-spacing:4.422000px;}
.ws72{word-spacing:4.488000px;}
.ws14{word-spacing:4.500000px;}
.wsa7{word-spacing:4.554000px;}
.ws69{word-spacing:4.620000px;}
.ws4{word-spacing:4.662000px;}
.ws52{word-spacing:4.686000px;}
.ws84{word-spacing:4.752000px;}
.wsc{word-spacing:4.815000px;}
.wse9{word-spacing:4.860000px;}
.ws67{word-spacing:4.884000px;}
.wse5{word-spacing:4.920000px;}
.wse{word-spacing:4.995000px;}
.ws76{word-spacing:5.082000px;}
.ws9e{word-spacing:5.100000px;}
.ws1c{word-spacing:5.130000px;}
.ws100{word-spacing:5.160000px;}
.ws57{word-spacing:5.214000px;}
.wse0{word-spacing:5.280000px;}
.wscc{word-spacing:5.400000px;}
.ws55{word-spacing:5.412000px;}
.ws85{word-spacing:5.478000px;}
.wsb9{word-spacing:5.520000px;}
.ws29{word-spacing:5.544000px;}
.wscb{word-spacing:5.580000px;}
.ws6b{word-spacing:5.610000px;}
.wsb{word-spacing:5.625000px;}
.ws87{word-spacing:5.676000px;}
.wsbd{word-spacing:5.760000px;}
.ws58{word-spacing:5.874000px;}
.ws5c{word-spacing:5.940000px;}
.wsb3{word-spacing:6.000000px;}
.ws83{word-spacing:6.006000px;}
.ws65{word-spacing:6.072000px;}
.wsf2{word-spacing:6.120000px;}
.ws53{word-spacing:6.138000px;}
.wsf0{word-spacing:6.180000px;}
.ws24{word-spacing:6.204000px;}
.wsd6{word-spacing:6.240000px;}
.ws73{word-spacing:6.336000px;}
.wse3{word-spacing:6.360000px;}
.ws50{word-spacing:6.402000px;}
.ws28{word-spacing:6.468000px;}
.ws8b{word-spacing:6.534000px;}
.ws66{word-spacing:6.600000px;}
.ws70{word-spacing:6.666000px;}
.ws2b{word-spacing:6.732000px;}
.wsfa{word-spacing:6.780000px;}
.ws56{word-spacing:6.798000px;}
.ws22{word-spacing:6.864000px;}
.ws94{word-spacing:6.930000px;}
.ws21{word-spacing:6.996000px;}
.ws86{word-spacing:7.062000px;}
.ws2d{word-spacing:7.128000px;}
.wsbc{word-spacing:7.140000px;}
.ws77{word-spacing:7.194000px;}
.ws82{word-spacing:7.260000px;}
.wsbe{word-spacing:7.320000px;}
.ws75{word-spacing:7.326000px;}
.ws34{word-spacing:7.392000px;}
.ws4b{word-spacing:7.500000px;}
.ws23{word-spacing:7.524000px;}
.ws64{word-spacing:7.656000px;}
.ws5b{word-spacing:7.788000px;}
.ws4d{word-spacing:7.854000px;}
.ws90{word-spacing:7.920000px;}
.ws33{word-spacing:7.986000px;}
.wsd4{word-spacing:8.100000px;}
.ws6d{word-spacing:8.118000px;}
.ws78{word-spacing:8.184000px;}
.ws25{word-spacing:8.250000px;}
.ws3{word-spacing:10.656000px;}
.ws2{word-spacing:13.344000px;}
.wsb2{word-spacing:15.000000px;}
.wsa0{word-spacing:17.804520px;}
.wsa3{word-spacing:20.577000px;}
.wsa1{word-spacing:40.937400px;}
.wsa2{word-spacing:59.175120px;}
._8{margin-left:-16.500000px;}
._0{margin-left:-13.348800px;}
._d{margin-left:-4.334400px;}
._c{margin-left:-2.217600px;}
._3{margin-left:-1.159200px;}
._4{width:1.260000px;}
._2{width:3.196200px;}
._1e{width:5.556600px;}
._1{width:6.972000px;}
._21{width:8.049600px;}
._7{width:9.324000px;}
._5{width:11.088000px;}
._6{width:12.264000px;}
._1c{width:14.565600px;}
._1b{width:17.607000px;}
._1d{width:26.412000px;}
._20{width:28.407600px;}
._1f{width:29.657400px;}
._19{width:32.962800px;}
._22{width:34.381800px;}
._a{width:37.500000px;}
._f{width:39.900000px;}
._e{width:43.620000px;}
._b{width:45.000000px;}
._11{width:62.702760px;}
._14{width:69.095400px;}
._18{width:76.072320px;}
._10{width:85.688640px;}
._13{width:87.116520px;}
._16{width:89.887560px;}
._12{width:128.860680px;}
._15{width:147.372480px;}
._17{width:207.802320px;}
._1a{width:666.734400px;}
._9{width:1158.724800px;}
.fc3{color:transparent;}
.fc2{color:rgb(254,253,50);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:27.000000px;}
.fs14{font-size:31.738200px;}
.fs0{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fse{font-size:42.900000px;}
.fs16{font-size:43.320000px;}
.fsd{font-size:44.722800px;}
.fs6{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs11{font-size:52.893000px;}
.fs12{font-size:52.897200px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs13{font-size:58.770000px;}
.fs15{font-size:58.770600px;}
.fs1{font-size:60.000000px;}
.fsf{font-size:61.920000px;}
.fsc{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs10{font-size:82.353600px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:139.800000px;}
.y167{bottom:-227.710650px;}
.y15f{bottom:-192.641550px;}
.y160{bottom:-164.731200px;}
.y166{bottom:-164.334600px;}
.y161{bottom:-137.138700px;}
.y162{bottom:-109.387200px;}
.y163{bottom:-81.635700px;}
.y164{bottom:-53.884200px;}
.y14c{bottom:-37.822500px;}
.y14d{bottom:-37.822050px;}
.y14e{bottom:-37.821750px;}
.y14f{bottom:-37.821300px;}
.y150{bottom:-37.821000px;}
.y151{bottom:-37.820700px;}
.y140{bottom:-37.050150px;}
.y141{bottom:-37.049700px;}
.y142{bottom:-37.049400px;}
.y143{bottom:-37.048950px;}
.y144{bottom:-37.048650px;}
.y165{bottom:-26.132850px;}
.y168{bottom:-4.127850px;}
.y159{bottom:-2.966250px;}
.y145{bottom:-2.857800px;}
.y153{bottom:-2.192400px;}
.y139{bottom:-2.085450px;}
.y0{bottom:0.000000px;}
.y193{bottom:2.217600px;}
.y191{bottom:2.223150px;}
.y18f{bottom:2.787600px;}
.y16d{bottom:11.948400px;}
.y146{bottom:24.894150px;}
.y13a{bottom:25.824300px;}
.y169{bottom:37.499700px;}
.y15a{bottom:38.660850px;}
.y154{bottom:39.434700px;}
.y147{bottom:52.645200px;}
.y13b{bottom:53.575800px;}
.y18a{bottom:72.345450px;}
.y16a{bottom:79.126500px;}
.y15b{bottom:80.288100px;}
.y148{bottom:80.397000px;}
.y155{bottom:81.061950px;}
.y13c{bottom:81.168300px;}
.y1{bottom:85.039350px;}
.y37{bottom:85.039500px;}
.y149{bottom:108.306750px;}
.y13d{bottom:109.117800px;}
.y1cb{bottom:119.049900px;}
.y10{bottom:119.053650px;}
.y1a1{bottom:119.430150px;}
.y186{bottom:119.874900px;}
.y82{bottom:119.946300px;}
.yfb{bottom:120.005250px;}
.y133{bottom:120.444450px;}
.y16b{bottom:120.753750px;}
.y1a4{bottom:120.776550px;}
.y63{bottom:121.053000px;}
.y8b{bottom:121.120200px;}
.y1f7{bottom:121.153650px;}
.y216{bottom:121.158150px;}
.y125{bottom:121.616550px;}
.y15c{bottom:121.915350px;}
.y156{bottom:122.689050px;}
.ya6{bottom:122.689650px;}
.y110{bottom:122.809050px;}
.y137{bottom:126.114900px;}
.yf{bottom:131.055150px;}
.y14a{bottom:135.899550px;}
.y1a3{bottom:136.766550px;}
.y13e{bottom:136.829400px;}
.y1a0{bottom:137.019150px;}
.y1ca{bottom:137.188950px;}
.y185{bottom:137.463900px;}
.y81{bottom:137.535300px;}
.yfa{bottom:137.594250px;}
.y132{bottom:138.033450px;}
.y62{bottom:138.642000px;}
.ya5{bottom:138.679650px;}
.y1f6{bottom:138.973650px;}
.y215{bottom:138.978150px;}
.y124{bottom:139.205550px;}
.y10f{bottom:140.398050px;}
.y136{bottom:142.104900px;}
.yc7{bottom:149.306100px;}
.ye{bottom:149.432400px;}
.y1a2{bottom:152.756550px;}
.y19f{bottom:154.608150px;}
.ya4{bottom:154.666650px;}
.y184{bottom:155.052900px;}
.y80{bottom:155.124300px;}
.yf9{bottom:155.183250px;}
.y1c9{bottom:155.353950px;}
.y131{bottom:155.622450px;}
.y61{bottom:156.231000px;}
.y214{bottom:156.789150px;}
.y1f5{bottom:156.793650px;}
.y123{bottom:156.794550px;}
.y10e{bottom:157.987050px;}
.y135{bottom:158.094900px;}
.y172{bottom:162.312150px;}
.y16c{bottom:162.380850px;}
.y15d{bottom:163.542900px;}
.y14b{bottom:163.650750px;}
.y157{bottom:164.316000px;}
.y13f{bottom:164.422350px;}
.yd{bottom:167.807400px;}
.ya3{bottom:170.653500px;}
.y7f{bottom:172.713300px;}
.yf8{bottom:172.772250px;}
.y130{bottom:173.211450px;}
.y1c8{bottom:173.518950px;}
.y60{bottom:173.820000px;}
.y134{bottom:174.084900px;}
.y122{bottom:174.383550px;}
.y233{bottom:174.595650px;}
.y1f4{bottom:174.609150px;}
.y10d{bottom:175.576050px;}
.y171{bottom:178.302150px;}
.y16e{bottom:179.253300px;}
.y15e{bottom:180.521100px;}
.y158{bottom:181.294650px;}
.yc{bottom:184.061400px;}
.y19e{bottom:189.802650px;}
.y7e{bottom:190.302300px;}
.yf7{bottom:190.361250px;}
.y12f{bottom:190.800450px;}
.y5f{bottom:191.409000px;}
.y1c7{bottom:191.683950px;}
.y121{bottom:191.972550px;}
.y213{bottom:192.411150px;}
.y232{bottom:192.415650px;}
.y1f3{bottom:192.429150px;}
.y170{bottom:194.292150px;}
.yb{bottom:195.243900px;}
.y10c{bottom:201.976050px;}
.y183{bottom:202.700550px;}
.y7d{bottom:207.891300px;}
.yf6{bottom:207.950250px;}
.y5e{bottom:208.998000px;}
.y120{bottom:209.561550px;}
.y1c6{bottom:209.848950px;}
.y212{bottom:210.231150px;}
.y231{bottom:210.235650px;}
.y1f2{bottom:210.244650px;}
.y16f{bottom:210.282150px;}
.ya{bottom:212.799900px;}
.y12e{bottom:217.200450px;}
.y182{bottom:218.690550px;}
.y9{bottom:223.982400px;}
.y7c{bottom:225.480300px;}
.yf5{bottom:225.539250px;}
.y5d{bottom:226.587000px;}
.y11f{bottom:227.150550px;}
.y1c5{bottom:227.982750px;}
.y211{bottom:228.051150px;}
.y230{bottom:228.055650px;}
.y1f1{bottom:228.060150px;}
.y181{bottom:234.680550px;}
.y8{bottom:235.164900px;}
.ye2{bottom:235.381500px;}
.y10b{bottom:237.170550px;}
.y19d{bottom:242.586150px;}
.y7b{bottom:243.085650px;}
.yf4{bottom:243.128250px;}
.y5c{bottom:244.176000px;}
.y11e{bottom:244.739550px;}
.y22f{bottom:245.866650px;}
.y210{bottom:245.871150px;}
.y1f0{bottom:245.875650px;}
.y1c4{bottom:246.147750px;}
.ye1{bottom:252.970500px;}
.y19c{bottom:260.175150px;}
.y7a{bottom:260.674650px;}
.yf3{bottom:260.717250px;}
.y12d{bottom:261.183000px;}
.y5b{bottom:261.765000px;}
.y11d{bottom:262.328550px;}
.y1ef{bottom:263.673150px;}
.y20f{bottom:263.677650px;}
.y22e{bottom:263.686650px;}
.y1c3{bottom:264.312750px;}
.ye0{bottom:270.559500px;}
.y138{bottom:273.586500px;}
.y12c{bottom:277.173000px;}
.y19b{bottom:277.764150px;}
.y79{bottom:278.263650px;}
.yf2{bottom:278.306250px;}
.y36{bottom:278.906250px;}
.y5a{bottom:279.354000px;}
.y11c{bottom:279.917550px;}
.y1ee{bottom:281.493150px;}
.y20e{bottom:281.497650px;}
.y22d{bottom:281.506650px;}
.y1c2{bottom:282.477750px;}
.ydf{bottom:288.148500px;}
.y10a{bottom:289.954050px;}
.y12b{bottom:293.163000px;}
.y19a{bottom:295.353150px;}
.y78{bottom:295.852650px;}
.y59{bottom:296.943000px;}
.y11b{bottom:297.506550px;}
.y35{bottom:298.897500px;}
.y1ed{bottom:299.313150px;}
.y20d{bottom:299.317650px;}
.y1c1{bottom:300.642750px;}
.yde{bottom:305.737500px;}
.y109{bottom:307.543050px;}
.y34{bottom:310.890000px;}
.y199{bottom:312.942150px;}
.yc6{bottom:314.581500px;}
.y11a{bottom:315.095550px;}
.y20c{bottom:317.124150px;}
.y1ec{bottom:317.133150px;}
.y1c0{bottom:318.807750px;}
.y77{bottom:322.252650px;}
.y33{bottom:322.882500px;}
.ydd{bottom:323.326500px;}
.y58{bottom:323.343000px;}
.y108{bottom:325.132050px;}
.y198{bottom:330.531150px;}
.yc5{bottom:332.170500px;}
.y119{bottom:332.684550px;}
.yf1{bottom:333.400950px;}
.y32{bottom:334.875000px;}
.y22c{bottom:334.939650px;}
.y20b{bottom:334.944150px;}
.y1eb{bottom:334.948650px;}
.y1bf{bottom:336.951900px;}
.ydc{bottom:340.915500px;}
.y57{bottom:340.932000px;}
.y107{bottom:342.721050px;}
.y31{bottom:346.867500px;}
.y197{bottom:348.120150px;}
.yc4{bottom:349.759500px;}
.y118{bottom:350.273550px;}
.y22b{bottom:352.759650px;}
.y20a{bottom:352.764150px;}
.y1ea{bottom:352.768650px;}
.y1be{bottom:355.116900px;}
.ydb{bottom:358.504500px;}
.y56{bottom:358.521000px;}
.y180{bottom:358.537500px;}
.y30{bottom:358.860000px;}
.y106{bottom:360.310050px;}
.y196{bottom:365.709150px;}
.yc3{bottom:367.348500px;}
.y117{bottom:367.862550px;}
.ye8{bottom:370.138050px;}
.y209{bottom:370.575300px;}
.y22a{bottom:370.579650px;}
.y1e9{bottom:370.584150px;}
.y2f{bottom:370.852500px;}
.y1bd{bottom:373.281900px;}
.yda{bottom:376.093500px;}
.y55{bottom:376.110000px;}
.y17f{bottom:376.126500px;}
.y105{bottom:377.899050px;}
.y76{bottom:377.931000px;}
.y2e{bottom:382.845000px;}
.y195{bottom:383.298150px;}
.yc2{bottom:384.937500px;}
.y116{bottom:385.451550px;}
.y229{bottom:388.368150px;}
.y208{bottom:388.395300px;}
.y1e8{bottom:388.399650px;}
.y1bc{bottom:391.446900px;}
.yd9{bottom:393.682500px;}
.y54{bottom:393.699000px;}
.y17e{bottom:393.715500px;}
.y75{bottom:393.921000px;}
.y2d{bottom:394.837500px;}
.y104{bottom:395.488050px;}
.y194{bottom:400.887150px;}
.yc1{bottom:402.526500px;}
.ye9{bottom:402.543750px;}
.y115{bottom:403.040550px;}
.y228{bottom:406.188150px;}
.y207{bottom:406.206150px;}
.y1e7{bottom:406.215300px;}
.y2c{bottom:406.830000px;}
.y1bb{bottom:409.611900px;}
.yd8{bottom:411.271500px;}
.y53{bottom:411.288000px;}
.y17d{bottom:411.304500px;}
.y103{bottom:413.077050px;}
.y2b{bottom:418.822500px;}
.yc0{bottom:420.115500px;}
.y114{bottom:420.629550px;}
.y227{bottom:424.008150px;}
.y1e6{bottom:424.017150px;}
.y206{bottom:424.026150px;}
.y1ba{bottom:427.756050px;}
.y74{bottom:428.832655px;}
.yd7{bottom:428.860500px;}
.y52{bottom:428.877000px;}
.y17c{bottom:428.893500px;}
.y6f{bottom:429.585900px;}
.y102{bottom:430.666050px;}
.y2a{bottom:430.815000px;}
.ybf{bottom:437.704500px;}
.y226{bottom:441.828150px;}
.y1e5{bottom:441.837150px;}
.y29{bottom:442.807500px;}
.y1b9{bottom:445.921050px;}
.yd6{bottom:446.449500px;}
.y51{bottom:446.466000px;}
.y17b{bottom:446.482500px;}
.y6e{bottom:447.717967px;}
.y73{bottom:447.783941px;}
.y101{bottom:448.255050px;}
.y189{bottom:450.150000px;}
.y192{bottom:450.720000px;}
.ye7{bottom:450.726930px;}
.y28{bottom:454.800000px;}
.ybe{bottom:455.293500px;}
.y225{bottom:459.648150px;}
.y1e4{bottom:459.657150px;}
.y152{bottom:461.998500px;}
.ya2{bottom:463.924500px;}
.yd5{bottom:464.038500px;}
.y50{bottom:464.055000px;}
.y17a{bottom:464.071500px;}
.y1b8{bottom:464.086050px;}
.y190{bottom:464.970000px;}
.y6d{bottom:465.070414px;}
.y72{bottom:465.494170px;}
.y100{bottom:465.844050px;}
.y27{bottom:466.792500px;}
.y18e{bottom:467.204610px;}
.ybd{bottom:472.882500px;}
.y113{bottom:473.409300px;}
.y205{bottom:477.463800px;}
.y224{bottom:477.468150px;}
.y1e3{bottom:477.477150px;}
.y18d{bottom:480.872070px;}
.ya1{bottom:481.528500px;}
.yd4{bottom:481.627500px;}
.y4f{bottom:481.644000px;}
.y179{bottom:481.660500px;}
.y71{bottom:481.672643px;}
.y6c{bottom:482.165704px;}
.y1b7{bottom:482.235450px;}
.yff{bottom:483.433050px;}
.y112{bottom:489.399300px;}
.ybc{bottom:490.471500px;}
.y18c{bottom:494.550360px;}
.y26{bottom:494.771250px;}
.y204{bottom:495.283800px;}
.y223{bottom:495.288150px;}
.y1e2{bottom:495.292650px;}
.y70{bottom:497.280900px;}
.y6b{bottom:497.282010px;}
.ya0{bottom:499.117500px;}
.yd3{bottom:499.216500px;}
.y178{bottom:499.249500px;}
.y1b6{bottom:500.400450px;}
.yfe{bottom:501.022050px;}
.y111{bottom:505.389300px;}
.y4e{bottom:508.044000px;}
.ybb{bottom:508.060500px;}
.y18b{bottom:508.228650px;}
.y203{bottom:513.103800px;}
.y1e1{bottom:513.108150px;}
.y25{bottom:514.762500px;}
.y9f{bottom:516.714000px;}
.yd2{bottom:516.805500px;}
.y177{bottom:516.838500px;}
.y1b5{bottom:518.565450px;}
.yfd{bottom:518.611050px;}
.y4d{bottom:525.633000px;}
.yba{bottom:525.649500px;}
.y24{bottom:526.755000px;}
.ye6{bottom:528.452010px;}
.y202{bottom:530.919150px;}
.y1e0{bottom:530.923800px;}
.y9e{bottom:534.318000px;}
.yd1{bottom:534.394500px;}
.y176{bottom:534.427500px;}
.y1b4{bottom:536.730450px;}
.y23{bottom:538.747500px;}
.yea{bottom:538.872450px;}
.y4c{bottom:543.222000px;}
.yb9{bottom:543.238500px;}
.y188{bottom:546.034200px;}
.y222{bottom:548.721150px;}
.y1df{bottom:548.725800px;}
.y22{bottom:550.740000px;}
.y9d{bottom:551.907000px;}
.yd0{bottom:551.983500px;}
.y175{bottom:552.016500px;}
.y1b3{bottom:554.879850px;}
.y4b{bottom:560.811000px;}
.yb8{bottom:560.827500px;}
.y187{bottom:562.024200px;}
.y21{bottom:562.732500px;}
.y221{bottom:566.541150px;}
.y1de{bottom:566.545800px;}
.y9c{bottom:569.511000px;}
.ycf{bottom:569.572500px;}
.y174{bottom:569.605500px;}
.yfc{bottom:571.396800px;}
.y1b2{bottom:573.044850px;}
.y20{bottom:574.725000px;}
.y4a{bottom:578.400000px;}
.yb7{bottom:578.416500px;}
.y220{bottom:584.361150px;}
.y1dd{bottom:584.365800px;}
.y1f{bottom:586.717500px;}
.y9b{bottom:587.100000px;}
.yce{bottom:587.161500px;}
.y173{bottom:587.194500px;}
.y1b1{bottom:591.209850px;}
.y49{bottom:595.989000px;}
.yb6{bottom:596.005500px;}
.y1e{bottom:598.710000px;}
.y1dc{bottom:602.181150px;}
.y9a{bottom:604.704000px;}
.ycd{bottom:604.750500px;}
.y12a{bottom:604.816500px;}
.y1d{bottom:610.702500px;}
.y48{bottom:613.578000px;}
.yb5{bottom:613.594500px;}
.y1b0{bottom:618.214500px;}
.y21f{bottom:619.987650px;}
.y1db{bottom:619.996650px;}
.y201{bottom:620.001150px;}
.y99{bottom:622.293000px;}
.ycc{bottom:622.339500px;}
.y129{bottom:622.405500px;}
.y1c{bottom:622.695000px;}
.y47{bottom:631.167000px;}
.yb4{bottom:631.183500px;}
.y1b{bottom:634.687500px;}
.y21e{bottom:637.807650px;}
.y1da{bottom:637.816650px;}
.y98{bottom:639.889500px;}
.ycb{bottom:639.928500px;}
.y128{bottom:639.994500px;}
.y1a{bottom:646.680000px;}
.y46{bottom:648.756000px;}
.yb3{bottom:648.772500px;}
.yf0{bottom:654.368400px;}
.y200{bottom:655.618650px;}
.y1d9{bottom:655.627650px;}
.y97{bottom:657.508500px;}
.yca{bottom:657.517500px;}
.y127{bottom:657.583500px;}
.y19{bottom:658.672500px;}
.y45{bottom:666.345000px;}
.yb2{bottom:666.361500px;}
.ye5{bottom:668.809170px;}
.y18{bottom:670.665000px;}
.y1af{bottom:671.344500px;}
.y21d{bottom:673.429650px;}
.y1ff{bottom:673.438650px;}
.y1d8{bottom:673.447650px;}
.y96{bottom:675.097500px;}
.y126{bottom:675.172500px;}
.y17{bottom:682.657500px;}
.yc9{bottom:683.917500px;}
.y44{bottom:683.934000px;}
.yb1{bottom:683.950500px;}
.y1ae{bottom:689.280000px;}
.y1d7{bottom:691.245150px;}
.y21c{bottom:691.249650px;}
.y1fe{bottom:691.258650px;}
.yeb{bottom:692.330250px;}
.y95{bottom:692.686500px;}
.y8a{bottom:692.761500px;}
.yb0{bottom:701.539500px;}
.y1ad{bottom:707.215500px;}
.y1d6{bottom:709.065150px;}
.y21b{bottom:709.069650px;}
.y94{bottom:710.275500px;}
.y43{bottom:710.334000px;}
.y89{bottom:710.350500px;}
.yef{bottom:715.981500px;}
.yc8{bottom:719.112000px;}
.yaf{bottom:719.128500px;}
.y1ac{bottom:725.151000px;}
.y1d5{bottom:726.885150px;}
.y21a{bottom:726.889650px;}
.y93{bottom:727.879500px;}
.y42{bottom:727.923000px;}
.y88{bottom:727.939500px;}
.yed{bottom:729.100620px;}
.yae{bottom:736.717500px;}
.y1ab{bottom:743.086500px;}
.y219{bottom:744.691650px;}
.y1d4{bottom:744.705150px;}
.y92{bottom:745.468500px;}
.y41{bottom:745.512000px;}
.y87{bottom:745.528500px;}
.y16{bottom:749.927250px;}
.yee{bottom:750.529500px;}
.yad{bottom:754.306500px;}
.y1aa{bottom:761.022000px;}
.y1d3{bottom:762.511650px;}
.y1fd{bottom:762.516150px;}
.y91{bottom:763.065000px;}
.y40{bottom:763.101000px;}
.y86{bottom:763.117500px;}
.yac{bottom:771.895500px;}
.y6a{bottom:773.121060px;}
.y15{bottom:774.711600px;}
.ye4{bottom:776.549970px;}
.yec{bottom:777.955500px;}
.y1a9{bottom:778.957500px;}
.y1d2{bottom:780.331650px;}
.y1fc{bottom:780.336150px;}
.y90{bottom:780.669000px;}
.y3f{bottom:780.690000px;}
.y85{bottom:780.706500px;}
.y69{bottom:786.537900px;}
.yab{bottom:789.484500px;}
.y1a8{bottom:796.893000px;}
.y1d1{bottom:798.151650px;}
.y1fb{bottom:798.156150px;}
.y8f{bottom:798.258000px;}
.y3e{bottom:798.279000px;}
.y84{bottom:798.295500px;}
.yaa{bottom:807.073500px;}
.y14{bottom:809.315850px;}
.y1a7{bottom:814.828500px;}
.y8e{bottom:815.862000px;}
.y3d{bottom:815.868000px;}
.y83{bottom:815.884500px;}
.y218{bottom:815.953650px;}
.y1fa{bottom:815.958150px;}
.y1d0{bottom:815.971650px;}
.ya9{bottom:824.662500px;}
.y13{bottom:830.915850px;}
.y1a6{bottom:832.764000px;}
.y8d{bottom:833.451000px;}
.y3c{bottom:833.457000px;}
.y68{bottom:833.473500px;}
.y217{bottom:833.773650px;}
.y1f9{bottom:833.778150px;}
.y1cf{bottom:833.782650px;}
.ya8{bottom:842.251500px;}
.ye3{bottom:849.398850px;}
.y1a5{bottom:850.699500px;}
.y3b{bottom:851.046000px;}
.y8c{bottom:851.047650px;}
.y67{bottom:851.062500px;}
.y1ce{bottom:851.593650px;}
.y1f8{bottom:851.598150px;}
.y12{bottom:856.775400px;}
.ya7{bottom:859.840500px;}
.y66{bottom:868.651500px;}
.y1cd{bottom:869.413650px;}
.y11{bottom:882.267900px;}
.y3a{bottom:886.240500px;}
.y1cc{bottom:887.233650px;}
.y5{bottom:920.367150px;}
.y65{bottom:931.885500px;}
.y39{bottom:931.885650px;}
.y4{bottom:939.024750px;}
.y3{bottom:945.477750px;}
.y64{bottom:949.474500px;}
.y38{bottom:949.474650px;}
.y2{bottom:953.272050px;}
.y7{bottom:957.891150px;}
.y6{bottom:971.391150px;}
.h1a{height:-23.766000px;}
.h18{height:-22.395000px;}
.h21{height:13.680000px;}
.h20{height:13.681500px;}
.h4{height:19.602000px;}
.h10{height:30.572227px;}
.h1e{height:30.757200px;}
.h6{height:31.206000px;}
.hd{height:31.245117px;}
.hc{height:31.267090px;}
.h1f{height:31.559297px;}
.h7{height:33.435000px;}
.h5{height:35.328000px;}
.hb{height:37.520508px;}
.h15{height:38.533377px;}
.h16{height:38.536437px;}
.ha{height:41.660156px;}
.h2{height:41.689453px;}
.h2f{height:41.707453px;}
.h19{height:42.786167px;}
.h1c{height:42.786604px;}
.h22{height:44.730469px;}
.h12{height:45.079453px;}
.he{height:45.826172px;}
.hf{height:45.858398px;}
.h11{height:49.542559px;}
.h9{height:50.027344px;}
.h34{height:52.583297px;}
.h23{height:52.646484px;}
.h32{height:52.663884px;}
.h2d{height:52.664484px;}
.h2a{height:52.665084px;}
.h31{height:52.681884px;}
.h29{height:52.682484px;}
.h30{height:52.683084px;}
.h24{height:52.687884px;}
.h2e{height:52.699884px;}
.h2b{height:52.700484px;}
.h25{height:52.708884px;}
.h2c{height:52.718484px;}
.h26{height:52.729884px;}
.h28{height:52.750284px;}
.h27{height:52.771284px;}
.h33{height:52.772484px;}
.h1b{height:54.911619px;}
.h13{height:59.995884px;}
.h8{height:60.996094px;}
.h1d{height:83.221500px;}
.h3{height:104.850000px;}
.h17{height:166.017000px;}
.h14{height:166.788000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w5{width:-243.970500px;}
.w4{width:-40.953000px;}
.w3{width:-40.846500px;}
.w2{width:103.587000px;}
.w8{width:150.480000px;}
.w7{width:180.690000px;}
.w6{width:497.610000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x3c{left:-452.468400px;}
.x35{left:-442.360650px;}
.x34{left:-434.597850px;}
.x33{left:-427.243050px;}
.x36{left:-398.678400px;}
.x37{left:-370.925100px;}
.x3d{left:-349.217700px;}
.x38{left:-343.171650px;}
.x39{left:-315.418200px;}
.x3a{left:-287.664900px;}
.x3b{left:-259.911450px;}
.x31{left:-237.666000px;}
.x27{left:-230.098800px;}
.x26{left:-222.744150px;}
.x28{left:-194.179500px;}
.x29{left:-166.426050px;}
.x32{left:-144.719550px;}
.x2a{left:-138.672750px;}
.x2b{left:-110.919300px;}
.x2c{left:-83.166000px;}
.x2d{left:-55.412550px;}
.x2f{left:-29.699550px;}
.x2e{left:-22.344750px;}
.x1f{left:-14.989800px;}
.x0{left:0.000000px;}
.x3e{left:1.710450px;}
.x20{left:9.396600px;}
.x41{left:37.053000px;}
.x21{left:38.107050px;}
.x40{left:51.876450px;}
.x30{left:64.427850px;}
.x22{left:66.817500px;}
.x23{left:95.527800px;}
.x9{left:110.551200px;}
.x1{left:113.476500px;}
.x24{left:124.238250px;}
.xa{left:136.060200px;}
.x4{left:138.991500px;}
.x42{left:146.696550px;}
.x43{left:149.618250px;}
.x25{left:152.948700px;}
.x5{left:173.632800px;}
.x6{left:179.257800px;}
.x10{left:191.939250px;}
.x8{left:195.431400px;}
.x11{left:219.862800px;}
.x7{left:224.781000px;}
.x12{left:236.333520px;}
.x1c{left:241.227450px;}
.x13{left:263.841480px;}
.x1d{left:279.996000px;}
.x14{left:284.429880px;}
.xb{left:304.393650px;}
.xc{left:329.572650px;}
.x1e{left:331.840800px;}
.x1a{left:353.064750px;}
.x1b{left:362.523030px;}
.x15{left:369.322200px;}
.x19{left:373.236000px;}
.x16{left:401.474160px;}
.xf{left:406.153233px;}
.x18{left:409.993050px;}
.x17{left:412.981050px;}
.x3f{left:427.498500px;}
.x3{left:441.045750px;}
.xd{left:506.567100px;}
.xe{left:508.434277px;}
.x2{left:521.280900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.541867pt;}
.v2{vertical-align:20.899200pt;}
.ls1d{letter-spacing:-1.391376pt;}
.ls23{letter-spacing:-1.173333pt;}
.ls26{letter-spacing:-1.114667pt;}
.ls2b{letter-spacing:-1.066667pt;}
.ls2a{letter-spacing:-1.013333pt;}
.ls25{letter-spacing:-0.997333pt;}
.ls19{letter-spacing:-0.993840pt;}
.ls28{letter-spacing:-0.938667pt;}
.lsf{letter-spacing:-0.880000pt;}
.ls1f{letter-spacing:-0.834826pt;}
.ls24{letter-spacing:-0.821333pt;}
.ls27{letter-spacing:-0.762667pt;}
.ls1c{letter-spacing:-0.596304pt;}
.ls10{letter-spacing:-0.586667pt;}
.ls29{letter-spacing:-0.533333pt;}
.ls58{letter-spacing:-0.469333pt;}
.ls15{letter-spacing:-0.410667pt;}
.ls1b{letter-spacing:-0.357782pt;}
.ls55{letter-spacing:-0.352000pt;}
.ls11{letter-spacing:-0.293333pt;}
.ls14{letter-spacing:-0.234667pt;}
.ls42{letter-spacing:-0.219610pt;}
.ls8{letter-spacing:-0.186667pt;}
.ls59{letter-spacing:-0.176000pt;}
.ls41{letter-spacing:-0.165120pt;}
.ls1a{letter-spacing:-0.119261pt;}
.ls1e{letter-spacing:-0.079507pt;}
.ls22{letter-spacing:-0.058667pt;}
.ls40{letter-spacing:-0.055040pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6b{letter-spacing:0.000533pt;}
.ls84{letter-spacing:0.006400pt;}
.ls5e{letter-spacing:0.008000pt;}
.ls60{letter-spacing:0.008533pt;}
.ls5f{letter-spacing:0.009067pt;}
.lsbc{letter-spacing:0.011733pt;}
.lsa4{letter-spacing:0.038400pt;}
.lsa6{letter-spacing:0.038933pt;}
.ls16{letter-spacing:0.039754pt;}
.ls6{letter-spacing:0.040000pt;}
.lsa3{letter-spacing:0.047467pt;}
.lsa5{letter-spacing:0.048000pt;}
.ls47{letter-spacing:0.053333pt;}
.ls3f{letter-spacing:0.055040pt;}
.ls3d{letter-spacing:0.058667pt;}
.ls18{letter-spacing:0.079507pt;}
.lsa7{letter-spacing:0.093333pt;}
.ls87{letter-spacing:0.102933pt;}
.lsd3{letter-spacing:0.106133pt;}
.ls49{letter-spacing:0.106667pt;}
.ls3c{letter-spacing:0.110080pt;}
.lsa8{letter-spacing:0.110933pt;}
.ls86{letter-spacing:0.111467pt;}
.ls88{letter-spacing:0.112000pt;}
.ls85{letter-spacing:0.112533pt;}
.lsd5{letter-spacing:0.114667pt;}
.lsd4{letter-spacing:0.115200pt;}
.lse{letter-spacing:0.117333pt;}
.ls9{letter-spacing:0.120000pt;}
.lsab{letter-spacing:0.125333pt;}
.lsac{letter-spacing:0.125867pt;}
.ls67{letter-spacing:0.132800pt;}
.lsb7{letter-spacing:0.133333pt;}
.lsad{letter-spacing:0.134400pt;}
.lsaa{letter-spacing:0.134933pt;}
.ls6a{letter-spacing:0.140800pt;}
.lsba{letter-spacing:0.141867pt;}
.lsbd{letter-spacing:0.147733pt;}
.lsbb{letter-spacing:0.148000pt;}
.ls69{letter-spacing:0.149867pt;}
.lsb9{letter-spacing:0.150400pt;}
.ls7a{letter-spacing:0.153600pt;}
.ls68{letter-spacing:0.160000pt;}
.ls7d{letter-spacing:0.162133pt;}
.ls7c{letter-spacing:0.170133pt;}
.ls7b{letter-spacing:0.170667pt;}
.ls21{letter-spacing:0.176000pt;}
.ls5{letter-spacing:0.200000pt;}
.ls73{letter-spacing:0.203733pt;}
.ls48{letter-spacing:0.205333pt;}
.ls75{letter-spacing:0.211733pt;}
.ls4f{letter-spacing:0.213333pt;}
.ls3b{letter-spacing:0.220160pt;}
.ls74{letter-spacing:0.220267pt;}
.ls81{letter-spacing:0.220800pt;}
.ls7f{letter-spacing:0.228800pt;}
.ls13{letter-spacing:0.234667pt;}
.lsb3{letter-spacing:0.235733pt;}
.ls83{letter-spacing:0.236000pt;}
.lsb2{letter-spacing:0.236800pt;}
.ls80{letter-spacing:0.237333pt;}
.ls82{letter-spacing:0.237867pt;}
.ls70{letter-spacing:0.240000pt;}
.ls6e{letter-spacing:0.240533pt;}
.lsb1{letter-spacing:0.244800pt;}
.ls71{letter-spacing:0.248533pt;}
.ls72{letter-spacing:0.257067pt;}
.ls6c{letter-spacing:0.257600pt;}
.ls6f{letter-spacing:0.258133pt;}
.ls91{letter-spacing:0.260000pt;}
.ls90{letter-spacing:0.266133pt;}
.ls6d{letter-spacing:0.266667pt;}
.ls93{letter-spacing:0.273600pt;}
.ls92{letter-spacing:0.274667pt;}
.ls8e{letter-spacing:0.275200pt;}
.ls8f{letter-spacing:0.275733pt;}
.ls43{letter-spacing:0.293333pt;}
.ls2{letter-spacing:0.298667pt;}
.lsc0{letter-spacing:0.317333pt;}
.lsbe{letter-spacing:0.317867pt;}
.lsbf{letter-spacing:0.320000pt;}
.ls4d{letter-spacing:0.322667pt;}
.ls44{letter-spacing:0.352000pt;}
.ls5a{letter-spacing:0.360000pt;}
.ls3{letter-spacing:0.373333pt;}
.ls5d{letter-spacing:0.376000pt;}
.ls5b{letter-spacing:0.376533pt;}
.ls5c{letter-spacing:0.377600pt;}
.lsd8{letter-spacing:0.385600pt;}
.lsd6{letter-spacing:0.386133pt;}
.lsd7{letter-spacing:0.400000pt;}
.lsd9{letter-spacing:0.401600pt;}
.lsda{letter-spacing:0.402667pt;}
.ls12{letter-spacing:0.410667pt;}
.ls9e{letter-spacing:0.426667pt;}
.lsa0{letter-spacing:0.436800pt;}
.lsa2{letter-spacing:0.440000pt;}
.ls9f{letter-spacing:0.454400pt;}
.lsa1{letter-spacing:0.454933pt;}
.lsb5{letter-spacing:0.458667pt;}
.lsb6{letter-spacing:0.459200pt;}
.lsb4{letter-spacing:0.459733pt;}
.lsc{letter-spacing:0.469333pt;}
.ls56{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.522667pt;}
.lscc{letter-spacing:0.524800pt;}
.ls46{letter-spacing:0.528000pt;}
.ls9a{letter-spacing:0.532000pt;}
.ls17{letter-spacing:0.533333pt;}
.lsce{letter-spacing:0.540000pt;}
.lsca{letter-spacing:0.541333pt;}
.lscd{letter-spacing:0.541867pt;}
.lscb{letter-spacing:0.542400pt;}
.ls76{letter-spacing:0.573867pt;}
.ls78{letter-spacing:0.574400pt;}
.ls79{letter-spacing:0.580000pt;}
.ls77{letter-spacing:0.582933pt;}
.ls20{letter-spacing:0.586667pt;}
.lsdd{letter-spacing:0.598933pt;}
.lsdb{letter-spacing:0.599467pt;}
.lsdc{letter-spacing:0.608000pt;}
.ls98{letter-spacing:0.620267pt;}
.ls96{letter-spacing:0.628800pt;}
.ls99{letter-spacing:0.629333pt;}
.ls97{letter-spacing:0.636000pt;}
.ls95{letter-spacing:0.637867pt;}
.ls94{letter-spacing:0.640000pt;}
.ls3e{letter-spacing:0.645333pt;}
.ls34{letter-spacing:0.704000pt;}
.ls31{letter-spacing:0.762667pt;}
.ls9c{letter-spacing:0.781867pt;}
.ls9d{letter-spacing:0.790933pt;}
.lsa{letter-spacing:0.800000pt;}
.ls35{letter-spacing:0.821333pt;}
.lsd{letter-spacing:0.880000pt;}
.lsae{letter-spacing:0.906667pt;}
.lsd2{letter-spacing:0.917867pt;}
.lsb0{letter-spacing:0.920000pt;}
.lsd0{letter-spacing:0.925867pt;}
.lscf{letter-spacing:0.934400pt;}
.lsd1{letter-spacing:0.935467pt;}
.lsaf{letter-spacing:0.936533pt;}
.ls36{letter-spacing:0.938667pt;}
.ls9b{letter-spacing:0.960000pt;}
.lsc2{letter-spacing:0.969600pt;}
.lsc3{letter-spacing:0.978133pt;}
.lsc4{letter-spacing:0.979200pt;}
.ls33{letter-spacing:1.056000pt;}
.ls4c{letter-spacing:1.114667pt;}
.ls2d{letter-spacing:1.173333pt;}
.lsc9{letter-spacing:1.200000pt;}
.lsc6{letter-spacing:1.203733pt;}
.lsc8{letter-spacing:1.204267pt;}
.lsc7{letter-spacing:1.226667pt;}
.ls30{letter-spacing:1.232000pt;}
.ls2e{letter-spacing:1.290667pt;}
.ls52{letter-spacing:1.320000pt;}
.ls45{letter-spacing:1.349333pt;}
.ls32{letter-spacing:1.408000pt;}
.ls4b{letter-spacing:1.466667pt;}
.ls62{letter-spacing:1.493333pt;}
.ls63{letter-spacing:1.503467pt;}
.ls61{letter-spacing:1.510933pt;}
.ls65{letter-spacing:1.511467pt;}
.ls66{letter-spacing:1.520000pt;}
.ls64{letter-spacing:1.520533pt;}
.ls2c{letter-spacing:1.525333pt;}
.ls38{letter-spacing:1.642667pt;}
.ls39{letter-spacing:1.701333pt;}
.ls2f{letter-spacing:1.760000pt;}
.lsc5{letter-spacing:1.813333pt;}
.ls50{letter-spacing:1.818667pt;}
.ls37{letter-spacing:1.877333pt;}
.ls3a{letter-spacing:1.936000pt;}
.ls51{letter-spacing:1.994667pt;}
.ls4a{letter-spacing:2.053333pt;}
.ls53{letter-spacing:2.288000pt;}
.ls8d{letter-spacing:2.420267pt;}
.ls89{letter-spacing:2.428267pt;}
.ls8a{letter-spacing:2.428800pt;}
.ls8c{letter-spacing:2.436800pt;}
.ls8b{letter-spacing:2.440000pt;}
.lsa9{letter-spacing:2.453333pt;}
.ls57{letter-spacing:2.502933pt;}
.ls54{letter-spacing:2.640000pt;}
.ls7e{letter-spacing:3.199467pt;}
.ls4e{letter-spacing:3.583485pt;}
.lsb8{letter-spacing:6.809067pt;}
.lsc1{letter-spacing:6.974933pt;}
.ls4{letter-spacing:11.120000pt;}
.lsb{letter-spacing:1192.648533pt;}
.ls0{letter-spacing:1680.819200pt;}
.wsfe{word-spacing:-53.333333pt;}
.wsdf{word-spacing:-40.000000pt;}
.ws7d{word-spacing:-20.350490pt;}
.ws7e{word-spacing:-20.130880pt;}
.wsad{word-spacing:-16.544000pt;}
.ws7f{word-spacing:-15.521280pt;}
.ws7c{word-spacing:-15.411200pt;}
.ws79{word-spacing:-15.356160pt;}
.ws7a{word-spacing:-15.246080pt;}
.ws7b{word-spacing:-15.136000pt;}
.ws1f{word-spacing:-13.333333pt;}
.ws97{word-spacing:-13.071486pt;}
.wsc3{word-spacing:-12.440000pt;}
.wsb0{word-spacing:-11.520000pt;}
.wsed{word-spacing:-11.200000pt;}
.wsdd{word-spacing:-10.920000pt;}
.wsc6{word-spacing:-10.640000pt;}
.wsc5{word-spacing:-10.636000pt;}
.wsc1{word-spacing:-10.580000pt;}
.wsee{word-spacing:-10.540000pt;}
.wsc7{word-spacing:-10.532000pt;}
.wsc8{word-spacing:-10.440000pt;}
.wsef{word-spacing:-10.400000pt;}
.wsaf{word-spacing:-10.376000pt;}
.wsec{word-spacing:-10.320000pt;}
.wsc4{word-spacing:-10.260000pt;}
.wsc0{word-spacing:-10.240000pt;}
.wsc2{word-spacing:-10.236000pt;}
.wsde{word-spacing:-10.148000pt;}
.wsdc{word-spacing:-10.120000pt;}
.wsc9{word-spacing:-10.040000pt;}
.wsae{word-spacing:-10.000000pt;}
.ws47{word-spacing:-9.533333pt;}
.ws3d{word-spacing:-9.024067pt;}
.ws44{word-spacing:-8.984314pt;}
.ws41{word-spacing:-8.904806pt;}
.ws3c{word-spacing:-8.865053pt;}
.ws45{word-spacing:-8.388010pt;}
.ws0{word-spacing:-8.288000pt;}
.ws98{word-spacing:-7.842862pt;}
.ws81{word-spacing:-2.036480pt;}
.wsf6{word-spacing:-0.906667pt;}
.wsf7{word-spacing:-0.800000pt;}
.ws6e{word-spacing:-0.586667pt;}
.wsd7{word-spacing:-0.533333pt;}
.ws9a{word-spacing:-0.293333pt;}
.wsd3{word-spacing:-0.266667pt;}
.ws3b{word-spacing:-0.119261pt;}
.wsda{word-spacing:-0.106667pt;}
.ws39{word-spacing:-0.079507pt;}
.ws3a{word-spacing:-0.039754pt;}
.ws1{word-spacing:0.000000pt;}
.wsd5{word-spacing:0.053333pt;}
.ws80{word-spacing:0.055040pt;}
.ws9f{word-spacing:0.106667pt;}
.wsa8{word-spacing:0.117333pt;}
.wsb1{word-spacing:0.176000pt;}
.ws7{word-spacing:0.186667pt;}
.ws6{word-spacing:0.224000pt;}
.ws5d{word-spacing:0.234667pt;}
.wsf8{word-spacing:0.266667pt;}
.ws3f{word-spacing:0.282251pt;}
.ws4e{word-spacing:0.293333pt;}
.ws2e{word-spacing:0.352000pt;}
.ws4a{word-spacing:0.357782pt;}
.wsba{word-spacing:0.373333pt;}
.ws31{word-spacing:0.410667pt;}
.wsa4{word-spacing:0.469333pt;}
.wsff{word-spacing:0.480000pt;}
.ws1d{word-spacing:0.520000pt;}
.wsb4{word-spacing:0.533333pt;}
.ws59{word-spacing:0.586667pt;}
.wsb7{word-spacing:0.640000pt;}
.ws15{word-spacing:0.680000pt;}
.ws8c{word-spacing:0.704000pt;}
.wsdb{word-spacing:0.746667pt;}
.ws8d{word-spacing:0.762667pt;}
.ws42{word-spacing:0.795072pt;}
.ws1e{word-spacing:0.800000pt;}
.wsa5{word-spacing:0.821333pt;}
.ws54{word-spacing:0.880000pt;}
.ws2a{word-spacing:0.938667pt;}
.wsd0{word-spacing:0.960000pt;}
.ws49{word-spacing:0.993840pt;}
.wsd1{word-spacing:1.013333pt;}
.ws36{word-spacing:1.056000pt;}
.ws9b{word-spacing:1.066667pt;}
.wsab{word-spacing:1.114667pt;}
.ws19{word-spacing:1.160000pt;}
.wsaa{word-spacing:1.173333pt;}
.ws3e{word-spacing:1.204534pt;}
.ws93{word-spacing:1.226667pt;}
.wsf4{word-spacing:1.280000pt;}
.ws38{word-spacing:1.290667pt;}
.ws2f{word-spacing:1.349333pt;}
.wsf9{word-spacing:1.386667pt;}
.ws17{word-spacing:1.400000pt;}
.ws62{word-spacing:1.408000pt;}
.ws18{word-spacing:1.440000pt;}
.ws5f{word-spacing:1.466667pt;}
.wsd2{word-spacing:1.493333pt;}
.ws43{word-spacing:1.510637pt;}
.ws12{word-spacing:1.520000pt;}
.ws88{word-spacing:1.525333pt;}
.wsa6{word-spacing:1.584000pt;}
.wsac{word-spacing:1.600000pt;}
.ws48{word-spacing:1.642667pt;}
.wsce{word-spacing:1.653333pt;}
.ws10{word-spacing:1.680000pt;}
.ws30{word-spacing:1.701333pt;}
.ws37{word-spacing:1.760000pt;}
.wse1{word-spacing:1.813333pt;}
.ws4f{word-spacing:1.818667pt;}
.wse2{word-spacing:1.866667pt;}
.ws8a{word-spacing:1.877333pt;}
.wsfc{word-spacing:1.920000pt;}
.ws6a{word-spacing:1.936000pt;}
.ws46{word-spacing:1.987680pt;}
.ws99{word-spacing:1.994667pt;}
.wscf{word-spacing:2.026667pt;}
.ws9d{word-spacing:2.053333pt;}
.wsca{word-spacing:2.080000pt;}
.ws8e{word-spacing:2.112000pt;}
.wse6{word-spacing:2.133333pt;}
.wsf3{word-spacing:2.186667pt;}
.ws51{word-spacing:2.229333pt;}
.ws1a{word-spacing:2.240000pt;}
.ws26{word-spacing:2.288000pt;}
.ws96{word-spacing:2.346667pt;}
.ws5e{word-spacing:2.405333pt;}
.wsf1{word-spacing:2.453333pt;}
.wsd9{word-spacing:2.506667pt;}
.ws20{word-spacing:2.522667pt;}
.ws32{word-spacing:2.581333pt;}
.wsbf{word-spacing:2.613333pt;}
.ws35{word-spacing:2.640000pt;}
.ws89{word-spacing:2.666667pt;}
.ws5a{word-spacing:2.698667pt;}
.wseb{word-spacing:2.720000pt;}
.ws6c{word-spacing:2.757333pt;}
.ws11{word-spacing:2.800000pt;}
.ws60{word-spacing:2.816000pt;}
.wse8{word-spacing:2.826667pt;}
.ws8f{word-spacing:2.874667pt;}
.ws1b{word-spacing:2.880000pt;}
.ws40{word-spacing:2.890087pt;}
.ws91{word-spacing:2.933333pt;}
.ws9c{word-spacing:2.992000pt;}
.ws5{word-spacing:3.024000pt;}
.ws8{word-spacing:3.040000pt;}
.wsb6{word-spacing:3.093333pt;}
.ws2c{word-spacing:3.109333pt;}
.wsd{word-spacing:3.120000pt;}
.wsbb{word-spacing:3.146667pt;}
.wsb8{word-spacing:3.200000pt;}
.ws92{word-spacing:3.226667pt;}
.wsa{word-spacing:3.240000pt;}
.wsd8{word-spacing:3.253333pt;}
.wsa9{word-spacing:3.285333pt;}
.ws13{word-spacing:3.320000pt;}
.wse4{word-spacing:3.360000pt;}
.ws68{word-spacing:3.402667pt;}
.wsea{word-spacing:3.413333pt;}
.ws9{word-spacing:3.440000pt;}
.wscd{word-spacing:3.466667pt;}
.ws4c{word-spacing:3.520000pt;}
.ws16{word-spacing:3.560000pt;}
.wsfd{word-spacing:3.573333pt;}
.ws71{word-spacing:3.578667pt;}
.wsfb{word-spacing:3.626667pt;}
.ws6f{word-spacing:3.637333pt;}
.wsf5{word-spacing:3.680000pt;}
.ws63{word-spacing:3.696000pt;}
.ws95{word-spacing:3.754667pt;}
.wsb5{word-spacing:3.786667pt;}
.ws27{word-spacing:3.813333pt;}
.ws74{word-spacing:3.872000pt;}
.wsf{word-spacing:3.880000pt;}
.wse7{word-spacing:3.893333pt;}
.ws61{word-spacing:3.930667pt;}
.ws72{word-spacing:3.989333pt;}
.ws14{word-spacing:4.000000pt;}
.wsa7{word-spacing:4.048000pt;}
.ws69{word-spacing:4.106667pt;}
.ws4{word-spacing:4.144000pt;}
.ws52{word-spacing:4.165333pt;}
.ws84{word-spacing:4.224000pt;}
.wsc{word-spacing:4.280000pt;}
.wse9{word-spacing:4.320000pt;}
.ws67{word-spacing:4.341333pt;}
.wse5{word-spacing:4.373333pt;}
.wse{word-spacing:4.440000pt;}
.ws76{word-spacing:4.517333pt;}
.ws9e{word-spacing:4.533333pt;}
.ws1c{word-spacing:4.560000pt;}
.ws100{word-spacing:4.586667pt;}
.ws57{word-spacing:4.634667pt;}
.wse0{word-spacing:4.693333pt;}
.wscc{word-spacing:4.800000pt;}
.ws55{word-spacing:4.810667pt;}
.ws85{word-spacing:4.869333pt;}
.wsb9{word-spacing:4.906667pt;}
.ws29{word-spacing:4.928000pt;}
.wscb{word-spacing:4.960000pt;}
.ws6b{word-spacing:4.986667pt;}
.wsb{word-spacing:5.000000pt;}
.ws87{word-spacing:5.045333pt;}
.wsbd{word-spacing:5.120000pt;}
.ws58{word-spacing:5.221333pt;}
.ws5c{word-spacing:5.280000pt;}
.wsb3{word-spacing:5.333333pt;}
.ws83{word-spacing:5.338667pt;}
.ws65{word-spacing:5.397333pt;}
.wsf2{word-spacing:5.440000pt;}
.ws53{word-spacing:5.456000pt;}
.wsf0{word-spacing:5.493333pt;}
.ws24{word-spacing:5.514667pt;}
.wsd6{word-spacing:5.546667pt;}
.ws73{word-spacing:5.632000pt;}
.wse3{word-spacing:5.653333pt;}
.ws50{word-spacing:5.690667pt;}
.ws28{word-spacing:5.749333pt;}
.ws8b{word-spacing:5.808000pt;}
.ws66{word-spacing:5.866667pt;}
.ws70{word-spacing:5.925333pt;}
.ws2b{word-spacing:5.984000pt;}
.wsfa{word-spacing:6.026667pt;}
.ws56{word-spacing:6.042667pt;}
.ws22{word-spacing:6.101333pt;}
.ws94{word-spacing:6.160000pt;}
.ws21{word-spacing:6.218667pt;}
.ws86{word-spacing:6.277333pt;}
.ws2d{word-spacing:6.336000pt;}
.wsbc{word-spacing:6.346667pt;}
.ws77{word-spacing:6.394667pt;}
.ws82{word-spacing:6.453333pt;}
.wsbe{word-spacing:6.506667pt;}
.ws75{word-spacing:6.512000pt;}
.ws34{word-spacing:6.570667pt;}
.ws4b{word-spacing:6.666667pt;}
.ws23{word-spacing:6.688000pt;}
.ws64{word-spacing:6.805333pt;}
.ws5b{word-spacing:6.922667pt;}
.ws4d{word-spacing:6.981333pt;}
.ws90{word-spacing:7.040000pt;}
.ws33{word-spacing:7.098667pt;}
.wsd4{word-spacing:7.200000pt;}
.ws6d{word-spacing:7.216000pt;}
.ws78{word-spacing:7.274667pt;}
.ws25{word-spacing:7.333333pt;}
.ws3{word-spacing:9.472000pt;}
.ws2{word-spacing:11.861333pt;}
.wsb2{word-spacing:13.333333pt;}
.wsa0{word-spacing:15.826240pt;}
.wsa3{word-spacing:18.290667pt;}
.wsa1{word-spacing:36.388800pt;}
.wsa2{word-spacing:52.600107pt;}
._8{margin-left:-14.666667pt;}
._0{margin-left:-11.865600pt;}
._d{margin-left:-3.852800pt;}
._c{margin-left:-1.971200pt;}
._3{margin-left:-1.030400pt;}
._4{width:1.120000pt;}
._2{width:2.841067pt;}
._1e{width:4.939200pt;}
._1{width:6.197333pt;}
._21{width:7.155200pt;}
._7{width:8.288000pt;}
._5{width:9.856000pt;}
._6{width:10.901333pt;}
._1c{width:12.947200pt;}
._1b{width:15.650667pt;}
._1d{width:23.477333pt;}
._20{width:25.251200pt;}
._1f{width:26.362133pt;}
._19{width:29.300267pt;}
._22{width:30.561600pt;}
._a{width:33.333333pt;}
._f{width:35.466667pt;}
._e{width:38.773333pt;}
._b{width:40.000000pt;}
._11{width:55.735787pt;}
._14{width:61.418133pt;}
._18{width:67.619840pt;}
._10{width:76.167680pt;}
._13{width:77.436907pt;}
._16{width:79.900053pt;}
._12{width:114.542827pt;}
._15{width:130.997760pt;}
._17{width:184.713173pt;}
._1a{width:592.652800pt;}
._9{width:1029.977600pt;}
.fs3{font-size:24.000000pt;}
.fs14{font-size:28.211733pt;}
.fs0{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fse{font-size:38.133333pt;}
.fs16{font-size:38.506667pt;}
.fsd{font-size:39.753600pt;}
.fs6{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs11{font-size:47.016000pt;}
.fs12{font-size:47.019733pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs13{font-size:52.240000pt;}
.fs15{font-size:52.240533pt;}
.fs1{font-size:53.333333pt;}
.fsf{font-size:55.040000pt;}
.fsc{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs10{font-size:73.203200pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:124.266667pt;}
.y167{bottom:-202.409467pt;}
.y15f{bottom:-171.236933pt;}
.y160{bottom:-146.427733pt;}
.y166{bottom:-146.075200pt;}
.y161{bottom:-121.901067pt;}
.y162{bottom:-97.233067pt;}
.y163{bottom:-72.565067pt;}
.y164{bottom:-47.897067pt;}
.y14c{bottom:-33.620000pt;}
.y14d{bottom:-33.619600pt;}
.y14e{bottom:-33.619333pt;}
.y14f{bottom:-33.618933pt;}
.y150{bottom:-33.618667pt;}
.y151{bottom:-33.618400pt;}
.y140{bottom:-32.933467pt;}
.y141{bottom:-32.933067pt;}
.y142{bottom:-32.932800pt;}
.y143{bottom:-32.932400pt;}
.y144{bottom:-32.932133pt;}
.y165{bottom:-23.229200pt;}
.y168{bottom:-3.669200pt;}
.y159{bottom:-2.636667pt;}
.y145{bottom:-2.540267pt;}
.y153{bottom:-1.948800pt;}
.y139{bottom:-1.853733pt;}
.y0{bottom:0.000000pt;}
.y193{bottom:1.971200pt;}
.y191{bottom:1.976133pt;}
.y18f{bottom:2.477867pt;}
.y16d{bottom:10.620800pt;}
.y146{bottom:22.128133pt;}
.y13a{bottom:22.954933pt;}
.y169{bottom:33.333067pt;}
.y15a{bottom:34.365200pt;}
.y154{bottom:35.053067pt;}
.y147{bottom:46.795733pt;}
.y13b{bottom:47.622933pt;}
.y18a{bottom:64.307067pt;}
.y16a{bottom:70.334667pt;}
.y15b{bottom:71.367200pt;}
.y148{bottom:71.464000pt;}
.y155{bottom:72.055067pt;}
.y13c{bottom:72.149600pt;}
.y1{bottom:75.590533pt;}
.y37{bottom:75.590667pt;}
.y149{bottom:96.272667pt;}
.y13d{bottom:96.993600pt;}
.y1cb{bottom:105.822133pt;}
.y10{bottom:105.825467pt;}
.y1a1{bottom:106.160133pt;}
.y186{bottom:106.555467pt;}
.y82{bottom:106.618933pt;}
.yfb{bottom:106.671333pt;}
.y133{bottom:107.061733pt;}
.y16b{bottom:107.336667pt;}
.y1a4{bottom:107.356933pt;}
.y63{bottom:107.602667pt;}
.y8b{bottom:107.662400pt;}
.y1f7{bottom:107.692133pt;}
.y216{bottom:107.696133pt;}
.y125{bottom:108.103600pt;}
.y15c{bottom:108.369200pt;}
.y156{bottom:109.056933pt;}
.ya6{bottom:109.057467pt;}
.y110{bottom:109.163600pt;}
.y137{bottom:112.102133pt;}
.yf{bottom:116.493467pt;}
.y14a{bottom:120.799600pt;}
.y1a3{bottom:121.570267pt;}
.y13e{bottom:121.626133pt;}
.y1a0{bottom:121.794800pt;}
.y1ca{bottom:121.945733pt;}
.y185{bottom:122.190133pt;}
.y81{bottom:122.253600pt;}
.yfa{bottom:122.306000pt;}
.y132{bottom:122.696400pt;}
.y62{bottom:123.237333pt;}
.ya5{bottom:123.270800pt;}
.y1f6{bottom:123.532133pt;}
.y215{bottom:123.536133pt;}
.y124{bottom:123.738267pt;}
.y10f{bottom:124.798267pt;}
.y136{bottom:126.315467pt;}
.yc7{bottom:132.716533pt;}
.ye{bottom:132.828800pt;}
.y1a2{bottom:135.783600pt;}
.y19f{bottom:137.429467pt;}
.ya4{bottom:137.481467pt;}
.y184{bottom:137.824800pt;}
.y80{bottom:137.888267pt;}
.yf9{bottom:137.940667pt;}
.y1c9{bottom:138.092400pt;}
.y131{bottom:138.331067pt;}
.y61{bottom:138.872000pt;}
.y214{bottom:139.368133pt;}
.y1f5{bottom:139.372133pt;}
.y123{bottom:139.372933pt;}
.y10e{bottom:140.432933pt;}
.y135{bottom:140.528800pt;}
.y172{bottom:144.277467pt;}
.y16c{bottom:144.338533pt;}
.y15d{bottom:145.371467pt;}
.y14b{bottom:145.467333pt;}
.y157{bottom:146.058667pt;}
.y13f{bottom:146.153200pt;}
.yd{bottom:149.162133pt;}
.ya3{bottom:151.692000pt;}
.y7f{bottom:153.522933pt;}
.yf8{bottom:153.575333pt;}
.y130{bottom:153.965733pt;}
.y1c8{bottom:154.239067pt;}
.y60{bottom:154.506667pt;}
.y134{bottom:154.742133pt;}
.y122{bottom:155.007600pt;}
.y233{bottom:155.196133pt;}
.y1f4{bottom:155.208133pt;}
.y10d{bottom:156.067600pt;}
.y171{bottom:158.490800pt;}
.y16e{bottom:159.336267pt;}
.y15e{bottom:160.463200pt;}
.y158{bottom:161.150800pt;}
.yc{bottom:163.610133pt;}
.y19e{bottom:168.713467pt;}
.y7e{bottom:169.157600pt;}
.yf7{bottom:169.210000pt;}
.y12f{bottom:169.600400pt;}
.y5f{bottom:170.141333pt;}
.y1c7{bottom:170.385733pt;}
.y121{bottom:170.642267pt;}
.y213{bottom:171.032133pt;}
.y232{bottom:171.036133pt;}
.y1f3{bottom:171.048133pt;}
.y170{bottom:172.704133pt;}
.yb{bottom:173.550133pt;}
.y10c{bottom:179.534267pt;}
.y183{bottom:180.178267pt;}
.y7d{bottom:184.792267pt;}
.yf6{bottom:184.844667pt;}
.y5e{bottom:185.776000pt;}
.y120{bottom:186.276933pt;}
.y1c6{bottom:186.532400pt;}
.y212{bottom:186.872133pt;}
.y231{bottom:186.876133pt;}
.y1f2{bottom:186.884133pt;}
.y16f{bottom:186.917467pt;}
.ya{bottom:189.155467pt;}
.y12e{bottom:193.067067pt;}
.y182{bottom:194.391600pt;}
.y9{bottom:199.095467pt;}
.y7c{bottom:200.426933pt;}
.yf5{bottom:200.479333pt;}
.y5d{bottom:201.410667pt;}
.y11f{bottom:201.911600pt;}
.y1c5{bottom:202.651333pt;}
.y211{bottom:202.712133pt;}
.y230{bottom:202.716133pt;}
.y1f1{bottom:202.720133pt;}
.y181{bottom:208.604933pt;}
.y8{bottom:209.035467pt;}
.ye2{bottom:209.228000pt;}
.y10b{bottom:210.818267pt;}
.y19d{bottom:215.632133pt;}
.y7b{bottom:216.076133pt;}
.yf4{bottom:216.114000pt;}
.y5c{bottom:217.045333pt;}
.y11e{bottom:217.546267pt;}
.y22f{bottom:218.548133pt;}
.y210{bottom:218.552133pt;}
.y1f0{bottom:218.556133pt;}
.y1c4{bottom:218.798000pt;}
.ye1{bottom:224.862667pt;}
.y19c{bottom:231.266800pt;}
.y7a{bottom:231.710800pt;}
.yf3{bottom:231.748667pt;}
.y12d{bottom:232.162667pt;}
.y5b{bottom:232.680000pt;}
.y11d{bottom:233.180933pt;}
.y1ef{bottom:234.376133pt;}
.y20f{bottom:234.380133pt;}
.y22e{bottom:234.388133pt;}
.y1c3{bottom:234.944667pt;}
.ye0{bottom:240.497333pt;}
.y138{bottom:243.188000pt;}
.y12c{bottom:246.376000pt;}
.y19b{bottom:246.901467pt;}
.y79{bottom:247.345467pt;}
.yf2{bottom:247.383333pt;}
.y36{bottom:247.916667pt;}
.y5a{bottom:248.314667pt;}
.y11c{bottom:248.815600pt;}
.y1ee{bottom:250.216133pt;}
.y20e{bottom:250.220133pt;}
.y22d{bottom:250.228133pt;}
.y1c2{bottom:251.091333pt;}
.ydf{bottom:256.132000pt;}
.y10a{bottom:257.736933pt;}
.y12b{bottom:260.589333pt;}
.y19a{bottom:262.536133pt;}
.y78{bottom:262.980133pt;}
.y59{bottom:263.949333pt;}
.y11b{bottom:264.450267pt;}
.y35{bottom:265.686667pt;}
.y1ed{bottom:266.056133pt;}
.y20d{bottom:266.060133pt;}
.y1c1{bottom:267.238000pt;}
.yde{bottom:271.766667pt;}
.y109{bottom:273.371600pt;}
.y34{bottom:276.346667pt;}
.y199{bottom:278.170800pt;}
.yc6{bottom:279.628000pt;}
.y11a{bottom:280.084933pt;}
.y20c{bottom:281.888133pt;}
.y1ec{bottom:281.896133pt;}
.y1c0{bottom:283.384667pt;}
.y77{bottom:286.446800pt;}
.y33{bottom:287.006667pt;}
.ydd{bottom:287.401333pt;}
.y58{bottom:287.416000pt;}
.y108{bottom:289.006267pt;}
.y198{bottom:293.805467pt;}
.yc5{bottom:295.262667pt;}
.y119{bottom:295.719600pt;}
.yf1{bottom:296.356400pt;}
.y32{bottom:297.666667pt;}
.y22c{bottom:297.724133pt;}
.y20b{bottom:297.728133pt;}
.y1eb{bottom:297.732133pt;}
.y1bf{bottom:299.512800pt;}
.ydc{bottom:303.036000pt;}
.y57{bottom:303.050667pt;}
.y107{bottom:304.640933pt;}
.y31{bottom:308.326667pt;}
.y197{bottom:309.440133pt;}
.yc4{bottom:310.897333pt;}
.y118{bottom:311.354267pt;}
.y22b{bottom:313.564133pt;}
.y20a{bottom:313.568133pt;}
.y1ea{bottom:313.572133pt;}
.y1be{bottom:315.659467pt;}
.ydb{bottom:318.670667pt;}
.y56{bottom:318.685333pt;}
.y180{bottom:318.700000pt;}
.y30{bottom:318.986667pt;}
.y106{bottom:320.275600pt;}
.y196{bottom:325.074800pt;}
.yc3{bottom:326.532000pt;}
.y117{bottom:326.988933pt;}
.ye8{bottom:329.011600pt;}
.y209{bottom:329.400267pt;}
.y22a{bottom:329.404133pt;}
.y1e9{bottom:329.408133pt;}
.y2f{bottom:329.646667pt;}
.y1bd{bottom:331.806133pt;}
.yda{bottom:334.305333pt;}
.y55{bottom:334.320000pt;}
.y17f{bottom:334.334667pt;}
.y105{bottom:335.910267pt;}
.y76{bottom:335.938667pt;}
.y2e{bottom:340.306667pt;}
.y195{bottom:340.709467pt;}
.yc2{bottom:342.166667pt;}
.y116{bottom:342.623600pt;}
.y229{bottom:345.216133pt;}
.y208{bottom:345.240267pt;}
.y1e8{bottom:345.244133pt;}
.y1bc{bottom:347.952800pt;}
.yd9{bottom:349.940000pt;}
.y54{bottom:349.954667pt;}
.y17e{bottom:349.969333pt;}
.y75{bottom:350.152000pt;}
.y2d{bottom:350.966667pt;}
.y104{bottom:351.544933pt;}
.y194{bottom:356.344133pt;}
.yc1{bottom:357.801333pt;}
.ye9{bottom:357.816667pt;}
.y115{bottom:358.258267pt;}
.y228{bottom:361.056133pt;}
.y207{bottom:361.072133pt;}
.y1e7{bottom:361.080267pt;}
.y2c{bottom:361.626667pt;}
.y1bb{bottom:364.099467pt;}
.yd8{bottom:365.574667pt;}
.y53{bottom:365.589333pt;}
.y17d{bottom:365.604000pt;}
.y103{bottom:367.179600pt;}
.y2b{bottom:372.286667pt;}
.yc0{bottom:373.436000pt;}
.y114{bottom:373.892933pt;}
.y227{bottom:376.896133pt;}
.y1e6{bottom:376.904133pt;}
.y206{bottom:376.912133pt;}
.y1ba{bottom:380.227600pt;}
.y74{bottom:381.184582pt;}
.yd7{bottom:381.209333pt;}
.y52{bottom:381.224000pt;}
.y17c{bottom:381.238667pt;}
.y6f{bottom:381.854133pt;}
.y102{bottom:382.814267pt;}
.y2a{bottom:382.946667pt;}
.ybf{bottom:389.070667pt;}
.y226{bottom:392.736133pt;}
.y1e5{bottom:392.744133pt;}
.y29{bottom:393.606667pt;}
.y1b9{bottom:396.374267pt;}
.yd6{bottom:396.844000pt;}
.y51{bottom:396.858667pt;}
.y17b{bottom:396.873333pt;}
.y6e{bottom:397.971526pt;}
.y73{bottom:398.030170pt;}
.y101{bottom:398.448933pt;}
.y189{bottom:400.133333pt;}
.y192{bottom:400.640000pt;}
.ye7{bottom:400.646160pt;}
.y28{bottom:404.266667pt;}
.ybe{bottom:404.705333pt;}
.y225{bottom:408.576133pt;}
.y1e4{bottom:408.584133pt;}
.y152{bottom:410.665333pt;}
.ya2{bottom:412.377333pt;}
.yd5{bottom:412.478667pt;}
.y50{bottom:412.493333pt;}
.y17a{bottom:412.508000pt;}
.y1b8{bottom:412.520933pt;}
.y190{bottom:413.306667pt;}
.y6d{bottom:413.395923pt;}
.y72{bottom:413.772595pt;}
.y100{bottom:414.083600pt;}
.y27{bottom:414.926667pt;}
.y18e{bottom:415.292987pt;}
.ybd{bottom:420.340000pt;}
.y113{bottom:420.808267pt;}
.y205{bottom:424.412267pt;}
.y224{bottom:424.416133pt;}
.y1e3{bottom:424.424133pt;}
.y18d{bottom:427.441840pt;}
.ya1{bottom:428.025333pt;}
.yd4{bottom:428.113333pt;}
.y4f{bottom:428.128000pt;}
.y179{bottom:428.142667pt;}
.y71{bottom:428.153460pt;}
.y6c{bottom:428.591737pt;}
.y1b7{bottom:428.653733pt;}
.yff{bottom:429.718267pt;}
.y112{bottom:435.021600pt;}
.ybc{bottom:435.974667pt;}
.y18c{bottom:439.600320pt;}
.y26{bottom:439.796667pt;}
.y204{bottom:440.252267pt;}
.y223{bottom:440.256133pt;}
.y1e2{bottom:440.260133pt;}
.y70{bottom:442.027467pt;}
.y6b{bottom:442.028454pt;}
.ya0{bottom:443.660000pt;}
.yd3{bottom:443.748000pt;}
.y178{bottom:443.777333pt;}
.y1b6{bottom:444.800400pt;}
.yfe{bottom:445.352933pt;}
.y111{bottom:449.234933pt;}
.y4e{bottom:451.594667pt;}
.ybb{bottom:451.609333pt;}
.y18b{bottom:451.758800pt;}
.y203{bottom:456.092267pt;}
.y1e1{bottom:456.096133pt;}
.y25{bottom:457.566667pt;}
.y9f{bottom:459.301333pt;}
.yd2{bottom:459.382667pt;}
.y177{bottom:459.412000pt;}
.y1b5{bottom:460.947067pt;}
.yfd{bottom:460.987600pt;}
.y4d{bottom:467.229333pt;}
.yba{bottom:467.244000pt;}
.y24{bottom:468.226667pt;}
.ye6{bottom:469.735120pt;}
.y202{bottom:471.928133pt;}
.y1e0{bottom:471.932267pt;}
.y9e{bottom:474.949333pt;}
.yd1{bottom:475.017333pt;}
.y176{bottom:475.046667pt;}
.y1b4{bottom:477.093733pt;}
.y23{bottom:478.886667pt;}
.yea{bottom:478.997733pt;}
.y4c{bottom:482.864000pt;}
.yb9{bottom:482.878667pt;}
.y188{bottom:485.363733pt;}
.y222{bottom:487.752133pt;}
.y1df{bottom:487.756267pt;}
.y22{bottom:489.546667pt;}
.y9d{bottom:490.584000pt;}
.yd0{bottom:490.652000pt;}
.y175{bottom:490.681333pt;}
.y1b3{bottom:493.226533pt;}
.y4b{bottom:498.498667pt;}
.yb8{bottom:498.513333pt;}
.y187{bottom:499.577067pt;}
.y21{bottom:500.206667pt;}
.y221{bottom:503.592133pt;}
.y1de{bottom:503.596267pt;}
.y9c{bottom:506.232000pt;}
.ycf{bottom:506.286667pt;}
.y174{bottom:506.316000pt;}
.yfc{bottom:507.908267pt;}
.y1b2{bottom:509.373200pt;}
.y20{bottom:510.866667pt;}
.y4a{bottom:514.133333pt;}
.yb7{bottom:514.148000pt;}
.y220{bottom:519.432133pt;}
.y1dd{bottom:519.436267pt;}
.y1f{bottom:521.526667pt;}
.y9b{bottom:521.866667pt;}
.yce{bottom:521.921333pt;}
.y173{bottom:521.950667pt;}
.y1b1{bottom:525.519867pt;}
.y49{bottom:529.768000pt;}
.yb6{bottom:529.782667pt;}
.y1e{bottom:532.186667pt;}
.y1dc{bottom:535.272133pt;}
.y9a{bottom:537.514667pt;}
.ycd{bottom:537.556000pt;}
.y12a{bottom:537.614667pt;}
.y1d{bottom:542.846667pt;}
.y48{bottom:545.402667pt;}
.yb5{bottom:545.417333pt;}
.y1b0{bottom:549.524000pt;}
.y21f{bottom:551.100133pt;}
.y1db{bottom:551.108133pt;}
.y201{bottom:551.112133pt;}
.y99{bottom:553.149333pt;}
.ycc{bottom:553.190667pt;}
.y129{bottom:553.249333pt;}
.y1c{bottom:553.506667pt;}
.y47{bottom:561.037333pt;}
.yb4{bottom:561.052000pt;}
.y1b{bottom:564.166667pt;}
.y21e{bottom:566.940133pt;}
.y1da{bottom:566.948133pt;}
.y98{bottom:568.790667pt;}
.ycb{bottom:568.825333pt;}
.y128{bottom:568.884000pt;}
.y1a{bottom:574.826667pt;}
.y46{bottom:576.672000pt;}
.yb3{bottom:576.686667pt;}
.yf0{bottom:581.660800pt;}
.y200{bottom:582.772133pt;}
.y1d9{bottom:582.780133pt;}
.y97{bottom:584.452000pt;}
.yca{bottom:584.460000pt;}
.y127{bottom:584.518667pt;}
.y19{bottom:585.486667pt;}
.y45{bottom:592.306667pt;}
.yb2{bottom:592.321333pt;}
.ye5{bottom:594.497040pt;}
.y18{bottom:596.146667pt;}
.y1af{bottom:596.750667pt;}
.y21d{bottom:598.604133pt;}
.y1ff{bottom:598.612133pt;}
.y1d8{bottom:598.620133pt;}
.y96{bottom:600.086667pt;}
.y126{bottom:600.153333pt;}
.y17{bottom:606.806667pt;}
.yc9{bottom:607.926667pt;}
.y44{bottom:607.941333pt;}
.yb1{bottom:607.956000pt;}
.y1ae{bottom:612.693333pt;}
.y1d7{bottom:614.440133pt;}
.y21c{bottom:614.444133pt;}
.y1fe{bottom:614.452133pt;}
.yeb{bottom:615.404667pt;}
.y95{bottom:615.721333pt;}
.y8a{bottom:615.788000pt;}
.yb0{bottom:623.590667pt;}
.y1ad{bottom:628.636000pt;}
.y1d6{bottom:630.280133pt;}
.y21b{bottom:630.284133pt;}
.y94{bottom:631.356000pt;}
.y43{bottom:631.408000pt;}
.y89{bottom:631.422667pt;}
.yef{bottom:636.428000pt;}
.yc8{bottom:639.210667pt;}
.yaf{bottom:639.225333pt;}
.y1ac{bottom:644.578667pt;}
.y1d5{bottom:646.120133pt;}
.y21a{bottom:646.124133pt;}
.y93{bottom:647.004000pt;}
.y42{bottom:647.042667pt;}
.y88{bottom:647.057333pt;}
.yed{bottom:648.089440pt;}
.yae{bottom:654.860000pt;}
.y1ab{bottom:660.521333pt;}
.y219{bottom:661.948133pt;}
.y1d4{bottom:661.960133pt;}
.y92{bottom:662.638667pt;}
.y41{bottom:662.677333pt;}
.y87{bottom:662.692000pt;}
.y16{bottom:666.602000pt;}
.yee{bottom:667.137333pt;}
.yad{bottom:670.494667pt;}
.y1aa{bottom:676.464000pt;}
.y1d3{bottom:677.788133pt;}
.y1fd{bottom:677.792133pt;}
.y91{bottom:678.280000pt;}
.y40{bottom:678.312000pt;}
.y86{bottom:678.326667pt;}
.yac{bottom:686.129333pt;}
.y6a{bottom:687.218720pt;}
.y15{bottom:688.632533pt;}
.ye4{bottom:690.266640pt;}
.yec{bottom:691.516000pt;}
.y1a9{bottom:692.406667pt;}
.y1d2{bottom:693.628133pt;}
.y1fc{bottom:693.632133pt;}
.y90{bottom:693.928000pt;}
.y3f{bottom:693.946667pt;}
.y85{bottom:693.961333pt;}
.y69{bottom:699.144800pt;}
.yab{bottom:701.764000pt;}
.y1a8{bottom:708.349333pt;}
.y1d1{bottom:709.468133pt;}
.y1fb{bottom:709.472133pt;}
.y8f{bottom:709.562667pt;}
.y3e{bottom:709.581333pt;}
.y84{bottom:709.596000pt;}
.yaa{bottom:717.398667pt;}
.y14{bottom:719.391867pt;}
.y1a7{bottom:724.292000pt;}
.y8e{bottom:725.210667pt;}
.y3d{bottom:725.216000pt;}
.y83{bottom:725.230667pt;}
.y218{bottom:725.292133pt;}
.y1fa{bottom:725.296133pt;}
.y1d0{bottom:725.308133pt;}
.ya9{bottom:733.033333pt;}
.y13{bottom:738.591867pt;}
.y1a6{bottom:740.234667pt;}
.y8d{bottom:740.845333pt;}
.y3c{bottom:740.850667pt;}
.y68{bottom:740.865333pt;}
.y217{bottom:741.132133pt;}
.y1f9{bottom:741.136133pt;}
.y1cf{bottom:741.140133pt;}
.ya8{bottom:748.668000pt;}
.ye3{bottom:755.021200pt;}
.y1a5{bottom:756.177333pt;}
.y3b{bottom:756.485333pt;}
.y8c{bottom:756.486800pt;}
.y67{bottom:756.500000pt;}
.y1ce{bottom:756.972133pt;}
.y1f8{bottom:756.976133pt;}
.y12{bottom:761.578133pt;}
.ya7{bottom:764.302667pt;}
.y66{bottom:772.134667pt;}
.y1cd{bottom:772.812133pt;}
.y11{bottom:784.238133pt;}
.y3a{bottom:787.769333pt;}
.y1cc{bottom:788.652133pt;}
.y5{bottom:818.104133pt;}
.y65{bottom:828.342667pt;}
.y39{bottom:828.342800pt;}
.y4{bottom:834.688667pt;}
.y3{bottom:840.424667pt;}
.y64{bottom:843.977333pt;}
.y38{bottom:843.977467pt;}
.y2{bottom:847.352933pt;}
.y7{bottom:851.458800pt;}
.y6{bottom:863.458800pt;}
.h1a{height:-21.125333pt;}
.h18{height:-19.906667pt;}
.h21{height:12.160000pt;}
.h20{height:12.161333pt;}
.h4{height:17.424000pt;}
.h10{height:27.175312pt;}
.h1e{height:27.339733pt;}
.h6{height:27.738667pt;}
.hd{height:27.773438pt;}
.hc{height:27.792969pt;}
.h1f{height:28.052708pt;}
.h7{height:29.720000pt;}
.h5{height:31.402667pt;}
.hb{height:33.351562pt;}
.h15{height:34.251891pt;}
.h16{height:34.254610pt;}
.ha{height:37.031250pt;}
.h2{height:37.057292pt;}
.h2f{height:37.073292pt;}
.h19{height:38.032148pt;}
.h1c{height:38.032537pt;}
.h22{height:39.760417pt;}
.h12{height:40.070625pt;}
.he{height:40.734375pt;}
.hf{height:40.763021pt;}
.h11{height:44.037830pt;}
.h9{height:44.468750pt;}
.h34{height:46.740708pt;}
.h23{height:46.796875pt;}
.h32{height:46.812342pt;}
.h2d{height:46.812875pt;}
.h2a{height:46.813408pt;}
.h31{height:46.828342pt;}
.h29{height:46.828875pt;}
.h30{height:46.829408pt;}
.h24{height:46.833675pt;}
.h2e{height:46.844342pt;}
.h2b{height:46.844875pt;}
.h25{height:46.852342pt;}
.h2c{height:46.860875pt;}
.h26{height:46.871008pt;}
.h28{height:46.889142pt;}
.h27{height:46.907808pt;}
.h33{height:46.908875pt;}
.h1b{height:48.810328pt;}
.h13{height:53.329675pt;}
.h8{height:54.218750pt;}
.h1d{height:73.974667pt;}
.h3{height:93.200000pt;}
.h17{height:147.570667pt;}
.h14{height:148.256000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w5{width:-216.862667pt;}
.w4{width:-36.402667pt;}
.w3{width:-36.308000pt;}
.w2{width:92.077333pt;}
.w8{width:133.760000pt;}
.w7{width:160.613333pt;}
.w6{width:442.320000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x3c{left:-402.194133pt;}
.x35{left:-393.209467pt;}
.x34{left:-386.309200pt;}
.x33{left:-379.771600pt;}
.x36{left:-354.380800pt;}
.x37{left:-329.711200pt;}
.x3d{left:-310.415733pt;}
.x38{left:-305.041467pt;}
.x39{left:-280.371733pt;}
.x3a{left:-255.702133pt;}
.x3b{left:-231.032400pt;}
.x31{left:-211.258667pt;}
.x27{left:-204.532267pt;}
.x26{left:-197.994800pt;}
.x28{left:-172.604000pt;}
.x29{left:-147.934267pt;}
.x32{left:-128.639600pt;}
.x2a{left:-123.264667pt;}
.x2b{left:-98.594933pt;}
.x2c{left:-73.925333pt;}
.x2d{left:-49.255600pt;}
.x2f{left:-26.399600pt;}
.x2e{left:-19.862000pt;}
.x1f{left:-13.324267pt;}
.x0{left:0.000000pt;}
.x3e{left:1.520400pt;}
.x20{left:8.352533pt;}
.x41{left:32.936000pt;}
.x21{left:33.872933pt;}
.x40{left:46.112400pt;}
.x30{left:57.269200pt;}
.x22{left:59.393333pt;}
.x23{left:84.913600pt;}
.x9{left:98.267733pt;}
.x1{left:100.868000pt;}
.x24{left:110.434000pt;}
.xa{left:120.942400pt;}
.x4{left:123.548000pt;}
.x42{left:130.396933pt;}
.x43{left:132.994000pt;}
.x25{left:135.954400pt;}
.x5{left:154.340267pt;}
.x6{left:159.340267pt;}
.x10{left:170.612667pt;}
.x8{left:173.716800pt;}
.x11{left:195.433600pt;}
.x7{left:199.805333pt;}
.x12{left:210.074240pt;}
.x1c{left:214.424400pt;}
.x13{left:234.525760pt;}
.x1d{left:248.885333pt;}
.x14{left:252.826560pt;}
.xb{left:270.572133pt;}
.xc{left:292.953467pt;}
.x1e{left:294.969600pt;}
.x1a{left:313.835333pt;}
.x1b{left:322.242693pt;}
.x15{left:328.286400pt;}
.x19{left:331.765333pt;}
.x16{left:356.865920pt;}
.xf{left:361.025096pt;}
.x18{left:364.438267pt;}
.x17{left:367.094267pt;}
.x3f{left:379.998667pt;}
.x3{left:392.040667pt;}
.xd{left:450.281867pt;}
.xe{left:451.941579pt;}
.x2{left:463.360800pt;}
}




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