
    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_7540fe0cdb000027598db92b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_d0b686001c5b3f40436bfd24.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_06a47e175e7e11a138833d0f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_4df6ae9233b96f75875e68eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_a38efa26fd30f0f9f58d0f94.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_52656a7601d9b66a1948b353.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946289;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_2c95620a4f491a4424ed1f27.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_b74893e1929382f4fda385e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958000;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_78186c0570a1010d203f6e9d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958496;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_1e6913c7b56a4c7bf3c1df13.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.349000;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_d3d25a95e18041b6e6b6db93.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.362000;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_69eb993e4400b9673a3c7474.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910000;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_2b424d82cadf30de380fc15b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.200885;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_d7d3664c95a0e05178b5b104.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.668000;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_9c58097766261ab9e14b6fec.woff2')format("woff");}.fff{font-family:fff;line-height:1.384000;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_ee0c880574c6ca0ac413c18b.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_ee0c880574c6ca0ac413c18b.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b64858dd0937f84320f26885.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.926000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.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);}
.v1{vertical-align:-20.399963px;}
.v4{vertical-align:-18.359985px;}
.v5{vertical-align:-17.339996px;}
.v6{vertical-align:-10.859959px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.197982px;}
.v2{vertical-align:20.399966px;}
.v7{vertical-align:22.512000px;}
.ls83{letter-spacing:-2.598030px;}
.ls5c{letter-spacing:-1.596000px;}
.ls45{letter-spacing:-1.242000px;}
.lsd1{letter-spacing:-1.080000px;}
.ls3b{letter-spacing:-1.026000px;}
.lscc{letter-spacing:-0.990000px;}
.lsa3{letter-spacing:-0.972000px;}
.lsde{letter-spacing:-0.945000px;}
.ls5a{letter-spacing:-0.924000px;}
.ls48{letter-spacing:-0.918000px;}
.lsdd{letter-spacing:-0.900000px;}
.ls84{letter-spacing:-0.882000px;}
.ls57{letter-spacing:-0.864000px;}
.lsdc{letter-spacing:-0.855000px;}
.ls6f{letter-spacing:-0.810000px;}
.ls78{letter-spacing:-0.798000px;}
.lsc4{letter-spacing:-0.765000px;}
.ls77{letter-spacing:-0.756000px;}
.lsda{letter-spacing:-0.720000px;}
.ls41{letter-spacing:-0.702000px;}
.lsdb{letter-spacing:-0.675000px;}
.ls3e{letter-spacing:-0.648000px;}
.lsd9{letter-spacing:-0.630000px;}
.ls3c{letter-spacing:-0.594000px;}
.lsc7{letter-spacing:-0.585000px;}
.ls20{letter-spacing:-0.540000px;}
.lscd{letter-spacing:-0.495000px;}
.ls6d{letter-spacing:-0.486000px;}
.lsc5{letter-spacing:-0.450000px;}
.ls3f{letter-spacing:-0.432000px;}
.ls7a{letter-spacing:-0.420000px;}
.lscf{letter-spacing:-0.405000px;}
.ls46{letter-spacing:-0.378000px;}
.lsd0{letter-spacing:-0.360000px;}
.ls7b{letter-spacing:-0.336000px;}
.ls22{letter-spacing:-0.324000px;}
.lsca{letter-spacing:-0.315000px;}
.ls44{letter-spacing:-0.270000px;}
.ls85{letter-spacing:-0.252000px;}
.lsc6{letter-spacing:-0.225000px;}
.ls40{letter-spacing:-0.216000px;}
.ls5b{letter-spacing:-0.210000px;}
.ls23{letter-spacing:-0.204000px;}
.lsce{letter-spacing:-0.180000px;}
.ls4b{letter-spacing:-0.162000px;}
.lsa5{letter-spacing:-0.140400px;}
.lscb{letter-spacing:-0.135000px;}
.ls3d{letter-spacing:-0.108000px;}
.lsa4{letter-spacing:-0.105300px;}
.ls24{letter-spacing:-0.102000px;}
.lsd3{letter-spacing:-0.090000px;}
.lsa0{letter-spacing:-0.070200px;}
.ls47{letter-spacing:-0.054000px;}
.lsc8{letter-spacing:-0.045000px;}
.ls59{letter-spacing:-0.035100px;}
.ls0{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.000002px;}
.ls81{letter-spacing:0.002283px;}
.ls91{letter-spacing:0.005962px;}
.ls80{letter-spacing:0.006577px;}
.ls3{letter-spacing:0.013223px;}
.ls4{letter-spacing:0.013772px;}
.ls5{letter-spacing:0.013956px;}
.lsae{letter-spacing:0.032400px;}
.ls58{letter-spacing:0.035100px;}
.lse3{letter-spacing:0.037789px;}
.lsbd{letter-spacing:0.045000px;}
.ls2f{letter-spacing:0.052648px;}
.ls7c{letter-spacing:0.053999px;}
.ls32{letter-spacing:0.054000px;}
.ls31{letter-spacing:0.060000px;}
.ls86{letter-spacing:0.064774px;}
.ls71{letter-spacing:0.064812px;}
.lsad{letter-spacing:0.070199px;}
.ls43{letter-spacing:0.070200px;}
.lsaf{letter-spacing:0.070201px;}
.ls30{letter-spacing:0.075550px;}
.lsac{letter-spacing:0.075589px;}
.lsc9{letter-spacing:0.090000px;}
.ls1d{letter-spacing:0.097748px;}
.lsbe{letter-spacing:0.103500px;}
.lsc{letter-spacing:0.105300px;}
.ls6c{letter-spacing:0.107951px;}
.ls8{letter-spacing:0.108000px;}
.ls27{letter-spacing:0.108002px;}
.lsaa{letter-spacing:0.114616px;}
.lsd{letter-spacing:0.120263px;}
.ls3a{letter-spacing:0.122850px;}
.ls73{letter-spacing:0.125559px;}
.lsa{letter-spacing:0.128990px;}
.lsd2{letter-spacing:0.135000px;}
.ls26{letter-spacing:0.140401px;}
.ls1c{letter-spacing:0.153000px;}
.ls8f{letter-spacing:0.155393px;}
.lsab{letter-spacing:0.156597px;}
.lsd5{letter-spacing:0.157515px;}
.ls92{letter-spacing:0.161995px;}
.lsb{letter-spacing:0.162000px;}
.lsb0{letter-spacing:0.171708px;}
.ls17{letter-spacing:0.175500px;}
.ls18{letter-spacing:0.175786px;}
.ls60{letter-spacing:0.178189px;}
.lsc1{letter-spacing:0.180000px;}
.lsb1{letter-spacing:0.183578px;}
.ls29{letter-spacing:0.193050px;}
.ls19{letter-spacing:0.205167px;}
.ls13{letter-spacing:0.210600px;}
.ls9b{letter-spacing:0.210602px;}
.ls2e{letter-spacing:0.210637px;}
.ls14{letter-spacing:0.211239px;}
.ls9{letter-spacing:0.216000px;}
.lsb7{letter-spacing:0.225000px;}
.ls6{letter-spacing:0.240043px;}
.ls87{letter-spacing:0.245699px;}
.lsa2{letter-spacing:0.245700px;}
.ls79{letter-spacing:0.252000px;}
.ls99{letter-spacing:0.259203px;}
.ls16{letter-spacing:0.270000px;}
.ls52{letter-spacing:0.275398px;}
.ls28{letter-spacing:0.280763px;}
.ls6e{letter-spacing:0.280800px;}
.ls94{letter-spacing:0.286195px;}
.lse{letter-spacing:0.292137px;}
.ls2a{letter-spacing:0.297000px;}
.ls53{letter-spacing:0.307775px;}
.lsb6{letter-spacing:0.315000px;}
.lsa6{letter-spacing:0.315898px;}
.lsa1{letter-spacing:0.315900px;}
.lsa7{letter-spacing:0.315901px;}
.ls36{letter-spacing:0.323998px;}
.ls12{letter-spacing:0.324000px;}
.lsb5{letter-spacing:0.324017px;}
.ls74{letter-spacing:0.324612px;}
.ls2d{letter-spacing:0.334815px;}
.lsb4{letter-spacing:0.350999px;}
.ls9e{letter-spacing:0.351000px;}
.ls93{letter-spacing:0.351002px;}
.ls54{letter-spacing:0.360000px;}
.ls95{letter-spacing:0.377965px;}
.ls7e{letter-spacing:0.377999px;}
.ls7{letter-spacing:0.378000px;}
.ls7d{letter-spacing:0.378001px;}
.ls97{letter-spacing:0.386100px;}
.ls15{letter-spacing:0.394219px;}
.ls88{letter-spacing:0.399575px;}
.lsbf{letter-spacing:0.405000px;}
.ls8d{letter-spacing:0.410511px;}
.lsa8{letter-spacing:0.415815px;}
.ls55{letter-spacing:0.420000px;}
.ls4f{letter-spacing:0.421146px;}
.ls63{letter-spacing:0.426613px;}
.ls4e{letter-spacing:0.431991px;}
.lsf{letter-spacing:0.432000px;}
.ls8c{letter-spacing:0.438745px;}
.lsb8{letter-spacing:0.450000px;}
.ls8e{letter-spacing:0.469762px;}
.ls11{letter-spacing:0.475792px;}
.ls10{letter-spacing:0.476341px;}
.ls37{letter-spacing:0.480000px;}
.ls38{letter-spacing:0.480008px;}
.ls34{letter-spacing:0.486000px;}
.lsd6{letter-spacing:0.495000px;}
.ls9a{letter-spacing:0.523795px;}
.ls69{letter-spacing:0.539999px;}
.ls21{letter-spacing:0.540000px;}
.ls9f{letter-spacing:0.566963px;}
.lsd4{letter-spacing:0.585000px;}
.ls33{letter-spacing:0.594000px;}
.ls62{letter-spacing:0.600000px;}
.lsa9{letter-spacing:0.604784px;}
.ls9c{letter-spacing:0.621036px;}
.lsbc{letter-spacing:0.630000px;}
.ls50{letter-spacing:0.648000px;}
.ls35{letter-spacing:0.648001px;}
.ls67{letter-spacing:0.653406px;}
.ls96{letter-spacing:0.664200px;}
.lsb9{letter-spacing:0.675000px;}
.ls4a{letter-spacing:0.702000px;}
.ls6a{letter-spacing:0.712794px;}
.ls64{letter-spacing:0.720000px;}
.ls6b{letter-spacing:0.729043px;}
.ls68{letter-spacing:0.739835px;}
.ls1f{letter-spacing:0.756000px;}
.lsdf{letter-spacing:0.765000px;}
.ls98{letter-spacing:0.799205px;}
.lsb3{letter-spacing:0.804648px;}
.ls61{letter-spacing:0.809999px;}
.ls66{letter-spacing:0.810000px;}
.ls89{letter-spacing:0.831612px;}
.lsc0{letter-spacing:0.855000px;}
.ls70{letter-spacing:0.858596px;}
.ls49{letter-spacing:0.864000px;}
.lsb2{letter-spacing:0.864001px;}
.ls72{letter-spacing:0.869433px;}
.ls39{letter-spacing:0.869497px;}
.ls65{letter-spacing:0.885576px;}
.lsd7{letter-spacing:0.886450px;}
.lse0{letter-spacing:0.900000px;}
.ls42{letter-spacing:0.918000px;}
.ls1b{letter-spacing:0.941315px;}
.ls5e{letter-spacing:0.972000px;}
.ls7f{letter-spacing:0.988244px;}
.ls5d{letter-spacing:1.026000px;}
.ls4d{letter-spacing:1.050015px;}
.ls8a{letter-spacing:1.080000px;}
.ls90{letter-spacing:1.096177px;}
.ls2c{letter-spacing:1.096208px;}
.ls2b{letter-spacing:1.123209px;}
.lsc3{letter-spacing:1.125000px;}
.ls1e{letter-spacing:1.134000px;}
.ls4c{letter-spacing:1.140000px;}
.lse1{letter-spacing:1.170000px;}
.ls9d{letter-spacing:1.188000px;}
.ls8b{letter-spacing:1.204192px;}
.lse4{letter-spacing:1.305000px;}
.lse2{letter-spacing:1.350000px;}
.ls5f{letter-spacing:1.360775px;}
.ls1a{letter-spacing:1.479000px;}
.lsbb{letter-spacing:1.647057px;}
.lsd8{letter-spacing:2.160000px;}
.lsba{letter-spacing:2.245476px;}
.ls1{letter-spacing:2.592000px;}
.ls25{letter-spacing:2.700000px;}
.ls2{letter-spacing:2.767500px;}
.lsc2{letter-spacing:6.120000px;}
.ls82{letter-spacing:69.845995px;}
.ls76{letter-spacing:71.442000px;}
.ls75{letter-spacing:88.577999px;}
.ls56{letter-spacing:206.177997px;}
.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;}
}
.wsb{word-spacing:-33.150001px;}
.ws0{word-spacing:-18.984000px;}
.ws4{word-spacing:-15.067500px;}
.ws29{word-spacing:-14.700000px;}
.ws71{word-spacing:-13.596000px;}
.ws70{word-spacing:-13.500000px;}
.ws34{word-spacing:-13.284000px;}
.ws8{word-spacing:-13.014000px;}
.ws33{word-spacing:-12.798000px;}
.wsba{word-spacing:-12.636000px;}
.ws8e{word-spacing:-12.582000px;}
.wsb9{word-spacing:-12.528000px;}
.ws3{word-spacing:-12.480000px;}
.ws32{word-spacing:-12.474000px;}
.ws2e{word-spacing:-12.420000px;}
.ws9{word-spacing:-12.366000px;}
.ws5{word-spacing:-12.360000px;}
.ws5a{word-spacing:-12.312000px;}
.ws35{word-spacing:-12.258000px;}
.ws3b{word-spacing:-12.204000px;}
.ws2{word-spacing:-12.192000px;}
.ws30{word-spacing:-12.150000px;}
.ws37{word-spacing:-12.096000px;}
.wsa{word-spacing:-12.042000px;}
.ws39{word-spacing:-11.988000px;}
.ws2d{word-spacing:-11.934000px;}
.ws6f{word-spacing:-11.880000px;}
.ws9b{word-spacing:-11.847017px;}
.wsa8{word-spacing:-11.826000px;}
.ws2a{word-spacing:-11.772000px;}
.ws2b{word-spacing:-11.718000px;}
.ws2f{word-spacing:-11.664000px;}
.ws7f{word-spacing:-11.610000px;}
.ws73{word-spacing:-11.556000px;}
.ws5b{word-spacing:-11.502000px;}
.ws3a{word-spacing:-11.448000px;}
.wsae{word-spacing:-11.394000px;}
.ws38{word-spacing:-11.124000px;}
.ws108{word-spacing:-11.115000px;}
.ws109{word-spacing:-10.980000px;}
.wsf7{word-spacing:-10.665000px;}
.wscc{word-spacing:-10.440000px;}
.wsf6{word-spacing:-10.395000px;}
.wse6{word-spacing:-10.350000px;}
.wsf3{word-spacing:-10.305000px;}
.wsdd{word-spacing:-10.215000px;}
.wsc{word-spacing:-10.200000px;}
.wsc9{word-spacing:-10.170000px;}
.wsca{word-spacing:-10.125000px;}
.wsed{word-spacing:-10.080000px;}
.wsc6{word-spacing:-9.990000px;}
.wsc8{word-spacing:-9.855000px;}
.wsfc{word-spacing:-9.810000px;}
.wsf5{word-spacing:-9.765000px;}
.wsc5{word-spacing:-9.720000px;}
.wse1{word-spacing:-9.675000px;}
.wsfa{word-spacing:-9.630000px;}
.wsfd{word-spacing:-9.585000px;}
.wsc4{word-spacing:-9.540000px;}
.wsf4{word-spacing:-9.450000px;}
.wsc7{word-spacing:-9.315000px;}
.wscb{word-spacing:-9.225000px;}
.wsad{word-spacing:-8.353800px;}
.wsac{word-spacing:-8.318700px;}
.wsaa{word-spacing:-8.283600px;}
.ws72{word-spacing:-8.248500px;}
.wsab{word-spacing:-8.213400px;}
.ws31{word-spacing:-8.178300px;}
.ws2c{word-spacing:-8.143200px;}
.ws3c{word-spacing:-8.108100px;}
.wsb8{word-spacing:-8.073000px;}
.ws36{word-spacing:-8.037900px;}
.ws5c{word-spacing:-8.002800px;}
.ws7{word-spacing:-7.967700px;}
.ws5d{word-spacing:-7.932600px;}
.wsa9{word-spacing:-7.897500px;}
.wsaf{word-spacing:-7.862400px;}
.wsb0{word-spacing:-7.827300px;}
.wscd{word-spacing:-6.120000px;}
.ws67{word-spacing:-5.508000px;}
.ws11{word-spacing:-5.340000px;}
.ws6e{word-spacing:-4.284000px;}
.ws10d{word-spacing:-3.960000px;}
.ws12{word-spacing:-3.840000px;}
.ws10{word-spacing:-3.600000px;}
.wse{word-spacing:-3.276000px;}
.ws13{word-spacing:-2.400000px;}
.ws97{word-spacing:-2.376000px;}
.wsbc{word-spacing:-2.106000px;}
.wsbf{word-spacing:-1.998000px;}
.ws79{word-spacing:-1.890000px;}
.ws54{word-spacing:-1.860000px;}
.ws4d{word-spacing:-1.836000px;}
.ws4a{word-spacing:-1.782000px;}
.ws25{word-spacing:-1.734000px;}
.ws1d{word-spacing:-1.728000px;}
.ws48{word-spacing:-1.674000px;}
.ws46{word-spacing:-1.620000px;}
.wsea{word-spacing:-1.575000px;}
.ws3d{word-spacing:-1.566000px;}
.ws22{word-spacing:-1.530000px;}
.ws99{word-spacing:-1.512000px;}
.ws44{word-spacing:-1.458000px;}
.ws42{word-spacing:-1.404000px;}
.wseb{word-spacing:-1.395000px;}
.ws4f{word-spacing:-1.386000px;}
.ws75{word-spacing:-1.350000px;}
.ws45{word-spacing:-1.296000px;}
.ws28{word-spacing:-1.275000px;}
.wsf{word-spacing:-1.260000px;}
.ws1a{word-spacing:-1.242000px;}
.ws43{word-spacing:-1.188000px;}
.ws8d{word-spacing:-1.176000px;}
.wsf9{word-spacing:-1.170000px;}
.ws63{word-spacing:-1.140000px;}
.ws14{word-spacing:-1.134000px;}
.wsf8{word-spacing:-1.125000px;}
.ws7e{word-spacing:-1.080000px;}
.wsd0{word-spacing:-1.035000px;}
.wsbb{word-spacing:-1.026000px;}
.ws27{word-spacing:-1.020000px;}
.ws102{word-spacing:-0.990000px;}
.ws6a{word-spacing:-0.972000px;}
.ws6d{word-spacing:-0.966000px;}
.wsd{word-spacing:-0.960000px;}
.wsf0{word-spacing:-0.945000px;}
.ws6b{word-spacing:-0.924000px;}
.ws107{word-spacing:-0.900000px;}
.ws98{word-spacing:-0.864000px;}
.wse8{word-spacing:-0.855000px;}
.wsb2{word-spacing:-0.810000px;}
.ws100{word-spacing:-0.765000px;}
.wsb3{word-spacing:-0.756000px;}
.ws7b{word-spacing:-0.720000px;}
.ws6c{word-spacing:-0.714000px;}
.ws7c{word-spacing:-0.702000px;}
.wsfb{word-spacing:-0.675000px;}
.ws18{word-spacing:-0.648000px;}
.ws50{word-spacing:-0.600000px;}
.ws17{word-spacing:-0.594000px;}
.wsd1{word-spacing:-0.585000px;}
.ws20{word-spacing:-0.540000px;}
.ws26{word-spacing:-0.510000px;}
.wse7{word-spacing:-0.495000px;}
.ws1b{word-spacing:-0.486000px;}
.ws57{word-spacing:-0.480000px;}
.wsd7{word-spacing:-0.450000px;}
.ws1e{word-spacing:-0.432000px;}
.ws68{word-spacing:-0.420000px;}
.wsd4{word-spacing:-0.405000px;}
.wsb5{word-spacing:-0.386100px;}
.ws3f{word-spacing:-0.378000px;}
.wsd9{word-spacing:-0.360000px;}
.wsb4{word-spacing:-0.351000px;}
.ws16{word-spacing:-0.324000px;}
.wsbd{word-spacing:-0.315900px;}
.wsd3{word-spacing:-0.315000px;}
.wsb1{word-spacing:-0.280800px;}
.ws41{word-spacing:-0.270000px;}
.wsc3{word-spacing:-0.245700px;}
.wsd2{word-spacing:-0.225000px;}
.ws21{word-spacing:-0.216000px;}
.ws47{word-spacing:-0.210600px;}
.ws69{word-spacing:-0.180000px;}
.ws40{word-spacing:-0.175500px;}
.ws7a{word-spacing:-0.162000px;}
.ws59{word-spacing:-0.140400px;}
.wsec{word-spacing:-0.135000px;}
.ws19{word-spacing:-0.108000px;}
.wsc0{word-spacing:-0.105300px;}
.wsd6{word-spacing:-0.090000px;}
.ws56{word-spacing:-0.060000px;}
.ws58{word-spacing:-0.054000px;}
.wse9{word-spacing:-0.045000px;}
.ws66{word-spacing:-0.035100px;}
.ws1{word-spacing:0.000000px;}
.wsc1{word-spacing:0.035100px;}
.wsd8{word-spacing:0.045000px;}
.ws1f{word-spacing:0.054000px;}
.wsd5{word-spacing:0.090000px;}
.ws53{word-spacing:0.108000px;}
.ws52{word-spacing:0.120000px;}
.wsda{word-spacing:0.135000px;}
.ws4b{word-spacing:0.162000px;}
.ws4e{word-spacing:0.216000px;}
.ws74{word-spacing:0.270000px;}
.ws101{word-spacing:0.315000px;}
.ws51{word-spacing:0.324000px;}
.wsdf{word-spacing:0.360000px;}
.ws65{word-spacing:0.378000px;}
.wsf1{word-spacing:0.405000px;}
.ws76{word-spacing:0.432000px;}
.wsfe{word-spacing:0.450000px;}
.ws55{word-spacing:0.486000px;}
.wsee{word-spacing:0.495000px;}
.ws64{word-spacing:0.540000px;}
.wsef{word-spacing:0.585000px;}
.ws1c{word-spacing:0.594000px;}
.wsdc{word-spacing:0.630000px;}
.ws4c{word-spacing:0.648000px;}
.wsdb{word-spacing:0.675000px;}
.wsbe{word-spacing:0.702000px;}
.wsff{word-spacing:0.720000px;}
.ws7d{word-spacing:0.756000px;}
.wse5{word-spacing:0.765000px;}
.wse0{word-spacing:0.810000px;}
.wsde{word-spacing:0.855000px;}
.wsc2{word-spacing:0.918000px;}
.ws103{word-spacing:0.945000px;}
.ws104{word-spacing:0.990000px;}
.ws3e{word-spacing:1.026000px;}
.wsf2{word-spacing:1.080000px;}
.wse3{word-spacing:1.125000px;}
.wse4{word-spacing:1.170000px;}
.ws10e{word-spacing:1.188000px;}
.ws78{word-spacing:1.242000px;}
.ws105{word-spacing:1.305000px;}
.ws77{word-spacing:1.404000px;}
.ws15{word-spacing:1.512000px;}
.ws62{word-spacing:1.560000px;}
.ws49{word-spacing:1.566000px;}
.ws23{word-spacing:1.632000px;}
.wse2{word-spacing:1.665000px;}
.wsb7{word-spacing:1.674000px;}
.wsce{word-spacing:1.710000px;}
.wsb6{word-spacing:1.836000px;}
.ws106{word-spacing:1.845000px;}
.ws10b{word-spacing:2.160000px;}
.wscf{word-spacing:2.340000px;}
.ws24{word-spacing:2.601000px;}
.ws10a{word-spacing:2.700000px;}
.ws10c{word-spacing:3.555000px;}
.ws94{word-spacing:30.072003px;}
.ws8b{word-spacing:30.365997px;}
.ws8c{word-spacing:36.708006px;}
.ws96{word-spacing:37.254000px;}
.ws95{word-spacing:40.151995px;}
.ws6{word-spacing:40.553306px;}
.ws91{word-spacing:44.015995px;}
.ws88{word-spacing:45.612000px;}
.ws93{word-spacing:45.738004px;}
.ws8a{word-spacing:48.426000px;}
.ws89{word-spacing:52.332000px;}
.ws86{word-spacing:55.271996px;}
.ws5f{word-spacing:60.605993px;}
.ws81{word-spacing:62.747999px;}
.wsa6{word-spacing:70.475992px;}
.ws84{word-spacing:70.980005px;}
.ws5e{word-spacing:72.197993px;}
.ws9c{word-spacing:72.953992px;}
.ws83{word-spacing:76.986002px;}
.ws92{word-spacing:79.673990px;}
.ws9f{word-spacing:81.059990px;}
.wsa0{word-spacing:83.500192px;}
.wsa7{word-spacing:90.593996px;}
.wsa2{word-spacing:90.635992px;}
.ws87{word-spacing:93.618006px;}
.ws9d{word-spacing:95.087996px;}
.ws82{word-spacing:103.655995px;}
.ws9e{word-spacing:125.411992px;}
.ws80{word-spacing:127.890005px;}
.wsa3{word-spacing:134.147990px;}
.wsa4{word-spacing:138.095990px;}
.wsa5{word-spacing:149.435992px;}
.wsa1{word-spacing:155.189990px;}
.ws60{word-spacing:161.363997px;}
.ws90{word-spacing:180.390005px;}
.ws85{word-spacing:220.466385px;}
.ws61{word-spacing:229.991990px;}
.ws9a{word-spacing:290.461780px;}
.ws8f{word-spacing:292.681005px;}
._5{margin-left:-13.821596px;}
._30{margin-left:-12.147529px;}
._4a{margin-left:-11.025000px;}
._4c{margin-left:-9.675000px;}
._4b{margin-left:-8.640000px;}
._2{margin-left:-7.353600px;}
._9{margin-left:-5.629200px;}
._3{margin-left:-4.284000px;}
._4{margin-left:-3.276005px;}
._1{margin-left:-1.996800px;}
._8{width:1.080006px;}
._a{width:2.362161px;}
._7{width:3.924002px;}
._0{width:5.587200px;}
._47{width:7.065000px;}
._4d{width:8.071798px;}
._44{width:9.090000px;}
._49{width:10.141806px;}
._46{width:11.835000px;}
._45{width:12.960000px;}
._4e{width:14.033100px;}
._31{width:15.281992px;}
._19{width:16.537198px;}
._48{width:17.836802px;}
._1a{width:41.302823px;}
._e{width:42.682694px;}
._6{width:43.860583px;}
._10{width:45.611997px;}
._c{width:47.113246px;}
._b{width:48.375604px;}
._d{width:49.847910px;}
._34{width:58.296005px;}
._3b{width:59.394085px;}
._f{width:60.505230px;}
._28{width:62.453990px;}
._21{width:69.807585px;}
._1e{width:70.854001px;}
._25{width:73.457995px;}
._3e{width:78.879613px;}
._1f{width:80.556005px;}
._24{width:88.577999px;}
._22{width:90.590408px;}
._1d{width:94.041590px;}
._33{width:97.451994px;}
._43{width:100.841996px;}
._13{width:103.193999px;}
._3f{width:108.035984px;}
._1c{width:115.469990px;}
._41{width:120.329992px;}
._18{width:121.548009px;}
._16{width:136.962009px;}
._11{width:138.004803px;}
._40{width:139.669198px;}
._23{width:151.245585px;}
._42{width:158.759992px;}
._20{width:166.323585px;}
._14{width:168.672009px;}
._15{width:170.563215px;}
._3d{width:175.395613px;}
._3a{width:182.913613px;}
._3c{width:186.861613px;}
._2d{width:235.360825px;}
._12{width:274.805990px;}
._2a{width:275.953185px;}
._39{width:279.429613px;}
._2b{width:283.303185px;}
._38{width:290.895613px;}
._1b{width:296.379573px;}
._36{width:342.513613px;}
._2f{width:367.710002px;}
._17{width:370.985999px;}
._29{width:379.819185px;}
._37{width:387.411613px;}
._27{width:442.903185px;}
._35{width:450.495613px;}
._2e{width:471.576002px;}
._26{width:542.625570px;}
._2c{width:550.717185px;}
._32{width:721.587557px;}
.fc6{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(131,144,151);}
.fc5{color:rgb(245,130,32);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:27.045001px;}
.fsa{font-size:33.150001px;}
.fs9{font-size:35.099999px;}
.fs7{font-size:39.000000px;}
.fsd{font-size:42.000000px;}
.fsf{font-size:43.300801px;}
.fs11{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs10{font-size:51.960600px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fsc{font-size:108.000000px;}
.fs6{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y15e{bottom:2.195709px;}
.y192{bottom:3.516037px;}
.yc{bottom:8.040000px;}
.y15f{bottom:17.267487px;}
.y1e{bottom:27.177601px;}
.y1d{bottom:27.197851px;}
.y19b{bottom:34.278030px;}
.y16{bottom:55.635000px;}
.y4c{bottom:68.313899px;}
.y92{bottom:68.554498px;}
.y10d{bottom:68.569506px;}
.y1f1{bottom:68.796298px;}
.y21c{bottom:68.802302px;}
.yb9{bottom:74.749502px;}
.y15c{bottom:75.473254px;}
.y128{bottom:76.095307px;}
.y15{bottom:77.715000px;}
.y4b{bottom:83.307899px;}
.y91{bottom:83.552997px;}
.y10c{bottom:83.568005px;}
.y1f0{bottom:83.794798px;}
.y21b{bottom:83.800801px;}
.y2b4{bottom:84.089515px;}
.y264{bottom:89.028761px;}
.yb8{bottom:89.748001px;}
.y15b{bottom:90.471753px;}
.y127{bottom:91.093807px;}
.y1b{bottom:91.590000px;}
.y2b3{bottom:96.835765px;}
.y4a{bottom:98.307899px;}
.y90{bottom:98.551496px;}
.y10b{bottom:98.566504px;}
.y1ef{bottom:98.799300px;}
.y14{bottom:99.795000px;}
.y263{bottom:101.775012px;}
.y165{bottom:101.996887px;}
.yb7{bottom:104.746500px;}
.y15a{bottom:105.470252px;}
.y126{bottom:106.092306px;}
.y2b2{bottom:109.582015px;}
.y49{bottom:113.307899px;}
.y8f{bottom:113.554498px;}
.y10a{bottom:113.565004px;}
.y1a{bottom:113.670000px;}
.y1ee{bottom:113.797799px;}
.y262{bottom:114.521262px;}
.yb6{bottom:119.744999px;}
.y159{bottom:120.468752px;}
.y125{bottom:121.125324px;}
.y2b1{bottom:122.328265px;}
.y261{bottom:127.267512px;}
.y8e{bottom:128.552997px;}
.y109{bottom:128.563503px;}
.y1ed{bottom:128.796298px;}
.y48{bottom:132.636898px;}
.y10{bottom:133.935000px;}
.yb5{bottom:134.743499px;}
.y2b0{bottom:135.074515px;}
.y158{bottom:135.467251px;}
.y19{bottom:135.750000px;}
.y124{bottom:136.123823px;}
.y1b0{bottom:137.025449px;}
.y260{bottom:140.013762px;}
.y8d{bottom:143.551496px;}
.y108{bottom:143.562002px;}
.y1ec{bottom:143.794798px;}
.y2af{bottom:147.820766px;}
.yb4{bottom:149.741998px;}
.y123{bottom:151.122322px;}
.y1af{bottom:152.023948px;}
.y25f{bottom:152.760012px;}
.y17{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y18{bottom:157.830000px;}
.y8c{bottom:158.549995px;}
.y107{bottom:158.560501px;}
.y21a{bottom:158.794798px;}
.y1eb{bottom:158.800801px;}
.y2ae{bottom:160.567016px;}
.yb3{bottom:164.740497px;}
.y25e{bottom:165.506262px;}
.y157{bottom:165.612743px;}
.y122{bottom:166.120821px;}
.y1ae{bottom:167.022447px;}
.y2ad{bottom:173.313266px;}
.y106{bottom:173.559000px;}
.y1ea{bottom:173.799300px;}
.y219{bottom:173.800801px;}
.y25d{bottom:178.252512px;}
.yb2{bottom:179.738996px;}
.y156{bottom:180.611242px;}
.y47{bottom:180.687313px;}
.y121{bottom:181.119320px;}
.y1ad{bottom:182.020946px;}
.y2ac{bottom:186.059516px;}
.y105{bottom:188.557499px;}
.y8b{bottom:188.624248px;}
.y1e9{bottom:188.797799px;}
.y218{bottom:188.799300px;}
.y25c{bottom:190.998762px;}
.yb1{bottom:194.737495px;}
.y155{bottom:195.609741px;}
.y46{bottom:195.685812px;}
.y120{bottom:196.117820px;}
.y2ab{bottom:198.805766px;}
.y104{bottom:203.555999px;}
.y8a{bottom:203.622747px;}
.y25b{bottom:203.745012px;}
.y1e8{bottom:203.796298px;}
.y217{bottom:203.797799px;}
.y154{bottom:210.608240px;}
.y45{bottom:210.687313px;}
.y11f{bottom:211.116319px;}
.y2aa{bottom:211.552016px;}
.y1ac{bottom:212.184457px;}
.y25a{bottom:216.491263px;}
.y103{bottom:218.554498px;}
.y89{bottom:218.621246px;}
.y1e7{bottom:218.794798px;}
.y216{bottom:218.796298px;}
.yb0{bottom:222.824553px;}
.y2a9{bottom:224.298266px;}
.y153{bottom:225.606740px;}
.y44{bottom:225.685812px;}
.y11e{bottom:226.114818px;}
.y259{bottom:229.237513px;}
.y1ab{bottom:229.624957px;}
.y102{bottom:233.552997px;}
.y88{bottom:233.619746px;}
.y1e6{bottom:233.794798px;}
.y2a8{bottom:237.044516px;}
.yaf{bottom:237.823053px;}
.y152{bottom:240.605239px;}
.y43{bottom:240.687313px;}
.y11d{bottom:241.113317px;}
.y258{bottom:241.983763px;}
.y1aa{bottom:247.065457px;}
.y101{bottom:248.551496px;}
.y87{bottom:248.618245px;}
.y1e5{bottom:248.794798px;}
.y215{bottom:248.799300px;}
.y2a7{bottom:249.790766px;}
.yae{bottom:252.821552px;}
.y257{bottom:254.730013px;}
.y151{bottom:255.603738px;}
.y42{bottom:255.685812px;}
.y11c{bottom:256.111816px;}
.y2a6{bottom:262.537017px;}
.y100{bottom:263.549995px;}
.y86{bottom:263.616744px;}
.y1e4{bottom:263.794798px;}
.y214{bottom:263.797799px;}
.y1a9{bottom:264.505957px;}
.y256{bottom:267.476263px;}
.yad{bottom:267.820051px;}
.y150{bottom:270.602237px;}
.y41{bottom:270.687313px;}
.y11b{bottom:271.110316px;}
.y2a5{bottom:275.283267px;}
.y85{bottom:278.615243px;}
.y213{bottom:278.796298px;}
.y1e3{bottom:278.797799px;}
.y255{bottom:280.222513px;}
.y1a8{bottom:281.946458px;}
.yac{bottom:282.818550px;}
.y14f{bottom:285.600736px;}
.y40{bottom:285.685812px;}
.y11a{bottom:286.108815px;}
.y2a4{bottom:288.029517px;}
.yff{bottom:292.310404px;}
.y254{bottom:292.968763px;}
.y84{bottom:293.613742px;}
.y212{bottom:293.794798px;}
.y1e2{bottom:293.796298px;}
.y1a7{bottom:299.386958px;}
.y14e{bottom:300.599236px;}
.y3f{bottom:300.685812px;}
.y2a3{bottom:300.775767px;}
.y119{bottom:301.107314px;}
.y253{bottom:305.715013px;}
.yfe{bottom:307.308903px;}
.y83{bottom:308.612241px;}
.y1e1{bottom:308.794798px;}
.yab{bottom:310.901106px;}
.y2a2{bottom:313.522017px;}
.y14d{bottom:315.597735px;}
.y3e{bottom:315.687313px;}
.y118{bottom:316.105813px;}
.y1a6{bottom:316.827458px;}
.y252{bottom:318.461263px;}
.yfd{bottom:322.307402px;}
.y82{bottom:323.610741px;}
.y1e0{bottom:323.794798px;}
.yaa{bottom:325.901106px;}
.y2a1{bottom:326.268267px;}
.y14c{bottom:330.596234px;}
.y3d{bottom:330.685812px;}
.y117{bottom:331.104312px;}
.y251{bottom:331.207514px;}
.y1a5{bottom:334.267958px;}
.yfc{bottom:337.305902px;}
.y1df{bottom:338.793297px;}
.y211{bottom:338.794798px;}
.y2a0{bottom:339.014517px;}
.ya9{bottom:340.902606px;}
.y250{bottom:343.953764px;}
.ya{bottom:344.680500px;}
.y14b{bottom:345.594733px;}
.y3c{bottom:345.685812px;}
.y190{bottom:346.042557px;}
.y116{bottom:346.102812px;}
.y1a4{bottom:351.708458px;}
.y29f{bottom:351.760767px;}
.yfb{bottom:352.304401px;}
.y81{bottom:353.680651px;}
.y1de{bottom:353.796298px;}
.y210{bottom:353.799323px;}
.ya8{bottom:355.901106px;}
.y24f{bottom:356.700014px;}
.y14a{bottom:360.593232px;}
.y3b{bottom:360.688813px;}
.y115{bottom:361.101311px;}
.y29e{bottom:364.507018px;}
.yfa{bottom:367.302900px;}
.y80{bottom:368.679150px;}
.y1dd{bottom:368.794798px;}
.y20f{bottom:368.797822px;}
.y24e{bottom:369.446264px;}
.ya7{bottom:370.901083px;}
.y149{bottom:375.591731px;}
.y3a{bottom:375.687313px;}
.y114{bottom:376.099810px;}
.y29d{bottom:377.253268px;}
.y24d{bottom:382.192514px;}
.yf9{bottom:382.301399px;}
.y7f{bottom:383.677649px;}
.y20e{bottom:383.796321px;}
.y1dc{bottom:383.799323px;}
.ya6{bottom:385.914590px;}
.yd{bottom:386.490000px;}
.y29c{bottom:389.999518px;}
.y148{bottom:390.590231px;}
.y39{bottom:390.685812px;}
.y113{bottom:391.098309px;}
.y24c{bottom:394.938764px;}
.y9{bottom:395.689500px;}
.y7e{bottom:398.676149px;}
.y20d{bottom:398.794821px;}
.y1db{bottom:398.797822px;}
.ya5{bottom:400.913089px;}
.y29b{bottom:402.745768px;}
.y147{bottom:405.588730px;}
.y38{bottom:405.724812px;}
.y112{bottom:406.096808px;}
.y24b{bottom:407.685014px;}
.yf8{bottom:411.055644px;}
.y7d{bottom:413.674648px;}
.y1da{bottom:413.796321px;}
.y20c{bottom:413.800824px;}
.y29a{bottom:415.492018px;}
.ya4{bottom:415.911588px;}
.y24a{bottom:420.431264px;}
.y37{bottom:420.723311px;}
.y111{bottom:421.095307px;}
.y1a3{bottom:421.681673px;}
.yf7{bottom:426.054144px;}
.y299{bottom:428.238268px;}
.y7c{bottom:428.673147px;}
.y1d9{bottom:428.794821px;}
.y20b{bottom:428.799323px;}
.ya3{bottom:430.910088px;}
.y249{bottom:433.177514px;}
.yb{bottom:434.850000px;}
.y110{bottom:436.093807px;}
.y2d0{bottom:436.306827px;}
.y1a2{bottom:436.680172px;}
.y298{bottom:440.984518px;}
.yf6{bottom:441.058646px;}
.y7b{bottom:443.671646px;}
.y1d8{bottom:443.794821px;}
.y20a{bottom:443.797822px;}
.ya2{bottom:445.908587px;}
.y248{bottom:445.923765px;}
.y8{bottom:446.698500px;}
.y10f{bottom:451.092306px;}
.y2cf{bottom:451.305326px;}
.y1a1{bottom:451.678672px;}
.y297{bottom:453.730768px;}
.yf5{bottom:456.057145px;}
.y247{bottom:458.670015px;}
.y209{bottom:458.796321px;}
.y1d7{bottom:458.797822px;}
.ya1{bottom:460.907086px;}
.y185{bottom:464.100919px;}
.y10e{bottom:466.090805px;}
.y2ce{bottom:466.303825px;}
.y296{bottom:466.477018px;}
.y1a0{bottom:466.677171px;}
.y36{bottom:467.973311px;}
.yf4{bottom:471.055644px;}
.y246{bottom:471.416265px;}
.y7a{bottom:473.741396px;}
.y208{bottom:473.794821px;}
.y1d6{bottom:473.796321px;}
.ya0{bottom:475.905585px;}
.y184{bottom:479.099419px;}
.y295{bottom:479.223269px;}
.y2cd{bottom:481.302325px;}
.y19f{bottom:481.675670px;}
.y245{bottom:484.162515px;}
.y35{bottom:484.470311px;}
.yf3{bottom:486.054144px;}
.y11{bottom:488.055000px;}
.y79{bottom:488.739895px;}
.y1d5{bottom:488.794821px;}
.y207{bottom:488.799323px;}
.y9f{bottom:490.904084px;}
.y294{bottom:491.969519px;}
.y183{bottom:494.097918px;}
.y2cc{bottom:496.300824px;}
.y19e{bottom:496.674169px;}
.y244{bottom:496.908765px;}
.y7{bottom:497.707500px;}
.y34{bottom:500.967311px;}
.yf2{bottom:501.057145px;}
.y78{bottom:503.738395px;}
.y1d4{bottom:503.796321px;}
.y206{bottom:503.797822px;}
.y293{bottom:504.715769px;}
.y9e{bottom:505.902584px;}
.y182{bottom:509.096417px;}
.y243{bottom:509.655015px;}
.y2cb{bottom:511.299323px;}
.y19d{bottom:511.672668px;}
.yf1{bottom:516.055644px;}
.y292{bottom:517.462019px;}
.y33{bottom:517.464311px;}
.y77{bottom:518.736894px;}
.y1d3{bottom:518.794821px;}
.y205{bottom:518.796321px;}
.y9d{bottom:520.901083px;}
.y242{bottom:522.401265px;}
.y181{bottom:524.094916px;}
.y2ca{bottom:526.297822px;}
.y146{bottom:527.599810px;}
.y291{bottom:530.208269px;}
.yf0{bottom:531.054144px;}
.y76{bottom:533.735393px;}
.y204{bottom:533.794821px;}
.y1d2{bottom:533.800824px;}
.y32{bottom:533.961311px;}
.y241{bottom:535.147515px;}
.y9c{bottom:535.910088px;}
.y12{bottom:538.230000px;}
.y180{bottom:539.093415px;}
.y18e{bottom:539.486984px;}
.y2c9{bottom:541.296321px;}
.y145{bottom:542.598309px;}
.y290{bottom:542.954519px;}
.yef{bottom:546.052643px;}
.y240{bottom:547.893765px;}
.y6{bottom:548.716500px;}
.y75{bottom:548.733892px;}
.y1d1{bottom:548.799323px;}
.y31{bottom:550.458311px;}
.y9b{bottom:550.908587px;}
.y18f{bottom:553.161484px;}
.y17f{bottom:554.091915px;}
.y28f{bottom:555.700769px;}
.y2c8{bottom:556.294821px;}
.y144{bottom:557.596808px;}
.y23f{bottom:560.640016px;}
.yee{bottom:561.052643px;}
.y74{bottom:563.732391px;}
.y1d0{bottom:563.797822px;}
.y9a{bottom:565.907086px;}
.y30{bottom:566.955311px;}
.y28e{bottom:568.447019px;}
.y17e{bottom:569.090414px;}
.y193{bottom:569.545486px;}
.y2c7{bottom:571.293320px;}
.y143{bottom:572.595307px;}
.y23e{bottom:573.386266px;}
.y19c{bottom:573.765015px;}
.y73{bottom:578.732391px;}
.y1cf{bottom:578.796321px;}
.y99{bottom:580.905585px;}
.y28d{bottom:581.193269px;}
.y2f{bottom:583.452311px;}
.y17d{bottom:584.088913px;}
.y23d{bottom:586.132516px;}
.y142{bottom:587.593807px;}
.y1c{bottom:589.605000px;}
.yed{bottom:589.833292px;}
.y2c6{bottom:593.047822px;}
.y1ce{bottom:593.794821px;}
.y28c{bottom:593.939520px;}
.y98{bottom:595.904084px;}
.y23c{bottom:598.878766px;}
.y194{bottom:599.282311px;}
.y5{bottom:599.725500px;}
.y2e{bottom:599.949311px;}
.y141{bottom:602.592306px;}
.yec{bottom:604.831791px;}
.y28b{bottom:606.685770px;}
.y2c5{bottom:608.046321px;}
.y1cd{bottom:608.794821px;}
.y72{bottom:608.808328px;}
.y203{bottom:608.811284px;}
.y97{bottom:610.902584px;}
.y23b{bottom:611.625016px;}
.y17c{bottom:614.246366px;}
.y2d{bottom:616.446311px;}
.y140{bottom:617.590805px;}
.y28a{bottom:619.432020px;}
.yeb{bottom:619.830290px;}
.y1cc{bottom:623.796321px;}
.y71{bottom:623.806827px;}
.y202{bottom:623.809783px;}
.y23a{bottom:624.371266px;}
.y96{bottom:625.901083px;}
.y195{bottom:629.029961px;}
.y2c4{bottom:629.794821px;}
.y17b{bottom:631.686866px;}
.ye{bottom:631.920000px;}
.y289{bottom:632.178270px;}
.y2c{bottom:632.943311px;}
.yea{bottom:634.828789px;}
.y239{bottom:637.117516px;}
.y1cb{bottom:638.794821px;}
.y70{bottom:638.805326px;}
.y201{bottom:638.808282px;}
.y95{bottom:640.899582px;}
.y288{bottom:644.924520px;}
.y13f{bottom:647.748258px;}
.y17a{bottom:649.127366px;}
.y2b{bottom:649.440311px;}
.ye9{bottom:649.827288px;}
.y238{bottom:649.863766px;}
.y2c3{bottom:651.543320px;}
.y1ca{bottom:653.796321px;}
.y6f{bottom:653.803825px;}
.y200{bottom:653.806781px;}
.y287{bottom:657.670770px;}
.y196{bottom:658.777610px;}
.y237{bottom:662.610017px;}
.ye8{bottom:664.825788px;}
.y13e{bottom:665.188758px;}
.y2a{bottom:665.937311px;}
.y2c2{bottom:666.543320px;}
.y179{bottom:666.567866px;}
.y1c9{bottom:668.794821px;}
.y6e{bottom:668.802325px;}
.y1ff{bottom:668.805280px;}
.y94{bottom:668.982321px;}
.y286{bottom:670.417020px;}
.y236{bottom:675.356267px;}
.ye7{bottom:679.824287px;}
.y29{bottom:682.434311px;}
.y13d{bottom:682.629258px;}
.y285{bottom:683.163270px;}
.y1c8{bottom:683.799323px;}
.y6d{bottom:683.800824px;}
.y1fe{bottom:683.803780px;}
.y93{bottom:683.980820px;}
.y178{bottom:684.008367px;}
.y235{bottom:688.102517px;}
.y197{bottom:688.514435px;}
.y2c1{bottom:693.549323px;}
.ye6{bottom:694.822786px;}
.y284{bottom:695.909520px;}
.y1c7{bottom:698.797822px;}
.y6c{bottom:698.799323px;}
.y1fd{bottom:698.802279px;}
.y13c{bottom:700.069759px;}
.y234{bottom:700.848767px;}
.y177{bottom:701.448867px;}
.y2c0{bottom:708.547822px;}
.y283{bottom:708.655771px;}
.y28{bottom:712.434310px;}
.y233{bottom:713.595017px;}
.y1c6{bottom:713.796321px;}
.y6b{bottom:713.797822px;}
.y1fc{bottom:713.800778px;}
.y13b{bottom:717.510259px;}
.y198{bottom:718.262084px;}
.y176{bottom:718.889367px;}
.y282{bottom:721.402021px;}
.y2bf{bottom:723.546321px;}
.ye5{bottom:726.156287px;}
.y232{bottom:726.341267px;}
.y1c5{bottom:728.794821px;}
.y6a{bottom:728.796321px;}
.y1fb{bottom:728.799277px;}
.y26{bottom:730.434310px;}
.y281{bottom:734.148271px;}
.y13a{bottom:734.950759px;}
.y27{bottom:735.534302px;}
.y175{bottom:736.329867px;}
.y2be{bottom:738.544821px;}
.y231{bottom:739.087517px;}
.ye4{bottom:741.154787px;}
.yd1{bottom:742.489779px;}
.y69{bottom:743.794821px;}
.y1c4{bottom:743.797776px;}
.y280{bottom:746.894521px;}
.y199{bottom:747.998909px;}
.y24{bottom:748.434311px;}
.y230{bottom:751.833767px;}
.y139{bottom:752.391259px;}
.y25{bottom:753.534302px;}
.y2bd{bottom:753.543320px;}
.y174{bottom:753.770367px;}
.ye3{bottom:756.153286px;}
.y4f{bottom:757.145396px;}
.yd0{bottom:757.488278px;}
.y1c3{bottom:758.796276px;}
.y68{bottom:758.799277px;}
.y27f{bottom:759.640771px;}
.y22f{bottom:764.580017px;}
.y2bc{bottom:768.543274px;}
.y138{bottom:769.831759px;}
.ye2{bottom:771.151785px;}
.y173{bottom:771.210867px;}
.y27e{bottom:772.387021px;}
.ycf{bottom:772.486777px;}
.y1c2{bottom:773.794775px;}
.y67{bottom:773.797776px;}
.y22e{bottom:777.326268px;}
.y4e{bottom:778.144646px;}
.y4{bottom:778.225500px;}
.y19a{bottom:780.885040px;}
.y23{bottom:781.416260px;}
.y27d{bottom:785.133271px;}
.ye1{bottom:786.150284px;}
.y137{bottom:787.272259px;}
.yce{bottom:787.485276px;}
.y172{bottom:788.651367px;}
.y66{bottom:788.796276px;}
.y1c1{bottom:788.797776px;}
.y1fa{bottom:788.800778px;}
.y22d{bottom:790.072518px;}
.y2bb{bottom:795.550778px;}
.y27c{bottom:797.879521px;}
.y4d{bottom:799.143895px;}
.ye0{bottom:801.148783px;}
.ycd{bottom:802.483776px;}
.y22c{bottom:802.818768px;}
.y65{bottom:803.794775px;}
.y1c0{bottom:803.796276px;}
.y1f9{bottom:803.799277px;}
.y136{bottom:804.712759px;}
.y2ba{bottom:810.549277px;}
.y27b{bottom:810.625771px;}
.y22b{bottom:815.565018px;}
.y13{bottom:815.670000px;}
.ydf{bottom:816.147283px;}
.ycc{bottom:817.482275px;}
.y64{bottom:818.794775px;}
.y1f8{bottom:818.797776px;}
.y135{bottom:822.153259px;}
.y27a{bottom:823.372022px;}
.y2b9{bottom:825.547776px;}
.y22{bottom:826.422262px;}
.y22a{bottom:828.311268px;}
.ycb{bottom:832.480774px;}
.y1f7{bottom:833.796276px;}
.y1bf{bottom:833.797776px;}
.y63{bottom:833.799277px;}
.y279{bottom:836.118272px;}
.y2b8{bottom:840.546276px;}
.y229{bottom:841.057518px;}
.yde{bottom:847.480784px;}
.y171{bottom:848.188326px;}
.y1f6{bottom:848.794775px;}
.y1be{bottom:848.796276px;}
.y62{bottom:848.797776px;}
.y278{bottom:848.864522px;}
.y228{bottom:853.803768px;}
.y186{bottom:854.764526px;}
.y2b7{bottom:855.544775px;}
.y277{bottom:861.610772px;}
.ydd{bottom:862.479283px;}
.yca{bottom:862.764269px;}
.y170{bottom:863.186825px;}
.y1bd{bottom:863.794775px;}
.y61{bottom:863.796276px;}
.y227{bottom:866.550018px;}
.yc9{bottom:868.381768px;}
.y2b6{bottom:870.543274px;}
.y21{bottom:871.428264px;}
.y276{bottom:874.357022px;}
.ydc{bottom:877.477782px;}
.y16f{bottom:878.185325px;}
.y60{bottom:878.794775px;}
.y1bc{bottom:878.796276px;}
.y226{bottom:879.300018px;}
.y187{bottom:881.309967px;}
.y134{bottom:884.802279px;}
.y191{bottom:885.529541px;}
.y2b5{bottom:885.543274px;}
.y275{bottom:887.103272px;}
.yc8{bottom:891.439770px;}
.ydb{bottom:892.476281px;}
.y16e{bottom:893.183824px;}
.y5f{bottom:893.794775px;}
.y1f5{bottom:893.796276px;}
.yc7{bottom:897.057269px;}
.y133{bottom:899.800778px;}
.y274{bottom:899.849522px;}
.y3{bottom:905.716500px;}
.yda{bottom:907.474781px;}
.y16d{bottom:908.182323px;}
.y5e{bottom:908.794775px;}
.y1bb{bottom:908.805280px;}
.y225{bottom:908.806781px;}
.y188{bottom:911.046792px;}
.y273{bottom:912.595772px;}
.y132{bottom:914.799277px;}
.y20{bottom:916.434265px;}
.yc6{bottom:920.115270px;}
.yd9{bottom:922.473280px;}
.y16c{bottom:923.180822px;}
.y5d{bottom:923.796276px;}
.y1ba{bottom:923.803780px;}
.y224{bottom:923.805280px;}
.y272{bottom:925.342022px;}
.yc5{bottom:925.732770px;}
.y50{bottom:926.409576px;}
.y131{bottom:929.797776px;}
.yd8{bottom:937.471779px;}
.y271{bottom:938.088273px;}
.y16b{bottom:938.180822px;}
.y5c{bottom:938.794775px;}
.y1b9{bottom:938.802279px;}
.y223{bottom:938.803780px;}
.y189{bottom:940.794441px;}
.y130{bottom:944.796276px;}
.yc4{bottom:948.790771px;}
.y270{bottom:950.834523px;}
.yd7{bottom:952.470278px;}
.y16a{bottom:953.180822px;}
.y5b{bottom:953.794775px;}
.y1b8{bottom:953.800778px;}
.y222{bottom:953.802279px;}
.yc3{bottom:954.408270px;}
.y12f{bottom:959.794775px;}
.y26f{bottom:963.580773px;}
.y2{bottom:964.228500px;}
.y169{bottom:968.179321px;}
.y5a{bottom:968.794775px;}
.y1f4{bottom:968.797776px;}
.y1b7{bottom:968.799277px;}
.y221{bottom:968.800778px;}
.y18a{bottom:970.542091px;}
.y12e{bottom:974.793274px;}
.y26e{bottom:976.327023px;}
.yc2{bottom:977.466271px;}
.yc1{bottom:983.083771px;}
.y59{bottom:983.794775px;}
.y1f3{bottom:983.796276px;}
.y1b6{bottom:983.797776px;}
.y220{bottom:983.799277px;}
.yd6{bottom:983.803780px;}
.y26d{bottom:989.073273px;}
.y1{bottom:989.716500px;}
.y15d{bottom:995.993958px;}
.y58{bottom:998.794775px;}
.y1b5{bottom:998.796276px;}
.y21f{bottom:998.797776px;}
.yd5{bottom:998.802279px;}
.y18b{bottom:1000.278916px;}
.y26c{bottom:1001.819523px;}
.y12d{bottom:1004.965773px;}
.yc0{bottom:1006.141772px;}
.y160{bottom:1011.234009px;}
.ybf{bottom:1011.759272px;}
.y57{bottom:1013.794775px;}
.y21e{bottom:1013.796276px;}
.y1f2{bottom:1013.797776px;}
.yd4{bottom:1013.800778px;}
.y26b{bottom:1014.565773px;}
.y12c{bottom:1022.406273px;}
.y26a{bottom:1027.312023px;}
.y161{bottom:1028.590138px;}
.y21d{bottom:1028.794775px;}
.y56{bottom:1028.796276px;}
.y1b4{bottom:1028.797776px;}
.yd3{bottom:1028.799277px;}
.y18c{bottom:1030.026565px;}
.ybe{bottom:1034.817273px;}
.y12b{bottom:1039.846774px;}
.y269{bottom:1040.058273px;}
.ybd{bottom:1040.434772px;}
.y55{bottom:1043.794775px;}
.y1b3{bottom:1043.796276px;}
.yd2{bottom:1043.797776px;}
.y162{bottom:1045.939506px;}
.y268{bottom:1052.804524px;}
.y12a{bottom:1057.287274px;}
.y1b2{bottom:1058.794775px;}
.y54{bottom:1058.796276px;}
.y18d{bottom:1059.763390px;}
.y163{bottom:1063.295634px;}
.ybc{bottom:1063.492773px;}
.y267{bottom:1065.550774px;}
.ybb{bottom:1069.110273px;}
.y1b1{bottom:1073.793274px;}
.y53{bottom:1073.794775px;}
.y129{bottom:1074.727774px;}
.y168{bottom:1078.067781px;}
.y266{bottom:1078.297024px;}
.y164{bottom:1080.651763px;}
.y167{bottom:1084.707329px;}
.y52{bottom:1088.793274px;}
.y265{bottom:1091.043274px;}
.y166{bottom:1091.353638px;}
.yba{bottom:1092.168274px;}
.y51{bottom:1139.852966px;}
.y1f{bottom:1140.126892px;}
.h22{height:19.688761px;}
.h16{height:23.438086px;}
.h10{height:28.050293px;}
.h23{height:31.522983px;}
.h4{height:33.000000px;}
.h19{height:35.394000px;}
.h18{height:36.669000px;}
.h25{height:37.203790px;}
.h12{height:38.826000px;}
.h13{height:38.838867px;}
.h17{height:40.754083px;}
.h1f{height:41.538000px;}
.h1d{height:43.008000px;}
.hb{height:43.140000px;}
.hd{height:44.218500px;}
.h2b{height:44.505000px;}
.h29{height:45.090000px;}
.hc{height:45.744000px;}
.h2a{height:46.080000px;}
.h1b{height:47.454000px;}
.h11{height:48.450259px;}
.h14{height:53.406000px;}
.h28{height:54.077984px;}
.h27{height:54.083987px;}
.h1c{height:54.095994px;}
.h26{height:54.101997px;}
.h15{height:54.108000px;}
.h20{height:55.296000px;}
.h3{height:58.406250px;}
.h1e{height:64.050000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h1a{height:77.652000px;}
.h21{height:107.800495px;}
.he{height:112.164000px;}
.hf{height:112.201172px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h24{height:564.306015px;}
.h9{height:1173.543000px;}
.ha{height:1173.750000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.wa{width:306.000000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.wb{width:594.404984px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x1b{left:5.802155px;}
.x23{left:9.289192px;}
.x1e{left:12.371407px;}
.x14{left:14.100287px;}
.xb{left:61.191450px;}
.x1a{left:67.909355px;}
.x28{left:98.726852px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x15{left:140.952747px;}
.x22{left:142.340996px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xd{left:233.456406px;}
.x16{left:238.143906px;}
.x1d{left:249.591056px;}
.x13{left:251.452040px;}
.x1c{left:253.350311px;}
.x21{left:265.187691px;}
.x2d{left:300.594452px;}
.x11{left:323.830490px;}
.x20{left:332.183853px;}
.x29{left:366.716103px;}
.x2a{left:410.492981px;}
.xe{left:412.541382px;}
.x17{left:439.743913px;}
.x1f{left:466.312500px;}
.x26{left:467.757019px;}
.x27{left:554.511017px;}
.x25{left:576.952515px;}
.x12{left:583.272446px;}
.xc{left:584.586594px;}
.x18{left:603.333961px;}
.xf{left:634.307556px;}
.x24{left:643.949982px;}
.x2b{left:675.190521px;}
.x10{left:749.355469px;}
.x2c{left:816.003571px;}
.x19{left:824.207428px;}
.xa{left:825.232819px;}
@media print{
.v1{vertical-align:-18.133301pt;}
.v4{vertical-align:-16.319987pt;}
.v5{vertical-align:-15.413330pt;}
.v6{vertical-align:-9.653297pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.175984pt;}
.v2{vertical-align:18.133303pt;}
.v7{vertical-align:20.010667pt;}
.ls83{letter-spacing:-2.309360pt;}
.ls5c{letter-spacing:-1.418667pt;}
.ls45{letter-spacing:-1.104000pt;}
.lsd1{letter-spacing:-0.960000pt;}
.ls3b{letter-spacing:-0.912000pt;}
.lscc{letter-spacing:-0.880000pt;}
.lsa3{letter-spacing:-0.864000pt;}
.lsde{letter-spacing:-0.840000pt;}
.ls5a{letter-spacing:-0.821333pt;}
.ls48{letter-spacing:-0.816000pt;}
.lsdd{letter-spacing:-0.800000pt;}
.ls84{letter-spacing:-0.784000pt;}
.ls57{letter-spacing:-0.768000pt;}
.lsdc{letter-spacing:-0.760000pt;}
.ls6f{letter-spacing:-0.720000pt;}
.ls78{letter-spacing:-0.709333pt;}
.lsc4{letter-spacing:-0.680000pt;}
.ls77{letter-spacing:-0.672000pt;}
.lsda{letter-spacing:-0.640000pt;}
.ls41{letter-spacing:-0.624000pt;}
.lsdb{letter-spacing:-0.600000pt;}
.ls3e{letter-spacing:-0.576000pt;}
.lsd9{letter-spacing:-0.560000pt;}
.ls3c{letter-spacing:-0.528000pt;}
.lsc7{letter-spacing:-0.520000pt;}
.ls20{letter-spacing:-0.480000pt;}
.lscd{letter-spacing:-0.440000pt;}
.ls6d{letter-spacing:-0.432000pt;}
.lsc5{letter-spacing:-0.400000pt;}
.ls3f{letter-spacing:-0.384000pt;}
.ls7a{letter-spacing:-0.373333pt;}
.lscf{letter-spacing:-0.360000pt;}
.ls46{letter-spacing:-0.336000pt;}
.lsd0{letter-spacing:-0.320000pt;}
.ls7b{letter-spacing:-0.298667pt;}
.ls22{letter-spacing:-0.288000pt;}
.lsca{letter-spacing:-0.280000pt;}
.ls44{letter-spacing:-0.240000pt;}
.ls85{letter-spacing:-0.224000pt;}
.lsc6{letter-spacing:-0.200000pt;}
.ls40{letter-spacing:-0.192000pt;}
.ls5b{letter-spacing:-0.186667pt;}
.ls23{letter-spacing:-0.181333pt;}
.lsce{letter-spacing:-0.160000pt;}
.ls4b{letter-spacing:-0.144000pt;}
.lsa5{letter-spacing:-0.124800pt;}
.lscb{letter-spacing:-0.120000pt;}
.ls3d{letter-spacing:-0.096000pt;}
.lsa4{letter-spacing:-0.093600pt;}
.ls24{letter-spacing:-0.090667pt;}
.lsd3{letter-spacing:-0.080000pt;}
.lsa0{letter-spacing:-0.062400pt;}
.ls47{letter-spacing:-0.048000pt;}
.lsc8{letter-spacing:-0.040000pt;}
.ls59{letter-spacing:-0.031200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.000002pt;}
.ls81{letter-spacing:0.002029pt;}
.ls91{letter-spacing:0.005300pt;}
.ls80{letter-spacing:0.005846pt;}
.ls3{letter-spacing:0.011754pt;}
.ls4{letter-spacing:0.012242pt;}
.ls5{letter-spacing:0.012405pt;}
.lsae{letter-spacing:0.028800pt;}
.ls58{letter-spacing:0.031200pt;}
.lse3{letter-spacing:0.033590pt;}
.lsbd{letter-spacing:0.040000pt;}
.ls2f{letter-spacing:0.046798pt;}
.ls7c{letter-spacing:0.047999pt;}
.ls32{letter-spacing:0.048000pt;}
.ls31{letter-spacing:0.053333pt;}
.ls86{letter-spacing:0.057577pt;}
.ls71{letter-spacing:0.057611pt;}
.lsad{letter-spacing:0.062399pt;}
.ls43{letter-spacing:0.062400pt;}
.lsaf{letter-spacing:0.062401pt;}
.ls30{letter-spacing:0.067156pt;}
.lsac{letter-spacing:0.067190pt;}
.lsc9{letter-spacing:0.080000pt;}
.ls1d{letter-spacing:0.086888pt;}
.lsbe{letter-spacing:0.092000pt;}
.lsc{letter-spacing:0.093600pt;}
.ls6c{letter-spacing:0.095956pt;}
.ls8{letter-spacing:0.096000pt;}
.ls27{letter-spacing:0.096001pt;}
.lsaa{letter-spacing:0.101881pt;}
.lsd{letter-spacing:0.106901pt;}
.ls3a{letter-spacing:0.109200pt;}
.ls73{letter-spacing:0.111608pt;}
.lsa{letter-spacing:0.114658pt;}
.lsd2{letter-spacing:0.120000pt;}
.ls26{letter-spacing:0.124801pt;}
.ls1c{letter-spacing:0.136000pt;}
.ls8f{letter-spacing:0.138127pt;}
.lsab{letter-spacing:0.139198pt;}
.lsd5{letter-spacing:0.140013pt;}
.ls92{letter-spacing:0.143995pt;}
.lsb{letter-spacing:0.144000pt;}
.lsb0{letter-spacing:0.152629pt;}
.ls17{letter-spacing:0.156000pt;}
.ls18{letter-spacing:0.156254pt;}
.ls60{letter-spacing:0.158390pt;}
.lsc1{letter-spacing:0.160000pt;}
.lsb1{letter-spacing:0.163181pt;}
.ls29{letter-spacing:0.171600pt;}
.ls19{letter-spacing:0.182370pt;}
.ls13{letter-spacing:0.187200pt;}
.ls9b{letter-spacing:0.187202pt;}
.ls2e{letter-spacing:0.187233pt;}
.ls14{letter-spacing:0.187768pt;}
.ls9{letter-spacing:0.192000pt;}
.lsb7{letter-spacing:0.200000pt;}
.ls6{letter-spacing:0.213372pt;}
.ls87{letter-spacing:0.218399pt;}
.lsa2{letter-spacing:0.218400pt;}
.ls79{letter-spacing:0.224000pt;}
.ls99{letter-spacing:0.230403pt;}
.ls16{letter-spacing:0.240000pt;}
.ls52{letter-spacing:0.244798pt;}
.ls28{letter-spacing:0.249567pt;}
.ls6e{letter-spacing:0.249600pt;}
.ls94{letter-spacing:0.254395pt;}
.lse{letter-spacing:0.259677pt;}
.ls2a{letter-spacing:0.264000pt;}
.ls53{letter-spacing:0.273578pt;}
.lsb6{letter-spacing:0.280000pt;}
.lsa6{letter-spacing:0.280798pt;}
.lsa1{letter-spacing:0.280800pt;}
.lsa7{letter-spacing:0.280801pt;}
.ls36{letter-spacing:0.287999pt;}
.ls12{letter-spacing:0.288000pt;}
.lsb5{letter-spacing:0.288015pt;}
.ls74{letter-spacing:0.288544pt;}
.ls2d{letter-spacing:0.297613pt;}
.lsb4{letter-spacing:0.311999pt;}
.ls9e{letter-spacing:0.312000pt;}
.ls93{letter-spacing:0.312002pt;}
.ls54{letter-spacing:0.320000pt;}
.ls95{letter-spacing:0.335969pt;}
.ls7e{letter-spacing:0.335999pt;}
.ls7{letter-spacing:0.336000pt;}
.ls7d{letter-spacing:0.336001pt;}
.ls97{letter-spacing:0.343200pt;}
.ls15{letter-spacing:0.350417pt;}
.ls88{letter-spacing:0.355178pt;}
.lsbf{letter-spacing:0.360000pt;}
.ls8d{letter-spacing:0.364899pt;}
.lsa8{letter-spacing:0.369613pt;}
.ls55{letter-spacing:0.373333pt;}
.ls4f{letter-spacing:0.374352pt;}
.ls63{letter-spacing:0.379212pt;}
.ls4e{letter-spacing:0.383992pt;}
.lsf{letter-spacing:0.384000pt;}
.ls8c{letter-spacing:0.389996pt;}
.lsb8{letter-spacing:0.400000pt;}
.ls8e{letter-spacing:0.417566pt;}
.ls11{letter-spacing:0.422926pt;}
.ls10{letter-spacing:0.423414pt;}
.ls37{letter-spacing:0.426667pt;}
.ls38{letter-spacing:0.426674pt;}
.ls34{letter-spacing:0.432000pt;}
.lsd6{letter-spacing:0.440000pt;}
.ls9a{letter-spacing:0.465596pt;}
.ls69{letter-spacing:0.479999pt;}
.ls21{letter-spacing:0.480000pt;}
.ls9f{letter-spacing:0.503967pt;}
.lsd4{letter-spacing:0.520000pt;}
.ls33{letter-spacing:0.528000pt;}
.ls62{letter-spacing:0.533333pt;}
.lsa9{letter-spacing:0.537586pt;}
.ls9c{letter-spacing:0.552032pt;}
.lsbc{letter-spacing:0.560000pt;}
.ls50{letter-spacing:0.576000pt;}
.ls35{letter-spacing:0.576001pt;}
.ls67{letter-spacing:0.580805pt;}
.ls96{letter-spacing:0.590400pt;}
.lsb9{letter-spacing:0.600000pt;}
.ls4a{letter-spacing:0.624000pt;}
.ls6a{letter-spacing:0.633595pt;}
.ls64{letter-spacing:0.640000pt;}
.ls6b{letter-spacing:0.648038pt;}
.ls68{letter-spacing:0.657631pt;}
.ls1f{letter-spacing:0.672000pt;}
.lsdf{letter-spacing:0.680000pt;}
.ls98{letter-spacing:0.710405pt;}
.lsb3{letter-spacing:0.715242pt;}
.ls61{letter-spacing:0.719999pt;}
.ls66{letter-spacing:0.720000pt;}
.ls89{letter-spacing:0.739211pt;}
.lsc0{letter-spacing:0.760000pt;}
.ls70{letter-spacing:0.763197pt;}
.ls49{letter-spacing:0.768000pt;}
.lsb2{letter-spacing:0.768001pt;}
.ls72{letter-spacing:0.772830pt;}
.ls39{letter-spacing:0.772886pt;}
.ls65{letter-spacing:0.787179pt;}
.lsd7{letter-spacing:0.787956pt;}
.lse0{letter-spacing:0.800000pt;}
.ls42{letter-spacing:0.816000pt;}
.ls1b{letter-spacing:0.836725pt;}
.ls5e{letter-spacing:0.864000pt;}
.ls7f{letter-spacing:0.878439pt;}
.ls5d{letter-spacing:0.912000pt;}
.ls4d{letter-spacing:0.933347pt;}
.ls8a{letter-spacing:0.960000pt;}
.ls90{letter-spacing:0.974380pt;}
.ls2c{letter-spacing:0.974407pt;}
.ls2b{letter-spacing:0.998408pt;}
.lsc3{letter-spacing:1.000000pt;}
.ls1e{letter-spacing:1.008000pt;}
.ls4c{letter-spacing:1.013333pt;}
.lse1{letter-spacing:1.040000pt;}
.ls9d{letter-spacing:1.056000pt;}
.ls8b{letter-spacing:1.070393pt;}
.lse4{letter-spacing:1.160000pt;}
.lse2{letter-spacing:1.200000pt;}
.ls5f{letter-spacing:1.209578pt;}
.ls1a{letter-spacing:1.314667pt;}
.lsbb{letter-spacing:1.464051pt;}
.lsd8{letter-spacing:1.920000pt;}
.lsba{letter-spacing:1.995979pt;}
.ls1{letter-spacing:2.304000pt;}
.ls25{letter-spacing:2.400000pt;}
.ls2{letter-spacing:2.460000pt;}
.lsc2{letter-spacing:5.440000pt;}
.ls82{letter-spacing:62.085329pt;}
.ls76{letter-spacing:63.504000pt;}
.ls75{letter-spacing:78.735999pt;}
.ls56{letter-spacing:183.269331pt;}
.wsb{word-spacing:-29.466667pt;}
.ws0{word-spacing:-16.874667pt;}
.ws4{word-spacing:-13.393333pt;}
.ws29{word-spacing:-13.066667pt;}
.ws71{word-spacing:-12.085333pt;}
.ws70{word-spacing:-12.000000pt;}
.ws34{word-spacing:-11.808000pt;}
.ws8{word-spacing:-11.568000pt;}
.ws33{word-spacing:-11.376000pt;}
.wsba{word-spacing:-11.232000pt;}
.ws8e{word-spacing:-11.184000pt;}
.wsb9{word-spacing:-11.136000pt;}
.ws3{word-spacing:-11.093333pt;}
.ws32{word-spacing:-11.088000pt;}
.ws2e{word-spacing:-11.040000pt;}
.ws9{word-spacing:-10.992000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws5a{word-spacing:-10.944000pt;}
.ws35{word-spacing:-10.896000pt;}
.ws3b{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.837333pt;}
.ws30{word-spacing:-10.800000pt;}
.ws37{word-spacing:-10.752000pt;}
.wsa{word-spacing:-10.704000pt;}
.ws39{word-spacing:-10.656000pt;}
.ws2d{word-spacing:-10.608000pt;}
.ws6f{word-spacing:-10.560000pt;}
.ws9b{word-spacing:-10.530682pt;}
.wsa8{word-spacing:-10.512000pt;}
.ws2a{word-spacing:-10.464000pt;}
.ws2b{word-spacing:-10.416000pt;}
.ws2f{word-spacing:-10.368000pt;}
.ws7f{word-spacing:-10.320000pt;}
.ws73{word-spacing:-10.272000pt;}
.ws5b{word-spacing:-10.224000pt;}
.ws3a{word-spacing:-10.176000pt;}
.wsae{word-spacing:-10.128000pt;}
.ws38{word-spacing:-9.888000pt;}
.ws108{word-spacing:-9.880000pt;}
.ws109{word-spacing:-9.760000pt;}
.wsf7{word-spacing:-9.480000pt;}
.wscc{word-spacing:-9.280000pt;}
.wsf6{word-spacing:-9.240000pt;}
.wse6{word-spacing:-9.200000pt;}
.wsf3{word-spacing:-9.160000pt;}
.wsdd{word-spacing:-9.080000pt;}
.wsc{word-spacing:-9.066667pt;}
.wsc9{word-spacing:-9.040000pt;}
.wsca{word-spacing:-9.000000pt;}
.wsed{word-spacing:-8.960000pt;}
.wsc6{word-spacing:-8.880000pt;}
.wsc8{word-spacing:-8.760000pt;}
.wsfc{word-spacing:-8.720000pt;}
.wsf5{word-spacing:-8.680000pt;}
.wsc5{word-spacing:-8.640000pt;}
.wse1{word-spacing:-8.600000pt;}
.wsfa{word-spacing:-8.560000pt;}
.wsfd{word-spacing:-8.520000pt;}
.wsc4{word-spacing:-8.480000pt;}
.wsf4{word-spacing:-8.400000pt;}
.wsc7{word-spacing:-8.280000pt;}
.wscb{word-spacing:-8.200000pt;}
.wsad{word-spacing:-7.425600pt;}
.wsac{word-spacing:-7.394400pt;}
.wsaa{word-spacing:-7.363200pt;}
.ws72{word-spacing:-7.332000pt;}
.wsab{word-spacing:-7.300800pt;}
.ws31{word-spacing:-7.269600pt;}
.ws2c{word-spacing:-7.238400pt;}
.ws3c{word-spacing:-7.207200pt;}
.wsb8{word-spacing:-7.176000pt;}
.ws36{word-spacing:-7.144800pt;}
.ws5c{word-spacing:-7.113600pt;}
.ws7{word-spacing:-7.082400pt;}
.ws5d{word-spacing:-7.051200pt;}
.wsa9{word-spacing:-7.020000pt;}
.wsaf{word-spacing:-6.988800pt;}
.wsb0{word-spacing:-6.957600pt;}
.wscd{word-spacing:-5.440000pt;}
.ws67{word-spacing:-4.896000pt;}
.ws11{word-spacing:-4.746667pt;}
.ws6e{word-spacing:-3.808000pt;}
.ws10d{word-spacing:-3.520000pt;}
.ws12{word-spacing:-3.413333pt;}
.ws10{word-spacing:-3.200000pt;}
.wse{word-spacing:-2.912000pt;}
.ws13{word-spacing:-2.133333pt;}
.ws97{word-spacing:-2.112000pt;}
.wsbc{word-spacing:-1.872000pt;}
.wsbf{word-spacing:-1.776000pt;}
.ws79{word-spacing:-1.680000pt;}
.ws54{word-spacing:-1.653333pt;}
.ws4d{word-spacing:-1.632000pt;}
.ws4a{word-spacing:-1.584000pt;}
.ws25{word-spacing:-1.541333pt;}
.ws1d{word-spacing:-1.536000pt;}
.ws48{word-spacing:-1.488000pt;}
.ws46{word-spacing:-1.440000pt;}
.wsea{word-spacing:-1.400000pt;}
.ws3d{word-spacing:-1.392000pt;}
.ws22{word-spacing:-1.360000pt;}
.ws99{word-spacing:-1.344000pt;}
.ws44{word-spacing:-1.296000pt;}
.ws42{word-spacing:-1.248000pt;}
.wseb{word-spacing:-1.240000pt;}
.ws4f{word-spacing:-1.232000pt;}
.ws75{word-spacing:-1.200000pt;}
.ws45{word-spacing:-1.152000pt;}
.ws28{word-spacing:-1.133333pt;}
.wsf{word-spacing:-1.120000pt;}
.ws1a{word-spacing:-1.104000pt;}
.ws43{word-spacing:-1.056000pt;}
.ws8d{word-spacing:-1.045333pt;}
.wsf9{word-spacing:-1.040000pt;}
.ws63{word-spacing:-1.013333pt;}
.ws14{word-spacing:-1.008000pt;}
.wsf8{word-spacing:-1.000000pt;}
.ws7e{word-spacing:-0.960000pt;}
.wsd0{word-spacing:-0.920000pt;}
.wsbb{word-spacing:-0.912000pt;}
.ws27{word-spacing:-0.906667pt;}
.ws102{word-spacing:-0.880000pt;}
.ws6a{word-spacing:-0.864000pt;}
.ws6d{word-spacing:-0.858667pt;}
.wsd{word-spacing:-0.853333pt;}
.wsf0{word-spacing:-0.840000pt;}
.ws6b{word-spacing:-0.821333pt;}
.ws107{word-spacing:-0.800000pt;}
.ws98{word-spacing:-0.768000pt;}
.wse8{word-spacing:-0.760000pt;}
.wsb2{word-spacing:-0.720000pt;}
.ws100{word-spacing:-0.680000pt;}
.wsb3{word-spacing:-0.672000pt;}
.ws7b{word-spacing:-0.640000pt;}
.ws6c{word-spacing:-0.634667pt;}
.ws7c{word-spacing:-0.624000pt;}
.wsfb{word-spacing:-0.600000pt;}
.ws18{word-spacing:-0.576000pt;}
.ws50{word-spacing:-0.533333pt;}
.ws17{word-spacing:-0.528000pt;}
.wsd1{word-spacing:-0.520000pt;}
.ws20{word-spacing:-0.480000pt;}
.ws26{word-spacing:-0.453333pt;}
.wse7{word-spacing:-0.440000pt;}
.ws1b{word-spacing:-0.432000pt;}
.ws57{word-spacing:-0.426667pt;}
.wsd7{word-spacing:-0.400000pt;}
.ws1e{word-spacing:-0.384000pt;}
.ws68{word-spacing:-0.373333pt;}
.wsd4{word-spacing:-0.360000pt;}
.wsb5{word-spacing:-0.343200pt;}
.ws3f{word-spacing:-0.336000pt;}
.wsd9{word-spacing:-0.320000pt;}
.wsb4{word-spacing:-0.312000pt;}
.ws16{word-spacing:-0.288000pt;}
.wsbd{word-spacing:-0.280800pt;}
.wsd3{word-spacing:-0.280000pt;}
.wsb1{word-spacing:-0.249600pt;}
.ws41{word-spacing:-0.240000pt;}
.wsc3{word-spacing:-0.218400pt;}
.wsd2{word-spacing:-0.200000pt;}
.ws21{word-spacing:-0.192000pt;}
.ws47{word-spacing:-0.187200pt;}
.ws69{word-spacing:-0.160000pt;}
.ws40{word-spacing:-0.156000pt;}
.ws7a{word-spacing:-0.144000pt;}
.ws59{word-spacing:-0.124800pt;}
.wsec{word-spacing:-0.120000pt;}
.ws19{word-spacing:-0.096000pt;}
.wsc0{word-spacing:-0.093600pt;}
.wsd6{word-spacing:-0.080000pt;}
.ws56{word-spacing:-0.053333pt;}
.ws58{word-spacing:-0.048000pt;}
.wse9{word-spacing:-0.040000pt;}
.ws66{word-spacing:-0.031200pt;}
.ws1{word-spacing:0.000000pt;}
.wsc1{word-spacing:0.031200pt;}
.wsd8{word-spacing:0.040000pt;}
.ws1f{word-spacing:0.048000pt;}
.wsd5{word-spacing:0.080000pt;}
.ws53{word-spacing:0.096000pt;}
.ws52{word-spacing:0.106667pt;}
.wsda{word-spacing:0.120000pt;}
.ws4b{word-spacing:0.144000pt;}
.ws4e{word-spacing:0.192000pt;}
.ws74{word-spacing:0.240000pt;}
.ws101{word-spacing:0.280000pt;}
.ws51{word-spacing:0.288000pt;}
.wsdf{word-spacing:0.320000pt;}
.ws65{word-spacing:0.336000pt;}
.wsf1{word-spacing:0.360000pt;}
.ws76{word-spacing:0.384000pt;}
.wsfe{word-spacing:0.400000pt;}
.ws55{word-spacing:0.432000pt;}
.wsee{word-spacing:0.440000pt;}
.ws64{word-spacing:0.480000pt;}
.wsef{word-spacing:0.520000pt;}
.ws1c{word-spacing:0.528000pt;}
.wsdc{word-spacing:0.560000pt;}
.ws4c{word-spacing:0.576000pt;}
.wsdb{word-spacing:0.600000pt;}
.wsbe{word-spacing:0.624000pt;}
.wsff{word-spacing:0.640000pt;}
.ws7d{word-spacing:0.672000pt;}
.wse5{word-spacing:0.680000pt;}
.wse0{word-spacing:0.720000pt;}
.wsde{word-spacing:0.760000pt;}
.wsc2{word-spacing:0.816000pt;}
.ws103{word-spacing:0.840000pt;}
.ws104{word-spacing:0.880000pt;}
.ws3e{word-spacing:0.912000pt;}
.wsf2{word-spacing:0.960000pt;}
.wse3{word-spacing:1.000000pt;}
.wse4{word-spacing:1.040000pt;}
.ws10e{word-spacing:1.056000pt;}
.ws78{word-spacing:1.104000pt;}
.ws105{word-spacing:1.160000pt;}
.ws77{word-spacing:1.248000pt;}
.ws15{word-spacing:1.344000pt;}
.ws62{word-spacing:1.386667pt;}
.ws49{word-spacing:1.392000pt;}
.ws23{word-spacing:1.450667pt;}
.wse2{word-spacing:1.480000pt;}
.wsb7{word-spacing:1.488000pt;}
.wsce{word-spacing:1.520000pt;}
.wsb6{word-spacing:1.632000pt;}
.ws106{word-spacing:1.640000pt;}
.ws10b{word-spacing:1.920000pt;}
.wscf{word-spacing:2.080000pt;}
.ws24{word-spacing:2.312000pt;}
.ws10a{word-spacing:2.400000pt;}
.ws10c{word-spacing:3.160000pt;}
.ws94{word-spacing:26.730670pt;}
.ws8b{word-spacing:26.991998pt;}
.ws8c{word-spacing:32.629339pt;}
.ws96{word-spacing:33.114667pt;}
.ws95{word-spacing:35.690662pt;}
.ws6{word-spacing:36.047383pt;}
.ws91{word-spacing:39.125329pt;}
.ws88{word-spacing:40.544000pt;}
.ws93{word-spacing:40.656004pt;}
.ws8a{word-spacing:43.045333pt;}
.ws89{word-spacing:46.517333pt;}
.ws86{word-spacing:49.130663pt;}
.ws5f{word-spacing:53.871994pt;}
.ws81{word-spacing:55.775999pt;}
.wsa6{word-spacing:62.645327pt;}
.ws84{word-spacing:63.093338pt;}
.ws5e{word-spacing:64.175994pt;}
.ws9c{word-spacing:64.847993pt;}
.ws83{word-spacing:68.432002pt;}
.ws92{word-spacing:70.821325pt;}
.ws9f{word-spacing:72.053325pt;}
.wsa0{word-spacing:74.222393pt;}
.wsa7{word-spacing:80.527997pt;}
.wsa2{word-spacing:80.565327pt;}
.ws87{word-spacing:83.216005pt;}
.ws9d{word-spacing:84.522663pt;}
.ws82{word-spacing:92.138662pt;}
.ws9e{word-spacing:111.477327pt;}
.ws80{word-spacing:113.680004pt;}
.wsa3{word-spacing:119.242658pt;}
.wsa4{word-spacing:122.751991pt;}
.wsa5{word-spacing:132.831993pt;}
.wsa1{word-spacing:137.946658pt;}
.ws60{word-spacing:143.434664pt;}
.ws90{word-spacing:160.346671pt;}
.ws85{word-spacing:195.970120pt;}
.ws61{word-spacing:204.437324pt;}
.ws9a{word-spacing:258.188249pt;}
.ws8f{word-spacing:260.160893pt;}
._5{margin-left:-12.285863pt;}
._30{margin-left:-10.797804pt;}
._4a{margin-left:-9.800000pt;}
._4c{margin-left:-8.600000pt;}
._4b{margin-left:-7.680000pt;}
._2{margin-left:-6.536533pt;}
._9{margin-left:-5.003733pt;}
._3{margin-left:-3.808000pt;}
._4{margin-left:-2.912004pt;}
._1{margin-left:-1.774933pt;}
._8{width:0.960005pt;}
._a{width:2.099699pt;}
._7{width:3.488002pt;}
._0{width:4.966400pt;}
._47{width:6.280000pt;}
._4d{width:7.174932pt;}
._44{width:8.080000pt;}
._49{width:9.014939pt;}
._46{width:10.520000pt;}
._45{width:11.520000pt;}
._4e{width:12.473866pt;}
._31{width:13.583993pt;}
._19{width:14.699731pt;}
._48{width:15.854935pt;}
._1a{width:36.713621pt;}
._e{width:37.940172pt;}
._6{width:38.987185pt;}
._10{width:40.543997pt;}
._c{width:41.878441pt;}
._b{width:43.000537pt;}
._d{width:44.309253pt;}
._34{width:51.818671pt;}
._3b{width:52.794742pt;}
._f{width:53.782427pt;}
._28{width:55.514658pt;}
._21{width:62.051187pt;}
._1e{width:62.981334pt;}
._25{width:65.295995pt;}
._3e{width:70.115212pt;}
._1f{width:71.605338pt;}
._24{width:78.735999pt;}
._22{width:80.524807pt;}
._1d{width:83.592524pt;}
._33{width:86.623995pt;}
._43{width:89.637330pt;}
._13{width:91.727999pt;}
._3f{width:96.031986pt;}
._1c{width:102.639991pt;}
._41{width:106.959993pt;}
._18{width:108.042675pt;}
._16{width:121.744008pt;}
._11{width:122.670936pt;}
._40{width:124.150398pt;}
._23{width:134.440520pt;}
._42{width:141.119993pt;}
._20{width:147.843187pt;}
._14{width:149.930675pt;}
._15{width:151.611746pt;}
._3d{width:155.907212pt;}
._3a{width:162.589878pt;}
._3c{width:166.099212pt;}
._2d{width:209.209622pt;}
._12{width:244.271991pt;}
._2a{width:245.291720pt;}
._39{width:248.381878pt;}
._2b{width:251.825053pt;}
._38{width:258.573878pt;}
._1b{width:263.448510pt;}
._36{width:304.456545pt;}
._2f{width:326.853335pt;}
._17{width:329.765333pt;}
._29{width:337.617053pt;}
._37{width:344.365878pt;}
._27{width:393.691720pt;}
._35{width:400.440545pt;}
._2e{width:419.178669pt;}
._26{width:482.333840pt;}
._2c{width:489.526386pt;}
._32{width:641.411161pt;}
.fse{font-size:24.040001pt;}
.fsa{font-size:29.466667pt;}
.fs9{font-size:31.199999pt;}
.fs7{font-size:34.666667pt;}
.fsd{font-size:37.333333pt;}
.fsf{font-size:38.489601pt;}
.fs11{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs10{font-size:46.187200pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fsc{font-size:96.000000pt;}
.fs6{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y15e{bottom:1.951742pt;}
.y192{bottom:3.125366pt;}
.yc{bottom:7.146667pt;}
.y15f{bottom:15.348877pt;}
.y1e{bottom:24.157867pt;}
.y1d{bottom:24.175868pt;}
.y19b{bottom:30.469360pt;}
.y16{bottom:49.453333pt;}
.y4c{bottom:60.723466pt;}
.y92{bottom:60.937331pt;}
.y10d{bottom:60.950672pt;}
.y1f1{bottom:61.152265pt;}
.y21c{bottom:61.157601pt;}
.yb9{bottom:66.444002pt;}
.y15c{bottom:67.087337pt;}
.y128{bottom:67.640273pt;}
.y15{bottom:69.080000pt;}
.y4b{bottom:74.051466pt;}
.y91{bottom:74.269331pt;}
.y10c{bottom:74.282671pt;}
.y1f0{bottom:74.484265pt;}
.y21b{bottom:74.489601pt;}
.y2b4{bottom:74.746236pt;}
.y264{bottom:79.136677pt;}
.yb8{bottom:79.776001pt;}
.y15b{bottom:80.419336pt;}
.y127{bottom:80.972273pt;}
.y1b{bottom:81.413333pt;}
.y2b3{bottom:86.076236pt;}
.y4a{bottom:87.384799pt;}
.y90{bottom:87.601330pt;}
.y10b{bottom:87.614671pt;}
.y1ef{bottom:87.821600pt;}
.y14{bottom:88.706667pt;}
.y263{bottom:90.466677pt;}
.y165{bottom:90.663900pt;}
.yb7{bottom:93.108000pt;}
.y15a{bottom:93.751335pt;}
.y126{bottom:94.304272pt;}
.y2b2{bottom:97.406236pt;}
.y49{bottom:100.718132pt;}
.y8f{bottom:100.937331pt;}
.y10a{bottom:100.946670pt;}
.y1a{bottom:101.040000pt;}
.y1ee{bottom:101.153599pt;}
.y262{bottom:101.796677pt;}
.yb6{bottom:106.440000pt;}
.y159{bottom:107.083335pt;}
.y125{bottom:107.666954pt;}
.y2b1{bottom:108.736236pt;}
.y261{bottom:113.126677pt;}
.y8e{bottom:114.269331pt;}
.y109{bottom:114.278669pt;}
.y1ed{bottom:114.485599pt;}
.y48{bottom:117.899465pt;}
.y10{bottom:119.053333pt;}
.yb5{bottom:119.771999pt;}
.y2b0{bottom:120.066236pt;}
.y158{bottom:120.415334pt;}
.y19{bottom:120.666667pt;}
.y124{bottom:120.998954pt;}
.y1b0{bottom:121.800399pt;}
.y260{bottom:124.456677pt;}
.y8d{bottom:127.601330pt;}
.y108{bottom:127.610668pt;}
.y1ec{bottom:127.817598pt;}
.y2af{bottom:131.396236pt;}
.yb4{bottom:133.103998pt;}
.y123{bottom:134.330953pt;}
.y1af{bottom:135.132398pt;}
.y25f{bottom:135.786677pt;}
.y17{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y18{bottom:140.293333pt;}
.y8c{bottom:140.933329pt;}
.y107{bottom:140.942668pt;}
.y21a{bottom:141.150931pt;}
.y1eb{bottom:141.156267pt;}
.y2ae{bottom:142.726236pt;}
.yb3{bottom:146.435997pt;}
.y25e{bottom:147.116677pt;}
.y157{bottom:147.211327pt;}
.y122{bottom:147.662952pt;}
.y1ae{bottom:148.464398pt;}
.y2ad{bottom:154.056236pt;}
.y106{bottom:154.274667pt;}
.y1ea{bottom:154.488267pt;}
.y219{bottom:154.489601pt;}
.y25d{bottom:158.446678pt;}
.yb2{bottom:159.767997pt;}
.y156{bottom:160.543326pt;}
.y47{bottom:160.610944pt;}
.y121{bottom:160.994951pt;}
.y1ad{bottom:161.796397pt;}
.y2ac{bottom:165.386236pt;}
.y105{bottom:167.606666pt;}
.y8b{bottom:167.665998pt;}
.y1e9{bottom:167.820266pt;}
.y218{bottom:167.821600pt;}
.y25c{bottom:169.776678pt;}
.yb1{bottom:173.099996pt;}
.y155{bottom:173.875326pt;}
.y46{bottom:173.942944pt;}
.y120{bottom:174.326951pt;}
.y2ab{bottom:176.716236pt;}
.y104{bottom:180.938665pt;}
.y8a{bottom:180.997997pt;}
.y25b{bottom:181.106678pt;}
.y1e8{bottom:181.152265pt;}
.y217{bottom:181.153599pt;}
.y154{bottom:187.207325pt;}
.y45{bottom:187.277611pt;}
.y11f{bottom:187.658950pt;}
.y2aa{bottom:188.046237pt;}
.y1ac{bottom:188.608406pt;}
.y25a{bottom:192.436678pt;}
.y103{bottom:194.270665pt;}
.y89{bottom:194.329997pt;}
.y1e7{bottom:194.484265pt;}
.y216{bottom:194.485599pt;}
.yb0{bottom:198.066270pt;}
.y2a9{bottom:199.376237pt;}
.y153{bottom:200.539324pt;}
.y44{bottom:200.609610pt;}
.y11e{bottom:200.990949pt;}
.y259{bottom:203.766678pt;}
.y1ab{bottom:204.111073pt;}
.y102{bottom:207.602664pt;}
.y88{bottom:207.661996pt;}
.y1e6{bottom:207.817598pt;}
.y2a8{bottom:210.706237pt;}
.yaf{bottom:211.398269pt;}
.y152{bottom:213.871323pt;}
.y43{bottom:213.944278pt;}
.y11d{bottom:214.322949pt;}
.y258{bottom:215.096678pt;}
.y1aa{bottom:219.613740pt;}
.y101{bottom:220.934663pt;}
.y87{bottom:220.993995pt;}
.y1e5{bottom:221.150931pt;}
.y215{bottom:221.154933pt;}
.y2a7{bottom:222.036237pt;}
.yae{bottom:224.730268pt;}
.y257{bottom:226.426678pt;}
.y151{bottom:227.203323pt;}
.y42{bottom:227.276277pt;}
.y11c{bottom:227.654948pt;}
.y2a6{bottom:233.366237pt;}
.y100{bottom:234.266663pt;}
.y86{bottom:234.325995pt;}
.y1e4{bottom:234.484265pt;}
.y214{bottom:234.486933pt;}
.y1a9{bottom:235.116407pt;}
.y256{bottom:237.756678pt;}
.yad{bottom:238.062267pt;}
.y150{bottom:240.535322pt;}
.y41{bottom:240.610944pt;}
.y11b{bottom:240.986947pt;}
.y2a5{bottom:244.696237pt;}
.y85{bottom:247.657994pt;}
.y213{bottom:247.818932pt;}
.y1e3{bottom:247.820266pt;}
.y255{bottom:249.086678pt;}
.y1a8{bottom:250.619073pt;}
.yac{bottom:251.394267pt;}
.y14f{bottom:253.867321pt;}
.y40{bottom:253.942944pt;}
.y11a{bottom:254.318946pt;}
.y2a4{bottom:256.026237pt;}
.yff{bottom:259.831470pt;}
.y254{bottom:260.416678pt;}
.y84{bottom:260.989993pt;}
.y212{bottom:261.150931pt;}
.y1e2{bottom:261.152265pt;}
.y1a7{bottom:266.121740pt;}
.y14e{bottom:267.199320pt;}
.y3f{bottom:267.276277pt;}
.y2a3{bottom:267.356237pt;}
.y119{bottom:267.650946pt;}
.y253{bottom:271.746679pt;}
.yfe{bottom:273.163470pt;}
.y83{bottom:274.321992pt;}
.y1e1{bottom:274.484265pt;}
.yab{bottom:276.356538pt;}
.y2a2{bottom:278.686237pt;}
.y14d{bottom:280.531320pt;}
.y3e{bottom:280.610944pt;}
.y118{bottom:280.982945pt;}
.y1a6{bottom:281.624407pt;}
.y252{bottom:283.076679pt;}
.yfd{bottom:286.495469pt;}
.y82{bottom:287.653992pt;}
.y1e0{bottom:287.817598pt;}
.yaa{bottom:289.689872pt;}
.y2a1{bottom:290.016237pt;}
.y14c{bottom:293.863319pt;}
.y3d{bottom:293.942944pt;}
.y117{bottom:294.314944pt;}
.y251{bottom:294.406679pt;}
.y1a5{bottom:297.127074pt;}
.yfc{bottom:299.827468pt;}
.y1df{bottom:301.149597pt;}
.y211{bottom:301.150931pt;}
.y2a0{bottom:301.346238pt;}
.ya9{bottom:303.024539pt;}
.y250{bottom:305.736679pt;}
.ya{bottom:306.382667pt;}
.y14b{bottom:307.195318pt;}
.y3c{bottom:307.276277pt;}
.y190{bottom:307.593384pt;}
.y116{bottom:307.646944pt;}
.y1a4{bottom:312.629740pt;}
.y29f{bottom:312.676238pt;}
.yfb{bottom:313.159467pt;}
.y81{bottom:314.382801pt;}
.y1de{bottom:314.485599pt;}
.y210{bottom:314.488287pt;}
.ya8{bottom:316.356538pt;}
.y24f{bottom:317.066679pt;}
.y14a{bottom:320.527318pt;}
.y3b{bottom:320.612279pt;}
.y115{bottom:320.978943pt;}
.y29e{bottom:324.006238pt;}
.yfa{bottom:326.491467pt;}
.y80{bottom:327.714800pt;}
.y1dd{bottom:327.817598pt;}
.y20f{bottom:327.820286pt;}
.y24e{bottom:328.396679pt;}
.ya7{bottom:329.689851pt;}
.y149{bottom:333.859317pt;}
.y3a{bottom:333.944278pt;}
.y114{bottom:334.310942pt;}
.y29d{bottom:335.336238pt;}
.y24d{bottom:339.726679pt;}
.yf9{bottom:339.823466pt;}
.y7f{bottom:341.046799pt;}
.y20e{bottom:341.152286pt;}
.y1dc{bottom:341.154954pt;}
.ya6{bottom:343.035191pt;}
.yd{bottom:343.546667pt;}
.y29c{bottom:346.666238pt;}
.y148{bottom:347.191316pt;}
.y39{bottom:347.276277pt;}
.y113{bottom:347.642941pt;}
.y24c{bottom:351.056679pt;}
.y9{bottom:351.724000pt;}
.y7e{bottom:354.378799pt;}
.y20d{bottom:354.484285pt;}
.y1db{bottom:354.486953pt;}
.ya5{bottom:356.367190pt;}
.y29b{bottom:357.996238pt;}
.y147{bottom:360.523315pt;}
.y38{bottom:360.644277pt;}
.y112{bottom:360.974941pt;}
.y24b{bottom:362.386679pt;}
.yf8{bottom:365.382795pt;}
.y7d{bottom:367.710798pt;}
.y1da{bottom:367.818952pt;}
.y20c{bottom:367.822954pt;}
.y29a{bottom:369.326238pt;}
.ya4{bottom:369.699190pt;}
.y24a{bottom:373.716679pt;}
.y37{bottom:373.976276pt;}
.y111{bottom:374.306940pt;}
.y1a3{bottom:374.828154pt;}
.yf7{bottom:378.714794pt;}
.y299{bottom:380.656238pt;}
.y7c{bottom:381.042797pt;}
.y1d9{bottom:381.150952pt;}
.y20b{bottom:381.154954pt;}
.ya3{bottom:383.031189pt;}
.y249{bottom:385.046680pt;}
.yb{bottom:386.533333pt;}
.y110{bottom:387.638939pt;}
.y2d0{bottom:387.828291pt;}
.y1a2{bottom:388.160153pt;}
.y298{bottom:391.986238pt;}
.yf6{bottom:392.052130pt;}
.y7b{bottom:394.374797pt;}
.y1d8{bottom:394.484285pt;}
.y20a{bottom:394.486953pt;}
.ya2{bottom:396.363188pt;}
.y248{bottom:396.376680pt;}
.y8{bottom:397.065333pt;}
.y10f{bottom:400.970939pt;}
.y2cf{bottom:401.160290pt;}
.y1a1{bottom:401.492153pt;}
.y297{bottom:403.316238pt;}
.yf5{bottom:405.384129pt;}
.y247{bottom:407.706680pt;}
.y209{bottom:407.818952pt;}
.y1d7{bottom:407.820286pt;}
.ya1{bottom:409.695188pt;}
.y185{bottom:412.534151pt;}
.y10e{bottom:414.302938pt;}
.y2ce{bottom:414.492289pt;}
.y296{bottom:414.646239pt;}
.y1a0{bottom:414.824152pt;}
.y36{bottom:415.976276pt;}
.yf4{bottom:418.716128pt;}
.y246{bottom:419.036680pt;}
.y7a{bottom:421.103463pt;}
.y208{bottom:421.150952pt;}
.y1d6{bottom:421.152286pt;}
.ya0{bottom:423.027187pt;}
.y184{bottom:425.866150pt;}
.y295{bottom:425.976239pt;}
.y2cd{bottom:427.824288pt;}
.y19f{bottom:428.156151pt;}
.y245{bottom:430.366680pt;}
.y35{bottom:430.640276pt;}
.yf3{bottom:432.048128pt;}
.y11{bottom:433.826667pt;}
.y79{bottom:434.435463pt;}
.y1d5{bottom:434.484285pt;}
.y207{bottom:434.488287pt;}
.y9f{bottom:436.359186pt;}
.y294{bottom:437.306239pt;}
.y183{bottom:439.198149pt;}
.y2cc{bottom:441.156288pt;}
.y19e{bottom:441.488150pt;}
.y244{bottom:441.696680pt;}
.y7{bottom:442.406667pt;}
.y34{bottom:445.304276pt;}
.yf2{bottom:445.384129pt;}
.y78{bottom:447.767462pt;}
.y1d4{bottom:447.818952pt;}
.y206{bottom:447.820286pt;}
.y293{bottom:448.636239pt;}
.y9e{bottom:449.691185pt;}
.y182{bottom:452.530148pt;}
.y243{bottom:453.026680pt;}
.y2cb{bottom:454.488287pt;}
.y19d{bottom:454.820150pt;}
.yf1{bottom:458.716128pt;}
.y292{bottom:459.966239pt;}
.y33{bottom:459.968276pt;}
.y77{bottom:461.099461pt;}
.y1d3{bottom:461.150952pt;}
.y205{bottom:461.152286pt;}
.y9d{bottom:463.023185pt;}
.y242{bottom:464.356680pt;}
.y181{bottom:465.862148pt;}
.y2ca{bottom:467.820286pt;}
.y146{bottom:468.977609pt;}
.y291{bottom:471.296239pt;}
.yf0{bottom:472.048128pt;}
.y76{bottom:474.431460pt;}
.y204{bottom:474.484285pt;}
.y1d2{bottom:474.489621pt;}
.y32{bottom:474.632276pt;}
.y241{bottom:475.686680pt;}
.y9c{bottom:476.364522pt;}
.y12{bottom:478.426667pt;}
.y180{bottom:479.194147pt;}
.y18e{bottom:479.543986pt;}
.y2c9{bottom:481.152286pt;}
.y145{bottom:482.309608pt;}
.y290{bottom:482.626239pt;}
.yef{bottom:485.380127pt;}
.y240{bottom:487.016680pt;}
.y6{bottom:487.748000pt;}
.y75{bottom:487.763460pt;}
.y1d1{bottom:487.821620pt;}
.y31{bottom:489.296276pt;}
.y9b{bottom:489.696522pt;}
.y18f{bottom:491.699097pt;}
.y17f{bottom:492.526146pt;}
.y28f{bottom:493.956239pt;}
.y2c8{bottom:494.484285pt;}
.y144{bottom:495.641607pt;}
.y23f{bottom:498.346681pt;}
.yee{bottom:498.713460pt;}
.y74{bottom:501.095459pt;}
.y1d0{bottom:501.153620pt;}
.y9a{bottom:503.028521pt;}
.y30{bottom:503.960276pt;}
.y28e{bottom:505.286239pt;}
.y17e{bottom:505.858146pt;}
.y193{bottom:506.262655pt;}
.y2c7{bottom:507.816284pt;}
.y143{bottom:508.973607pt;}
.y23e{bottom:509.676681pt;}
.y19c{bottom:510.013346pt;}
.y73{bottom:514.428792pt;}
.y1cf{bottom:514.485619pt;}
.y99{bottom:516.360520pt;}
.y28d{bottom:516.616239pt;}
.y2f{bottom:518.624276pt;}
.y17d{bottom:519.190145pt;}
.y23d{bottom:521.006681pt;}
.y142{bottom:522.305606pt;}
.y1c{bottom:524.093333pt;}
.yed{bottom:524.296259pt;}
.y2c6{bottom:527.153620pt;}
.y1ce{bottom:527.817618pt;}
.y28c{bottom:527.946240pt;}
.y98{bottom:529.692519pt;}
.y23c{bottom:532.336681pt;}
.y194{bottom:532.695388pt;}
.y5{bottom:533.089333pt;}
.y2e{bottom:533.288276pt;}
.y141{bottom:535.637605pt;}
.yec{bottom:537.628259pt;}
.y28b{bottom:539.276240pt;}
.y2c5{bottom:540.485619pt;}
.y1cd{bottom:541.150952pt;}
.y72{bottom:541.162958pt;}
.y203{bottom:541.165585pt;}
.y97{bottom:543.024519pt;}
.y23b{bottom:543.666681pt;}
.y17c{bottom:545.996770pt;}
.y2d{bottom:547.952276pt;}
.y140{bottom:548.969604pt;}
.y28a{bottom:550.606240pt;}
.yeb{bottom:550.960258pt;}
.y1cc{bottom:554.485619pt;}
.y71{bottom:554.494957pt;}
.y202{bottom:554.497585pt;}
.y23a{bottom:554.996681pt;}
.y96{bottom:556.356518pt;}
.y195{bottom:559.137743pt;}
.y2c4{bottom:559.817618pt;}
.y17b{bottom:561.499437pt;}
.ye{bottom:561.706667pt;}
.y289{bottom:561.936240pt;}
.y2c{bottom:562.616276pt;}
.yea{bottom:564.292257pt;}
.y239{bottom:566.326681pt;}
.y1cb{bottom:567.817618pt;}
.y70{bottom:567.826957pt;}
.y201{bottom:567.829584pt;}
.y95{bottom:569.688517pt;}
.y288{bottom:573.266240pt;}
.y13f{bottom:575.776230pt;}
.y17a{bottom:577.002103pt;}
.y2b{bottom:577.280276pt;}
.ye9{bottom:577.624256pt;}
.y238{bottom:577.656681pt;}
.y2c3{bottom:579.149618pt;}
.y1ca{bottom:581.152286pt;}
.y6f{bottom:581.158956pt;}
.y200{bottom:581.161583pt;}
.y287{bottom:584.596240pt;}
.y196{bottom:585.580098pt;}
.y237{bottom:588.986681pt;}
.ye8{bottom:590.956256pt;}
.y13e{bottom:591.278896pt;}
.y2a{bottom:591.944276pt;}
.y2c2{bottom:592.482951pt;}
.y179{bottom:592.504770pt;}
.y1c9{bottom:594.484285pt;}
.y6e{bottom:594.490955pt;}
.y1ff{bottom:594.493583pt;}
.y94{bottom:594.650952pt;}
.y286{bottom:595.926240pt;}
.y236{bottom:600.316681pt;}
.ye7{bottom:604.288255pt;}
.y29{bottom:606.608276pt;}
.y13d{bottom:606.781563pt;}
.y285{bottom:607.256240pt;}
.y1c8{bottom:607.821620pt;}
.y6d{bottom:607.822954pt;}
.y1fe{bottom:607.825582pt;}
.y93{bottom:607.982951pt;}
.y178{bottom:608.007437pt;}
.y235{bottom:611.646682pt;}
.y197{bottom:612.012831pt;}
.y2c1{bottom:616.488287pt;}
.ye6{bottom:617.620254pt;}
.y284{bottom:618.586240pt;}
.y1c7{bottom:621.153620pt;}
.y6c{bottom:621.154954pt;}
.y1fd{bottom:621.157581pt;}
.y13c{bottom:622.284230pt;}
.y234{bottom:622.976682pt;}
.y177{bottom:623.510104pt;}
.y2c0{bottom:629.820286pt;}
.y283{bottom:629.916240pt;}
.y28{bottom:633.274942pt;}
.y233{bottom:634.306682pt;}
.y1c6{bottom:634.485619pt;}
.y6b{bottom:634.486953pt;}
.y1fc{bottom:634.489580pt;}
.y13b{bottom:637.786897pt;}
.y198{bottom:638.455186pt;}
.y176{bottom:639.012770pt;}
.y282{bottom:641.246241pt;}
.y2bf{bottom:643.152286pt;}
.ye5{bottom:645.472255pt;}
.y232{bottom:645.636682pt;}
.y1c5{bottom:647.817618pt;}
.y6a{bottom:647.818952pt;}
.y1fb{bottom:647.821580pt;}
.y26{bottom:649.274942pt;}
.y281{bottom:652.576241pt;}
.y13a{bottom:653.289563pt;}
.y27{bottom:653.808268pt;}
.y175{bottom:654.515437pt;}
.y2be{bottom:656.484285pt;}
.y231{bottom:656.966682pt;}
.ye4{bottom:658.804255pt;}
.yd1{bottom:659.990914pt;}
.y69{bottom:661.150952pt;}
.y1c4{bottom:661.153579pt;}
.y280{bottom:663.906241pt;}
.y199{bottom:664.887919pt;}
.y24{bottom:665.274943pt;}
.y230{bottom:668.296682pt;}
.y139{bottom:668.792230pt;}
.y25{bottom:669.808268pt;}
.y2bd{bottom:669.816284pt;}
.y174{bottom:670.018104pt;}
.ye3{bottom:672.136254pt;}
.y4f{bottom:673.018130pt;}
.yd0{bottom:673.322914pt;}
.y1c3{bottom:674.485578pt;}
.y68{bottom:674.488246pt;}
.y27f{bottom:675.236241pt;}
.y22f{bottom:679.626682pt;}
.y2bc{bottom:683.149577pt;}
.y138{bottom:684.294897pt;}
.ye2{bottom:685.468253pt;}
.y173{bottom:685.520771pt;}
.y27e{bottom:686.566241pt;}
.ycf{bottom:686.654913pt;}
.y1c2{bottom:687.817578pt;}
.y67{bottom:687.820246pt;}
.y22e{bottom:690.956682pt;}
.y4e{bottom:691.684130pt;}
.y4{bottom:691.756000pt;}
.y19a{bottom:694.120036pt;}
.y23{bottom:694.592232pt;}
.y27d{bottom:697.896241pt;}
.ye1{bottom:698.800253pt;}
.y137{bottom:699.797564pt;}
.yce{bottom:699.986912pt;}
.y172{bottom:701.023437pt;}
.y66{bottom:701.152245pt;}
.y1c1{bottom:701.153579pt;}
.y1fa{bottom:701.156247pt;}
.y22d{bottom:702.286682pt;}
.y2bb{bottom:707.156247pt;}
.y27c{bottom:709.226241pt;}
.y4d{bottom:710.350129pt;}
.ye0{bottom:712.132252pt;}
.ycd{bottom:713.318912pt;}
.y22c{bottom:713.616682pt;}
.y65{bottom:714.484244pt;}
.y1c0{bottom:714.485578pt;}
.y1f9{bottom:714.488246pt;}
.y136{bottom:715.300230pt;}
.y2ba{bottom:720.488246pt;}
.y27b{bottom:720.556241pt;}
.y22b{bottom:724.946683pt;}
.y13{bottom:725.040000pt;}
.ydf{bottom:725.464251pt;}
.ycc{bottom:726.650911pt;}
.y64{bottom:727.817578pt;}
.y1f8{bottom:727.820246pt;}
.y135{bottom:730.802897pt;}
.y27a{bottom:731.886241pt;}
.y2b9{bottom:733.820246pt;}
.y22{bottom:734.597566pt;}
.y22a{bottom:736.276683pt;}
.ycb{bottom:739.982910pt;}
.y1f7{bottom:741.152245pt;}
.y1bf{bottom:741.153579pt;}
.y63{bottom:741.154913pt;}
.y279{bottom:743.216241pt;}
.y2b8{bottom:747.152245pt;}
.y229{bottom:747.606683pt;}
.yde{bottom:753.316252pt;}
.y171{bottom:753.945179pt;}
.y1f6{bottom:754.484244pt;}
.y1be{bottom:754.485578pt;}
.y62{bottom:754.486912pt;}
.y278{bottom:754.546242pt;}
.y228{bottom:758.936683pt;}
.y186{bottom:759.790690pt;}
.y2b7{bottom:760.484244pt;}
.y277{bottom:765.876242pt;}
.ydd{bottom:766.648252pt;}
.yca{bottom:766.901572pt;}
.y170{bottom:767.277178pt;}
.y1bd{bottom:767.817578pt;}
.y61{bottom:767.818912pt;}
.y227{bottom:770.266683pt;}
.yc9{bottom:771.894905pt;}
.y2b6{bottom:773.816243pt;}
.y21{bottom:774.602901pt;}
.y276{bottom:777.206242pt;}
.ydc{bottom:779.980251pt;}
.y16f{bottom:780.609177pt;}
.y60{bottom:781.150911pt;}
.y1bc{bottom:781.152245pt;}
.y226{bottom:781.600016pt;}
.y187{bottom:783.386637pt;}
.y134{bottom:786.490914pt;}
.y191{bottom:787.137370pt;}
.y2b5{bottom:787.149577pt;}
.y275{bottom:788.536242pt;}
.yc8{bottom:792.390906pt;}
.ydb{bottom:793.312250pt;}
.y16e{bottom:793.941177pt;}
.y5f{bottom:794.484244pt;}
.y1f5{bottom:794.485578pt;}
.yc7{bottom:797.384239pt;}
.y133{bottom:799.822914pt;}
.y274{bottom:799.866242pt;}
.y3{bottom:805.081333pt;}
.yda{bottom:806.644249pt;}
.y16d{bottom:807.273176pt;}
.y5e{bottom:807.817578pt;}
.y1bb{bottom:807.826916pt;}
.y225{bottom:807.828250pt;}
.y188{bottom:809.819371pt;}
.y273{bottom:811.196242pt;}
.y132{bottom:813.154913pt;}
.y20{bottom:814.608236pt;}
.yc6{bottom:817.880240pt;}
.yd9{bottom:819.976249pt;}
.y16c{bottom:820.605175pt;}
.y5d{bottom:821.152245pt;}
.y1ba{bottom:821.158915pt;}
.y224{bottom:821.160249pt;}
.y272{bottom:822.526242pt;}
.yc5{bottom:822.873573pt;}
.y50{bottom:823.475179pt;}
.y131{bottom:826.486912pt;}
.yd8{bottom:833.308248pt;}
.y271{bottom:833.856242pt;}
.y16b{bottom:833.938509pt;}
.y5c{bottom:834.484244pt;}
.y1b9{bottom:834.490914pt;}
.y223{bottom:834.492249pt;}
.y189{bottom:836.261726pt;}
.y130{bottom:839.818912pt;}
.yc4{bottom:843.369574pt;}
.y270{bottom:845.186242pt;}
.yd7{bottom:846.640247pt;}
.y16a{bottom:847.271842pt;}
.y5b{bottom:847.817578pt;}
.y1b8{bottom:847.822914pt;}
.y222{bottom:847.824248pt;}
.yc3{bottom:848.362907pt;}
.y12f{bottom:853.150911pt;}
.y26f{bottom:856.516242pt;}
.y2{bottom:857.092000pt;}
.y169{bottom:860.603841pt;}
.y5a{bottom:861.150911pt;}
.y1f4{bottom:861.153579pt;}
.y1b7{bottom:861.154913pt;}
.y221{bottom:861.156247pt;}
.y18a{bottom:862.704081pt;}
.y12e{bottom:866.482910pt;}
.y26e{bottom:867.846243pt;}
.yc2{bottom:868.858908pt;}
.yc1{bottom:873.852241pt;}
.y59{bottom:874.484244pt;}
.y1f3{bottom:874.485578pt;}
.y1b6{bottom:874.486912pt;}
.y220{bottom:874.488246pt;}
.yd6{bottom:874.492249pt;}
.y26d{bottom:879.176243pt;}
.y1{bottom:879.748000pt;}
.y15d{bottom:885.327962pt;}
.y58{bottom:887.817578pt;}
.y1b5{bottom:887.818912pt;}
.y21f{bottom:887.820246pt;}
.yd5{bottom:887.824248pt;}
.y18b{bottom:889.136814pt;}
.y26c{bottom:890.506243pt;}
.y12d{bottom:893.302910pt;}
.yc0{bottom:894.348242pt;}
.y160{bottom:898.874674pt;}
.ybf{bottom:899.341575pt;}
.y57{bottom:901.150911pt;}
.y21e{bottom:901.152245pt;}
.y1f2{bottom:901.153579pt;}
.yd4{bottom:901.156247pt;}
.y26b{bottom:901.836243pt;}
.y12c{bottom:908.805576pt;}
.y26a{bottom:913.166243pt;}
.y161{bottom:914.302345pt;}
.y21d{bottom:914.484244pt;}
.y56{bottom:914.485578pt;}
.y1b4{bottom:914.486912pt;}
.yd3{bottom:914.488246pt;}
.y18c{bottom:915.579169pt;}
.ybe{bottom:919.837576pt;}
.y12b{bottom:924.308243pt;}
.y269{bottom:924.496243pt;}
.ybd{bottom:924.830909pt;}
.y55{bottom:927.817578pt;}
.y1b3{bottom:927.818912pt;}
.yd2{bottom:927.820246pt;}
.y162{bottom:929.724005pt;}
.y268{bottom:935.826243pt;}
.y12a{bottom:939.810910pt;}
.y1b2{bottom:941.150911pt;}
.y54{bottom:941.152245pt;}
.y18d{bottom:942.011902pt;}
.y163{bottom:945.151675pt;}
.ybc{bottom:945.326910pt;}
.y267{bottom:947.156243pt;}
.ybb{bottom:950.320243pt;}
.y1b1{bottom:954.482910pt;}
.y53{bottom:954.484244pt;}
.y129{bottom:955.313577pt;}
.y168{bottom:958.282472pt;}
.y266{bottom:958.486243pt;}
.y164{bottom:960.579345pt;}
.y167{bottom:964.184292pt;}
.y52{bottom:967.816243pt;}
.y265{bottom:969.816243pt;}
.y166{bottom:970.092122pt;}
.yba{bottom:970.816243pt;}
.y51{bottom:1013.202637pt;}
.y1f{bottom:1013.446126pt;}
.h22{height:17.501121pt;}
.h16{height:20.833855pt;}
.h10{height:24.933594pt;}
.h23{height:28.020430pt;}
.h4{height:29.333333pt;}
.h19{height:31.461333pt;}
.h18{height:32.594667pt;}
.h25{height:33.070035pt;}
.h12{height:34.512000pt;}
.h13{height:34.523438pt;}
.h17{height:36.225851pt;}
.h1f{height:36.922667pt;}
.h1d{height:38.229333pt;}
.hb{height:38.346667pt;}
.hd{height:39.305333pt;}
.h2b{height:39.560000pt;}
.h29{height:40.080000pt;}
.hc{height:40.661333pt;}
.h2a{height:40.960000pt;}
.h1b{height:42.181333pt;}
.h11{height:43.066897pt;}
.h14{height:47.472000pt;}
.h28{height:48.069319pt;}
.h27{height:48.074655pt;}
.h1c{height:48.085328pt;}
.h26{height:48.090664pt;}
.h15{height:48.096000pt;}
.h20{height:49.152000pt;}
.h3{height:51.916667pt;}
.h1e{height:56.933334pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h1a{height:69.024000pt;}
.h21{height:95.822662pt;}
.he{height:99.701333pt;}
.hf{height:99.734375pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h24{height:501.605347pt;}
.h9{height:1043.149333pt;}
.ha{height:1043.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.wa{width:272.000000pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.wb{width:528.359985pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x1b{left:5.157471pt;}
.x23{left:8.257060pt;}
.x1e{left:10.996806pt;}
.x14{left:12.533588pt;}
.xb{left:54.392400pt;}
.x1a{left:60.363871pt;}
.x28{left:87.757202pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x15{left:125.291331pt;}
.x22{left:126.525330pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xd{left:207.516805pt;}
.x16{left:211.683472pt;}
.x1d{left:221.858717pt;}
.x13{left:223.512924pt;}
.x1c{left:225.200277pt;}
.x21{left:235.722392pt;}
.x2d{left:267.195068pt;}
.x11{left:287.849325pt;}
.x20{left:295.274536pt;}
.x29{left:325.969869pt;}
.x2a{left:364.882650pt;}
.xe{left:366.703451pt;}
.x17{left:390.883479pt;}
.x1f{left:414.500000pt;}
.x26{left:415.784017pt;}
.x27{left:492.898682pt;}
.x25{left:512.846680pt;}
.x12{left:518.464396pt;}
.xc{left:519.632528pt;}
.x18{left:536.296854pt;}
.xf{left:563.828939pt;}
.x24{left:572.399984pt;}
.x2b{left:600.169352pt;}
.x10{left:666.093750pt;}
.x2c{left:725.336507pt;}
.x19{left:732.628825pt;}
.xa{left:733.540283pt;}
}




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